From 85c651ca21a41a72c868900a6c2b31fb1a3d5c12 Mon Sep 17 00:00:00 2001 From: Walter Weinmann Date: Thu, 29 Dec 2016 20:25:29 +0100 Subject: [PATCH 1/2] Version 1.2.4. --- README.md | 294 +++ ...2016_12_14.ebnf => cypher_2016_12_20.ebnf} | 120 +- ...acy.ebnf => cypher_2016_12_20_legacy.ebnf} | 122 +- src/oclexer.xrl | 4 +- src/oclexer_legacy.xrl | 4 +- src/ocparse.app.src | 2 +- src/ocparse.yrl | 29 +- src/ocparse_fold.erl | 90 +- src/ocparse_fold_legacy.erl | 98 +- src/ocparse_legacy.yrl | 24 +- src/octest.erl | 2 +- src/test_generator.erl | 222 +- test/ocparse_test.erl | 33 +- test/performance_command_legacy_SUITE.erl | 2002 ++++++++--------- 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 | 2002 ++++++++--------- 20 files changed, 7725 insertions(+), 7333 deletions(-) rename priv/openCypher/{cypher_2016_12_14.ebnf => cypher_2016_12_20.ebnf} (86%) rename priv/openCypher/{cypher_2016_12_14_legacy.ebnf => cypher_2016_12_20_legacy.ebnf} (89%) diff --git a/README.md b/README.md index 6c936c1..11f63f9 100644 --- a/README.md +++ b/README.md @@ -234,6 +234,10 @@ The number of block comments (`/* ... */`) is limted to one per line. The variant `[..]` is not supported. +### ListLiteral + +`ListLiteral` is not supported due to a conflict with the `Atom` definition. + ### ParenthesizedExpression `ParenthesizedExpression` is not supported due to a conflict with `NodePattern`. @@ -284,6 +288,296 @@ This project was inspired by the [sqlparse](https://github.com/K2InformaticsGmbH ## 6. Release Notes +### Version 1.2.4 (OpenCypher 1.0.0-M04) + +Release Date: 15.12.2016 - Grammar as of 20.12.2016 + +#### Grammar changes + +- **Atom** + +``` +New: Atom = Literal + | Parameter + | ((C,O,U,N,T), [SP], '(', [SP], '*', [SP], ')') + | ListComprehension + | ((F,I,L,T,E,R), [SP], '(', [SP], FilterExpression, [SP], ')') + ... + +Old: Atom = NumberLiteral + | StringLiteral + | Parameter + | (T,R,U,E) + | (F,A,L,S,E) + | (N,U,L,L) + | ((C,O,U,N,T), [SP], '(', [SP], '*', [SP], ')') + | MapLiteral + | ListComprehension + | ('[', [SP], Expression, [SP], { ',', [SP], Expression, [SP] }, ']') + | ((F,I,L,T,E,R), [SP], '(', [SP], FilterExpression, [SP], ')') + ... +``` + +- **BooleanLiteral** + +``` +New: BooleanLiteral = (T,R,U,E) + | (F,A,L,S,E) + ; + +Old: n/a +``` + +- **DecimalInteger** + +``` +New: DecimalInteger = ZeroDigit + | (NonZeroDigit, { Digit }) + ; + +Old: DecimalInteger = (('1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9'), [DigitString]) + | '0' + ; +``` + +- **Delete** + +``` +New: Delete = [(D,E,T,A,C,H), SP], (D,E,L,E,T,E), [SP], Expression, { [SP], ',', [SP], Expression } ; + +Old: Delete = ((D,E,L,E,T,E), Expression, { ',', Expression }) + | ((D,E,T,A,C,H), SP, (D,E,L,E,T,E), Expression, { ',', Expression }) + ; +``` + +- **Digit** + +``` +New: Digit = ZeroDigit + | NonZeroDigit + ; + +Old: Digit = '0' + | '1' + | '2' + | '3' + | '4' + | '5' + | '6' + | '7' + | '8' + | '9' + ; +``` + +- **DigitString** + +``` +New: n/a + +Old: DigitString = { Digit }- ; +``` + +- **ExponentDecimalReal** + +``` +New: ExponentDecimalReal = ({ Digit }- | ({ Digit }-, '.', { Digit }-) | ('.', { Digit }-)), ((E) | (E)), ['-'], { Digit }- ; + +Old: ExponentDecimalReal = ({ Digit | '.' }- | DecimalInteger), ((E) | (E)), (DigitString | DecimalInteger) ; +``` + +- **HexDigit** + +``` +New: HexDigit = Digit + | HexLetter + ; + +Old: HexDigit = '0' + | '1' + | '2' + | '3' + | '4' + | '5' + | '6' + | '7' + | '8' + | '9' + | (A) + | (B) + | (C) + | (D) + | (E) + | (F) + ; +``` + +- **HexInteger** + +``` +New: HexInteger = ('0',X), { HexDigit }- ; + +Old: HexInteger = ('0',X), HexString ; +``` + +- **HexLetter** + +``` +New: HexLetter = (A) + | (B) + | (C) + | (D) + | (E) + | (F) + ; + +Old: n/a +``` + +- **HexString** + +``` +New: n/a + +Old: HexString = { HexDigit }- ; +``` + +- **ListComprehension** + +``` +New: ListComprehension = '[', [SP], FilterExpression, [[SP], '|', [SP], Expression], [SP], ']' ; + +Old: ListComprehension = '[', FilterExpression, [[SP], '|', Expression], ']' ; +``` + +- **ListLiteral** + +``` +New: ListLiteral = '[', [SP], [Expression, [SP], { ',', [SP], Expression, [SP] }], ']' ; + +Old: n/a +``` + +- **Literal** + +``` +New: Literal = NumberLiteral + | StringLiteral + | BooleanLiteral + | (N,U,L,L) + | MapLiteral + | ListLiteral + ; + +Old: n/a +``` + +- **NonZeroDigit** + +``` +New: NonZeroDigit = NonZeroOctDigit + | '8' + | '9' + ; + +Old: n/a +``` + +- **NonZeroOctDigit** + +``` +New: NonZeroOctDigit = '1' + | '2' + | '3' + | '4' + | '5' + | '6' + | '7' + ; + +Old: n/a +``` + +- **OctalInteger** + +``` +New: OctalInteger = ZeroDigit, { OctDigit }- ; + +Old: OctalInteger = '0', OctalString ; +``` + +- **OctalString** + +``` +New: n/a + +Old: OctalString = { OctDigit }- ; +``` + +- **OctDigit** + +``` +New: OctDigit = ZeroDigit + | NonZeroOctDigit + ; + +Old: OctDigit = '0' + | '1' + | '2' + | '3' + | '4' + | '5' + | '6' + | '7' + ; +``` + +- **RegularDecimalReal** + +``` +New: RegularDecimalReal = { Digit }, '.', { Digit }- ; + +Old: RegularDecimalReal = ({ Digit } | DecimalInteger), '.', (DigitString | DecimalInteger) ; +``` + +- **Return** + +``` +New: Return = (R,E,T,U,R,N), [[SP], (D,I,S,T,I,N,C,T)], SP, ReturnBody ; + +Old: Return = ((R,E,T,U,R,N), SP, (D,I,S,T,I,N,C,T), SP, ReturnBody) + | ((R,E,T,U,R,N), SP, ReturnBody) + ; +``` + +- **VersionNumber** (Legacy) + +``` +New: VersionNumber = RegularDecimalReal ; + +Old: VersionNumber = DecimalInteger, '.', DecimalInteger ; +``` + +- **With** + +``` +New: With = (W,I,T,H), [[SP], (D,I,S,T,I,N,C,T)], SP, ReturnBody, [[SP], Where] ; + + +Old: With = ((W,I,T,H), (D,I,S,T,I,N,C,T), SP, ReturnBody, [Where]) + | ((W,I,T,H), SP, ReturnBody, [Where]) + ; +``` + +- **ZeroDigit** + +``` +New: ZeroDigit = '0' ; + + +Old: n/a +``` + ### Version 1.2.3 Release Date: 15.12.2016 - Grammar as of 14.12.2016 diff --git a/priv/openCypher/cypher_2016_12_14.ebnf b/priv/openCypher/cypher_2016_12_20.ebnf similarity index 86% rename from priv/openCypher/cypher_2016_12_14.ebnf rename to priv/openCypher/cypher_2016_12_20.ebnf index 2ded494..37e947d 100644 --- a/priv/openCypher/cypher_2016_12_14.ebnf +++ b/priv/openCypher/cypher_2016_12_20.ebnf @@ -59,9 +59,7 @@ SetItem = (PropertyExpression, '=', Expression) | (Variable, NodeLabels) ; -Delete = ((D,E,L,E,T,E), Expression, { ',', Expression }) - | ((D,E,T,A,C,H), SP, (D,E,L,E,T,E), Expression, { ',', Expression }) - ; +Delete = [(D,E,T,A,C,H), SP], (D,E,L,E,T,E), [SP], Expression, { [SP], ',', [SP], Expression } ; Remove = (R,E,M,O,V,E), SP, RemoveItem, { [SP], ',', [SP], RemoveItem } ; @@ -69,13 +67,9 @@ RemoveItem = (Variable, NodeLabels) | PropertyExpression ; -With = ((W,I,T,H), (D,I,S,T,I,N,C,T), SP, ReturnBody, [Where]) - | ((W,I,T,H), SP, ReturnBody, [Where]) - ; +With = (W,I,T,H), [[SP], (D,I,S,T,I,N,C,T)], SP, ReturnBody, [[SP], Where] ; -Return = ((R,E,T,U,R,N), SP, (D,I,S,T,I,N,C,T), SP, ReturnBody) - | ((R,E,T,U,R,N), SP, ReturnBody) - ; +Return = (R,E,T,U,R,N), [[SP], (D,I,S,T,I,N,C,T)], SP, ReturnBody ; ReturnBody = ReturnItems, [SP, Order], [SP, Skip], [SP, Limit] ; @@ -161,16 +155,10 @@ Expression3 = Expression2, { ([SP], '[', Expression, ']') | ([SP], '[', [Express Expression2 = Atom, { PropertyLookup | NodeLabels } ; -Atom = NumberLiteral - | StringLiteral +Atom = Literal | Parameter - | (T,R,U,E) - | (F,A,L,S,E) - | (N,U,L,L) | ((C,O,U,N,T), [SP], '(', [SP], '*', [SP], ')') - | MapLiteral | ListComprehension - | ('[', [SP], Expression, [SP], { ',', [SP], Expression, [SP] }, ']') | ((F,I,L,T,E,R), [SP], '(', [SP], FilterExpression, [SP], ')') | ((E,X,T,R,A,C,T), [SP], '(', [SP], FilterExpression, [SP], [[SP], '|', Expression], ')') | ((A,L,L), [SP], '(', [SP], FilterExpression, [SP], ')') @@ -183,6 +171,20 @@ Atom = NumberLiteral | Variable ; +Literal = NumberLiteral + | StringLiteral + | BooleanLiteral + | (N,U,L,L) + | MapLiteral + | ListLiteral + ; + +BooleanLiteral = (T,R,U,E) + | (F,A,L,S,E) + ; + +ListLiteral = '[', [SP], [Expression, [SP], { ',', [SP], Expression, [SP] }], ']' ; + PartialComparisonExpression = ('=', [SP], Expression7) | ('<>', [SP], Expression7) | ('!=', [SP], Expression7) @@ -204,7 +206,7 @@ FunctionInvocation = FunctionName, [SP], '(', [SP], [(D,I,S,T,I,N,C,T), [SP]], [ FunctionName = SymbolicName ; -ListComprehension = '[', FilterExpression, [[SP], '|', Expression], ']' ; +ListComprehension = '[', [SP], FilterExpression, [[SP], '|', [SP], Expression], [SP], ']' ; PropertyLookup = [SP], '.', [SP], ((PropertyKeyName, ('?' | '!')) | PropertyKeyName) ; @@ -233,67 +235,57 @@ IntegerLiteral = HexInteger | DecimalInteger ; -HexInteger = ('0',X), HexString ; +HexInteger = ('0',X), { HexDigit }- ; -DecimalInteger = (('1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9'), [DigitString]) - | '0' +DecimalInteger = ZeroDigit + | (NonZeroDigit, { Digit }) ; -OctalInteger = '0', OctalString ; - -HexString = { HexDigit }- ; - -DigitString = { Digit }- ; - -OctalString = { OctDigit }- ; - -HexDigit = '0' - | '1' - | '2' - | '3' - | '4' - | '5' - | '6' - | '7' - | '8' - | '9' - | (A) - | (B) - | (C) - | (D) - | (E) - | (F) +OctalInteger = ZeroDigit, { OctDigit }- ; + +HexLetter = (A) + | (B) + | (C) + | (D) + | (E) + | (F) + ; + +HexDigit = Digit + | HexLetter ; -Digit = '0' - | '1' - | '2' - | '3' - | '4' - | '5' - | '6' - | '7' - | '8' - | '9' +Digit = ZeroDigit + | NonZeroDigit ; -OctDigit = '0' - | '1' - | '2' - | '3' - | '4' - | '5' - | '6' - | '7' +NonZeroDigit = NonZeroOctDigit + | '8' + | '9' + ; + +NonZeroOctDigit = '1' + | '2' + | '3' + | '4' + | '5' + | '6' + | '7' + ; + +OctDigit = ZeroDigit + | NonZeroOctDigit ; +ZeroDigit = '0' ; + DoubleLiteral = ExponentDecimalReal | RegularDecimalReal ; -ExponentDecimalReal = ({ Digit | '.' }- | DecimalInteger), ((E) | (E)), (DigitString | DecimalInteger) ; +ExponentDecimalReal = ({ Digit }- | ({ Digit }-, '.', { Digit }-) | ('.', { Digit }-)), ((E) | (E)), ['-'], { Digit }- ; -RegularDecimalReal = ({ Digit } | DecimalInteger), '.', (DigitString | DecimalInteger) ; +RegularDecimalReal = { Digit }, '.', { Digit }- ; SymbolicName = UnescapedSymbolicName | EscapedSymbolicName diff --git a/priv/openCypher/cypher_2016_12_14_legacy.ebnf b/priv/openCypher/cypher_2016_12_20_legacy.ebnf similarity index 89% rename from priv/openCypher/cypher_2016_12_14_legacy.ebnf rename to priv/openCypher/cypher_2016_12_20_legacy.ebnf index b15cbdf..ab32205 100644 --- a/priv/openCypher/cypher_2016_12_14_legacy.ebnf +++ b/priv/openCypher/cypher_2016_12_20_legacy.ebnf @@ -25,7 +25,7 @@ AnyCypherOption = CypherOption CypherOption = (C,Y,P,H,E,R), [SP, VersionNumber], { SP, ConfigurationOption } ; -VersionNumber = DecimalInteger, '.', DecimalInteger ; +VersionNumber = RegularDecimalReal ; Explain = E,X,P,L,A,I,N ; @@ -133,9 +133,7 @@ SetItem = (PropertyExpression, '=', Expression) | (Variable, NodeLabels) ; -Delete = ((D,E,L,E,T,E), Expression, { ',', Expression }) - | ((D,E,T,A,C,H), SP, (D,E,L,E,T,E), Expression, { ',', Expression }) - ; +Delete = [(D,E,T,A,C,H), SP], (D,E,L,E,T,E), [SP], Expression, { [SP], ',', [SP], Expression } ; Remove = (R,E,M,O,V,E), SP, RemoveItem, { [SP], ',', [SP], RemoveItem } ; @@ -145,13 +143,9 @@ RemoveItem = (Variable, NodeLabels) Foreach = (F,O,R,E,A,C,H), [SP], '(', [SP], Variable, SP, (I,N), SP, Expression, [SP], '|', { SP, Clause }-, [SP], ')' ; -With = ((W,I,T,H), (D,I,S,T,I,N,C,T), SP, ReturnBody, [Where]) - | ((W,I,T,H), SP, ReturnBody, [Where]) - ; +With = (W,I,T,H), [[SP], (D,I,S,T,I,N,C,T)], SP, ReturnBody, [[SP], Where] ; -Return = ((R,E,T,U,R,N), SP, (D,I,S,T,I,N,C,T), SP, ReturnBody) - | ((R,E,T,U,R,N), SP, ReturnBody) - ; +Return = (R,E,T,U,R,N), [[SP], (D,I,S,T,I,N,C,T)], SP, ReturnBody ; ReturnBody = ReturnItems, [SP, Order], [SP, Skip], [SP, Limit] ; @@ -268,18 +262,12 @@ Expression3 = Expression2, { ([SP], '[', Expression, ']') | ([SP], '[', [Express Expression2 = Atom, { PropertyLookup | NodeLabels } ; -Atom = NumberLiteral - | StringLiteral +Atom = Literal | Parameter | LegacyParameter - | (T,R,U,E) - | (F,A,L,S,E) - | (N,U,L,L) | CaseExpression | ((C,O,U,N,T), [SP], '(', [SP], '*', [SP], ')') - | MapLiteral | ListComprehension - | ('[', [SP], Expression, [SP], { ',', [SP], Expression, [SP] }, ']') | ((F,I,L,T,E,R), [SP], '(', [SP], FilterExpression, [SP], ')') | ((E,X,T,R,A,C,T), [SP], '(', [SP], FilterExpression, [SP], [[SP], '|', Expression], ')') | Reduce @@ -294,6 +282,20 @@ Atom = NumberLiteral | Variable ; +Literal = NumberLiteral + | StringLiteral + | BooleanLiteral + | (N,U,L,L) + | MapLiteral + | ListLiteral + ; + +BooleanLiteral = (T,R,U,E) + | (F,A,L,S,E) + ; + +ListLiteral = '[', [SP], [Expression, [SP], { ',', [SP], Expression, [SP] }], ']' ; + Reduce = (R,E,D,U,C,E), [SP], '(', Variable, '=', Expression, ',', IdInColl, '|', Expression, ')' ; PartialComparisonExpression = ('=', [SP], Expression7) @@ -317,7 +319,7 @@ FunctionInvocation = FunctionName, [SP], '(', [SP], [(D,I,S,T,I,N,C,T), [SP]], [ FunctionName = SymbolicName ; -ListComprehension = '[', FilterExpression, [[SP], '|', Expression], ']' ; +ListComprehension = '[', [SP], FilterExpression, [[SP], '|', [SP], Expression], [SP], ']' ; PropertyLookup = [SP], '.', [SP], ((PropertyKeyName, ('?' | '!')) | PropertyKeyName) ; @@ -352,67 +354,57 @@ IntegerLiteral = HexInteger | DecimalInteger ; -HexInteger = ('0',X), HexString ; +HexInteger = ('0',X), { HexDigit }- ; -DecimalInteger = (('1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9'), [DigitString]) - | '0' +DecimalInteger = ZeroDigit + | (NonZeroDigit, { Digit }) ; -OctalInteger = '0', OctalString ; - -HexString = { HexDigit }- ; - -DigitString = { Digit }- ; - -OctalString = { OctDigit }- ; - -HexDigit = '0' - | '1' - | '2' - | '3' - | '4' - | '5' - | '6' - | '7' - | '8' - | '9' - | (A) - | (B) - | (C) - | (D) - | (E) - | (F) +OctalInteger = ZeroDigit, { OctDigit }- ; + +HexLetter = (A) + | (B) + | (C) + | (D) + | (E) + | (F) + ; + +HexDigit = Digit + | HexLetter ; -Digit = '0' - | '1' - | '2' - | '3' - | '4' - | '5' - | '6' - | '7' - | '8' - | '9' +Digit = ZeroDigit + | NonZeroDigit ; -OctDigit = '0' - | '1' - | '2' - | '3' - | '4' - | '5' - | '6' - | '7' +NonZeroDigit = NonZeroOctDigit + | '8' + | '9' + ; + +NonZeroOctDigit = '1' + | '2' + | '3' + | '4' + | '5' + | '6' + | '7' + ; + +OctDigit = ZeroDigit + | NonZeroOctDigit ; +ZeroDigit = '0' ; + DoubleLiteral = ExponentDecimalReal | RegularDecimalReal ; -ExponentDecimalReal = ({ Digit | '.' }- | DecimalInteger), ((E) | (E)), (DigitString | DecimalInteger) ; +ExponentDecimalReal = ({ Digit }- | ({ Digit }-, '.', { Digit }-) | ('.', { Digit }-)), ((E) | (E)), ['-'], { Digit }- ; -RegularDecimalReal = ({ Digit } | DecimalInteger), '.', (DigitString | DecimalInteger) ; +RegularDecimalReal = { Digit }, '.', { Digit }- ; SymbolicName = UnescapedSymbolicName | EscapedSymbolicName diff --git a/src/oclexer.xrl b/src/oclexer.xrl index 6932b01..8317b2d 100644 --- a/src/oclexer.xrl +++ b/src/oclexer.xrl @@ -4,7 +4,9 @@ Definitions. Rules. %% number literals -((([0-9]*\.)|[0-9]+)(e|E)[0-9]+) : {token, {'EXPONENT_DECIMAL_REAL', TokenLine, TokenChars}}. +((\.[0-9]+)(e|E)[-]?[0-9]+) : {token, {'EXPONENT_DECIMAL_REAL', TokenLine, TokenChars}}. +(([0-9]+)(e|E)[-]?[0-9]+) : {token, {'EXPONENT_DECIMAL_REAL', TokenLine, TokenChars}}. +(([0-9]+\.[0-9]+)(e|E)[-]?[0-9]+) : {token, {'EXPONENT_DECIMAL_REAL', TokenLine, TokenChars}}. ([0-9]*\.[0-9]+) : {token, {'REGULAR_DECIMAL_REAL', TokenLine, TokenChars}}. (0(x|X)([0-9]|[A-Fa-f])+) : {token, {'HEX_INTEGER', TokenLine, TokenChars}}. (0[0-7]+) : {token, {'OCTAL_INTEGER', TokenLine, TokenChars}}. diff --git a/src/oclexer_legacy.xrl b/src/oclexer_legacy.xrl index bb1039d..8f05723 100644 --- a/src/oclexer_legacy.xrl +++ b/src/oclexer_legacy.xrl @@ -4,7 +4,9 @@ Definitions. Rules. %% number literals -((([0-9]*\.)|[0-9]+)(e|E)[0-9]+) : {token, {'EXPONENT_DECIMAL_REAL', TokenLine, TokenChars}}. +((\.[0-9]+)(e|E)[-]?[0-9]+) : {token, {'EXPONENT_DECIMAL_REAL', TokenLine, TokenChars}}. +(([0-9]+)(e|E)[-]?[0-9]+) : {token, {'EXPONENT_DECIMAL_REAL', TokenLine, TokenChars}}. +(([0-9]+\.[0-9]+)(e|E)[-]?[0-9]+) : {token, {'EXPONENT_DECIMAL_REAL', TokenLine, TokenChars}}. ([0-9]+\.[0-9]+) : {token, {'REGULAR_DECIMAL_REAL', TokenLine, TokenChars}}. (0(x|X)([0-9]|[A-Fa-f])+) : {token, {'HEX_INTEGER', TokenLine, TokenChars}}. (0[0-7]+) : {token, {'OCTAL_INTEGER', TokenLine, TokenChars}}. diff --git a/src/ocparse.app.src b/src/ocparse.app.src index 4ea5a80..738754f 100644 --- a/src/ocparse.app.src +++ b/src/ocparse.app.src @@ -21,6 +21,6 @@ octest_legacy ] }, - {vsn, "1.2.3"} + {vsn, "1.2.4"} ] }. diff --git a/src/ocparse.yrl b/src/ocparse.yrl index fe17b12..46beca7 100644 --- a/src/ocparse.yrl +++ b/src/ocparse.yrl @@ -8,6 +8,7 @@ Nonterminals %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% anonymous_pattern_part atom + boolean_literal clause clause_list create @@ -48,6 +49,8 @@ Nonterminals label_name limit list_comprehension + list_literal + literal map_literal match merge @@ -198,7 +201,6 @@ Terminals '<--' '-->' '--' - '[..]' . %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% @@ -495,8 +497,8 @@ node_label_list -> node_label_list node_label node_label -> ':' label_name : {nodeLabel, '$2'}. range_literal -> '*' : {rangeLiteral, [], [], []}. -range_literal -> '*' '..' : {rangeLiteral, [], "..", []}. -range_literal -> '*' '..' integer_literal : {rangeLiteral, [], "..", '$3'}. +range_literal -> '*' '..' : {rangeLiteral, [], "..", []}. +range_literal -> '*' '..' integer_literal : {rangeLiteral, [], "..", '$3'}. range_literal -> '*' integer_literal : {rangeLiteral, '$2', [], []}. range_literal -> '*' integer_literal '..' : {rangeLiteral, '$2', "..", []}. range_literal -> '*' integer_literal '..' integer_literal : {rangeLiteral, '$2', "..", '$4'}. @@ -640,17 +642,10 @@ expression_2_addon_list -> expression_2_addon_list node_labels expression_2_addon_list -> expression_2_addon_list property_lookup : '$1' ++ ['$2']. %% ===================================================================================================================== -atom -> number_literal : {atom, '$1'}. -atom -> STRING_LITERAL : {atom, {stringLiteral, unwrap('$1')}}. +atom -> literal : {atom, '$1'}. atom -> parameter : {atom, '$1'}. -atom -> TRUE : {atom, {terminal, "true"}}. -atom -> FALSE : {atom, {terminal, "false"}}. -atom -> NULL : {atom, {terminal, "null"}}. atom -> COUNT '(' '*' ')' : {atom, {terminal, "count(*)"}}. -atom -> map_literal : {atom, '$1'}. atom -> list_comprehension : {atom, '$1'}. -atom -> '[' expression_commalist ']' : {atom, '$2', [], "]"}. -atom -> '[' id_in_coll ',' expression_commalist ']' : {atom, '$2', '$4', "]"}. atom -> FILTER '(' filter_expression ')' : {atom, {'filter', '$3'}}. atom -> EXTRACT '(' filter_expression '|' expression ')' : {atom, {'extract', '$3', '$5'}}. atom -> EXTRACT '(' filter_expression ')' : {atom, {'extract', '$3', []}}. @@ -663,6 +658,18 @@ atom -> parenthesized_expression atom -> function_invocation : {atom, '$1'}. atom -> variable : {atom, '$1'}. +literal -> number_literal : {literal, '$1'}. +literal -> STRING_LITERAL : {literal, {stringLiteral, unwrap('$1')}}. +literal -> boolean_literal : {literal, '$1'}. +literal -> NULL : {literal, {terminal, "null"}}. +literal -> map_literal : {literal, '$1'}. +literal -> list_literal : {literal, '$1'}. + +boolean_literal -> TRUE : {booleanLiteral, {terminal, "true"}}. +boolean_literal -> FALSE : {booleanLiteral, {terminal, "false"}}. + +list_literal -> '[' expression_commalist ']' : {listLiteral, '$2'}. + partial_comparison_expression -> '=' expression_7 : {partialComparisonExpression, '$2', "="}. partial_comparison_expression -> '<>' expression_7 : {partialComparisonExpression, '$2', "<>"}. partial_comparison_expression -> '!=' expression_7 : {partialComparisonExpression, '$2', "!="}. diff --git a/src/ocparse_fold.erl b/src/ocparse_fold.erl index 7fc4849..7037db4 100644 --- a/src/ocparse_fold.erl +++ b/src/ocparse_fold.erl @@ -142,11 +142,9 @@ fold(FType, Fun, Ctx, Lvl, {Type, Value} = ST) fold(FType, Fun, Ctx, Lvl, {atom, {Type, _} = Value} = ST) when Type == functionInvocation; Type == listComprehension; - Type == mapLiteral; - Type == numberLiteral; + Type == literal; Type == parameter; Type == parenthesizedExpression; - Type == stringLiteral; Type == terminal; Type == variable -> ?debugFmt("wwe debugging fold/5 ===> Start ~p~n ST: ~p~n", [Lvl, ST]), @@ -214,45 +212,24 @@ fold(FType, Fun, Ctx, Lvl, {atom, {extract = Type, FilterExpression, Expression} RT = {atom_to_list(Type) ++ "(" ++ FilterExpressionNew ++ "|" ++ ExpressionNew ++ ")", NewCtx4}, ?debugFmt("wwe debugging fold/5 ===> ~n RT: ~p~n", [RT]), RT; -fold(FType, Fun, Ctx, Lvl, {atom, Value, [], "]"} = ST) - when is_list(Value) -> - ?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, {expressionCommalist, Value}), - NewCtx2 = case FType of - top_down -> NewCtx1; - bottom_up -> Fun(ST, NewCtx1) - end, - RT = {"[" ++ ValueNew ++ "]", NewCtx2}, - ?debugFmt("wwe debugging fold/5 ===> ~n RT: ~p~n", [RT]), - RT; -fold(FType, Fun, Ctx, Lvl, {atom, Value1, Value2, "]"} = ST) - when is_list(Value2) -> +fold(FType, Fun, Ctx, Lvl, {atom, {Type, _, _} = Value} = ST) + when Type == functionInvocation; + Type == listComprehension; + Type == relationshipsPattern -> ?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, - {Value1New, NewCtx1} = fold(FType, Fun, NewCtx, Lvl + 1, Value1), + {ValueNew, NewCtx1} = fold(FType, Fun, NewCtx, Lvl + 1, Value), NewCtx2 = case FType of top_down -> NewCtx1; bottom_up -> Fun(ST, NewCtx1) end, - {Value2New, NewCtx3} = fold(FType, Fun, NewCtx2, Lvl + 1, {expressionCommalist, Value2}), - NewCtx4 = case FType of - top_down -> NewCtx3; - bottom_up -> Fun(ST, NewCtx3) - end, - RT = {"[" ++ Value1New ++ "," ++ Value2New ++ "]", NewCtx4}, + RT = {ValueNew, NewCtx2}, ?debugFmt("wwe debugging fold/5 ===> ~n RT: ~p~n", [RT]), RT; -fold(FType, Fun, Ctx, Lvl, {atom, {Type, _, _} = Value} = ST) - when Type == functionInvocation; - Type == listComprehension; - Type == relationshipsPattern -> +fold(FType, Fun, Ctx, Lvl, {atom, {functionInvocation, _, _, _} = Value} = ST) -> ?debugFmt("wwe debugging fold/5 ===> Start ~p~n ST: ~p~n", [Lvl, ST]), NewCtx = case FType of top_down -> Fun(ST, Ctx); @@ -266,7 +243,12 @@ fold(FType, Fun, Ctx, Lvl, {atom, {Type, _, _} = Value} = ST) RT = {ValueNew, NewCtx2}, ?debugFmt("wwe debugging fold/5 ===> ~n RT: ~p~n", [RT]), RT; -fold(FType, Fun, Ctx, Lvl, {atom, {functionInvocation, _, _, _} = Value} = ST) -> + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% booleanLiteral +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +fold(FType, Fun, Ctx, Lvl, {booleanLiteral, {terminal, _} = Value} = ST) -> ?debugFmt("wwe debugging fold/5 ===> Start ~p~n ST: ~p~n", [Lvl, ST]), NewCtx = case FType of top_down -> Fun(ST, Ctx); @@ -948,6 +930,50 @@ fold(FType, Fun, Ctx, Lvl, {listComprehension, FilterExpression, Expression} = S ?debugFmt("wwe debugging fold/5 ===> ~n RT: ~p~n", [RT]), RT; +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% listLiteral +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +fold(FType, Fun, Ctx, Lvl, {listLiteral, ExpressionCommalist} = 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, + {ExpressionCommalistNew, NewCtx1} = fold(FType, Fun, NewCtx, Lvl + 1, {expressionCommalist, ExpressionCommalist}), + NewCtx2 = case FType of + top_down -> NewCtx1; + bottom_up -> Fun(ST, NewCtx1) + end, + RT = {"[" ++ ExpressionCommalistNew ++ "]", NewCtx2}, + ?debugFmt("wwe debugging fold/5 ===> ~n RT: ~p~n", [RT]), + RT; + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% literal +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +fold(FType, Fun, Ctx, Lvl, {literal, {Type, _} = Value} = ST) + when Type == booleanLiteral; + Type == listLiteral; + Type == mapLiteral; + Type == numberLiteral; + Type == stringLiteral; + Type == terminal -> + ?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 = {ValueNew, NewCtx2}, + ?debugFmt("wwe debugging fold/5 ===> ~n RT: ~p~n", [RT]), + RT; + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % mapLiteral %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% diff --git a/src/ocparse_fold_legacy.erl b/src/ocparse_fold_legacy.erl index 2dbec32..b31a1fd 100644 --- a/src/ocparse_fold_legacy.erl +++ b/src/ocparse_fold_legacy.erl @@ -145,11 +145,9 @@ fold(FType, Fun, Ctx, Lvl, {atom, {Type, _} = Value} = ST) Type == functionInvocation; Type == legacyParameter; Type == listComprehension; - Type == mapLiteral; - Type == numberLiteral; + Type == literal; Type == parameter; Type == parenthesizedExpression; - Type == stringLiteral; Type == terminal; Type == variable -> ?debugFmt("wwe debugging fold/5 ===> Start ~p~n ST: ~p~n", [Lvl, ST]), @@ -217,47 +215,28 @@ fold(FType, Fun, Ctx, Lvl, {atom, {extract = Type, FilterExpression, Expression} RT = {atom_to_list(Type) ++ "(" ++ FilterExpressionNew ++ "|" ++ ExpressionNew ++ ")", NewCtx4}, ?debugFmt("wwe debugging fold/5 ===> ~n RT: ~p~n", [RT]), RT; -fold(FType, Fun, Ctx, Lvl, {atom, Value, [], "]"} = ST) - when is_list(Value) -> - ?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, {expressionCommalist, Value}), - NewCtx2 = case FType of - top_down -> NewCtx1; - bottom_up -> Fun(ST, NewCtx1) - end, - RT = {"[" ++ ValueNew ++ "]", NewCtx2}, - ?debugFmt("wwe debugging fold/5 ===> ~n RT: ~p~n", [RT]), - RT; -fold(FType, Fun, Ctx, Lvl, {atom, Value1, Value2, "]"} = ST) - when is_list(Value2) -> +fold(FType, Fun, Ctx, Lvl, {atom, {Type, _, _} = Value} = ST) + when Type == caseExpression; + Type == functionInvocation; + Type == listComprehension; + Type == relationshipsPattern; + Type == shortestPathPattern -> ?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, - {Value1New, NewCtx1} = fold(FType, Fun, NewCtx, Lvl + 1, Value1), + {ValueNew, NewCtx1} = fold(FType, Fun, NewCtx, Lvl + 1, Value), NewCtx2 = case FType of top_down -> NewCtx1; bottom_up -> Fun(ST, NewCtx1) end, - {Value2New, NewCtx3} = fold(FType, Fun, NewCtx2, Lvl + 1, {expressionCommalist, Value2}), - NewCtx4 = case FType of - top_down -> NewCtx3; - bottom_up -> Fun(ST, NewCtx3) - end, - RT = {"[" ++ Value1New ++ "," ++ Value2New ++ "]", NewCtx4}, + RT = {ValueNew, NewCtx2}, ?debugFmt("wwe debugging fold/5 ===> ~n RT: ~p~n", [RT]), RT; -fold(FType, Fun, Ctx, Lvl, {atom, {Type, _, _} = Value} = ST) +fold(FType, Fun, Ctx, Lvl, {atom, {Type, _, _, _} = Value} = ST) when Type == caseExpression; - Type == functionInvocation; - Type == listComprehension; - Type == relationshipsPattern; - Type == shortestPathPattern -> + Type == functionInvocation -> ?debugFmt("wwe debugging fold/5 ===> Start ~p~n ST: ~p~n", [Lvl, ST]), NewCtx = case FType of top_down -> Fun(ST, Ctx); @@ -271,9 +250,7 @@ fold(FType, Fun, Ctx, Lvl, {atom, {Type, _, _} = Value} = ST) RT = {ValueNew, NewCtx2}, ?debugFmt("wwe debugging fold/5 ===> ~n RT: ~p~n", [RT]), RT; -fold(FType, Fun, Ctx, Lvl, {atom, {Type, _, _, _} = Value} = ST) - when Type == caseExpression; - Type == functionInvocation -> +fold(FType, Fun, Ctx, Lvl, {atom, {reduce, _, _, _, _} = Value} = ST) -> ?debugFmt("wwe debugging fold/5 ===> Start ~p~n ST: ~p~n", [Lvl, ST]), NewCtx = case FType of top_down -> Fun(ST, Ctx); @@ -287,7 +264,12 @@ fold(FType, Fun, Ctx, Lvl, {atom, {Type, _, _, _} = Value} = ST) RT = {ValueNew, NewCtx2}, ?debugFmt("wwe debugging fold/5 ===> ~n RT: ~p~n", [RT]), RT; -fold(FType, Fun, Ctx, Lvl, {atom, {reduce, _, _, _, _} = Value} = ST) -> + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% booleanLiteral +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +fold(FType, Fun, Ctx, Lvl, {booleanLiteral, {terminal, _} = Value} = ST) -> ?debugFmt("wwe debugging fold/5 ===> Start ~p~n ST: ~p~n", [Lvl, ST]), NewCtx = case FType of top_down -> Fun(ST, Ctx); @@ -1494,6 +1476,50 @@ fold(FType, Fun, Ctx, Lvl, {listComprehension, FilterExpression, Expression} = S ?debugFmt("wwe debugging fold/5 ===> ~n RT: ~p~n", [RT]), RT; +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% listLiteral +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +fold(FType, Fun, Ctx, Lvl, {listLiteral, ExpressionCommalist} = 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, + {ExpressionCommalistNew, NewCtx1} = fold(FType, Fun, NewCtx, Lvl + 1, {expressionCommalist, ExpressionCommalist}), + NewCtx2 = case FType of + top_down -> NewCtx1; + bottom_up -> Fun(ST, NewCtx1) + end, + RT = {"[" ++ ExpressionCommalistNew ++ "]", NewCtx2}, + ?debugFmt("wwe debugging fold/5 ===> ~n RT: ~p~n", [RT]), + RT; + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% literal +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +fold(FType, Fun, Ctx, Lvl, {literal, {Type, _} = Value} = ST) + when Type == booleanLiteral; + Type == listLiteral; + Type == mapLiteral; + Type == numberLiteral; + Type == stringLiteral; + Type == terminal -> + ?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 = {ValueNew, NewCtx2}, + ?debugFmt("wwe debugging fold/5 ===> ~n RT: ~p~n", [RT]), + RT; + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % literalIds %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% diff --git a/src/ocparse_legacy.yrl b/src/ocparse_legacy.yrl index 746ac14..54135e6 100644 --- a/src/ocparse_legacy.yrl +++ b/src/ocparse_legacy.yrl @@ -10,6 +10,7 @@ Nonterminals any_cypher_option any_cypher_option_list atom + boolean_literal bulk_import_query case_alternatives case_alternatives_list @@ -76,6 +77,8 @@ Nonterminals legacy_parameter limit list_comprehension + list_literal + literal literal_ids load_csv load_csv_query @@ -889,17 +892,10 @@ expression_2_addon_list -> expression_2_addon_list node_labels expression_2_addon_list -> expression_2_addon_list property_lookup : '$1' ++ ['$2']. %% ===================================================================================================================== -atom -> number_literal : {atom, '$1'}. -atom -> STRING_LITERAL : {atom, {stringLiteral, unwrap('$1')}}. +atom -> literal : {atom, '$1'}. atom -> parameter : {atom, '$1'}. -atom -> TRUE : {atom, {terminal, "true"}}. -atom -> FALSE : {atom, {terminal, "false"}}. -atom -> NULL : {atom, {terminal, "null"}}. atom -> COUNT '(' '*' ')' : {atom, {terminal, "count(*)"}}. -atom -> map_literal : {atom, '$1'}. atom -> list_comprehension : {atom, '$1'}. -atom -> '[' expression_commalist ']' : {atom, '$2', [], "]"}. -atom -> '[' id_in_coll ',' expression_commalist ']' : {atom, '$2', '$4', "]"}. atom -> FILTER '(' filter_expression ')' : {atom, {'filter', '$3'}}. atom -> EXTRACT '(' filter_expression '|' expression ')' : {atom, {'extract', '$3', '$5'}}. atom -> EXTRACT '(' filter_expression ')' : {atom, {'extract', '$3', []}}. @@ -916,6 +912,18 @@ atom -> case_expression atom -> reduce : {atom, '$1'}. atom -> shortest_path_pattern : {atom, '$1'}. +literal -> number_literal : {literal, '$1'}. +literal -> STRING_LITERAL : {literal, {stringLiteral, unwrap('$1')}}. +literal -> boolean_literal : {literal, '$1'}. +literal -> NULL : {literal, {terminal, "null"}}. +literal -> map_literal : {literal, '$1'}. +literal -> list_literal : {literal, '$1'}. + +boolean_literal -> TRUE : {booleanLiteral, {terminal, "true"}}. +boolean_literal -> FALSE : {booleanLiteral, {terminal, "false"}}. + +list_literal -> '[' expression_commalist ']' : {listLiteral, '$2'}. + reduce -> REDUCE '(' variable '=' expression ',' id_in_coll '|' expression ')' : {reduce, '$3', '$5', '$7', '$9'}. partial_comparison_expression -> '=' expression_7 : {partialComparisonExpression, '$2', "="}. diff --git a/src/octest.erl b/src/octest.erl index 2e2433c..9f96a66 100644 --- a/src/octest.erl +++ b/src/octest.erl @@ -8,7 +8,7 @@ -compile(export_all). -%-define(NODEBUG, true). +-define(NODEBUG, true). -include_lib("common_test/include/ct.hrl"). -include_lib("eunit/include/eunit.hrl"). diff --git a/src/test_generator.erl b/src/test_generator.erl index e5bcb50..4b5d8c7 100644 --- a/src/test_generator.erl +++ b/src/test_generator.erl @@ -2,14 +2,9 @@ -export([generate/0]). --define(ALL_ATOM, [number_literal, - string_literal, +-define(ALL_ATOM, [literal, parameter, - atom_true, - atom_false, - atom_null, atom_count, - map_literal, list_comprehension, atom_square_bracket, atom_filter, @@ -22,16 +17,11 @@ parenthesized_expression, function_invocation, variable]). --define(ALL_ATOM_LEGACY, [number_literal, - string_literal, +-define(ALL_ATOM_LEGACY, [literal, parameter, legacy_parameter, - atom_true, - atom_false, - atom_null, case_expression, atom_count, - map_literal, list_comprehension, atom_square_bracket, atom_filter, @@ -185,20 +175,32 @@ create_code(Legacy) -> % ----------------------------------------------------- % Atom = ... -% | (T,R,U,E) -% | (F,A,L,S,E) % | (N,U,L,L) % | ((C,O,U,N,T), [SP], '(', [SP], '*', [SP], ')') % | ... ; % ----------------------------------------------------- AtomCount = ["Count(*)", "Count ( * )"], insert_table(Legacy, atom_count, AtomCount), - AtomFalse = ["False"], - insert_table(Legacy, atom_false, AtomFalse), AtomNull = ["Null"], insert_table(Legacy, atom_null, AtomNull), - AtomTrue = ["True"], - insert_table(Legacy, atom_true, AtomTrue), +% --------------------------------------------------------------------------------------- +% BooleanLiteral = (T,R,U,E) +% | (F,A,L,S,E) +% ; +% --------------------------------------------------------------------------------------- + BooleanLiteral = sort_list_random([ + "true", + "true", + "true", + "true", + "true", + "false", + "false", + "false", + "false", + "false" + ]), + insert_table(Legacy, boolean_literal, BooleanLiteral), % --------------------------------------------------------------------------------------- % DecimalInteger = (('1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9'), [DigitString]) % | '0' ; @@ -244,16 +246,37 @@ create_code(Legacy) -> ExponentDecimalReal = sort_list_random([ "9e0", "9e1", + "9e-1", "9e12", + "9e-12", "0e0", + "0e-0", "1e1", + "1e-1", "12e12", - ".e0", - ".e1", - ".e12", - "0.e0", - "1.e1", - "12.e12" + "12e-12", + ".9e0", + ".9e1", + ".9e-1", + ".9e12", + ".9e-12", + ".0e0", + ".0e-0", + ".1e1", + ".1e-1", + ".12e12", + ".12e-12", + "1.9e0", + "2.9e1", + "3.9e-1", + "4.9e12", + "5.9e-12", + "6.0e0", + "7.0e-0", + "8.1e1", + "9.1e-1", + "10.12e12", + "11.12e-12" ]), insert_table(Legacy, exponent_decimal_real, ExponentDecimalReal), % --------------------------------- @@ -516,29 +539,43 @@ create_code(Legacy) -> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % ------------------------------------------------------ -% Atom = NumberLiteral +% Literal_Part_1 = NumberLiteral % | StringLiteral +% | BooleanLiteral +% | (N,U,L,L) +% | ... +% ------------------------------------------------------ + Literal_Part_1 = sort_list_random( + NumberLiteral ++ + StringLiteral ++ + BooleanLiteral ++ + AtomNull ++ + AtomNull ++ + AtomNull ++ + AtomNull ++ + AtomNull), + insert_table(Legacy, literal_part_1, Literal_Part_1), + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%% Level 5 +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +% ------------------------------------------------------ +% Atom = Literal % | Parameter % | LegacyParameter -% | (T,R,U,E) -% | (F,A,L,S,E) -% | (N,U,L,L) % | ... % | ((C,O,U,N,T), [SP], '(', [SP], '*', [SP], ')') % | ... % | Variable ; % ------------------------------------------------------ Atom_Part_1 = sort_list_random( - NumberLiteral ++ - StringLiteral ++ + Literal_Part_1 ++ Parameter ++ case Legacy of true -> LegacyParameter; _ -> [] end ++ - AtomTrue ++ - AtomFalse ++ - AtomNull ++ AtomCount ++ Variable), insert_table(Legacy, atom_part_1, Atom_Part_1), @@ -687,7 +724,7 @@ create_code(Legacy) -> insert_table(Legacy, rel_type, RelType), %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%% Level 5 +%% Level 6 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % ------------------------------ @@ -831,7 +868,7 @@ create_code(Legacy) -> insert_table(Legacy, relationship_pattern_syntax, RelationshipPatternSyntax), %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%% Level 6 +%% Level 7 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % --------------------------- @@ -882,7 +919,7 @@ create_code(Legacy) -> insert_table(Legacy, where, Where), %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%% Level 7 +%% Level 8 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % ----------------------------------------------------------------------------------- @@ -933,6 +970,23 @@ create_code(Legacy) -> ]), IdInColl_Length = length(IdInColl), insert_table(Legacy, id_in_coll, IdInColl), +% ----------------------------------------------------------------------------------- +% ListLiteral = '[', [SP], [Expression, [SP], { ',', [SP], Expression, [SP] }], ']' ; +% ----------------------------------------------------------------------------------- + ListLiteral = sort_list_random([ + "[" ++ ?SP_OPT ++ + lists:nth(rand:uniform(Expression_Part_1_Length), Expression_Part_1) ++ ?SP_OPT ++ + case rand:uniform(?PRIME) rem 3 of + 1 -> + "," ++ ?SP_OPT ++ lists:nth(rand:uniform(Expression_Part_1_Length), Expression_Part_1) ++ ?SP_OPT ++ + "," ++ ?SP_OPT ++ lists:nth(rand:uniform(Expression_Part_1_Length), Expression_Part_1) ++ ?SP_OPT; + 2 -> "," ++ ?SP_OPT ++ lists:nth(rand:uniform(Expression_Part_1_Length), Expression_Part_1) ++ ?SP_OPT; + _ -> [] + end ++ + "]" + || _ <- lists:seq(1, ?MAX_RULE_ATOM) + ]), + insert_table(Legacy, list_literal, ListLiteral), % ------------------------------------------------------------------------------------------------------------------------------------------------------ % MapLiteral = '{', [SP], [PropertyKeyName, [SP], ':', [SP], Expression, [SP], { ',', [SP], PropertyKeyName, [SP], ':', [SP], Expression, [SP] }], '}' ; % ------------------------------------------------------------------------------------------------------------------------------------------------------ @@ -983,7 +1037,7 @@ create_code(Legacy) -> insert_table(Legacy, start_point, StartPoint), %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%% Level 8 +%% Level 9 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ @@ -1052,6 +1106,18 @@ create_code(Legacy) -> ]), FilterExpression_Length = length(FilterExpression), insert_table(Legacy, filter_expression, FilterExpression), +% ------------------------------------------------------------------------------------------------ +% Literal = ... +% | MapLiteral +% | ListLiteral +% ; +% ------------------------------------------------------------------------------------------------ + Literal = sort_list_random( + Literal_Part_1 ++ + MapLiteral), +%% MapLiteral ++ +%% ListLiteral), + insert_table(Legacy, literal, Literal), % ------------------------------ % Properties = MapLiteral % | Parameter @@ -1084,7 +1150,7 @@ create_code(Legacy) -> insert_table(Legacy, reduce, Reduce), %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%% Level 9 +%% Level 10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % ------------------------------------------------------------------------- @@ -1228,7 +1294,7 @@ create_code(Legacy) -> insert_table(Legacy, relationship_detail, RelationshipDetail), %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%% Level 10 +%% Level 11 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % --------------------------------------------------------------------------------------------------------------- @@ -1262,7 +1328,7 @@ create_code(Legacy) -> insert_table(Legacy, relationship_pattern, RelationshipPattern), %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%% Level 11 +%% Level 12 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % -------------------------------------------------------------- @@ -1278,7 +1344,7 @@ create_code(Legacy) -> insert_table(Legacy, pattern_element_chain, PatternElementChain), %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%% Level 12 +%% Level 13 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % ------------------------------------------------------------- @@ -1332,7 +1398,7 @@ create_code(Legacy) -> insert_table(Legacy, relationships_pattern, RelationshipsPattern), %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%% Level 13 +%% Level 14 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % ------------------------------------------------------------------------------------- @@ -1353,7 +1419,7 @@ create_code(Legacy) -> insert_table(Legacy, shortest_path_pattern, ShortestPathPattern), %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%% Level 14 +%% Level 15 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % ------------------------------------------ @@ -1375,7 +1441,6 @@ create_code(Legacy) -> % ----------------------------------------------------------------------------------------------- % Atom = ... -% | ('[', [SP], Expression, [SP], { ',', [SP], Expression, [SP] }, ']') % | ((F,I,L,T,E,R), [SP], '(', [SP], FilterExpression, [SP], ')') % | ((E,X,T,R,A,C,T), [SP], '(', [SP], FilterExpression, [SP], [[SP], '|', Expression], ')') % | ... @@ -1385,21 +1450,6 @@ create_code(Legacy) -> % | ((S,I,N,G,L,E), [SP], '(', [SP], FilterExpression, [SP], ')') % | ... % ------------------------------------------------------------------------------------------------- - AtomSquareBracket = sort_list_random([ - "[" ++ ?SP_OPT ++ - lists:nth(rand:uniform(Expression_Part_1_Length), Expression_Part_1) ++ ?SP_OPT ++ - case rand:uniform(?PRIME) rem 3 of - 1 -> - "," ++ ?SP_OPT ++ lists:nth(rand:uniform(Expression_Part_1_Length), Expression_Part_1) ++ ?SP_OPT ++ - "," ++ ?SP_OPT ++ lists:nth(rand:uniform(Expression_Part_1_Length), Expression_Part_1) ++ ?SP_OPT; - 2 -> "," ++ ?SP_OPT ++ lists:nth(rand:uniform(Expression_Part_1_Length), Expression_Part_1) ++ ?SP_OPT; - _ -> [] - end ++ - "]" - || _ <- lists:seq(1, ?MAX_RULE_ATOM) - ]), - insert_table(Legacy, atom_square_bracket, AtomSquareBracket), - AtomFilter = sort_list_random([ "Filter" ++ ?SP_OPT ++ "(" ++ ?SP_OPT ++ lists:nth(rand:uniform(FilterExpression_Length), FilterExpression) ++ ?SP_OPT ++ @@ -1453,12 +1503,11 @@ create_code(Legacy) -> ]), insert_table(Legacy, atom_single, AtomSingle), % ------------------------------------------------------------------------------------------------ -% Atom = ... +% Atom = Literal +% | ... % | CaseExpression % | ... -% | MapLiteral % | ListComprehension -% | ('[', [SP], Expression, [SP], { ',', [SP], Expression, [SP] }, ']') % | ((F,I,L,T,E,R), [SP], '(', [SP], FilterExpression, [SP], ')') % | ((E,X,T,R,A,C,T), [SP], '(', [SP], FilterExpression, [SP], [[SP], '|', Expression], ')') % | Reduce @@ -1474,13 +1523,12 @@ create_code(Legacy) -> % ------------------------------------------------------------------------------------------------ Atom = sort_list_random( Atom_Part_1 ++ + Literal ++ case Legacy of true -> CaseExpression; _ -> [] end ++ - MapLiteral ++ ListComprehension ++ - AtomSquareBracket ++ AtomFilter ++ AtomExtract ++ case Legacy of @@ -1544,7 +1592,10 @@ create_code(Legacy) -> PropertyExpression_Targ = max(Atom_Length, PropertyLookup_Length), PropertyExpression = sort_list_random([ lists:nth(rand:uniform(Atom_Length), Atom) ++ - case rand:uniform(?PRIME) rem 2 of + case rand:uniform(?PRIME) rem 5 of + 3 -> ?SP_OPT ++ lists:nth(rand:uniform(PropertyLookup_Length), PropertyLookup) ++ + ?SP_OPT ++ lists:nth(rand:uniform(PropertyLookup_Length), PropertyLookup) ++ + ?SP_OPT ++ lists:nth(rand:uniform(PropertyLookup_Length), PropertyLookup); 2 -> ?SP_OPT ++ lists:nth(rand:uniform(PropertyLookup_Length), PropertyLookup) ++ ?SP_OPT ++ lists:nth(rand:uniform(PropertyLookup_Length), PropertyLookup); _ -> ?SP_OPT ++ lists:nth(rand:uniform(PropertyLookup_Length), PropertyLookup) @@ -1863,35 +1914,30 @@ create_code(Legacy) -> _ -> [] end, insert_table(Legacy, create_unique_constraint, CreateUniqueConstraint), -% ---------------------------------------------------------------------------------- -% Delete = ((D,E,L,E,T,E), Expression, { ',', Expression }) -% | ((D,E,T,A,C,H), SP, (D,E,L,E,T,E), Expression, { ',', Expression }) ; -% ---------------------------------------------------------------------------------- -% wwe ??? -% Delete = ((D,E,L,E,T,E), SP, Expression, { ',', Expression }) -% | ((D,E,T,A,C,H), SP, (D,E,L,E,T,E), SP, Expression, { ',', Expression }) ; -% ---------------------------------------------------------------------------------- +% ------------------------------------------------------------------------------------------------ +% Delete = [(D,E,T,A,C,H), SP], (D,E,L,E,T,E), [SP], Expression, { [SP], ',', [SP], Expression } ; +% ------------------------------------------------------------------------------------------------ Delete = sort_list_random([ case rand:uniform(?PRIME) rem 6 of 1 -> "Detach" ++ ?SP ++ "Delete" ++ ?SP ++ lists:nth(rand:uniform(Expression_Length), Expression) ++ - "," ++ lists:nth(rand:uniform(Expression_Length), Expression) ++ - "," ++ lists:nth(rand:uniform(Expression_Length), Expression); + ?SP_OPT ++ "," ++ ?SP_OPT ++ lists:nth(rand:uniform(Expression_Length), Expression) ++ + ?SP_OPT ++ "," ++ ?SP_OPT ++ lists:nth(rand:uniform(Expression_Length), Expression); 2 -> "Detach" ++ ?SP ++ "Delete" ++ ?SP ++ lists:nth(rand:uniform(Expression_Length), Expression) ++ - "," ++ lists:nth(rand:uniform(Expression_Length), Expression); + ?SP_OPT ++ "," ++ ?SP_OPT ++ lists:nth(rand:uniform(Expression_Length), Expression); 3 -> "Detach" ++ ?SP ++ "Delete" ++ ?SP ++ lists:nth(rand:uniform(Expression_Length), Expression); 4 -> "Delete" ++ ?SP ++ lists:nth(rand:uniform(Expression_Length), Expression) ++ - "," ++ lists:nth(rand:uniform(Expression_Length), Expression) ++ - "," ++ lists:nth(rand:uniform(Expression_Length), Expression); + ?SP_OPT ++ "," ++ ?SP_OPT ++ lists:nth(rand:uniform(Expression_Length), Expression) ++ + ?SP_OPT ++ "," ++ ?SP_OPT ++ lists:nth(rand:uniform(Expression_Length), Expression); 5 -> "Delete" ++ ?SP ++ lists:nth(rand:uniform(Expression_Length), Expression) ++ - "," ++ lists:nth(rand:uniform(Expression_Length), Expression); + ?SP_OPT ++ "," ++ ?SP_OPT ++ lists:nth(rand:uniform(Expression_Length), Expression); _ -> "Delete" ++ ?SP ++ lists:nth(rand:uniform(Expression_Length), Expression) end @@ -2076,10 +2122,9 @@ create_code(Legacy) -> || _ <- lists:seq(1, ?MAX_CLAUSE) ]), insert_table(Legacy, remove, Remove), -% --------------------------------------------------------------- -% Return = ((R,E,T,U,R,N), SP, (D,I,S,T,I,N,C,T), SP, ReturnBody) -% | ((R,E,T,U,R,N), SP, ReturnBody) ; -% --------------------------------------------------------------- +% ------------------------------------------------------------------- +% Return = (R,E,T,U,R,N), [[SP], (D,I,S,T,I,N,C,T)], SP, ReturnBody ; +% ------------------------------------------------------------------- Return = sort_list_random([ "Return" ++ ?SP ++ case rand:uniform(?PRIME) rem 2 of @@ -2144,14 +2189,9 @@ create_code(Legacy) -> || _ <- lists:seq(1, ?MAX_CLAUSE) ]), insert_table(Legacy, unwind, Unwind), -% ------------------------------------------------------------------ -% With = ((W,I,T,H), (D,I,S,T,I,N,C,T), SP, ReturnBody, [Where]) -% | ((W,I,T,H), SP, ReturnBody, [Where]) -% ------------------------------------------------------------------ -% wwe ???- -% With = ((W,I,T,H), (D,I,S,T,I,N,C,T), SP, ReturnBody, [SP, Where]) -% | ((W,I,T,H), SP, ReturnBody, [SP, Where]) -% ------------------------------------------------------------------ +% ---------------------------------------------------------------------------- +% With = (W,I,T,H), [[SP], (D,I,S,T,I,N,C,T)], SP, ReturnBody, [[SP], Where] ; +% ---------------------------------------------------------------------------- With = sort_list_random([ "With" ++ ?SP ++ case rand:uniform(?PRIME) rem 4 of diff --git a/test/ocparse_test.erl b/test/ocparse_test.erl index c2fdd1d..7d01ab9 100644 --- a/test/ocparse_test.erl +++ b/test/ocparse_test.erl @@ -1,5 +1,6 @@ -module(ocparse_test). +-define(NODEBUG, true). -include_lib("eunit/include/eunit.hrl"). -export([test_cypher/3]). @@ -11,7 +12,7 @@ cypher_test_() -> Cypher when is_list(Cypher) -> Cypher; _ -> "*" end ++ ".tst", - % ?debugFmt("wwe debugging cypher_test_ ===> ~n WCard: ~p~n", [WCard]), + ?debugFmt("wwe debugging cypher_test_ ===> ~n WCard: ~p~n", [WCard]), Logs = case os:getenv("LOG") of V when length(V) > 0 -> case lists:map( @@ -25,14 +26,14 @@ cypher_test_() -> end, io:format(user, "File = ~s, Logs = ~p~n", [WCard, Logs]), {ok, Cwd} = file:get_cwd(), - % ?debugFmt("wwe debugging cypher_test_ ===> ~n Cwd: ~p~n", [Cwd]), + ?debugFmt("wwe debugging cypher_test_ ===> ~n Cwd: ~p~n", [Cwd]), RootPath = lists:reverse(filename:split(Cwd)), - % ?debugFmt("wwe debugging cypher_test_ ===> ~n RootPath: ~p~n", [RootPath]), + ?debugFmt("wwe debugging cypher_test_ ===> ~n RootPath: ~p~n", [RootPath]), TestDir = filename:join(lists:reverse(["test" | RootPath])), - % ?debugFmt("wwe debugging cypher_test_ ===> ~n TestDir: ~p~n", [TestDir]), + ?debugFmt("wwe debugging cypher_test_ ===> ~n TestDir: ~p~n", [TestDir]), TestFiles = lists:sort([filename:join(TestDir, T) || T <- filelib:wildcard(WCard, TestDir)]), - % ?debugFmt("wwe debugging cypher_test_ ===> ~n TestFiles: ~p~n", [TestFiles]), + ?debugFmt("wwe debugging cypher_test_ ===> ~n TestFiles: ~p~n", [TestFiles]), group_gen(TestFiles, Logs). group_gen(TestFiles, Logs) -> @@ -41,7 +42,9 @@ group_gen(TestFiles, Logs) -> case TestFiles of [] -> []; [TestFile | RestTestFiles] -> + ?debugFmt("wwe debugging group_gen ===> ~n TestFile: ~p~n RestTestFiles: ~p~n", [TestFile, RestTestFiles]), {ok, [Opts | Tests]} = file:consult(TestFile), + ?debugFmt("wwe debugging group_gen ===> ~n Opts: ~p~n Tests: ~p~n", [Opts, Tests]), {ok, TestFileBin} = file:read_file(TestFile), TestLines = [begin TRe = re:replace(T, "(.*)(\")(.*)", "\\1\\\\\"\\3" @@ -118,30 +121,30 @@ tests_gen(TestGroup, [{I, T} | Tests], Logs, SelTests, Acc) -> -define(D5(__Msg), ?D(5, __Msg)). -define(D5(__Fmt, __Args), ?D(5, __Fmt, __Args)). -test_cypher(TestGroup, Test, Logs) -> +test_cypher(_TestGroup, Test, Logs) -> ?D1("~n ~s", [Test]), - %?debugFmt("~n", []), - %?debugFmt("wwe debugging test_cypher ===> ~n Test: ~p~n", [Test]), + ?debugFmt("~n", []), + ?debugFmt("wwe debugging test_cypher ===> ~n Test: ~p~n", [Test]), case ocparse:parsetree_with_tokens(Test) of - {ok, {ParseTree, Tokens}} -> - %?debugFmt("wwe debugging test_cypher ===> ~n ParseTree: ~p~n Tokens: ~p~n", [ParseTree, Tokens]), + {ok, {ParseTree, _Tokens}} -> + ?debugFmt("wwe debugging test_cypher ===> ~n ParseTree: ~p~n Tokens: ~p~n", [ParseTree, _Tokens]), ?D2("~n~p", [ParseTree]), NCypher = case ocparse:parsetree_to_string_td(ParseTree) of {error, Error} -> throw({error, Error}); NS -> - %?debugFmt("wwe debugging test_cypher ===> ~n NS: ~p~n", [NS]), + ?debugFmt("wwe debugging test_cypher ===> ~n NS: ~p~n", [NS]), NS end, ?D3("~n ~ts~n", [NCypher]), - {ok, {NPTree, NToks}} + {ok, {NPTree, _NToks}} = try {ok, {NPT, NT}} = ocparse:parsetree_with_tokens(NCypher), {ok, {NPT, NT}} catch _:_ -> ?D_("Error ocparse:parsetree_with_tokens : Test ~n > ~p", [Test]), - ?D_("Error ocparse:parsetree_with_tokens : TestGroup~n > ~p", [TestGroup]), + ?D_("Error ocparse:parsetree_with_tokens : TestGroup~n > ~p", [_TestGroup]), ?D_("Error ocparse:parsetree_with_tokens : NCypher ~n > ~p", [NCypher]), throw({error, "Error ocparse:parsetree_with_tokens"}) end, @@ -151,8 +154,8 @@ test_cypher(TestGroup, Test, Logs) -> _:_ -> ?D_("[catch ParseTree = NPTree] : Test ~n > ~p", [Test]), ?D_("[catch ParseTree = NPTree] : NPTree~n > ~p", [NPTree]), - ?D_("[catch ParseTree = NPTree] : Tokens~n > ~p", [Tokens]), - ?D_("[catch ParseTree = NPTree] : NToks ~n > ~p", [NToks]), + ?D_("[catch ParseTree = NPTree] : Tokens~n > ~p", [_Tokens]), + ?D_("[catch ParseTree = NPTree] : NToks ~n > ~p", [_NToks]), throw({error, "Error catch ParseTree = NPTree"}) end, try diff --git a/test/performance_command_legacy_SUITE.erl b/test/performance_command_legacy_SUITE.erl index e0bbe64..b995eb5 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 : 15.12.2016 +%%% Created : 29.12.2016 %%%------------------------------------------------------------------- -module(performance_command_legacy_SUITE). @@ -38,1003 +38,1003 @@ all() -> %%-------------------------------------------------------------------- test_command(_Config) -> - 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(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(`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`!)"). + octest_legacy:ct_string("Drop Constraint On()-[@usn6:_usn3]->()Assert Exists(None(`7esn` In 0.12 Is Not Null Where $0 Contains $7)._usn3!)"), + octest_legacy:ct_string("Create Constraint On()<-[`5esn`:#usn8]-()Assert Exists({`6esn`:4.9e12 Is Not Null Is Not Null,_usn4:`4esn`[9e-12..true]}.`2esn`?.`8esn`?.usn1)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`3esn`)Assert Exists(Reduce(@usn5=$0 Contains $123456789 Contains {`3esn`},usn2 In .12e-12 Ends With `2esn`|010[..9e-1][..0X7])._usn3!)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`1esn`)Assert Exists(Single(usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]).`8esn`?)"), + octest_legacy:ct_string("Drop Constraint On()-[#usn7:usn1]->()Assert Exists(Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`4esn`} Ends With Count(*)|{`7esn`} =~\"d_str\" =~{``})._usn4?)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`3esn`)Assert (`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})._usn3!.`4esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn6:`4esn`)Assert Exists(Reduce(@usn6=true In 0.0,`6esn` In 010[{`1esn`}..]|2.9e1[2.12..1.9e0]).`4esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn3)Assert Extract(usn1 In \"d_str\" Contains {@usn6} Where $`` =~.1e-1).`4esn`.usn1?._usn3? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[``:_usn4]-()Assert Exists((usn1 )<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})-[?:`7esn`|usn1 *01234567..{usn1:9e12 Is Null Is Null}]-(`3esn` :`2esn`:`4esn`).`5esn`?.`3esn`!.#usn8)"), + octest_legacy:ct_string("Drop Constraint On(``:`8esn`)Assert Exists(Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where 07[{@usn5}..]).`7esn`?)"), + octest_legacy:ct_string("Create Constraint On()<-[`5esn`:`1esn`]-()Assert Exists(Case When `2esn` Starts With 010 Starts With `` Then 00[$``] Else @usn6[0x0..][$_usn4..] End.@usn6)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:usn2)Assert Exists(Case When $`4esn` Ends With {999} Then 6.0e0[$#usn7..$1000] When .12e12 Is Not Null Then {`6esn`} Starts With .12e-12 End.`5esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:#usn8]-()Assert Exists(Case When 9e0[{7}...0e-0][Null..@usn5] Then $usn2 In #usn7 In #usn7 When 999 Ends With {#usn8} Then `1esn` =~{12} =~{999} Else {`1esn`} Is Null End.@usn6)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:_usn4)Assert [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where .12e-12[9e1]|.9e0[07..][4.9e12..]].usn2 Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:`1esn`]-()Assert Exists(Single(#usn7 In .0e-0 In 12 Where {0}[.0e-0][$`2esn`]).`1esn`.@usn6?.@usn6!)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:#usn7)Assert Exists(Any(`` In `7esn` =~#usn8 =~\"d_str\" Where 12e12 Is Not Null Is Not Null).`5esn`!)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`3esn`)Assert {@usn6:12e12[{`4esn`}..`4esn`][999..{@usn6}]}.usn1?.`8esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn4:#usn7)Assert Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``))).@usn6! Is Unique"), + octest_legacy:ct_string("Drop Index On:`1esn`(`2esn`)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`5esn`)Assert Any(@usn6 In 9e12[..usn2][.._usn3] Where $0 Ends With 9e-12 Ends With $_usn4).@usn6!.usn2? Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:#usn8)Assert Exists(Extract(_usn3 In `8esn`[_usn4] Where 12.0[..Count ( * )][..@usn6]|00 Is Not Null Is Not Null).`8esn`?)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:@usn5)Assert Exists(Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 3.9e-1 Starts With .9e0 Starts With {#usn7}).``!)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:@usn5)Assert @usn5(Count ( * ) Starts With 0.12,$123456789).#usn8 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:usn1)Assert Any(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With ``)._usn3 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`6esn`)Assert Shortestpath(((`8esn` :`8esn`)-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`8esn`*]-(`7esn` :``{usn2:$7}))).`3esn`.`4esn`!.`4esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:`2esn`)Assert Reduce(``=$_usn3[0X0123456789ABCDEF..][0x0..],usn2 In $`5esn`[{`4esn`}][{0}]|1.9e0 In $@usn6 In $_usn3).usn1 Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn2:``)Assert Exists(Any(usn2 In .12e-12 Ends With `2esn` Where `3esn` Contains 01 Contains 01).`5esn`!)"), + octest_legacy:ct_string("Create Constraint On(#usn7:`6esn`)Assert Exists(usn1(Distinct 0e-0[{12}]).`3esn`?)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`5esn`)Assert ({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[_usn3?:`6esn`{_usn4:07[{@usn5}..],usn2:$`4esn` Is Null Is Null}]->(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]}).`6esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`3esn`)Assert Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where $`4esn`[12e-12..$`1esn`][$`2esn`...9e12]).@usn6? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:#usn7)Assert `7esn`(11.12e-12 In {usn1}).`5esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn7:`3esn`)Assert [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where $`4esn`[usn2..]|$usn2[..$999][..#usn8]].@usn6?.``._usn4! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(``:`3esn`)Assert Exists([`6esn` In 010[{`1esn`}..] Where 9e-12[$7..]].`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[``:usn2]-()Assert Exists(Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0).`1esn`?)"), + octest_legacy:ct_string("Create Constraint On(@usn6:`3esn`)Assert Exists(Reduce(usn2={`6esn`}[@usn5..{@usn6}],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|9e0[..{#usn7}][..`4esn`]).#usn8?)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`8esn`)Assert Single(`6esn` In 010[{`1esn`}..] Where {`8esn`}[@usn5][$`2esn`]).`4esn`?.usn2!.`4esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:`8esn`)Assert exists(Distinct .0e-0[..``][..$7],$`3esn` =~0x0)._usn3?._usn3? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`7esn`:_usn4]->()Assert Exists(Shortestpath((`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[:`7esn`|usn1 *7]-(`8esn` :`5esn`:`7esn`{usn1:{``} Contains 0.0 Contains `4esn`})-[? *1000..{`1esn`:{`1esn`} Is Null}]->(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})).`1esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn3:`4esn`]-()Assert Exists(exists(0[$usn1..])._usn4)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:_usn3)Assert Exists(None(usn2 In $`5esn`[{`4esn`}][{0}] Where 7.0e-0 Is Not Null).@usn5?.usn1?)"), + octest_legacy:ct_string("Drop Constraint On()-[@usn5:`3esn`]->()Assert Exists(`5esn`(Distinct $`7esn` Ends With 7.0e-0 Ends With $usn2).`4esn`?)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:#usn7)Assert Exists(Reduce(`1esn`=12.0[..Count ( * )][..@usn6],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|5.9e-12 Contains {12} Contains {#usn8}).``!.`2esn`!.#usn7?)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:#usn8)Assert None(usn1 In $@usn6 Is Null Is Null Where {7} Starts With 0x0 Starts With 9e1).#usn7!.`1esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`4esn`:usn2]-()Assert Exists(All(usn1 In {#usn7} =~.12e12 =~9e0 Where 0xabc[01234567][.12e-12]).@usn5!)"), + octest_legacy:ct_string("Create Constraint On()-[usn2:`6esn`]-()Assert Exists(Reduce(`1esn`=.9e0[07..][4.9e12..],_usn3 In `8esn`[_usn4]|`3esn` =~$#usn7).`5esn`!)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:_usn4)Assert {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}.``? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn1:@usn5)Assert Case When .12e12[$usn1..][{@usn6}..] Then {1000}[..{usn1}][..1e-1] End._usn3! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[``:_usn4]-()Assert Exists((:usn1{usn1:true In 0.0,@usn5:{`1esn`} Is Null})-[@usn6?:`4esn`|:`2esn`{`2esn`:Count ( * )[9e0..$``]}]-(:usn2{usn1:_usn4 Is Not Null Is Not Null}).usn2?.#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`4esn`)Assert Exists(Case When 01234567 Ends With .0e0 Ends With 12e12 Then {`4esn`}[{`3esn`}][$`2esn`] When `` Contains {`6esn`} Contains 123456789 Then 2.9e1[2.12..1.9e0] End.usn2)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:#usn7)Assert Exists(Allshortestpaths((@usn6 {usn1:0Xa In 1.0 In $@usn5})-[`5esn`?:`2esn`|`5esn`]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})).`4esn`!._usn3)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`2esn`)Assert Case When {usn2} Is Not Null Is Not Null Then false Contains {`7esn`} When {_usn3} Is Null Is Null Then .12e12 Ends With 07 Ends With 3.9e-1 End.#usn7! Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn6:`3esn`)Assert Exists(Reduce(`6esn`=.9e-12[.12e12..][0Xa..],#usn8 In 07[..$`5esn`]|.9e-12[.12e12..][0Xa..]).`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:@usn5)Assert Exists(Case When {1000}[..`5esn`][..9e12] Then Count(*)[..{#usn7}] End.`3esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`1esn`)Assert Reduce(`3esn`={usn2} Is Not Null Is Not Null,`7esn` In 0.12 Is Not Null|$@usn5 =~{`3esn`}).`2esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:_usn3)Assert Allshortestpaths((`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[:`7esn`|usn1 *7]-(`8esn` :`5esn`:`7esn`{usn1:{``} Contains 0.0 Contains `4esn`})-[? *1000..{`1esn`:{`1esn`} Is Null}]->(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})).`8esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`6esn`)Assert `1esn`(true Is Null,$1000[..0e-0][..010]).#usn8!.usn1?.`3esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`1esn`:usn1]-()Assert Exists((#usn7 {#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})._usn4?)"), + octest_legacy:ct_string("Create Constraint On(@usn5:`8esn`)Assert Exists(usn1(.9e-12[.12e12..][0Xa..],$`6esn` =~$#usn7 =~$`4esn`).`7esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`3esn`)Assert Exists(None(#usn7 In .0e-0 In 12 Where $12 In {usn2}).usn1!.#usn8?.`3esn`!)"), + octest_legacy:ct_string("Drop Constraint On()<-[usn2:`8esn`]-()Assert Exists(Shortestpath((({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]->(:`6esn`{`8esn`:{123456789} =~.9e1 =~$_usn3,#usn7:Count(*)[Null..][01234567..]}))).`4esn`?)"), + octest_legacy:ct_string("Create Constraint On(``:`3esn`)Assert Case .9e0 =~#usn7 When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 When 0e0 Contains {`2esn`} Then {1000}[0..] Else 2.9e1 Ends With `5esn` Ends With 1000 End.@usn6 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:#usn7)Assert ({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[usn2:_usn3 *0xabc..12]-(:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null}).`5esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`1esn`:#usn8)Assert Case When $`5esn` =~Count(*) =~1.9e0 Then .1e-1 Starts With @usn6 Starts With _usn3 When $_usn3[0X0123456789ABCDEF..][0x0..] Then #usn8 =~{@usn5} Else 1e1[$_usn3] End.`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:usn2)Assert Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where $7[.1e-1..{@usn6}][$7..{`1esn`}]).`7esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`5esn`)Assert All(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`).usn1 Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[``:@usn5]-()Assert Exists(Shortestpath((({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]->(:`6esn`{`8esn`:{123456789} =~.9e1 =~$_usn3,#usn7:Count(*)[Null..][01234567..]}))).`8esn`.`4esn`!)"), + octest_legacy:ct_string("Create Constraint On(``:`1esn`)Assert Exists(Case {0} In {`1esn`} When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] End.`7esn`._usn3?.@usn5?)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:@usn5)Assert Exists(Allshortestpaths(((_usn4 )-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]}))).`5esn`)"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn5:`3esn`]-()Assert Exists(_usn3(Distinct 9e1 Starts With $@usn6 Starts With 0e-0,0.12 =~`6esn` =~.9e-1).`8esn`)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`6esn`)Assert Exists(Reduce(`7esn`=$usn2 Starts With $999 Starts With .0e0,@usn6 In 9e12[..usn2][.._usn3]|$@usn6 Is Null Is Null).`8esn`?.usn2!)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:usn2)Assert usn2({`1esn`} Is Null).`8esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:#usn7)Assert Exists(Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0e-0[..$usn2]).#usn7?._usn4!)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`4esn`)Assert Exists([usn1 In $@usn6 Is Null Is Null].@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`6esn`)Assert Exists(Reduce(`7esn`=11.12e-12 Contains usn1,_usn3 In `8esn`[_usn4]|#usn7 =~$@usn5 =~{7}).`6esn`.`1esn`?.`5esn`!)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`5esn`)Assert Case When usn2[..$0][..`3esn`] Then $0 Contains $7 End.`3esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`4esn`)Assert Exists(Extract(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1]|'s_str' =~$usn2 =~{7}).`3esn`!)"), + octest_legacy:ct_string("Drop Constraint On(usn2:@usn6)Assert Extract(usn1 In \"d_str\" Contains {@usn6} Where $`` =~.1e-1|$`3esn` =~0x0).`7esn`.`6esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[#usn7:@usn5]->()Assert Exists(Reduce(_usn3=1.9e0[.12e-12][9e-12],`2esn` In $@usn5 Is Not Null Is Not Null|9e-12 Ends With 9e1 Ends With 4.9e12).``.`1esn`?)"), + octest_legacy:ct_string("Create Constraint On(@usn6:``)Assert Exists(Any(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]).`5esn`!.`7esn`!.#usn7)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`1esn`)Assert Exists({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12}.`7esn`)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:usn1)Assert Exists(Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`3esn`[0e-0]).usn2?.`8esn`)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`8esn`)Assert Exists((`6esn` :`4esn`:usn2)<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]-(`7esn` :#usn8:@usn6{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}).`6esn`)"), + octest_legacy:ct_string("Drop Constraint On()<-[`5esn`:@usn5]-()Assert Exists({usn1:0Xa In 1.0 In $@usn5}.@usn5.`8esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[`8esn`:#usn7]->()Assert Exists({#usn8:7[..123456789][..true]}.`2esn`.usn2.`8esn`!)"), + octest_legacy:ct_string("Create Constraint On(@usn6:#usn8)Assert Extract(usn1 In $@usn6 Is Null Is Null Where Count(*)[Count ( * )][{0}]|2.9e1[Count ( * )..]).`8esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:`6esn`)Assert usn2($12 =~4.9e12).`4esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`2esn`:`3esn`]->()Assert Exists(Shortestpath((((#usn8 :`4esn`:usn2{#usn7:{`3esn`}[#usn7],`4esn`:010[..9e-1][..0X7]})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]})-[?:@usn5|:#usn7 *0]->(`7esn` :`8esn`)))).usn1?)"), + octest_legacy:ct_string("Create Constraint On()<-[`4esn`:`8esn`]-()Assert Exists({@usn6:$@usn5 Starts With #usn7,@usn6:$@usn5[.9e-1]}.@usn5)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`2esn`)Assert Shortestpath((@usn5 :_usn4:`2esn`{@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})).`4esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:_usn3)Assert Exists(0.12.usn1)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:@usn6)Assert Exists(All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {`3esn`}[999..$`4esn`])._usn4!.@usn5!.#usn7!)"), + octest_legacy:ct_string("Drop Constraint On()-[usn2:@usn5]->()Assert Exists(Any(#usn7 In .0e-0 In 12 Where {#usn8}[..@usn5]).`8esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[`8esn`:_usn3]-()Assert Exists(Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 9e12 Is Null Is Null).`6esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[`8esn`:@usn5]-()Assert Exists(None(#usn7 In .0e-0 In 12 Where 0xabc[..{usn1}][..\"d_str\"]).usn1)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:@usn6)Assert Case When 0X0123456789ABCDEF Ends With {1000} Then {0} Is Not Null When .12e12 Is Not Null Then {`6esn`} Starts With .12e-12 Else 7[{`4esn`}..] End.@usn6! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`8esn`)Assert [#usn7 In .0e-0 In 12 Where .0e-0 Ends With $`2esn` Ends With `5esn`|{usn1} Contains `4esn`]._usn4?._usn3!.`7esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:`2esn`)Assert `2esn`($12 Is Not Null Is Not Null,12e12[usn2..$`6esn`]).`2esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`6esn`)Assert Exists(Extract(usn2 In .12e-12 Ends With `2esn` Where $999 Ends With `2esn` Ends With 12.0|{_usn3} Is Null Is Null).`3esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:usn2)Assert Single(usn2 In .12e-12 Ends With `2esn` Where $999 Ends With `2esn` Ends With 12.0).`1esn`?.``! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:`3esn`]-()Assert Exists({usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`}._usn3!)"), + octest_legacy:ct_string("Drop Constraint On()<-[#usn8:`6esn`]-()Assert Exists(Single(usn2 In .12e-12 Ends With `2esn`)._usn3!)"), + octest_legacy:ct_string("Create Constraint On(usn2:_usn4)Assert Reduce(_usn4=5.9e-12 Contains {12} Contains {#usn8},`7esn` In 0.12 Is Not Null|{`5esn`}[.1e-1..1e-1][999..{_usn3}]).#usn8.``? Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn1:usn2)Assert Exists(Reduce(#usn8=$``[1.0..][_usn3..],`6esn` In 010[{`1esn`}..]|{1000} =~4.9e12 =~9e1).`6esn`.@usn6!)"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:#usn8]->()Assert Exists(Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`|01 =~07).`2esn`!)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:usn2)Assert [`1esn` In $12 In {usn2} Where {usn1} Is Not Null]._usn4!.`8esn`!.`6esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`6esn`)Assert (:`1esn`:``{`8esn`:0X0123456789ABCDEF Ends With {1000}})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`6esn` :`4esn`:usn2).`5esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:`1esn`]-()Assert Exists(Case $@usn5[``..] When `6esn`[0X0123456789ABCDEF..][`8esn`..] Then `2esn`[`7esn`][1000] When {`6esn`} Starts With .12e-12 Then $`8esn` =~{`1esn`} =~$7 End.#usn7?)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`2esn`)Assert Exists(Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0e-0[..$usn2]).@usn6)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`5esn`)Assert Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When $1000[_usn4][{@usn5}] Then 4.9e12[{_usn4}..] End.@usn6?.#usn8! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:`1esn`]-()Assert Exists(Single(`` In `7esn` =~#usn8 =~\"d_str\" Where 6.0e0[{`2esn`}..$``]).`1esn`!)"), + octest_legacy:ct_string("Create Constraint On(_usn3:usn1)Assert Shortestpath(((`8esn` :`8esn`)<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))).@usn5! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:`8esn`)Assert Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 0xabc[01234567][.12e-12]|{123456789} Starts With $_usn4 Starts With 0x0).``.`` Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn1:usn1)Assert None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 1000[{`1esn`}..][$`3esn`..]).#usn8? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:`3esn`]->()Assert Exists(Filter(#usn8 In 07[..$`5esn`] Where 2.9e1 =~Count(*) =~{123456789}).`5esn`._usn4?)"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:#usn8]->()Assert Exists(None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .9e12 Is Not Null Is Not Null)._usn3!.``.usn1?)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`1esn`)Assert Exists(Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End.`1esn`?)"), + octest_legacy:ct_string("Drop Constraint On(usn1:#usn8)Assert Exists(Extract(@usn6 In 9e12[..usn2][.._usn3]|01234567[1000..][$`8esn`..])._usn4!.usn1!.``!)"), + octest_legacy:ct_string("Drop Constraint On()-[#usn8:`2esn`]->()Assert Exists(Reduce(#usn8=$``[1.0..][_usn3..],`6esn` In 010[{`1esn`}..]|{1000} =~4.9e12 =~9e1)._usn4)"), + octest_legacy:ct_string("Create Constraint On()-[#usn7:usn2]->()Assert Exists(Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})).`4esn`?.`2esn`?)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:#usn7)Assert Exists(Reduce(`5esn`={@usn6} In 1.0,_usn3 In `8esn`[_usn4]|@usn6 Starts With #usn7).`5esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[`7esn`:_usn4]-()Assert Exists(#usn8(Distinct `6esn`[3.9e-1..`8esn`][12.0..0.0],@usn5 In Null).`7esn`!)"), + octest_legacy:ct_string("Drop Constraint On(usn1:`6esn`)Assert Exists(Case $`3esn` =~0x0 When `3esn` Is Null Is Null Then $@usn6 Starts With 0xabc Starts With {`7esn`} Else Count(*)[Null..][01234567..] End._usn4!)"), + octest_legacy:ct_string("Drop Constraint On(usn1:`4esn`)Assert Reduce(`6esn`={usn1} Contains `4esn`,`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$usn1[9e1][{999}]).`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`4esn`:usn1]->()Assert Exists({_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999}.`7esn`)"), + octest_legacy:ct_string("Create Constraint On(@usn5:`7esn`)Assert (:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(`2esn` :@usn5)-[`8esn`:_usn4|:`1esn`]->({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`}).#usn7 Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:`2esn`]-()Assert Exists((#usn8 {usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]}).`1esn`!)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:``)Assert All(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 999 Starts With 7.0e-0 Starts With true).`7esn`!.usn2?.`6esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[usn2:_usn4]-()Assert Exists(Any(usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]).`4esn`!.@usn5!)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`5esn`)Assert Extract(#usn8 In 07[..$`5esn`] Where 07[{@usn5}..]|9e-1 Contains 3.9e-1).`3esn`?.usn1 Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:``]-()Assert Exists(Reduce(`8esn`=Count(*)[$7],`2esn` In $@usn5 Is Not Null Is Not Null|$@usn5 Contains _usn3).`6esn`!)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`5esn`)Assert Case When `4esn` =~010 Then {7}[$@usn5..123456789][1e1..1.9e0] Else 1e-1 =~$`7esn` =~1e1 End.usn1? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:usn2)Assert [`` In `7esn` =~#usn8 =~\"d_str\" Where 2.12 =~$999].@usn5? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`3esn`:@usn6]-()Assert Exists(Reduce(@usn5=0xabc[..Count(*)][..$`5esn`],usn1 In \"d_str\" Contains {@usn6}|123456789[#usn7..9e-1][10.12e12..{0}]).`2esn`!.`3esn`)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:_usn3)Assert Exists([@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 1.9e0 In $@usn6 In $_usn3].`7esn`)"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:`7esn`]->()Assert Exists(({``:true Is Null,_usn3:$12 Ends With 7.0e-0 Ends With 9e-12})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(:`6esn`{`2esn`:`5esn` Ends With Count(*)}).usn2)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:_usn3)Assert Exists(Allshortestpaths(((_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null})<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))).`3esn`?.usn2?)"), + octest_legacy:ct_string("Drop Constraint On(``:`5esn`)Assert Exists(Allshortestpaths(((#usn8 :usn2)<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))).`8esn`)"), + octest_legacy:ct_string("Create Constraint On(@usn5:usn2)Assert Case Count ( * ) =~123456789 =~{@usn5} When 0e0 Contains {`2esn`} Then $`8esn`[..12][..9e12] When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End.`8esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[usn1:`6esn`]-()Assert Exists(Extract(`6esn` In 010[{`1esn`}..] Where {`4esn`}[00..]|`6esn` =~999 =~$999).`3esn`?)"), + octest_legacy:ct_string("Create Constraint On()<-[`8esn`:`8esn`]-()Assert Exists({``:01234567[10.12e12][0Xa]}._usn3)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`8esn`)Assert All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]).#usn7!.`1esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:#usn8)Assert Allshortestpaths((`2esn` )-[ *..123456789{@usn5:$`8esn`}]-(:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})).usn1? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[#usn7:#usn8]->()Assert Exists(Allshortestpaths(((usn2 :``{#usn7:1e-1 =~$`7esn` =~1e1,`7esn`:{0}[`4esn`..{`8esn`}]})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(_usn4 :`1esn`:``{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}})<-[_usn3? *..123456789{`6esn`:.0e-0[..``][..$7],usn2:{usn2} Ends With {@usn6} Ends With 1000}]-(`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})))._usn4!)"), + octest_legacy:ct_string("Create Constraint On(@usn5:_usn4)Assert Exists(Any(#usn7 In .0e-0 In 12 Where .0e-0 Ends With $`2esn` Ends With `5esn`).``.@usn6?)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`6esn`)Assert `8esn`(Distinct 12e12 Contains {0}).`4esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn5:``)Assert [#usn7 In .0e-0 In 12 Where `8esn`[.12e12..]].usn1._usn3.`8esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[@usn5:`4esn`]->()Assert Exists(Reduce(`1esn`=12.0[..Count ( * )][..@usn6],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|5.9e-12 Contains {12} Contains {#usn8}).`8esn`)"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:#usn7]->()Assert Exists(None(usn1 In {#usn7} =~.12e12 =~9e0 Where {1000} Starts With 10.12e12 Starts With .0e-0).`7esn`?.usn2.`8esn`?)"), + octest_legacy:ct_string("Create Constraint On(usn1:@usn6)Assert {@usn5:999 Ends With {#usn8},_usn4:Null In {7}}.`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`4esn`:_usn4)Assert Reduce(`7esn`=#usn7 =~$@usn5 =~{7},usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|3.9e-1[..$1000][..0.12]).`8esn`?.@usn6 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:usn2)Assert Reduce(`3esn`=.9e0[$#usn8][Count ( * )],#usn7 In .0e-0 In 12|Count(*) Starts With 07 Starts With $#usn7).`6esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[_usn4:`5esn`]-()Assert Exists(Case $`3esn`[0e-0] When $12[$@usn5] Then $_usn4 Ends With {#usn8} When {0} In {`1esn`} Then 1.9e0[`6esn`][`7esn`] Else 12e12 Ends With `5esn` Ends With .0e0 End._usn4.`2esn`?.`7esn`)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:@usn5)Assert Exists(Any(usn1 In \"d_str\" Contains {@usn6} Where $`8esn`)._usn4)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:#usn8)Assert Exists(@usn5(`4esn` Contains 0X0123456789ABCDEF Contains $usn2,{@usn5}[10.12e12..]).`1esn`!)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`2esn`)Assert Reduce(``=$`3esn` =~#usn8 =~0x0,usn2 In $`5esn`[{`4esn`}][{0}]|_usn3 =~{7} =~123.654).usn1! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`5esn`)Assert Filter(`6esn` In 010[{`1esn`}..] Where `6esn` Ends With 1e1 Ends With $#usn7).@usn5! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[`4esn`:`1esn`]-()Assert Exists(Case `1esn` In 6.0e0 In 12 When 2.9e1[2.12..1.9e0] Then {`1esn`}[{usn2}] Else 12e12 Ends With `5esn` Ends With .0e0 End.`8esn`.usn1)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:#usn8)Assert Exists(Any(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])._usn4._usn3!.usn1!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:usn2)Assert Filter(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1]).`5esn`!._usn3! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`5esn`:@usn5]-()Assert Exists([#usn7 In .0e-0 In 12 Where `8esn`[.12e12..]].usn1._usn3.`8esn`)"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:`3esn`]->()Assert Exists((:`3esn`)-[`1esn`]->(`3esn` :`6esn`{_usn3:.12e-12 Ends With `2esn`,usn1:Null[#usn7..][9.1e-1..]})-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->({#usn8:_usn4[$_usn4]}).`8esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:`1esn`]-()Assert Exists(Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where 3.9e-1 Starts With .9e0 Starts With {#usn7}).@usn6!)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:#usn8)Assert Exists(All(usn2 In $`5esn`[{`4esn`}][{0}] Where Null[$`3esn`..][`1esn`..]).#usn8!.#usn8.`7esn`)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`6esn`)Assert Single(#usn7 In .0e-0 In 12 Where 0.0[00..][0xabc..]).`1esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[``:usn2]->()Assert Exists([@usn6 In 9e12[..usn2][.._usn3] Where $0 Ends With 9e-12 Ends With $_usn4|{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1]].``.`5esn`!)"), + octest_legacy:ct_string("Create Constraint On()<-[_usn3:`5esn`]-()Assert Exists(usn1(.9e-12[.12e12..][0Xa..],$`6esn` =~$#usn7 =~$`4esn`).`7esn`?)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`7esn`)Assert `2esn`(Distinct 9e-12 Ends With {1000},{`1esn`} Contains 1.0 Contains 4.9e12).``! Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn1:usn1)Assert Reduce(_usn4={`8esn`} Is Not Null Is Not Null,usn1 In $@usn6 Is Null Is Null|$`3esn` =~#usn8 =~0x0).#usn8._usn4 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:`8esn`)Assert Exists({#usn8:{``}[usn1..][{`8esn`}..]}.@usn6?)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:_usn3)Assert _usn3(Distinct 9e1 Starts With $@usn6 Starts With 0e-0,0.12 =~`6esn` =~.9e-1).usn2? Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[`7esn`:@usn5]-()Assert Exists(({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000})<-[`7esn`{`7esn`:6.0e0 =~12.0 =~9e1}]-({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})-[:`8esn`|:#usn8 *01]-(usn2 :`2esn`:`4esn`).`6esn`!)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:``)Assert Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[..{0}][..true]|$`4esn` Is Null Is Null).`3esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn1:`5esn`)Assert (`2esn` :_usn3)-[? *..0x0{usn2:Null[$`3esn`..][`1esn`..],`2esn`:\"d_str\" Contains {@usn6}}]-(`8esn` :usn1)-[`8esn`?:_usn3]->(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}}).`4esn`?.@usn6.`5esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn1:`5esn`)Assert Exists({`4esn`:$`1esn`[..1000][..\"d_str\"],#usn7:{`5esn`}[.1e-1..1e-1][999..{_usn3}]}.#usn7)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:usn1)Assert count(01234567 =~12e12 =~.0e-0,$999 Is Not Null).@usn6?.`1esn`.`8esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:usn2)Assert Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 9e-1 Is Not Null|$123456789 Is Not Null Is Not Null).usn2! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:`5esn`]-()Assert Exists({_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}.`1esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[@usn5:usn2]-()Assert Exists((`6esn` :usn2{`6esn`:{usn1}[7.0e-0..][3.9e-1..]})<-[#usn7?:_usn3 *999..123456789{@usn5:$12 In {usn2},usn1:5.9e-12 Is Null Is Null}]-(`3esn` :#usn7:`8esn`{`4esn`:$`5esn`[$_usn3][$12],#usn8:`8esn`[.12e12..]}).#usn7!)"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:_usn3)Assert Case 9e0[{7}...0e-0][Null..@usn5] When {`6esn`}[@usn5..{@usn6}] Then 1.9e0 In $@usn6 In $_usn3 Else $`8esn` =~{`6esn`} =~12 End.`5esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:#usn7)Assert Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[..{0}][..true]|$`4esn` Is Null Is Null).`3esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn7:_usn4)Assert Case When {`8esn`} Starts With .9e-1 Starts With 1000 Then $`6esn`[$_usn3..{1000}] When 3.9e-1 Starts With .9e0 Starts With {#usn7} Then .0e-0 Ends With $`2esn` Ends With `5esn` Else _usn4[$_usn4] End.usn2! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`5esn`)Assert Exists((:#usn8:@usn6{`3esn`:$#usn7})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]->(@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0}).``?.#usn8)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:#usn7)Assert Exists([`2esn` In $@usn5 Is Not Null Is Not Null Where {`3esn`} =~$@usn5 =~`2esn`].`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On(usn2:#usn8)Assert Exists(`8esn`(Distinct 8.1e1 Contains $@usn6,{0}[`4esn`..{`8esn`}]).usn2!.#usn7!)"), + octest_legacy:ct_string("Create Constraint On()-[`3esn`:`5esn`]-()Assert Exists({_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}.``)"), + octest_legacy:ct_string("Create Constraint On()<-[#usn8:`4esn`]-()Assert Exists(12.@usn5.``!.`8esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[@usn5:usn2]-()Assert Exists({usn1:.9e-1 Is Null Is Null}.usn1.usn2?)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:usn2)Assert Exists({_usn4:#usn8 =~{@usn5}}.`6esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[#usn8:@usn6]->()Assert Exists(Case 12e12 When {#usn7} =~$@usn6 =~$7 Then 6.0e0 =~12.0 =~9e1 When 0.0[00..][0xabc..] Then .9e1[$`1esn`..][$``..] Else `5esn` Is Not Null Is Not Null End.`6esn`?)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:usn1)Assert [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[01234567][{#usn7}]|$`8esn`[..5.9e-12][..`8esn`]].usn2.`2esn`!._usn3? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(``:@usn5)Assert exists(`3esn` Starts With 9.1e-1 Starts With .9e-1,{#usn8} Starts With {`2esn`}).``! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:usn2)Assert Allshortestpaths(({@usn6:12e12[{`4esn`}..`4esn`][999..{@usn6}]})-[#usn8?:_usn3 *..123456789]-({#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]})-[_usn3?:``|:`7esn` *0X0123456789ABCDEF]-(#usn7 {usn2:0X7[#usn7..][$@usn5..]})).usn2 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn6:``)Assert Any(_usn3 In `8esn`[_usn4] Where $1000[_usn4][{@usn5}]).``?.`1esn`.usn1? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:@usn5)Assert (`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})<-[#usn8?:#usn7|:@usn5]-(`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}).usn1! Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:usn2)Assert Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`} In .0e0 In $0).`4esn`.#usn8?.`3esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:`4esn`]-()Assert Exists(Shortestpath((:`3esn`{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]})).usn2!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:@usn5)Assert Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))).`6esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn6:``)Assert Exists(None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0xabc[..{usn1}][..\"d_str\"]).`1esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[``:_usn4]-()Assert Exists(Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e-1 Is Null Is Null).#usn8)"), + octest_legacy:ct_string("Create Constraint On(#usn7:`6esn`)Assert Case When {1000}[..`5esn`][..9e12] Then Count(*)[..{#usn7}] End.`3esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`4esn`:@usn5]-()Assert Exists(({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]})<-[usn1?{`5esn`:$0 Ends With 9e-12 Ends With $_usn4}]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})-[?:_usn3]->(_usn3 :`1esn`:``).`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:#usn8)Assert Exists((`8esn` :usn1)<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12}).#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:`6esn`)Assert Exists(Any(`6esn` In 010[{`1esn`}..] Where `6esn` Ends With 1e1 Ends With $#usn7).`5esn`?)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`3esn`)Assert Exists(Reduce(`2esn`={1000}[..{usn1}][..1e-1],_usn3 In `8esn`[_usn4]|Count(*)[$7]).@usn5?)"), + octest_legacy:ct_string("Create Constraint On(``:`2esn`)Assert Exists({_usn3:12.0[..Count ( * )][..@usn6]}.``!)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:usn1)Assert Exists(Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`6esn`} =~2.12 =~123.654|`6esn` Ends With 1e1 Ends With $#usn7).@usn5!.``!)"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:usn2]-()Assert Exists([_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|{`3esn`}[...1e1][..0]].usn2!._usn3!._usn3!)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`2esn`)Assert All(`7esn` In 0.12 Is Not Null Where 4.9e12 Starts With {``}).`7esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn1:`6esn`)Assert Exists(Reduce(`2esn`=$1000 Contains $123456789 Contains #usn8,`` In `7esn` =~#usn8 =~\"d_str\"|_usn4 Is Not Null Is Not Null).`4esn`)"), + octest_legacy:ct_string("Create Constraint On(@usn5:#usn8)Assert Exists(Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[10.12e12]|$usn2[..$999][..#usn8]).`6esn`!.#usn7!)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`6esn`)Assert _usn3(Distinct .12e12 Is Not Null,.9e0[07..][4.9e12..]).`2esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`2esn`:`3esn`]->()Assert Exists(Reduce(#usn7=`1esn`[{@usn5}..][{_usn4}..],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|{usn2} Is Not Null Is Not Null).usn1)"), + octest_legacy:ct_string("Drop Constraint On()<-[#usn7:`6esn`]-()Assert Exists(usn1(Distinct 6.0e0[$#usn7..$1000],_usn4 Is Not Null Is Not Null).``?)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`1esn`)Assert Single(_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null).`4esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[#usn8:`1esn`]-()Assert Exists({@usn6:$`` =~.1e-1}.usn1?)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:@usn6)Assert Exists(Any(`1esn` In $12 In {usn2} Where {usn1} Is Not Null).@usn6?.usn2?)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`3esn`)Assert Exists(Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `6esn` Ends With 1e1 Ends With $#usn7).`8esn`!.`2esn`!.`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:_usn4)Assert (`` :``)-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]})<-[`4esn`?]-(:usn1{#usn8:2.9e1[{`2esn`}]}).`3esn`!.@usn6!.@usn6! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:``]-()Assert Exists((:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})-[`3esn`? *..07]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]})._usn4?)"), + octest_legacy:ct_string("Create Constraint On(_usn3:`1esn`)Assert {@usn6:$_usn3 Starts With 010}.`4esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`5esn`)Assert Case #usn7 Is Null Is Null When $`8esn` Is Null Is Null Then _usn4[{``}..{`6esn`}][$7..$_usn3] When {`3esn`}[999..$`4esn`] Then \"d_str\" In usn2 In $`7esn` End.``? Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn4:usn1)Assert Exists(Any(#usn8 In 07[..$`5esn`] Where .9e0[07..][4.9e12..]).`8esn`.`6esn`.`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:@usn5)Assert Exists([`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $`4esn`[usn2..]].`8esn`._usn4!)"), + octest_legacy:ct_string("Create Constraint On(usn1:`6esn`)Assert Exists([`` In `7esn` =~#usn8 =~\"d_str\" Where $`4esn` In {999}|{1000} Is Null].usn2!)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:#usn8)Assert Exists([_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|$7].@usn5!.usn2?)"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:#usn8]->()Assert Exists(Case When 's_str'[`2esn`][12.0] Then `8esn`[_usn4] Else .12e12 Starts With 5.9e-12 Starts With `4esn` End.`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:``)Assert Exists(@usn5(Count ( * ) Starts With 0.12,$123456789).`6esn`?.`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn4:@usn5]-()Assert Exists([#usn7 In .0e-0 In 12 Where 0xabc[..{usn1}][..\"d_str\"]|0.12 =~`6esn` =~.9e-1]._usn3?.@usn6!)"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:`1esn`]->()Assert Exists(Case When {`3esn`}[01234567][{#usn7}] Then $#usn8[$0..`3esn`][1e-1..$7] When #usn8[$`2esn`] Then 3.9e-1 Starts With .9e0 Starts With {#usn7} End.``)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`7esn`)Assert Shortestpath(((:`1esn`:``{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`}))).`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`2esn`)Assert Exists(Allshortestpaths((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]}))).``!.`5esn`!.#usn8!)"), + octest_legacy:ct_string("Create Constraint On()-[`4esn`:#usn8]-()Assert Exists(`3esn`(Distinct $@usn5 Contains _usn3,{`1esn`} Contains 1.0 Contains 4.9e12).`2esn`!)"), + octest_legacy:ct_string("Create Constraint On(@usn5:`7esn`)Assert Exists((`3esn` {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(:`5esn`:`7esn`{`4esn`:2.9e1[{`2esn`}]})._usn3!)"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:`3esn`]->()Assert Exists(12.@usn5.``!.`8esn`)"), + octest_legacy:ct_string("Drop Constraint On(usn1:usn2)Assert Exists({``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}.`1esn`!.`6esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:`3esn`]->()Assert Exists(Any(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $usn1[..$999][..0e0]).`2esn`!)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`8esn`)Assert All(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..]).usn2 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`3esn`:usn1)Assert Exists(Shortestpath(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})).#usn7.``)"), + octest_legacy:ct_string("Drop Constraint On()-[#usn8:usn1]->()Assert Exists(Case #usn8 Is Null Is Null When $1000[..0e-0][..010] Then 010 Starts With 9e12 Starts With 1000 End.`8esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:``)Assert {#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}._usn4! Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:`7esn`)Assert Reduce(`6esn`={`8esn`}[..999][.._usn3],`3esn` In 8.1e1 Contains .9e-1 Contains false|{123456789} Ends With 11.12e-12 Ends With 00).`8esn`!.#usn7!.``! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:@usn5)Assert Exists(@usn6(Distinct 0e0 Contains {`2esn`}).`7esn`.`3esn`?._usn4?)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:``)Assert Exists(Shortestpath((((:`1esn`:``{`8esn`:5.9e-12[0x0..]})-[?:`1esn`|:`1esn` *999..123456789]-(usn2 :@usn6:_usn3)<-[_usn4:`2esn`|`5esn` *7{`2esn`:999 Ends With {#usn8},#usn8:.12e12 Is Not Null}]-(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})))).`7esn`)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`5esn`)Assert Exists(Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 999 Starts With 7.0e-0 Starts With true).@usn5?)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:_usn4)Assert None(usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null).#usn8! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`3esn`:_usn3]-()Assert Exists({`5esn`:$usn1[9e1][{999}]}.#usn7?)"), + octest_legacy:ct_string("Create Constraint On(@usn6:`3esn`)Assert [@usn6 In 9e12[..usn2][.._usn3]|$1000[_usn4][{@usn5}]].#usn8 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`5esn`)Assert Exists(All(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn5 Starts With #usn7)._usn4!)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:usn2)Assert {`5esn`:`3esn` Starts With 9.1e-1 Starts With .9e-1}._usn3 Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[_usn4:`5esn`]-()Assert Exists(Extract(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).@usn5!)"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:`5esn`]->()Assert Exists({@usn5:`5esn` Ends With Count(*),usn1:$12[$@usn5]}.usn2!)"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:`3esn`]-()Assert Exists(Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where 3.9e-1 Starts With .9e0 Starts With {#usn7}).#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:``)Assert ({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]})-[:`6esn` *12{#usn7:`3esn` =~$#usn7,`8esn`:0e-0[{@usn6}]}]->(usn1 :#usn7:`8esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})-[``? *..00{@usn5:$`8esn` =~{`1esn`} =~$7,#usn7:.12e-12 Starts With .12e-12}]->({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}).usn2! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[@usn5:`3esn`]->()Assert Exists(All(#usn7 In .0e-0 In 12 Where 123.654 Ends With {1000} Ends With 9e12).`6esn`.`6esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[`3esn`:_usn4]-()Assert Exists({usn2:\"d_str\" Starts With ``}.`7esn`!)"), + octest_legacy:ct_string("Create Constraint On()<-[_usn4:`1esn`]-()Assert Exists((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})-[_usn4*{`3esn`:{``} Is Null Is Null}]-({`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}).`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`8esn`)Assert Case 01[`6esn`..][0e0..] When {0}[`4esn`..{`8esn`}] Then \"d_str\" In usn2 In $`7esn` When `8esn`[_usn4] Then $`4esn`[usn2..] End.#usn7! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`4esn`)Assert Allshortestpaths(((`1esn` :#usn8:@usn6{usn1:#usn8 Is Null Is Null,_usn3:{`4esn`} In 1000 In {@usn5}})<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654}))).`3esn`.@usn6? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`8esn`:`4esn`]-()Assert Exists({`6esn`:12[@usn6][{`2esn`}]}.@usn5!)"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:``]-()Assert Exists(Single(#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0).usn1)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:usn2)Assert Exists(Extract(usn2 In .12e-12 Ends With `2esn` Where $`4esn` Ends With .12e12 Ends With 123.654|0X7 Is Not Null Is Not Null).usn1?)"), + octest_legacy:ct_string("Create Constraint On(#usn8:`8esn`)Assert Exists(Reduce(`8esn`={0}[`4esn`..{`8esn`}],#usn8 In 07[..$`5esn`]|12e12 Contains {0}).`5esn`!.`6esn`)"), + octest_legacy:ct_string("Create Constraint On()-[usn1:usn2]-()Assert Exists(Reduce(#usn8=1e1 Ends With $_usn3 Ends With .1e1,`7esn` In 0.12 Is Not Null|true[1.9e0..]).`7esn`)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`4esn`)Assert Exists(Reduce(_usn3={123456789}[...9e-1][..1.0],@usn6 In 9e12[..usn2][.._usn3]|\"d_str\" Is Not Null Is Not Null).@usn6?)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`4esn`)Assert Exists(Case 6.0e0[$#usn7..$1000] When 1e-1 =~$`7esn` =~1e1 Then {`1esn`} Is Null When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] Else Null In {7} End.`8esn`)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`3esn`)Assert Exists(@usn6(Distinct)._usn4?.usn2?)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:usn2)Assert Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..]).@usn5 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn8:@usn6)Assert Exists(Reduce(``=`2esn`[`7esn`][1000],usn2 In $`5esn`[{`4esn`}][{0}]|{123456789} Ends With 11.12e-12 Ends With 00).@usn5._usn3.@usn5)"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:`7esn`]->()Assert Exists(Single(`6esn` In 010[{`1esn`}..] Where usn2[12e-12..{`8esn`}][.12e12..{123456789}]).#usn8?)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`7esn`)Assert None(`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`}[@usn5..{@usn6}]).@usn6.usn1? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`2esn`:_usn4]-()Assert Exists(Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0|$#usn7 Starts With $123456789)._usn3!)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:#usn8)Assert Exists(Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 999 Starts With 7.0e-0 Starts With true).`2esn`)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`6esn`)Assert Exists((:#usn7:`8esn`{@usn5:{0} In {`1esn`}})<-[$#usn8]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]})<-[`3esn`?:`6esn`{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(:`1esn`:``{`8esn`:5.9e-12[0x0..]}).``?)"), + octest_legacy:ct_string("Create Constraint On()<-[_usn4:``]-()Assert Exists(Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0).@usn5?)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:``)Assert Exists(Case When .9e1 In .1e-1 Then $7 =~01234567 =~12.0 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else $`7esn` In $@usn5 End.#usn8)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:usn2)Assert Exists({@usn6:{123456789} Starts With `6esn`}.`2esn`?)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:``)Assert Single(`6esn` In 010[{`1esn`}..] Where {`3esn`} Is Not Null Is Not Null)._usn4 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`2esn`)Assert Exists(Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $`4esn`[usn2..]|{`6esn`}[6.0e0..9e0][.9e1..12e12]).`2esn`)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:_usn4)Assert Reduce(`7esn`={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],@usn6 In 9e12[..usn2][.._usn3]|10.12e12[usn2])._usn4! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`3esn`:``]->()Assert Exists([usn1 In $@usn6 Is Null Is Null Where {`3esn`}[#usn7]|#usn7[$`8esn`][{`3esn`}]]._usn4!)"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:`7esn`]-()Assert Exists(Reduce(`1esn`=.9e1 Ends With 0x0,usn2 In .12e-12 Ends With `2esn`|_usn4 Is Not Null Is Not Null)._usn3!.@usn5!)"), + octest_legacy:ct_string("Create Constraint On(#usn8:``)Assert Exists({``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}.#usn8?.@usn6?)"), + octest_legacy:ct_string("Drop Index On:`6esn`(`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:@usn6)Assert Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $#usn7[01..2.12][2.12..3.9e-1]).`3esn`!.`8esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn4:#usn7)Assert Exists(Shortestpath(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))).usn2!.``)"), + octest_legacy:ct_string("Create Constraint On(#usn7:usn1)Assert Exists(None(#usn8 In 07[..$`5esn`] Where .1e1 Ends With #usn7 Ends With {#usn7}).`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(usn2:#usn7)Assert Exists(Extract(usn1 In \"d_str\" Contains {@usn6}).`8esn`?.`1esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`1esn`)Assert Exists(Reduce(`5esn`=8.1e1 Contains $@usn6,#usn7 In .0e-0 In 12|{1000} Starts With 10.12e12 Starts With .0e-0).usn1!)"), + octest_legacy:ct_string("Create Constraint On()-[usn1:``]-()Assert Exists({@usn5:4.9e12 Ends With $@usn6,`2esn`:0e-0 In 0X0123456789ABCDEF In `3esn`}.`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:``)Assert Single(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 00 =~`4esn` =~.9e-12).@usn6!.`4esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`6esn`)Assert All(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 1.9e0[.12e-12][9e-12])._usn3!.`4esn`?.#usn7! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn1:_usn3)Assert Exists(All(`7esn` In 0.12 Is Not Null Where .12e-12[@usn6..'s_str']).`5esn`?.``!)"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:`3esn`)Assert Reduce(@usn6=7.0e-0[$`6esn`..],`6esn` In 010[{`1esn`}..]|$``[9e12..])._usn4 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn8:@usn6)Assert Exists(None(#usn7 In .0e-0 In 12 Where $123456789).#usn8?)"), + octest_legacy:ct_string("Create Constraint On()<-[#usn7:`4esn`]-()Assert Exists(All(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[10.12e12]).usn1!)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`5esn`)Assert Exists(Extract(_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]|{``}[usn1..][{`8esn`}..]).`3esn`?)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`8esn`)Assert Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where 9e1 Ends With 9e12 Ends With 0x0|`1esn` In 6.0e0 In 12).usn2! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:``)Assert Exists(Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..])._usn4!)"), + octest_legacy:ct_string("Create Constraint On()-[``:`4esn`]-()Assert Exists((`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(`1esn` :#usn7:`8esn`).@usn6!)"), + octest_legacy:ct_string("Create Constraint On()<-[`1esn`:@usn5]-()Assert Exists([_usn3 In `8esn`[_usn4] Where 0[..{#usn7}][..$_usn3]|usn2 Contains `2esn` Contains {1000}].`3esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:_usn4)Assert Exists(Reduce(_usn4=1e-1 =~$`7esn` =~1e1,usn2 In .12e-12 Ends With `2esn`|0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}]).usn2!)"), + octest_legacy:ct_string("Create Constraint On(_usn4:`5esn`)Assert None(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str').@usn5?.#usn7? Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn6:_usn4)Assert Case 0e-0[..7.0e-0][..{`8esn`}] When $`8esn`[0x0][.9e0] Then #usn8 =~{@usn5} End._usn3.`8esn`.#usn8! Is Unique"), + octest_legacy:ct_string("Create Index On:_usn3(`7esn`)"), + octest_legacy:ct_string("Create Constraint On(#usn8:`5esn`)Assert All(usn2 In $`5esn`[{`4esn`}][{0}] Where 7.0e-0 Is Not Null).`2esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:_usn3)Assert Exists({}._usn3!.usn2)"), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:@usn6]-()Assert Exists(Filter(#usn7 In .0e-0 In 12 Where 123.654 Ends With {1000} Ends With 9e12).#usn8!.`6esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:`2esn`]->()Assert Exists(Filter(usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF).`7esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[@usn5:`8esn`]->()Assert Exists({`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}.`5esn`)"), + octest_legacy:ct_string("Create Constraint On(usn2:`6esn`)Assert (@usn6 {usn1:0Xa In 1.0 In $@usn5})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]}).#usn7.`8esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:#usn8)Assert Exists(None(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 0xabc[..{usn1}][..\"d_str\"]).``?.`2esn`!.`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`2esn`)Assert Exists(Case When $`6esn`[..01][..{_usn3}] Then .9e-1 Ends With .0e-0 Ends With {_usn3} When usn2 Contains `2esn` Contains {1000} Then $`4esn`[$@usn6...12e12] End.`7esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:usn2)Assert Case When {usn2} Is Not Null Is Not Null Then false Contains {`7esn`} When $12[$`6esn`..][01..] Then .0e-0[..``][..$7] End.#usn8.@usn6? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`7esn`)Assert `3esn`({`3esn`}[...1e1][..0]).`7esn`?.usn1! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:#usn7]->()Assert Exists([`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$usn2 Starts With $999 Starts With .0e0].usn1)"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:#usn7]->()Assert Exists((:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[#usn8?:_usn3 *..123456789]->(usn1 :_usn4:`2esn`).`2esn`.``)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`7esn`)Assert Exists(@usn5(Count(*)[Count ( * )][{0}],`4esn` =~010).`7esn`._usn4?.@usn5?)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:#usn8)Assert Exists(Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[10.12e12]|$usn2[..$999][..#usn8]).`6esn`!.#usn7!)"), + octest_legacy:ct_string("Drop Constraint On()<-[``:`7esn`]-()Assert Exists(Extract(usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|{`3esn`}[..0xabc][..{`6esn`}]).`8esn`?)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`8esn`)Assert Exists([@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`]].`2esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[_usn3:`3esn`]-()Assert Exists(All(`2esn` In $@usn5 Is Not Null Is Not Null Where `6esn`[3.9e-1..`8esn`][12.0..0.0]).`5esn`)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`2esn`)Assert count(Distinct $`8esn` =~{`6esn`} =~12,0[..{#usn7}][..$_usn3]).#usn8 Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[``:@usn5]->()Assert Exists(Filter(`7esn` In 0.12 Is Not Null Where .1e-1 Contains .12e-12)._usn3.`5esn`!)"), + octest_legacy:ct_string("Create Constraint On(``:`6esn`)Assert Exists(Shortestpath((`4esn` :_usn3)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})).``!)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`8esn`)Assert (`4esn` :@usn5)-[usn1?:`3esn`|`3esn`*..]-(`1esn` ).#usn8?._usn4.`7esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`6esn`:@usn5]->()Assert Exists([`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {`7esn`} Is Not Null Is Not Null].`8esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[`7esn`:#usn8]-()Assert Exists(Any(usn1 In $@usn6 Is Null Is Null Where `3esn` Is Null).`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:@usn5]->()Assert Exists(Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where 9e-1 Is Not Null).`3esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`7esn`)Assert Exists(Reduce(#usn7=9e1[0.0],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|0.0[$`4esn`]).#usn8!.`1esn`!.`1esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:usn2)Assert {`3esn`:`5esn` Ends With Count(*)}.@usn6! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:_usn4)Assert Any(`2esn` In $@usn5 Is Not Null Is Not Null Where `1esn` Is Not Null Is Not Null).@usn5!._usn4.@usn5! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:`8esn`)Assert Exists(`8esn`(Distinct 8.1e1 Contains $@usn6,999 Contains {999} Contains 12).usn2?)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`1esn`)Assert Allshortestpaths(((`2esn` :`2esn`:`4esn`{#usn7:0 Starts With `7esn` Starts With 9e0})-[?:`4esn`|:`2esn` *01]->(`2esn` :_usn3{`6esn`:_usn4[{``}..{`6esn`}][$7..$_usn3],`6esn`:$`4esn` Ends With {999}})))._usn4? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:``]-()Assert Exists(Case When 0e-0[$``..10.12e12] Then 3.9e-1[{@usn6}..][01234567..] End.`4esn`!)"), + octest_legacy:ct_string("Create Constraint On(@usn5:_usn4)Assert Exists((@usn6 )-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[`3esn`?:usn2]-(`8esn` {`6esn`:12[@usn6][{`2esn`}]}).usn2.`7esn`.#usn7)"), + octest_legacy:ct_string("Drop Constraint On()-[`8esn`:`3esn`]-()Assert Exists([`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]|7 Starts With 9e-12].usn2?.`6esn`)"), + octest_legacy:ct_string("Create Constraint On(#usn8:usn2)Assert Reduce(usn2={1000}[`2esn`...0e-0][9e-1..0X7],#usn8 In 07[..$`5esn`]|{`3esn`}[..{`4esn`}][..usn2]).`4esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:`4esn`)Assert Reduce(#usn7=$`8esn`[..5.9e-12][..`8esn`],#usn8 In 07[..$`5esn`]|$@usn5[``..]).`2esn`.usn2?.usn2! Is Unique"), + octest_legacy:ct_string("Drop Index On:#usn8(`6esn`)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`5esn`)Assert None(usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF)._usn3! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:`2esn`]-()Assert Exists(Any(`7esn` In 0.12 Is Not Null Where 0.0[00..][0xabc..]).`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`7esn`)Assert (`8esn` :@usn6:_usn3)<-[$#usn8]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]}).usn2._usn4? Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn1:@usn6)Assert (usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12})-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(`7esn` {@usn5:Count ( * )[_usn4..]}).`8esn`.``!.usn1? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`2esn`:_usn3)Assert Exists([#usn7 In .0e-0 In 12 Where Count ( * ) Is Not Null Is Not Null|5.9e-12[\"d_str\"..][{`6esn`}..]].usn2)"), + octest_legacy:ct_string("Create Constraint On()-[usn1:`3esn`]->()Assert Exists(Single(usn1 In \"d_str\" Contains {@usn6} Where false Contains {`7esn`}).`6esn`)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:usn2)Assert Case 9e-12[$7..] When .1e-1 Contains .12e-12 Then true Is Null Else 0[..{#usn7}][..$_usn3] End.`` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn6:_usn3]-()Assert Exists(exists(_usn3 =~{7} =~123.654,12e12 Contains {0}).`6esn`?)"), + octest_legacy:ct_string("Create Constraint On(usn1:`6esn`)Assert Case #usn8 Is Null Is Null When $1000[..0e-0][..010] Then 010 Starts With 9e12 Starts With 1000 End.`8esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn1:``)Assert None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789)._usn4!.@usn6 Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[_usn4:`3esn`]->()Assert Exists(Single(usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]).`8esn`?)"), + octest_legacy:ct_string("Create Constraint On()<-[@usn6:`5esn`]-()Assert Exists(Single(usn1 In \"d_str\" Contains {@usn6} Where {`1esn`} Is Null).`2esn`)"), + octest_legacy:ct_string("Drop Constraint On(usn2:usn1)Assert Single(usn2 In $`5esn`[{`4esn`}][{0}] Where $`4esn` In {999}).#usn8? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn6:`3esn`]-()Assert Exists(Reduce(#usn7=0Xa[999],usn1 In {#usn7} =~.12e12 =~9e0|$@usn5[.9e-1]).#usn7)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`7esn`)Assert Extract(`6esn` In 010[{`1esn`}..] Where {`4esn`}[00..]|`6esn` =~999 =~$999).`1esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`4esn`:``)Assert None(`3esn` In 8.1e1 Contains .9e-1 Contains false).``.`7esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:_usn3)Assert [`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\"].#usn7! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`5esn`)Assert Exists({#usn8:$`8esn` =~{`6esn`} =~12,_usn3:11.12e-12 Contains usn1}.#usn8?)"), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:`7esn`]->()Assert Exists(0Xa.@usn6._usn4!)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:@usn5)Assert ({`1esn`:10.12e12 In Null In .12e12})<-[`6esn`?:@usn6|:`4esn` *12{`6esn`:{12} Starts With $`` Starts With 0X0123456789ABCDEF,@usn6:0 Starts With `7esn` Starts With 9e0}]->(`2esn` :`4esn`:usn2{`8esn`:.9e-1 Contains .9e0 Contains ``,_usn4:8.1e1 Contains .9e-1 Contains false}).``! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:_usn4)Assert Allshortestpaths(((usn1 :@usn6:_usn3)-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1}))).`1esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`8esn`:`7esn`]-()Assert Exists(Extract(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12|01[`4esn`..]).`7esn`._usn3?.``)"), + octest_legacy:ct_string("Create Constraint On()-[usn1:`5esn`]-()Assert Exists(Single(#usn7 In .0e-0 In 12 Where 9e1[$``.._usn4][999..`3esn`]).@usn6?)"), + octest_legacy:ct_string("Create Constraint On(usn2:#usn8)Assert {_usn4:3.9e-1[{@usn6}..][01234567..],`2esn`:.12e-12[9e1]}.usn2! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`3esn`)Assert Exists(Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where 1e-1 =~$`7esn` =~1e1|{`6esn`}[@usn5..{@usn6}]).usn1!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:@usn6)Assert Exists(Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {123456789}[...9e-1][..1.0]|010[{`1esn`}..]).`8esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[``:@usn6]->()Assert Exists(Extract(usn2 In .12e-12 Ends With `2esn` Where 1e-1 Contains 0.0).@usn6.`2esn`?)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`5esn`)Assert Allshortestpaths((:usn1$1000)).`8esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:#usn8)Assert Exists(Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {0}[.1e-1..][_usn4..]|0e-0[..$usn2])._usn4!)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn3)Assert {@usn6:12e12[{`4esn`}..`4esn`][999..{@usn6}]}.usn1?.`8esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:#usn8)Assert Case When `1esn`[{@usn5}..][{_usn4}..] Then {`3esn`}[..{`4esn`}][..usn2] Else `4esn` Contains 0X0123456789ABCDEF Contains $usn2 End.`8esn`.`4esn`?.@usn5? Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[`6esn`:``]-()Assert Exists(Reduce(`3esn`=.0e0 =~0 =~.0e0,usn1 In \"d_str\" Contains {@usn6}|01234567[\"d_str\"..][$`4esn`..]).@usn5?)"), + octest_legacy:ct_string("Create Constraint On()-[``:usn1]->()Assert Exists({`5esn`:{`4esn`}[00..]}.#usn8)"), + octest_legacy:ct_string("Drop Constraint On()-[@usn5:usn2]-()Assert Exists({_usn4:{7} Starts With 0x0 Starts With 9e1,#usn8:{@usn6} In 9e12}.`1esn`!)"), + octest_legacy:ct_string("Create Constraint On(_usn3:#usn7)Assert (`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(`1esn` :#usn7:`8esn`).@usn5.`5esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[usn2:@usn6]-()Assert Exists({`1esn`:$999 Is Not Null}.`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:@usn6)Assert Exists(Case {`7esn`} Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] End.usn1.usn2!)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:@usn5)Assert Reduce(usn1=$123456789 Is Not Null Is Not Null,`7esn` In 0.12 Is Not Null|.12e12 Ends With 07 Ends With 3.9e-1).`1esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`2esn`)Assert Exists(usn1(Distinct 1.9e0[..0][.._usn3],$@usn5 Is Null Is Null).``)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`6esn`)Assert Exists([`` In `7esn` =~#usn8 =~\"d_str\" Where 3.9e-1 Starts With .9e0 Starts With {#usn7}|$usn1 =~.9e12 =~`6esn`].`3esn`!)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`5esn`)Assert usn2(Distinct 1.0 In {usn1},10.12e12[usn2]).`1esn`?.`3esn`!.`7esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[``:_usn4]-()Assert Exists(Case When 6.0e0 =~12.0 =~9e1 Then $12 Ends With 7.0e-0 Ends With 9e-12 When $usn2[..$999][..#usn8] Then $1000[_usn4][{@usn5}] End.`8esn`!._usn3)"), + octest_legacy:ct_string("Drop Constraint On()<-[usn2:#usn8]-()Assert Exists(Single(usn1 In \"d_str\" Contains {@usn6} Where {`1esn`} Is Null).@usn6!)"), + octest_legacy:ct_string("Create Constraint On(_usn3:usn1)Assert Exists(Single(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`).``!)"), + octest_legacy:ct_string("Create Constraint On(#usn7:usn1)Assert None(usn2 In $`5esn`[{`4esn`}][{0}]).`5esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`7esn`:``]-()Assert Exists(Single(`2esn` In $@usn5 Is Not Null Is Not Null Where {`3esn`} =~$@usn5 =~`2esn`).@usn5?.@usn6!)"), + octest_legacy:ct_string("Create Constraint On(usn2:#usn7)Assert Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .12e12 Starts With 5.9e-12 Starts With `4esn`).`3esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(``:`2esn`)Assert Exists(Allshortestpaths((`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})).``?)"), + octest_legacy:ct_string("Create Constraint On(``:`7esn`)Assert All(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1]).``! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn8:``)Assert Exists(Reduce(_usn3=0e-0[..$usn2],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|01234567[10.12e12][0Xa])._usn3!._usn3?.@usn5?)"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:`8esn`]->()Assert Exists(Filter(`6esn` In 010[{`1esn`}..] Where `6esn` Ends With 1e1 Ends With $#usn7).`4esn`)"), + octest_legacy:ct_string("Create Constraint On(@usn5:#usn7)Assert Any(_usn3 In `8esn`[_usn4] Where $_usn3[usn2..][usn1..]).`8esn`.`2esn`.#usn8! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[`6esn`:``]-()Assert Exists((`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[?:@usn5|:#usn7 *0]->(_usn3 {`2esn`:5.9e-12[0x0..]}).@usn6!.`6esn`!)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`7esn`)Assert None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999}).#usn8! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[usn2:_usn4]-()Assert Exists({`6esn`:{usn1}[7.0e-0..][3.9e-1..]}._usn4?)"), + octest_legacy:ct_string("Create Constraint On()-[`8esn`:_usn4]-()Assert Exists(Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`|01 =~07).`2esn`!)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`6esn`)Assert Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {#usn8}[..@usn5]).`7esn`.@usn6 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`4esn`)Assert Reduce(_usn4=1e-1 =~$`7esn` =~1e1,usn2 In .12e-12 Ends With `2esn`|0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}]).usn2! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:@usn6]->()Assert Exists(Allshortestpaths(((usn1 :@usn6:_usn3)-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1}))).`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`3esn`)Assert Reduce(#usn8=$_usn3 In `2esn` In `3esn`,`2esn` In $@usn5 Is Not Null Is Not Null|5.9e-12[12e-12][$`8esn`])._usn4! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`2esn`)Assert Case When {usn2} Is Not Null Is Not Null Then false Contains {`7esn`} When {_usn3} Is Null Is Null Then .12e12 Ends With 07 Ends With 3.9e-1 End.#usn7! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:@usn5)Assert Exists(#usn7(.12e12 Is Not Null).@usn5?)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:#usn8)Assert Reduce(`2esn`=$1000 Contains $123456789 Contains #usn8,`` In `7esn` =~#usn8 =~\"d_str\"|_usn4 Is Not Null Is Not Null).`4esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:`1esn`]-()Assert Exists(Reduce(`2esn`=$usn2 Starts With $999 Starts With .0e0,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|0xabc[0Xa..]).@usn5)"), + octest_legacy:ct_string("Create Constraint On()<-[`6esn`:_usn4]-()Assert Exists(Case 0e-0 In 0X0123456789ABCDEF In `3esn` When $12[10.12e12][.1e1] Then usn1 Ends With 11.12e-12 Ends With 5.9e-12 Else {123456789} Starts With $_usn4 Starts With 0x0 End.`8esn`?.`7esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:usn2)Assert Exists({usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]}._usn4)"), + octest_legacy:ct_string("Create Constraint On(``:`5esn`)Assert Shortestpath((`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})).@usn6? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`2esn`)Assert #usn7($12[10.12e12][.1e1]).`6esn`!.usn2?.usn2! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`8esn`)Assert Reduce(`2esn`=.1e-1[..$_usn3][..0],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|5.9e-12[12e-12][$`8esn`])._usn3.`6esn`?.`3esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:`6esn`)Assert All(`7esn` In 0.12 Is Not Null Where 01234567[1000..][$`8esn`..]).`1esn`!.usn1? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`6esn`)Assert Exists(Any(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).`3esn`!)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`6esn`)Assert [usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null].`1esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`3esn`:_usn4]->()Assert Exists((#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[`7esn`?]-(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}).`6esn`.#usn7._usn3!)"), + octest_legacy:ct_string("Create Constraint On()<-[#usn8:@usn6]-()Assert Exists(None(usn2 In .12e-12 Ends With `2esn` Where {``} Is Null Is Null).@usn6?.`4esn`?._usn4)"), + octest_legacy:ct_string("Create Constraint On(_usn4:`6esn`)Assert Reduce(``=01234567[1000..][$`8esn`..],usn1 In $@usn6 Is Null Is Null|6.0e0[$12..0.12]).``.`5esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:`6esn`)Assert Exists([`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0|$12 Is Null Is Null].`3esn`?)"), + octest_legacy:ct_string("Create Constraint On(usn2:`6esn`)Assert Reduce(_usn3=@usn5[9e-1..{`1esn`}],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|{123456789} Starts With `6esn`).`4esn`.`6esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(``:_usn4)Assert Exists(Case .9e-1 Ends With .0e-0 Ends With {_usn3} When $12 Is Not Null Is Not Null Then {``}[$usn2..00][{_usn3}..123.654] When .1e-1 Starts With @usn6 Starts With _usn3 Then 9e0[{7}...0e-0][Null..@usn5] Else $12 =~4.9e12 End._usn4!)"), + octest_legacy:ct_string("Create Constraint On(#usn8:`1esn`)Assert Extract(#usn8 In 07[..$`5esn`] Where 00 Is Not Null Is Not Null|`5esn` Is Not Null Is Not Null).`3esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`2esn`:#usn8)Assert Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 9e1[$``.._usn4][999..`3esn`])._usn3!.#usn7! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:usn1)Assert Exists(Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where {@usn5} Ends With 0Xa Ends With .12e-12|{`8esn`} In {_usn3} In 6.0e0)._usn4?)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`2esn`)Assert Exists(Reduce(`2esn`={12} Ends With $`3esn` Ends With 0xabc,#usn7 In .0e-0 In 12|.9e-12[usn2]).`3esn`)"), + octest_legacy:ct_string("Create Constraint On(usn2:_usn3)Assert Exists(All(usn1 In $@usn6 Is Null Is Null Where 9e0[`4esn`..$_usn4][9.1e-1..0e0])._usn4!.`1esn`.`4esn`!)"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:#usn8]->()Assert Exists(Allshortestpaths(((#usn8 :usn2)<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))).@usn5?)"), + octest_legacy:ct_string("Create Constraint On(``:`8esn`)Assert @usn5(Distinct 0.0[00..][0xabc..]).#usn8! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`1esn`)Assert Exists(All(`6esn` In 010[{`1esn`}..] Where usn2[12e-12..{`8esn`}][.12e12..{123456789}]).`5esn`.@usn6!.`5esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[`8esn`:usn1]-()Assert Exists([`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 2.12[{12}]|123.654[10.12e12..$12][6.0e0..{#usn8}]].usn2?.#usn7)"), + octest_legacy:ct_string("Create Constraint On(usn1:`6esn`)Assert Exists([`7esn` In 0.12 Is Not Null Where 0X0123456789ABCDEF In false].`7esn`)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:usn2)Assert (`2esn` :`4esn`:usn2{`8esn`:.9e-1 Contains .9e0 Contains ``,_usn4:8.1e1 Contains .9e-1 Contains false})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}).``.@usn5._usn3 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn6:#usn7)Assert [`6esn` In 010[{`1esn`}..]|.1e-1[2.9e1..][$`7esn`..]].usn2 Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[`3esn`:#usn8]-()Assert Exists([`6esn` In 010[{`1esn`}..] Where 9e-12[$7..]].`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On()-[`2esn`:usn1]-()Assert Exists(Filter(#usn7 In .0e-0 In 12 Where 00[$``])._usn3!)"), + octest_legacy:ct_string("Drop Constraint On()-[`6esn`:usn2]-()Assert Exists(All(`` In `7esn` =~#usn8 =~\"d_str\").`3esn`!)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:usn1)Assert Single(`7esn` In 0.12 Is Not Null Where 010[{`1esn`}..]).`3esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[`7esn`:usn2]-()Assert Exists(Any(usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null).usn1)"), + octest_legacy:ct_string("Drop Constraint On()<-[`1esn`:@usn6]-()Assert Exists(Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $12 Is Null Is Null).`4esn`)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`7esn`)Assert All(`6esn` In 010[{`1esn`}..] Where {`4esn`}[00..]).`8esn`.`4esn`.`5esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:@usn5)Assert Shortestpath(((:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[`2esn` *7]->(:`8esn`{@usn6:$`6esn`[$_usn3..{1000}],_usn3:0xabc[..{usn1}][..\"d_str\"]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ))).`4esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:@usn6)Assert (`` $999)<-[? *010..0]-(#usn7 :``)-[:`4esn`|:`2esn`{usn1:3.9e-1 Contains $@usn5}]->(:`5esn`:`7esn`{`8esn`:{12} Ends With $`3esn` Ends With 0xabc}).`3esn`?.`6esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`6esn`:`5esn`]-()Assert Exists(Extract(usn2 In .12e-12 Ends With `2esn` Where `7esn`[1.9e0..5.9e-12][9e0..@usn5]).#usn7!.`3esn`?.`3esn`!)"), + octest_legacy:ct_string("Create Constraint On(usn2:@usn6)Assert ``(Distinct {_usn3}[{0}...9e-1][9e-1...0e0],$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]).`3esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`1esn`)Assert Case {`6esn`}[6.0e0..9e0][.9e1..12e12] When 3.9e-1 Ends With {usn1} Ends With {`5esn`} Then 5.9e-12 Is Null Is Null When 7 Is Null Is Null Then 2.12[`4esn`][.9e-1] End.``?.#usn8?.`3esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:usn1)Assert Exists(Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..]|1e-1 Contains 0.0)._usn4?)"), + octest_legacy:ct_string("Create Constraint On(usn1:`5esn`)Assert Filter(#usn7 In .0e-0 In 12 Where 123.654 Ends With {1000} Ends With 9e12).#usn8!.`6esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[#usn7:`1esn`]-()Assert Exists([@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {1000}[..`5esn`][..9e12]].#usn7!.`5esn`!._usn3)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`3esn`)Assert Exists((`8esn` :`8esn`)-[`2esn` *1000..{`2esn`:{@usn6} In 9e12}]->(:usn1{usn1:true In 0.0,@usn5:{`1esn`} Is Null}).`7esn`.#usn7!)"), + octest_legacy:ct_string("Create Constraint On(@usn6:`8esn`)Assert Exists((@usn5 )<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}).@usn6?)"), + octest_legacy:ct_string("Drop Constraint On()<-[`6esn`:`2esn`]-()Assert Exists({`4esn`:`3esn` Starts With 9.1e-1 Starts With .9e-1,#usn8:1e-1[$`4esn`]}._usn4)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:_usn3)Assert Exists(_usn3($`5esn`[$_usn3][$12]).`7esn`)"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:`8esn`]-()Assert Exists(All(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .9e12 Is Not Null Is Not Null).`1esn`!)"), + octest_legacy:ct_string("Create Constraint On(#usn8:#usn7)Assert Exists((usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[_usn3?:@usn5|:#usn7]->(`2esn` :usn1)<-[?:usn1|usn2{#usn8:'s_str'[`2esn`][12.0]}]->(_usn3 :``).`5esn`)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:usn1)Assert Exists(Extract(#usn7 In .0e-0 In 12 Where 0xabc =~123456789|Null[$`3esn`..][`1esn`..]).usn2!)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`7esn`)Assert Exists(Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..]|11.12e-12 Contains usn1)._usn4?)"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:`3esn`)Assert Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})))).`5esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn1:`1esn`)Assert Exists(Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]).#usn8.`5esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:`1esn`]-()Assert Exists(Reduce(`7esn`=$usn2 Starts With $999 Starts With .0e0,@usn6 In 9e12[..usn2][.._usn3]|$@usn6 Is Null Is Null)._usn4?.usn1?)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:@usn5)Assert Exists(All(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1]).``!)"), + octest_legacy:ct_string("Create Constraint On()-[usn2:@usn6]->()Assert Exists(Shortestpath((:`3esn`)-[#usn8*..]-(`5esn` :#usn8:@usn6)<-[`4esn`?]-(:@usn5{#usn7:Null,`5esn`:{@usn5} Ends With 0Xa Ends With .12e-12})).`8esn`)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`1esn`)Assert Exists(Filter(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`1esn`)Assert Exists(Single(_usn3 In `8esn`[_usn4] Where 01234567 Ends With .0e0 Ends With 12e12).#usn8!)"), + octest_legacy:ct_string("Drop Constraint On()-[`8esn`:`4esn`]->()Assert Exists((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[_usn3?:`7esn`|usn1]-(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` ).`4esn`.`8esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[_usn3:@usn5]-()Assert Exists(Case When $12[$`6esn`..][01..] Then $`4esn`[$@usn6...12e12] When .9e-12[.12e12..][0Xa..] Then {`7esn`} Is Not Null Is Not Null Else {`6esn`}[6.0e0..9e0][.9e1..12e12] End.#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`5esn`)Assert Exists(Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn` =~999 =~$999|`1esn` In 6.0e0 In 12).usn1?.``)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`6esn`)Assert Exists((@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[#usn7? *0xabc..12]-(_usn3 :`6esn`).#usn7?)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`2esn`)Assert Exists((#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})-[`3esn`?:`3esn`|`3esn`*..]-({`6esn`:1000[{`1esn`}..][$`3esn`..]})-[@usn6:`1esn`|:`1esn`{#usn8:12.0[..Count ( * )][..@usn6]}]-(@usn6 :`3esn`{`4esn`:$`5esn`[$_usn3][$12],#usn8:`8esn`[.12e12..]}).#usn7!)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`6esn`)Assert Exists(Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $0 Contains $123456789 Contains {`3esn`}).@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`3esn`)Assert Exists(Shortestpath(((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})))).`4esn`?.``?._usn4!)"), + octest_legacy:ct_string("Create Constraint On(#usn7:`4esn`)Assert Exists(Single(usn2 In .12e-12 Ends With `2esn` Where 1e-1 Contains 0.0).`2esn`?)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:usn2)Assert {#usn8:$`6esn` =~$#usn7 =~$`4esn`,`1esn`:999[..$@usn5][..``]}.#usn7? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn1:`4esn`)Assert Exists(Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 9e1[$``.._usn4][999..`3esn`]).``?.`6esn`!)"), + octest_legacy:ct_string("Drop Constraint On(``:`3esn`)Assert Single(`6esn` In 010[{`1esn`}..] Where {`8esn`}[@usn5][$`2esn`]).#usn7 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`8esn`)Assert Exists(`5esn`.`6esn`?)"), + octest_legacy:ct_string("Create Constraint On(usn1:`6esn`)Assert Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e-1 Is Null Is Null).@usn6._usn4! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`6esn`)Assert Any(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])._usn4._usn3!.usn1! Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:`8esn`)Assert Case 0xabc[..{usn1}][..\"d_str\"] When $1000[..0e-0][..010] Then 999 Starts With 7.0e-0 Starts With true When {123456789} Starts With $_usn4 Starts With 0x0 Then .9e-12[usn2] End.`4esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:#usn7)Assert {``:@usn6[0x0..][$_usn4..],@usn5:$@usn5[`8esn`][12e12]}.`2esn`?.`6esn`!.`3esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[usn2:`6esn`]-()Assert Exists([`` In `7esn` =~#usn8 =~\"d_str\" Where 3.9e-1 Starts With .9e0 Starts With {#usn7}|$usn1 =~.9e12 =~`6esn`]._usn3.usn1!)"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:_usn3)Assert _usn3(Distinct 12[..$`5esn`],@usn6[999][1000]).`3esn`?.@usn5!.@usn6 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`3esn`)Assert Exists({`1esn`:{1000}[..`5esn`][..9e12]}.`4esn`?.`3esn`!.``!)"), + octest_legacy:ct_string("Create Constraint On(_usn4:#usn8)Assert None(`7esn` In 0.12 Is Not Null Where 01234567[1000..][$`8esn`..]).#usn8 Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[_usn3:`8esn`]-()Assert Exists([`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}]].@usn6?)"), + octest_legacy:ct_string("Create Constraint On(_usn4:`8esn`)Assert Exists(Any(#usn7 In .0e-0 In 12 Where 00[$``]).`1esn`)"), + octest_legacy:ct_string("Drop Constraint On()<-[usn2:`1esn`]-()Assert Exists(Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 2.12[{12}]).`1esn`?.#usn7?.#usn8?)"), + octest_legacy:ct_string("Drop Constraint On()<-[`6esn`:`3esn`]-()Assert Exists(Case When {1000} =~4.9e12 =~9e1 Then $12 Is Not Null Is Not Null When @usn6[true..] Then {0} Is Not Null Is Not Null Else @usn5 =~$#usn7 =~{usn1} End.``.usn2)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:#usn8)Assert Reduce(`5esn`=.9e1 Ends With 0x0,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|Count ( * ) Contains 9.1e-1 Contains {`2esn`}).`6esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn4:_usn4)Assert Exists(Case When {`8esn`} Starts With .9e-1 Starts With 1000 Then $`6esn`[$_usn3..{1000}] When 3.9e-1 Starts With .9e0 Starts With {#usn7} Then .0e-0 Ends With $`2esn` Ends With `5esn` Else _usn4[$_usn4] End.usn2!)"), + octest_legacy:ct_string("Create Constraint On()<-[`5esn`:`3esn`]-()Assert Exists(None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 12e12 Ends With `5esn` Ends With .0e0).`4esn`.`3esn`?)"), + octest_legacy:ct_string("Create Constraint On(@usn6:``)Assert Exists(Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12).`6esn`!)"), + octest_legacy:ct_string("Create Constraint On(_usn4:usn2)Assert Exists((`6esn` :`4esn`:usn2)<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]-(`7esn` :#usn8:@usn6{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}).`1esn`!)"), + octest_legacy:ct_string("Create Constraint On(@usn6:`4esn`)Assert Exists((`3esn` :#usn7:`8esn`{`4esn`:$`5esn`[$_usn3][$12],#usn8:`8esn`[.12e12..]})<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0}).`5esn`?)"), + octest_legacy:ct_string("Create Constraint On(#usn7:usn1)Assert Exists(Any(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .1e1 Is Null Is Null)._usn4?)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`7esn`)Assert Exists(({``:true Is Null,_usn3:$12 Ends With 7.0e-0 Ends With 9e-12})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(:`6esn`{`2esn`:`5esn` Ends With Count(*)})._usn4!)"), + octest_legacy:ct_string("Create Constraint On(``:`2esn`)Assert Exists(All(usn1 In \"d_str\" Contains {@usn6} Where {`1esn`} Is Null).``?)"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:`7esn`]->()Assert Exists((`7esn` {@usn5:Count ( * )[_usn4..]})<-[_usn4:`2esn`|`5esn` *7{`2esn`:999 Ends With {#usn8},#usn8:.12e12 Is Not Null}]-(@usn5 :#usn7:`8esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true}).@usn5!.#usn7.`7esn`)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:_usn4)Assert Exists(None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..])._usn3!)"), + octest_legacy:ct_string("Drop Constraint On()-[usn1:`2esn`]-()Assert Exists(Shortestpath((usn2 :`2esn`:`4esn`{`7esn`:@usn5 =~$#usn7 =~{usn1}})).@usn5.@usn6)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`3esn`)Assert Exists(Allshortestpaths((`2esn` :`2esn`:`4esn`{#usn7:0 Starts With `7esn` Starts With 9e0})).`2esn`.usn2?.`4esn`?)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:@usn6)Assert Shortestpath((:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})<-[`5esn`:@usn6|:`4esn` *010..0{`8esn`:0xabc Starts With 12 Starts With 0e-0}]-(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})<-[?:@usn6|:`4esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]-(`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})).#usn8!.`6esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[@usn5:#usn7]->()Assert Exists(Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}).`8esn`!._usn3!._usn3!)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:_usn3)Assert Filter(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null).usn2!.#usn8 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:_usn3)Assert `4esn`($#usn7[01..2.12][2.12..3.9e-1])._usn3 Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn2:@usn5)Assert Exists(All(usn1 In {#usn7} =~.12e12 =~9e0 Where {7}[$@usn5..123456789][1e1..1.9e0])._usn4.`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On()-[``:`4esn`]-()Assert Exists({usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}.`8esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`6esn`)Assert Exists(Case When .1e-1[2.9e1..][$`7esn`..] Then `4esn` Is Not Null When `4esn` =~010 Then .12e12[$usn1..][{@usn6}..] End.`8esn`?)"), + octest_legacy:ct_string("Create Index On:usn2(`6esn`)"), + octest_legacy:ct_string("Drop Constraint On()<-[usn2:`1esn`]-()Assert Exists(Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `6esn` Ends With 1e1 Ends With $#usn7).`8esn`!.`2esn`!.`1esn`!)"), + octest_legacy:ct_string("Create Constraint On(usn2:@usn5)Assert {#usn7:$usn2[..$999][..#usn8],`6esn`:`2esn`}.`6esn`?.#usn7? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:_usn3)Assert Exists(Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0).@usn5!)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`1esn`)Assert Exists(Shortestpath((`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[:`7esn`|usn1 *7]-(`8esn` :`5esn`:`7esn`{usn1:{``} Contains 0.0 Contains `4esn`})-[? *1000..{`1esn`:{`1esn`} Is Null}]->(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})).`2esn`?._usn4)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:usn1)Assert Exists(Extract(usn2 In .12e-12 Ends With `2esn` Where 9e1 =~$`8esn` =~10.12e12|$`8esn`[0x0][.9e0]).usn1)"), + octest_legacy:ct_string("Create Constraint On(@usn6:`1esn`)Assert `5esn`(Distinct {`3esn`} =~$`` =~$`8esn`,#usn7 In 07).`3esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`7esn`)Assert Filter(usn2 In .12e-12 Ends With `2esn` Where $7).usn1.#usn7!.`5esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn4:#usn8)Assert Exists(Any(#usn8 In 07[..$`5esn`] Where `1esn` Is Not Null Is Not Null)._usn3!.`4esn`!)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`6esn`)Assert None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 010[...12e-12]).usn2? Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:_usn3)Assert Any(usn2 In .12e-12 Ends With `2esn` Where $12 =~4.9e12)._usn4 Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`7esn`:_usn3]->()Assert Exists(Case $usn1 Ends With {`2esn`} Ends With $usn1 When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] End.@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`2esn`)Assert [_usn3 In `8esn`[_usn4] Where {#usn7} Starts With .1e-1|$@usn5 Is Null Is Null].usn1! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:``)Assert Exists(Any(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 0 In 2.9e1 In 7).#usn7?._usn3.``!)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`2esn`)Assert Exists(All(#usn7 In .0e-0 In 12 Where _usn4 Is Not Null Is Not Null).`3esn`.usn1?.usn2)"), + octest_legacy:ct_string("Create Constraint On(@usn6:``)Assert Exists(`4esn`(Distinct $#usn7,{`4esn`} Ends With Count(*)).`6esn`.usn1!.`8esn`?)"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:`1esn`]-()Assert Exists([`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` Ends With 10.12e12|00[$``]]._usn4?.@usn5)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`1esn`)Assert Exists(Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999}|{`6esn`}[6.0e0..9e0][.9e1..12e12]).usn1.`3esn`!.@usn5?)"), + octest_legacy:ct_string("Create Constraint On()-[`4esn`:`8esn`]->()Assert Exists(Extract(#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null).`7esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:#usn7)Assert Exists(Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $`4esn`[$@usn6...12e12]).``?.`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`5esn`)Assert Case $12 =~4.9e12 When $`4esn`[$@usn6...12e12] Then .12e-12[@usn6..'s_str'] Else {0} In {`1esn`} End.#usn8.#usn8! Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn2:usn2)Assert Exists(Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]).#usn8.`2esn`?.``?)"), + octest_legacy:ct_string("Create Constraint On()-[@usn5:`8esn`]->()Assert Exists([`7esn` In 0.12 Is Not Null Where 0X0123456789ABCDEF In false].`7esn`)"), + octest_legacy:ct_string("Create Constraint On()-[usn1:`3esn`]->()Assert Exists(Allshortestpaths(((:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})-[?:`4esn`|:`2esn`{usn1:{123456789} Starts With `6esn`,@usn5:9e1 Ends With 9e12 Ends With 0x0}]-(`2esn` :usn1))).usn1!)"), + octest_legacy:ct_string("Create Constraint On(#usn7:`4esn`)Assert Exists(Reduce(#usn7=$`5esn` Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|@usn5 In Null).`8esn`!)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`4esn`)Assert Single(`1esn` In $12 In {usn2} Where 12e12[{`4esn`}..`4esn`][999..{@usn6}]).@usn5? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`6esn`)Assert Extract(#usn8 In 07[..$`5esn`] Where `1esn` Is Not Null Is Not Null).usn2 Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn4:`6esn`)Assert Case \"d_str\" Contains {@usn6} When Count(*) =~01234567 =~.1e-1 Then 0xabc Starts With 12 Starts With 0e-0 When {0} In {`1esn`} Then `3esn` Contains 01 Contains 01 End.#usn7! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`6esn`)Assert Case When 0e0 Contains {`2esn`} Then 8.1e1[.1e1..][`4esn`..] End.`4esn`.`3esn`!._usn4 Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:usn2)Assert [`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 6.0e0 =~12.0 =~9e1|#usn7 =~$@usn5 =~{7}]._usn4?.`7esn`.#usn8! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[usn2:`8esn`]-()Assert Exists((usn1 :#usn8:@usn6)-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)-[:#usn7|:@usn5]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}).usn1!.`2esn`._usn3?)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`3esn`)Assert None(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).`5esn`?.#usn8! Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:`2esn`)Assert Exists(None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12).`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On(usn1:#usn7)Assert Case When 9e12 Is Null Is Null Then \"d_str\" Is Not Null Is Not Null When {`3esn`} Is Not Null Is Not Null Then {``} Is Null Is Null End.usn1?.`2esn`.`5esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn2:#usn7)Assert Reduce(`4esn`=.12e12[..$123456789],usn1 In $@usn6 Is Null Is Null|2.9e1 Ends With `5esn` Ends With 1000).@usn5? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`6esn`)Assert Exists(Any(usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null).usn1)"), + octest_legacy:ct_string("Create Constraint On()-[`4esn`:`7esn`]-()Assert Exists({`7esn`:.9e1[$`1esn`..][$``..]}.`8esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:#usn8)Assert Extract(#usn7 In .0e-0 In 12 Where $12 In {usn2}|0Xa Starts With 9e0 Starts With Count(*)).#usn8? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[#usn8:`3esn`]->()Assert Exists(Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..]|{_usn3} In $#usn8 In $12).#usn7)"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:`3esn`]-()Assert Exists(count(Distinct 1e-1[$`4esn`]).`8esn`!)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:``)Assert Exists(Extract(usn2 In .12e-12 Ends With `2esn` Where $`4esn` Ends With .12e12 Ends With 123.654|0X7 Is Not Null Is Not Null).usn1?)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:#usn7)Assert Exists(({@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]}).@usn6!)"), + octest_legacy:ct_string("Create Constraint On(``:`5esn`)Assert Exists(Allshortestpaths(((#usn8 :usn2)<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))).`8esn`)"), + octest_legacy:ct_string("Create Constraint On()-[`3esn`:@usn5]->()Assert Exists(Reduce(`2esn`=.9e0 In 8.1e1,`6esn` In 010[{`1esn`}..]|Count ( * )[9e0..$``]).#usn8)"), + octest_legacy:ct_string("Create Constraint On(#usn7:`4esn`)Assert Exists(Reduce(`4esn`=.12e12[..$123456789],usn1 In $@usn6 Is Null Is Null|2.9e1 Ends With `5esn` Ends With 1000).#usn7.usn1)"), + octest_legacy:ct_string("Drop Constraint On()<-[`8esn`:``]-()Assert Exists({`8esn`:00[$``]}.`1esn`?.usn2?.`2esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:@usn6)Assert (:`5esn`:`7esn`)-[?:`2esn`|`5esn` *..123456789$1000]-({`1esn`:$`8esn` Is Null Is Null,`1esn`:0.12 =~2.9e1 =~9e1})<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}).``! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`7esn`)Assert `5esn`(`3esn` Starts With 9.1e-1 Starts With .9e-1,.12e-12 Ends With `2esn`).`6esn`._usn4.`7esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn7:`5esn`)Assert Reduce(``={`1esn`} Contains 1.0 Contains 4.9e12,usn1 In {#usn7} =~.12e12 =~9e0|{#usn7} Ends With 999 Ends With 12).`7esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn1:`3esn`)Assert ``(00[Null..usn2]).usn1?._usn3! Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:`6esn`)Assert (`3esn` {`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})-[`3esn`?:`1esn`|:`1esn`]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}).#usn8! Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:@usn5)Assert Exists(@usn6(Distinct 0e0 Contains {`2esn`}).`7esn`.`3esn`?._usn4?)"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:`4esn`]->()Assert Exists(`3esn`(Distinct 0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],01[`4esn`..]).`2esn`)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:``)Assert Exists((`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->(:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[ *1000..{`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]->(`` ).#usn8!)"), + octest_legacy:ct_string("Drop Constraint On()-[`2esn`:_usn4]->()Assert Exists([`1esn` In $12 In {usn2} Where 0.12 In $``|{`1esn`}[..$_usn4]].@usn5.`7esn`?.``!)"), + octest_legacy:ct_string("Drop Constraint On()-[`7esn`:usn2]->()Assert Exists([`7esn` In 0.12 Is Not Null Where @usn6[0x0..][$_usn4..]].`8esn`?)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`2esn`)Assert Exists({`8esn`:5.9e-12[0x0..]}.`4esn`?)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn4:_usn3]-()Assert Exists([usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3]].@usn5!)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`8esn`)Assert Allshortestpaths((`7esn` {#usn8:2.9e1[{`2esn`}]})<-[`7esn`?:`7esn`|usn1 *1000..{@usn6:#usn7 In 07,#usn8:$999[usn1..0e-0]}]->(#usn7 {usn1:2.12[{12}]})).@usn5?.`3esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[#usn7:`7esn`]-()Assert Exists(Single(usn1 In {#usn7} =~.12e12 =~9e0 Where 0X0123456789ABCDEF Is Not Null Is Not Null)._usn4._usn3!.``?)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:`1esn`)Assert Filter(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null).`1esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:_usn3)Assert Exists(Case 0xabc[..Count(*)][..$`5esn`] When `6esn`[0X0123456789ABCDEF..][`8esn`..] Then `2esn`[`7esn`][1000] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} Else 12e12[{`4esn`}..`4esn`][999..{@usn6}] End.`5esn`)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:_usn3)Assert exists($#usn7 Starts With $123456789,Count(*) =~01234567 =~.1e-1).usn2! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`1esn`:`6esn`]-()Assert Exists(Single(#usn8 In 07[..$`5esn`] Where 8.1e1 Contains .9e-1 Contains false).`7esn`?)"), + octest_legacy:ct_string("Create Constraint On(``:@usn5)Assert Case When 0e-0 In 0X0123456789ABCDEF In `3esn` Then $`1esn`[..12e-12][...9e12] Else .1e-1[..$_usn3][..0] End.`2esn`?.`4esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:``)Assert Exists(Case _usn4 Ends With {`8esn`} Ends With usn2 When .12e-12 Ends With `2esn` Then 9e-12[$7..] When 9e0[..{#usn7}][..`4esn`] Then .12e12 Is Not Null End.`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`8esn`)Assert Exists(Reduce(#usn8=$0 Ends With 9e-12 Ends With $_usn4,usn1 In \"d_str\" Contains {@usn6}|12e12[.9e12..07]).`3esn`.`8esn`._usn3?)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`4esn`)Assert {`7esn`:{12},`2esn`:$_usn3 Is Not Null}.#usn8.`5esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:_usn3)Assert Exists(Single(usn2 In $`5esn`[{`4esn`}][{0}] Where .1e-1[2.9e1..][$`7esn`..]).`3esn`!.`8esn`?._usn4?)"), + octest_legacy:ct_string("Create Constraint On()-[#usn8:`6esn`]->()Assert Exists(Any(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0).`6esn`.#usn8!)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`5esn`)Assert Exists(Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End.``?.`8esn`)"), + octest_legacy:ct_string("Drop Constraint On(usn1:`3esn`)Assert Case 0e0 =~{12} =~{1000} When `7esn` =~#usn8 =~\"d_str\" Then 00 =~`4esn` =~.9e-12 End.`3esn`.`8esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`2esn`)Assert Exists(Case $12[10.12e12][.1e1] When 9e-12 Is Not Null Is Not Null Then {12} Ends With 1e1 When 9e1 Ends With `7esn` Ends With 2.12 Then `4esn`[9e-12..true] End.`2esn`!)"), + octest_legacy:ct_string("Create Constraint On(_usn3:#usn7)Assert Exists(@usn5({`3esn`}[01234567][{#usn7}],@usn6 Starts With #usn7).#usn7?.``?.`6esn`)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`6esn`)Assert Single(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])._usn3._usn4 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`1esn`)Assert Case .12e12 Starts With 5.9e-12 Starts With `4esn` When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] When $usn2 Contains $`3esn` Contains 6.0e0 Then $`4esn` Ends With {999} End.usn2? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`8esn`)Assert Exists(Allshortestpaths(((#usn8 :usn2)<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))).`8esn`)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`5esn`)Assert Exists({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}._usn4)"), + octest_legacy:ct_string("Create Constraint On(usn1:_usn3)Assert Exists(None(`6esn` In 010[{`1esn`}..] Where $`4esn` Is Null Is Null).`2esn`?.`8esn`!)"), + octest_legacy:ct_string("Create Constraint On(usn1:`4esn`)Assert Exists(Extract(usn1 In $@usn6 Is Null Is Null Where $999 =~false =~{`8esn`}).`6esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:`2esn`]->()Assert Exists({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]}.`1esn`?)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`2esn`)Assert Exists(Allshortestpaths(((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}))).`6esn`!.#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`2esn`)Assert ({``:true Is Null,_usn3:$12 Ends With 7.0e-0 Ends With 9e-12})-[:#usn8|:`` *..07{@usn5:01234567[\"d_str\"..][$`4esn`..],`6esn`:$usn1 Ends With {`2esn`} Ends With $usn1}]-(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]}).``?.`8esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:`1esn`]->()Assert Exists(Allshortestpaths((((`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})-[`8esn`:`4esn`|:`2esn`]->(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})))).`3esn`)"), + octest_legacy:ct_string("Drop Constraint On()<-[`5esn`:`4esn`]-()Assert Exists(`3esn`(Distinct $@usn5 Contains _usn3,{`1esn`} Contains 1.0 Contains 4.9e12)._usn4?)"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn5:``]-()Assert Exists(Allshortestpaths((`8esn` :`2esn`:`4esn`)-[`8esn`:_usn4|:`1esn`]->(@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})).``?.`3esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`3esn`)Assert (`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[?:@usn5|:#usn7 *0]->(_usn3 {`2esn`:5.9e-12[0x0..]}).usn2? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:@usn5)Assert Exists(All(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]).`5esn`!._usn4!)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:@usn6)Assert (_usn3 :#usn7:`8esn`)<-[_usn4? *999..123456789{@usn6:$`4esn` Ends With .12e12 Ends With 123.654}]->({`1esn`:10.12e12 In Null In .12e12})-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12}).#usn7!.`8esn`.`6esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn2:`5esn`)Assert Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]).`4esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`2esn`:@usn6]-()Assert Exists({_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}.`2esn`.``)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:@usn5)Assert Exists(``($12 =~4.9e12,4.9e12 Is Not Null Is Not Null).@usn5.@usn6)"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:``]->()Assert Exists(All(#usn7 In .0e-0 In 12 Where $12 In {usn2}).usn2)"), + octest_legacy:ct_string("Drop Constraint On(``:`1esn`)Assert None(#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12).`6esn`.`5esn`!.``! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:usn1)Assert [`6esn` In 010[{`1esn`}..] Where {``}[$usn2..00][{_usn3}..123.654]|.9e-12[usn2]].`5esn`!._usn3?.`2esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:#usn8)Assert Exists({#usn7:7 Starts With 9e-12}.#usn8.`8esn`)"), + octest_legacy:ct_string("Create Constraint On(@usn5:`2esn`)Assert Allshortestpaths(((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null}))).`4esn`?._usn3! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`7esn`)Assert {`6esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],_usn4:0.0[$`4esn`]}._usn3! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`7esn`)Assert Exists(Shortestpath((_usn4 :usn2)-[@usn5?:#usn7|:@usn5]-(usn1 :#usn8:@usn6))._usn3?.`1esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:`3esn`]-()Assert Exists({@usn6:{usn2} Ends With {@usn6} Ends With 1000,#usn7:2.12[{12}]}.@usn6?)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`6esn`)Assert [@usn6 In 9e12[..usn2][.._usn3] Where `8esn`[_usn4]].#usn8 Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[#usn7:#usn8]->()Assert Exists(#usn8(Distinct 0X7[#usn7..][$@usn5..],0e0[12.0][{#usn7}])._usn4)"), + octest_legacy:ct_string("Create Constraint On(_usn4:_usn4)Assert [#usn8 In 07[..$`5esn`] Where $@usn6 Starts With 0xabc Starts With {`7esn`}|{1000} Starts With 10.12e12 Starts With .0e-0].@usn6 Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:_usn4)Assert All(usn1 In \"d_str\" Contains {@usn6} Where $`5esn` =~Count(*) =~1.9e0).`2esn`.`2esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:`3esn`)Assert (`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})._usn3!.`4esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(`3esn`:_usn4)Assert Shortestpath((#usn8 {usn2:$0 Ends With 9e-12 Ends With $_usn4,`5esn`:0e-0[{@usn6}]})-[`8esn`?:_usn3]->(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})).@usn5 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`6esn`)Assert Exists(All(_usn3 In `8esn`[_usn4] Where $_usn3[usn2..][usn1..]).usn1?)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:_usn4)Assert Exists(Any(usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]).`7esn`!.`1esn`?.usn2?)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`6esn`)Assert Exists({#usn8:.0e-0 Ends With $`2esn` Ends With `5esn`}.`1esn`!.`1esn`!.usn2!)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:_usn3)Assert Exists(Reduce(``=01[`4esn`..],#usn8 In 07[..$`5esn`]|8.1e1[usn2..{1000}][0X7..9e12]).usn2.@usn6!.`4esn`?)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`7esn`)Assert (_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[_usn3:`7esn`|usn1]->(:_usn3{usn2:6.0e0[$12..0.12],#usn7:`2esn`}).`2esn`?.@usn6 Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[usn1:`2esn`]->()Assert Exists({usn1:$`3esn` =~#usn8 =~0x0}.@usn6.`7esn`?.#usn7?)"), + octest_legacy:ct_string("Create Constraint On()-[`4esn`:`4esn`]->()Assert Exists(Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})).`4esn`?.`2esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:_usn3)Assert Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})).@usn6.`` Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:``)Assert Exists(All(`2esn` In $@usn5 Is Not Null Is Not Null Where `6esn`[3.9e-1..`8esn`][12.0..0.0]).`5esn`)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:@usn5)Assert Allshortestpaths(((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}))).`6esn`!.#usn8! Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn5:`7esn`)Assert Exists({`5esn`:`3esn` Starts With 9.1e-1 Starts With .9e-1}._usn3)"), + octest_legacy:ct_string("Create Constraint On()<-[`7esn`:@usn6]-()Assert Exists(All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where .12e-12[9e1]).`8esn`?.`3esn`?)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:#usn7)Assert Single(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0).`6esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(`4esn`:usn1)Assert Exists(Shortestpath((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})).@usn5)"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:usn1]-()Assert Exists(Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $usn1 Contains 4.9e12 Contains $`2esn`).`7esn`)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`4esn`)Assert Reduce(`2esn`=\"d_str\" Contains {@usn6},`6esn` In 010[{`1esn`}..]|`1esn`[..$1000]).`2esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`3esn`)Assert Case When 3.9e-1 Ends With {usn1} Ends With {`5esn`} Then `3esn` Contains 01 Contains 01 When {`1esn`} Is Null Then .1e1[{@usn6}][true] End.`` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:#usn7)Assert None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12).`4esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn1:`8esn`)Assert None(`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`}[@usn5..{@usn6}]).`3esn`?._usn4? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:`5esn`)Assert Exists(Extract(usn1 In {#usn7} =~.12e12 =~9e0|11.12e-12 Contains usn1)._usn4.``?)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:`3esn`]-()Assert Exists(Shortestpath(((usn1 :#usn7:`8esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7}))).usn2.``?.usn1?)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`3esn`)Assert Exists(Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0).#usn7?)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:_usn4)Assert Exists((:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]}).usn2.`5esn`?.`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On()<-[`7esn`:_usn4]-()Assert Exists(Shortestpath((`3esn` :`2esn`:`4esn`)).`4esn`)"), + octest_legacy:ct_string("Create Constraint On(@usn5:#usn7)Assert Exists(_usn3().`8esn`!.`2esn`!.`4esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn4:`5esn`]-()Assert Exists(Case $`8esn`[...1e-1] When $`4esn` Ends With {999} Then {123456789}[...9e-1][..1.0] When {#usn8}[..@usn5] Then `3esn` Is Null End.`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On(usn1:_usn4)Assert Exists(Single(`1esn` In $12 In {usn2} Where 12e12[{`4esn`}..`4esn`][999..{@usn6}]).@usn5!)"), + octest_legacy:ct_string("Create Constraint On()-[usn2:#usn8]-()Assert Exists(Reduce(_usn3={@usn6} In 9e12,@usn6 In 9e12[..usn2][.._usn3]|07[{@usn5}..]).@usn6.`4esn`.usn2)"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn5:usn2]-()Assert Exists([@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..]|{#usn7} Ends With 999 Ends With 12].@usn5)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`8esn`)Assert All(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}).`4esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:_usn3]-()Assert Exists({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}.`8esn`!)"), + octest_legacy:ct_string("Create Constraint On(``:#usn8)Assert Reduce(`2esn`=$usn1 =~.9e12 =~`6esn`,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|1.9e0[..0][.._usn3]).#usn7?.`5esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:`4esn`]->()Assert Exists(Single(`6esn` In 010[{`1esn`}..] Where Count ( * ) Starts With 0.12).`4esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:@usn6)Assert Exists(Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When $_usn3 In `2esn` In `3esn` Then 9.1e-1 Contains {`3esn`} Contains $12 Else \"d_str\" Contains {@usn6} End.@usn6)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:usn2)Assert (:`3esn`{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]})<-[`1esn`?{`2esn`:`8esn`[.12e12..],_usn3:usn1 =~0Xa =~0}]->(:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000}).`8esn`!.`6esn`!.usn2 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`3esn`)Assert {usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}.`3esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`3esn`)Assert Exists(Reduce(`5esn`=$``[9e0..][5.9e-12..],#usn7 In .0e-0 In 12|0xabc[..Count(*)][..$`5esn`]).`6esn`)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:usn2)Assert Exists(Reduce(`1esn`={`5esn`}[01234567..][5.9e-12..],usn1 In {#usn7} =~.12e12 =~9e0|$`6esn`[..01][..{_usn3}])._usn3?.`2esn`)"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn6:#usn7]-()Assert Exists({usn2:#usn7[123.654][{12}]}.``)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:@usn6)Assert usn2(Distinct .9e-1 Is Null Is Null).`2esn`!.`6esn`!.`7esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:@usn6)Assert Exists((#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7})<-[_usn4:usn2]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1})<-[#usn7?:_usn3 *999..123456789{@usn5:$12 In {usn2},usn1:5.9e-12 Is Null Is Null}]->(`` {`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654}).usn1._usn4)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`7esn`)Assert (_usn4 {#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12})<-[{`4esn`:{_usn3}[{0}...9e-1][9e-1...0e0]}]->(`3esn` {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}).@usn5? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:usn1)Assert {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}.`6esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:`4esn`)Assert Exists(Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {`1esn`}[..$_usn4]).#usn7)"), + octest_legacy:ct_string("Drop Constraint On()-[`6esn`:@usn6]-()Assert Exists(Allshortestpaths(((`1esn` :@usn5{@usn6:$`7esn` Ends With 7.0e-0 Ends With $usn2})<-[?:`3esn`|`3esn` *999..123456789{_usn3:$`4esn`[$@usn6...12e12]}]->(usn1 {#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}))).`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`3esn`)Assert Exists(None(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999).`2esn`)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`7esn`)Assert Exists([usn2 In $`5esn`[{`4esn`}][{0}] Where 6.0e0 Is Not Null Is Not Null|3.9e-1[{@usn6}..][01234567..]]._usn4.#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:#usn8)Assert {@usn6:{usn2} Ends With {@usn6} Ends With 1000,#usn7:2.12[{12}]}.@usn6.#usn8! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:#usn8)Assert Case When $`4esn`[usn2..] Then 1e1 Ends With 12 Ends With 999 Else 2.9e1 Ends With `5esn` Ends With 1000 End.`4esn`!.@usn6!._usn4 Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:usn2)Assert Exists(Allshortestpaths((((:usn2)-[]->(:usn1)-[:usn1|usn2]->({`7esn`:{`3esn`}[$#usn8..],`4esn`:{`8esn`}[..999][.._usn3]})))).`6esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:usn1)Assert {#usn8:_usn4[$_usn4]}.`1esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:@usn6)Assert Shortestpath((`8esn` :`2esn`:`4esn`)-[`8esn`:_usn4|:`1esn`]->(@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})).`7esn`.`6esn`._usn3! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`1esn`)Assert Exists(Case When 1000[{`1esn`}..][$`3esn`..] Then {`4esn`}[00..] Else {`5esn`}[.1e-1..1e-1][999..{_usn3}] End.`8esn`!.@usn6!.usn2)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:usn2)Assert `5esn`(Null In {7},3.9e-1[..$1000][..0.12]).`5esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:#usn8]-()Assert Exists(Case When {`3esn`} Is Not Null Is Not Null Then {``} Is Null Is Null When 00[$``] Then {`5esn`}[.1e-1..1e-1][999..{_usn3}] End.`1esn`?._usn3!)"), + octest_legacy:ct_string("Drop Constraint On(usn2:_usn4)Assert Exists(({`1esn`:999 Contains {999} Contains 12})-[? *..00$_usn3]-(:usn2)<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-({#usn7:12e12[.9e12..07]}).`8esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:#usn7)Assert All(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12).#usn7.`1esn`!.`5esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(``:_usn4)Assert Exists(Case 12e12 When {#usn7} =~$@usn6 =~$7 Then 6.0e0 =~12.0 =~9e1 When 0.0[00..][0xabc..] Then .9e1[$`1esn`..][$``..] Else `5esn` Is Not Null Is Not Null End.usn1?)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`2esn`)Assert Exists([usn1 In $@usn6 Is Null Is Null|`5esn` Is Not Null Is Not Null].#usn8)"), + octest_legacy:ct_string("Drop Constraint On(usn2:#usn7)Assert {#usn8:0xabc[..{usn1}][..\"d_str\"]}.`7esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:usn2)Assert Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where 07[{@usn5}..]).`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn5:_usn4)Assert ({`7esn`:{#usn7}[.12e-12]})<-[?:usn1|usn2{#usn8:'s_str'[`2esn`][12.0]}]->(_usn3 :``)-[_usn3:`6esn`]-({`6esn`:1000[{`1esn`}..][$`3esn`..]}).`6esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[#usn7:`5esn`]-()Assert Exists(Reduce(`7esn`=3.9e-1 Starts With .9e0 Starts With {#usn7},`8esn` In {_usn4} Ends With {0} Ends With `1esn`|#usn8 Is Null Is Null).#usn8.@usn6?.`5esn`?)"), + octest_legacy:ct_string("Create Constraint On(@usn5:@usn6)Assert Reduce(`1esn`={12},`2esn` In $@usn5 Is Not Null Is Not Null|010[..9e-1][..0X7])._usn4! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:_usn3]-()Assert Exists(None(`1esn` In $12 In {usn2} Where 12e12[{`4esn`}..`4esn`][999..{@usn6}]).`7esn`?)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`4esn`)Assert Exists(Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {`1esn`}[..$_usn4]).#usn7.`3esn`!)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:@usn5)Assert {`4esn`:{`1esn`} Is Null,`8esn`:0xabc Contains {12} Contains {`6esn`}}.#usn7? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[@usn6:`1esn`]->()Assert Exists(Reduce(`5esn`=1e1 Ends With $_usn3 Ends With .1e1,`7esn` In 0.12 Is Not Null|`1esn`[{usn1}..]).usn1)"), + octest_legacy:ct_string("Create Constraint On(#usn8:@usn6)Assert Exists((_usn4 :`5esn`:`7esn`{_usn4:$_usn3[.0e-0..999]})-[?:_usn3]->(_usn3 :`1esn`:``).`7esn`.`7esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[#usn8:`6esn`]-()Assert Exists(Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``))).@usn6!)"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:usn2]-()Assert Exists([`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null|Count ( * ) Is Not Null Is Not Null].`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`6esn`)Assert Exists(Single(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[999][1000]).`1esn`.`5esn`?)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:@usn5)Assert Exists((`1esn` :`7esn`)-[`3esn`?:`8esn`|:#usn8{@usn6:$0 Contains $7}]->(_usn4 :#usn8:@usn6).@usn5?)"), + octest_legacy:ct_string("Create Constraint On(``:`1esn`)Assert None(#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12).`6esn`.`5esn`!.``! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`6esn`)Assert Extract(usn1 In \"d_str\" Contains {@usn6} Where {`1esn`} Is Null|`` Contains {`6esn`} Contains 123456789).usn1?.`4esn`!.`2esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`1esn`)Assert Filter(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12).`3esn`?.`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:_usn4]->()Assert Exists(({`1esn`:10.12e12 In Null In .12e12})<-[`6esn`?:@usn6|:`4esn` *12{`6esn`:{12} Starts With $`` Starts With 0X0123456789ABCDEF,@usn6:0 Starts With `7esn` Starts With 9e0}]->(`2esn` :`4esn`:usn2{`8esn`:.9e-1 Contains .9e0 Contains ``,_usn4:8.1e1 Contains .9e-1 Contains false}).`8esn`!.`3esn`!.`5esn`)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:@usn5)Assert Exists([#usn7 In .0e-0 In 12 Where 0.0[00..][0xabc..]|0xabc[0Xa..]].@usn6?._usn4!.`7esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:_usn3)Assert Exists(Reduce(_usn3=$`8esn` Is Null Is Null,`3esn` In 8.1e1 Contains .9e-1 Contains false|`4esn` Is Not Null).usn2?)"), + octest_legacy:ct_string("Create Constraint On()-[`8esn`:`4esn`]-()Assert Exists([`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`}[@usn5..{@usn6}]|{_usn4}[{`6esn`}]].@usn6?)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`5esn`)Assert Any(usn1 In \"d_str\" Contains {@usn6} Where .9e12[6.0e0..][@usn5..]).`5esn` Is Unique"), + octest_legacy:ct_string("Drop Index On:@usn6(usn2)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`5esn`)Assert Exists((`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})-[usn1?:`3esn`|`3esn`*..]->({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]})-[`2esn`?:`4esn`|:`2esn`{`4esn`:4.9e12 Starts With {``},`8esn`:$12 Ends With {_usn4} Ends With $`8esn`}]->(#usn8 :`4esn`:usn2{#usn7:{`3esn`}[#usn7],`4esn`:010[..9e-1][..0X7]}).@usn5?.`3esn`.`5esn`!)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:@usn5)Assert _usn3(Distinct .12e12 Is Not Null,.9e0[07..][4.9e12..]).`2esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:``]-()Assert Exists(Allshortestpaths((@usn5 )).`1esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:`4esn`]-()Assert Exists(Reduce(usn1=$@usn6 Ends With 123456789 Ends With $``,_usn3 In `8esn`[_usn4]|{``}[$usn2..00][{_usn3}..123.654]).#usn7?)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`7esn`)Assert Exists(Allshortestpaths(((usn2 :``{#usn7:1e-1 =~$`7esn` =~1e1,`7esn`:{0}[`4esn`..{`8esn`}]})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(_usn4 :`1esn`:``{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}})<-[_usn3? *..123456789{`6esn`:.0e-0[..``][..$7],usn2:{usn2} Ends With {@usn6} Ends With 1000}]-(`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})))._usn4!)"), + octest_legacy:ct_string("Create Constraint On(#usn8:usn1)Assert Exists(Any(@usn6 In 9e12[..usn2][.._usn3] Where $7).`1esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[`8esn`:usn1]-()Assert Exists([#usn7 In .0e-0 In 12 Where $999 Is Not Null].`8esn`.@usn6!.`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(usn2:usn1)Assert Case $999 =~0x0 When 3.9e-1[..$1000][..0.12] Then #usn8 =~{@usn5} When 9e0[..{#usn7}][..`4esn`] Then 1e1 Ends With 12 Ends With 999 Else $`6esn`[$_usn3..{1000}] End.@usn6?.`1esn`!.@usn5 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`7esn`)Assert Exists(Reduce(`1esn`=$`1esn` =~`8esn`,usn2 In $`5esn`[{`4esn`}][{0}]|{`1esn`}[..$_usn4]).#usn7?)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`3esn`)Assert Exists(Case 9e0[`3esn`][0] When 7 In 1e1 In {``} Then 0[..{0}][..true] End.`6esn`!)"), + octest_legacy:ct_string("Create Constraint On(#usn7:`4esn`)Assert Exists([`1esn` In $12 In {usn2} Where $12 In {usn2}|9e-12 Ends With {1000}].@usn6?._usn3?.`1esn`!)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`7esn`)Assert Exists(Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 0xabc[..{usn1}][..\"d_str\"]).#usn7?.`6esn`?)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:usn1)Assert All(usn2 In $`5esn`[{`4esn`}][{0}] Where $`8esn` Is Not Null Is Not Null)._usn4!._usn3? Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn4:usn1)Assert Single(_usn3 In `8esn`[_usn4] Where 0.0[..9e1][..2.12]).#usn7.`6esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`5esn`)Assert `4esn`(12.0 Starts With 00,8.1e1 Contains .9e-1 Contains false)._usn3!.`1esn`.@usn5! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[#usn8:`3esn`]-()Assert Exists(All(`1esn` In $12 In {usn2} Where 0.12 In $``).@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(usn1:usn2)Assert Exists(Filter(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12).`3esn`?.`7esn`?)"), + octest_legacy:ct_string("Create Constraint On(usn1:`4esn`)Assert {@usn6:9e-12[010..{#usn7}][{123456789}..7],`3esn`:$123456789[..$999][..`6esn`]}.#usn8! Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:usn1)Assert Exists(Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07).`4esn`!.`8esn`?.`4esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[`8esn`:@usn5]-()Assert Exists(Extract(#usn8 In 07[..$`5esn`] Where 0.0[$`4esn`]|#usn7 In 07)._usn4?.`5esn`?)"), + octest_legacy:ct_string("Create Constraint On(@usn6:@usn6)Assert All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 0 In 2.9e1 In 7).#usn7! Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:_usn4)Assert Shortestpath((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[:`6esn` *..0x0{``}]-(#usn8 :``{usn2:9e1 =~$`8esn` =~10.12e12})).`8esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[usn1:#usn7]-()Assert Exists(Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0[10.12e12]).usn2.usn1?.`8esn`?)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`5esn`)Assert `4esn`(Distinct $`6esn`[$_usn3..{1000}],0xabc =~123456789)._usn3! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`2esn`)Assert Exists(None(usn1 In \"d_str\" Contains {@usn6} Where $`5esn` =~Count(*) =~1.9e0).`6esn`!.`7esn`?)"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:`8esn`]-()Assert Exists($123456789.`1esn`!.@usn6?.``!)"), + octest_legacy:ct_string("Drop Constraint On()<-[`4esn`:_usn3]-()Assert Exists(Shortestpath((((`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn2 *7]-(`8esn` {_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`})))).`1esn`)"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:`4esn`]->()Assert Exists({`3esn`:$@usn5 Is Null Is Null}.usn2.usn2!.usn2)"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn6:@usn5]-()Assert Exists(Reduce(usn2=07 Ends With {1000} Ends With 01234567,`1esn` In $12 In {usn2}|`3esn` Contains `2esn` Contains {_usn4}).`2esn`)"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:usn2]-()Assert Exists(Case 2.9e1 Ends With `5esn` Ends With 1000 When {`4esn`} Ends With Count(*) Then {0} In {`1esn`} Else _usn4 Ends With {`8esn`} Ends With usn2 End._usn4!.#usn7!.usn2!)"), + octest_legacy:ct_string("Drop Constraint On()<-[``:@usn5]-()Assert Exists(({`4esn`:#usn8[\"d_str\"..usn2],`1esn`:12.0[..Count ( * )][..@usn6]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ).`7esn`!)"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:@usn6]-()Assert Exists((@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[{``:{`3esn`}[01234567][{#usn7}],_usn4:999 Is Null Is Null}]->(`2esn` {`7esn`:{123456789} Contains $0,#usn8:{`3esn`}[$#usn8..]})<-[#usn7?:`7esn`|usn1{_usn4:.1e1 Contains 1e-1 Contains #usn8,`5esn`:0e-0 In 0X0123456789ABCDEF In `3esn`}]->(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1}).`3esn`?)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:usn2]-()Assert Exists([usn2 In $`5esn`[{`4esn`}][{0}] Where {1000} =~4.9e12 =~9e1]._usn4?.`2esn`!)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`6esn`)Assert Exists(Reduce(_usn4=07 Ends With $_usn3 Ends With $#usn8,`6esn` In 010[{`1esn`}..]|`6esn`[$@usn5][01]).`7esn`)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn3)Assert Allshortestpaths(({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})<-[#usn7?]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})).@usn6? Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:``)Assert Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\").@usn5?._usn4?.`6esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn4:usn2)Assert Reduce(``=$#usn7 Ends With 999 Ends With {12},`2esn` In $@usn5 Is Not Null Is Not Null|{`6esn`} Starts With .12e-12).`8esn`.#usn7.@usn5! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:usn1)Assert [`6esn` In 010[{`1esn`}..] Where {`4esn`} In 1000 In {@usn5}].``? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[#usn7:#usn8]-()Assert Exists(Case When {usn2} In false Then {12} Ends With 1e1 When {``}[usn1..][{`8esn`}..] Then {usn1} Is Not Null Is Not Null End.#usn8?._usn4?.@usn6?)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:@usn5)Assert None(`` In `7esn` =~#usn8 =~\"d_str\" Where 7 In 1e1 In {``})._usn4! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`4esn`:usn2)Assert Exists({usn1:$`3esn` =~#usn8 =~0x0}.`3esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:`2esn`]-()Assert Exists(`5esn`({#usn8} Ends With _usn3 Ends With `2esn`,.9e0 =~#usn7).#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:``)Assert None(@usn6 In 9e12[..usn2][.._usn3] Where 01[`4esn`..]).#usn8? Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn5:usn2)Assert Exists(Allshortestpaths((((#usn7 :`6esn`{usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]-(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]})))).usn1!.#usn7.`1esn`!)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`8esn`)Assert Extract(`1esn` In $12 In {usn2} Where $`8esn` Is Not Null Is Not Null|2.9e1 =~Count(*) =~{123456789}).`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:usn2)Assert Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where _usn4['s_str'][8.1e1]|0.12 =~2.9e1 =~9e1).`1esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:@usn6]-()Assert Exists(Any(usn1 In {#usn7} =~.12e12 =~9e0 Where usn1 Ends With 11.12e-12 Ends With 5.9e-12)._usn3!.`4esn`?.`3esn`?)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`2esn`)Assert Exists(Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where 2.12 Is Not Null Is Not Null).usn1?.`5esn`!.@usn5)"), + octest_legacy:ct_string("Create Constraint On()-[`7esn`:usn2]->()Assert Exists((:`3esn`)-[`1esn`]->(`3esn` :`6esn`{_usn3:.12e-12 Ends With `2esn`,usn1:Null[#usn7..][9.1e-1..]})-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->({#usn8:_usn4[$_usn4]}).`7esn`.`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:@usn6]->()Assert Exists(Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 999 Starts With 7.0e-0 Starts With true).@usn5?)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:``)Assert Exists([#usn8 In 07[..$`5esn`] Where $1000[_usn4][{@usn5}]].`4esn`)"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn3:#usn7]-()Assert Exists(`5esn`(Distinct {`3esn`} =~$`` =~$`8esn`,#usn7 In 07)._usn4!)"), + octest_legacy:ct_string("Create Constraint On(usn1:`6esn`)Assert Exists(None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12).`5esn`?)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:@usn6)Assert ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[ *12{#usn8:0e0 =~{12} =~{1000}}]->(:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}).#usn7! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`4esn`)Assert `4esn`(Distinct \"d_str\" In usn2 In $`7esn`).#usn7.#usn7!.#usn8! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`3esn`)Assert [`1esn` In $12 In {usn2} Where 12e-12 Starts With $`7esn`].`8esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn1:#usn7)Assert Exists(None(`6esn` In 010[{`1esn`}..] Where {`3esn`} Is Not Null Is Not Null).@usn6.``!)"), + octest_legacy:ct_string("Create Constraint On()<-[#usn7:`7esn`]-()Assert Exists(Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]).#usn7?.#usn8?._usn4!)"), + octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:#usn8]-()Assert Exists(All(#usn7 In .0e-0 In 12 Where `8esn`[.12e12..])._usn4._usn4!.`2esn`!)"), + octest_legacy:ct_string("Create Constraint On()<-[`7esn`:`3esn`]-()Assert Exists(Reduce(`7esn`={1000} Starts With 10.12e12 Starts With .0e-0,`1esn` In $12 In {usn2}|{`4esn`} In 1000 In {@usn5}).`1esn`!)"), + octest_legacy:ct_string("Create Constraint On()<-[`2esn`:`6esn`]-()Assert Exists((`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[?:@usn5|:#usn7 *0]->(_usn3 {`2esn`:5.9e-12[0x0..]}).@usn5.`3esn`!)"), + octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:usn1]-()Assert Exists(Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}})<-[?{@usn5:@usn6[999][1000]}]-(:usn1{#usn8:2.9e1[{`2esn`}]})).`3esn`.`7esn`?)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:_usn3)Assert Allshortestpaths(({`6esn`:{`5esn`}[01234567..][5.9e-12..]})-[`2esn` *1000..{`2esn`:{@usn6} In 9e12}]->(:usn1{usn1:true In 0.0,@usn5:{`1esn`} Is Null})<-[``:usn1|usn2{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]}]->(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})).#usn7 Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn7:usn2)Assert {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}.#usn7?.`7esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:`8esn`)Assert [usn1 In $@usn6 Is Null Is Null Where _usn3 =~{7} =~123.654|`3esn` =~$#usn7].`8esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`8esn`:@usn5]-()Assert Exists(Allshortestpaths(((_usn3 :`7esn`{_usn4:$12[$`6esn`..][01..]})-[`4esn`{_usn3:010[..9e-1][..0X7]}]-(:`7esn`{#usn7:$999 =~false =~{`8esn`}})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)))._usn4)"), + octest_legacy:ct_string("Drop Constraint On()-[`8esn`:usn1]->()Assert Exists(`3esn`(Distinct 0 Starts With `7esn` Starts With 9e0,$`4esn` Is Null Is Null).`3esn`!.#usn7?.#usn7?)"), + octest_legacy:ct_string("Create Constraint On(usn1:`7esn`)Assert [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where .9e0 =~#usn7|7 In 1e1 In {``}].`2esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[@usn5:`8esn`]->()Assert Exists(Extract(usn2 In $`5esn`[{`4esn`}][{0}] Where {0}[.1e-1..][_usn4..]|.0e0[usn1..7.0e-0][$`5esn`...9e-12]).#usn8?)"), + octest_legacy:ct_string("Create Constraint On(#usn8:``)Assert usn1(Distinct `4esn`[12.0..][9.1e-1..],{`6esn`} Starts With @usn6).usn2? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:_usn4)Assert Reduce(`2esn`={1000}[..`5esn`][..9e12],usn1 In $@usn6 Is Null Is Null|$@usn5 Is Not Null Is Not Null).`7esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn6:``)Assert Exists({`4esn`:{`3esn`}[_usn4][2.9e1]}.`8esn`?)"), + octest_legacy:ct_string("Create Constraint On(@usn5:`7esn`)Assert Exists((`3esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[?:`4esn`|:`2esn` *01]-(`` :``).`1esn`.@usn5!)"), + octest_legacy:ct_string("Drop Constraint On()-[``:`4esn`]->()Assert Exists(None(usn1 In $@usn6 Is Null Is Null Where $999 =~false =~{`8esn`}).`3esn`?)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:usn1)Assert Exists(Reduce(`4esn`=9e12 Ends With \"d_str\" Ends With 0X7,_usn3 In `8esn`[_usn4]|0xabc Starts With {`3esn`} Starts With {``}).`4esn`.``!)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`5esn`)Assert Case When false Starts With 0 Starts With 2.9e1 Then false[..usn2][..999] Else `1esn`[{usn1}..] End.#usn7.`6esn`!.`6esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`8esn`)Assert Exists(None(#usn8 In 07[..$`5esn`] Where $usn2[..$999][..#usn8]).`5esn`)"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:usn1)Assert Exists((_usn4 :`1esn`:``)<-[_usn4:`2esn`|`5esn` *7{`2esn`:999 Ends With {#usn8},#usn8:.12e12 Is Not Null}]-(@usn5 :#usn7:`8esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true}).#usn7!.usn1?)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`8esn`)Assert [usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]|$1000 Starts With {@usn6} Starts With $@usn5].`7esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:_usn4)Assert [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1|7 Is Null Is Null].`2esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[@usn6:_usn3]-()Assert Exists(Case When {0}[`4esn`..{`8esn`}] Then \"d_str\" In usn2 In $`7esn` When 12e12[usn2..$`6esn`] Then usn1 Ends With 11.12e-12 Ends With 5.9e-12 End.`1esn`?.``.`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn5:`3esn`]-()Assert Exists(All(usn1 In $@usn6 Is Null Is Null Where 9e0[`3esn`][0]).`8esn`.``!)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:``]-()Assert Exists(Case When `4esn` =~010 Then {7}[$@usn5..123456789][1e1..1.9e0] Else 1e-1 =~$`7esn` =~1e1 End.`3esn`)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:usn1)Assert Exists(#usn7(Distinct usn2[12e-12..{`8esn`}][.12e12..{123456789}]).usn1.`5esn`)"), + octest_legacy:ct_string("Create Constraint On(_usn3:#usn7)Assert Exists(Allshortestpaths((`2esn` :`2esn`:`4esn`{#usn7:0 Starts With `7esn` Starts With 9e0})).#usn7)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`8esn`)Assert Reduce(``=_usn3[{#usn7}],usn1 In $@usn6 Is Null Is Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]).#usn7?.@usn5.`6esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:`8esn`]->()Assert Exists(Case {`5esn`}[.1e-1..1e-1][999..{_usn3}] When 7.0e-0 Is Not Null Then {`8esn`}[@usn5][$`2esn`] End.usn1)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`6esn`)Assert Exists([usn1 In $@usn6 Is Null Is Null Where 0X0123456789ABCDEF Ends With {1000}].``!.usn2.usn1?)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:#usn7)Assert Exists(Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..]|1e-1 Contains 0.0)._usn4?)"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:_usn3)Assert All(#usn7 In .0e-0 In 12 Where 0xabc[..{usn1}][..\"d_str\"]).`3esn`?.#usn7 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:``)Assert ({usn1:12[..$`5esn`]})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)._usn3.`2esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn6:usn1]-()Assert Exists(None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e0 In 8.1e1).`4esn`!)"), + octest_legacy:ct_string("Create Constraint On(usn1:`3esn`)Assert Exists(Any(`2esn` In $@usn5 Is Not Null Is Not Null Where usn1 Ends With 11.12e-12 Ends With 5.9e-12).usn1?)"), + octest_legacy:ct_string("Create Constraint On()-[#usn8:`3esn`]->()Assert Exists(None(usn1 In {#usn7} =~.12e12 =~9e0 Where {#usn7} =~$@usn6 =~$7)._usn4?)"), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:``]->()Assert Exists(Filter(#usn7 In .0e-0 In 12 Where $123456789).`3esn`!)"), + octest_legacy:ct_string("Drop Constraint On(``:`6esn`)Assert Exists({@usn6:9e12 Ends With 9e-1 Ends With 9e1}.#usn7)"), + octest_legacy:ct_string("Create Constraint On(_usn3:`7esn`)Assert Exists(`5esn`(Distinct 00[{1000}],false =~{`8esn`} =~00).`3esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:@usn5)Assert (#usn8 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}).usn2 Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn6:@usn5)Assert _usn3({`5esn`} Is Not Null Is Not Null,$usn1 Contains 4.9e12 Contains $`2esn`)._usn4? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`2esn`:``]->()Assert Exists([`1esn` In $12 In {usn2} Where $12 In {usn2}|9e-12 Ends With {1000}].@usn6?._usn3?.`1esn`!)"), + octest_legacy:ct_string("Create Constraint On(_usn4:`3esn`)Assert Exists(Case $`3esn` =~#usn8 =~0x0 When $12 Ends With 7.0e-0 Ends With 9e-12 Then 07[..$`5esn`] End._usn4.`5esn`!.`6esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`7esn`)Assert (#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[?:#usn8|:``]-(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]}).usn1!._usn3? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:`4esn`)Assert Exists(Case 0.12 Is Not Null When 1e-1 =~$`7esn` =~1e1 Then $`6esn` =~$#usn7 =~$`4esn` End._usn4)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`5esn`)Assert None(usn2 In $`5esn`[{`4esn`}][{0}] Where .1e-1[2.9e1..][$`7esn`..]).usn2?.@usn5?.#usn8! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`7esn`)Assert Exists(Allshortestpaths(((`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-({#usn7:12e12[.9e12..07]})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}))).`8esn`.`7esn`?.`2esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`7esn`)Assert Exists((usn2 :`5esn`:`7esn`)<-[$#usn8]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})._usn4!)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`5esn`)Assert Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`6esn`} =~2.12 =~123.654|`6esn` Ends With 1e1 Ends With $#usn7).@usn5!.``! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:_usn3]->()Assert Exists({@usn5:`8esn`[.12e12..],usn1:$#usn8[$0..`3esn`][1e-1..$7]}.`3esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`6esn`)Assert Reduce(`4esn`=`3esn` Is Null,`1esn` In $12 In {usn2}|1.9e0[..0][.._usn3]).#usn8! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:_usn3)Assert Case Count(*)[Count ( * )][{0}] When @usn6[true..] Then {0} Is Not Null Is Not Null Else 12.0[..Count ( * )][..@usn6] End.`6esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[_usn4:@usn5]-()Assert Exists(Single(`1esn` In $12 In {usn2} Where {0} Ends With 0Xa).#usn7.``)"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:_usn4)Assert Reduce(``=$`4esn` Contains `4esn` Contains .0e-0,usn2 In .12e-12 Ends With `2esn`|.12e-12 Ends With `2esn`).`1esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`4esn`)Assert Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where @usn6 Starts With #usn7|6.0e0[{`2esn`}..$``]).`4esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[#usn8:`3esn`]-()Assert Exists({@usn6:$999 Ends With `2esn` Ends With 12.0}.``)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn4:`6esn`]-()Assert Exists([usn2 In .12e-12 Ends With `2esn` Where `7esn`[1.9e0..5.9e-12][9e0..@usn5]|0 In 2.9e1 In 7].@usn6?.#usn8?)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:usn2)Assert Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where Null[$`3esn`..][`1esn`..]).`3esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn7:`2esn`)Assert `5esn`(`3esn` Starts With 9.1e-1 Starts With .9e-1,.12e-12 Ends With `2esn`)._usn3?.`6esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`4esn`)Assert Case When usn2[..$0][..`3esn`] Then 0.12[Count ( * )..Count ( * )][$999..`5esn`] When 9e0[{7}...0e-0][Null..@usn5] Then 01 =~07 Else 8.1e1[usn2..{1000}][0X7..9e12] End.`1esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:`2esn`)Assert Exists((`3esn` :`2esn`:`4esn`)-[`3esn`?:`1esn`|:`1esn`]-(@usn6 :`4esn`:usn2).`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:#usn8)Assert Exists((`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})-[``:usn1|usn2{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]}]-(@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[? *1000..{`1esn`:{`1esn`} Is Null}]->(`1esn` :usn2{`8esn`:12.0[...0e0]}).`3esn`!)"), + octest_legacy:ct_string("Create Constraint On(@usn6:@usn5)Assert Extract(`6esn` In 010[{`1esn`}..] Where `6esn`[0X0123456789ABCDEF..][`8esn`..]|7.0e-0[$`6esn`..]).usn2 Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`4esn`:`8esn`]->()Assert Exists((_usn4 {`3esn`:.0e-0 In 12})-[`4esn`{_usn3:010[..9e-1][..0X7]}]-(@usn5 :`8esn`{12})-[_usn3:`6esn`]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}).@usn5)"), + octest_legacy:ct_string("Create Constraint On(@usn5:usn2)Assert Exists(Allshortestpaths(((`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})-[`3esn`? *..07]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}))).@usn5?)"), + octest_legacy:ct_string("Create Constraint On()<-[_usn3:#usn7]-()Assert Exists((`3esn` :#usn7:`8esn`{`4esn`:$`5esn`[$_usn3][$12],#usn8:`8esn`[.12e12..]})<-[*..{`4esn`:{1000} Starts With 10.12e12 Starts With .0e-0,`2esn`:$#usn7 Ends With {`5esn`} Ends With 01}]-({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})._usn3.`6esn`!)"), + octest_legacy:ct_string("Drop Constraint On(usn2:_usn4)Assert Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where `6esn`[3.9e-1..`8esn`][12.0..0.0]).usn1 Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`6esn`:_usn4]-()Assert Exists(Case When {1000} =~4.9e12 =~9e1 Then $12 Is Not Null Is Not Null When .0e-0[..01234567] Then $#usn7 Starts With $123456789 End.`8esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[_usn4:_usn4]-()Assert Exists(Any(#usn7 In .0e-0 In 12 Where $123456789).#usn8?.`7esn`?.#usn8?)"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:`6esn`]-()Assert Exists(Allshortestpaths(((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))).usn2!.`2esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:`8esn`]-()Assert Exists(Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]).usn2?.`2esn`)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:``)Assert Exists(``(Distinct {usn1}[7.0e-0..][3.9e-1..],2.9e1 In {``}).`4esn`?)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:usn2)Assert Shortestpath((`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})).usn1! Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:@usn5)Assert Extract(#usn8 In 07[..$`5esn`] Where 1e1[$_usn3]|'s_str' =~$usn2 =~{7}).``? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`6esn`)Assert Exists(All(#usn7 In .0e-0 In 12 Where 11.12e-12 Contains usn1).@usn5?)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:usn2)Assert Exists(Case When .9e-12[.12e12..][0Xa..] Then Null[$`3esn`..][`1esn`..] End.`3esn`?)"), + octest_legacy:ct_string("Create Constraint On(_usn4:@usn6)Assert Exists(#usn7(_usn4 Ends With {`8esn`} Ends With usn2).#usn7?.`5esn`!._usn3!)"), + octest_legacy:ct_string("Create Constraint On()<-[#usn7:@usn5]-()Assert Exists(Reduce(`6esn`=2.9e1 Ends With `5esn` Ends With 1000,`3esn` In 8.1e1 Contains .9e-1 Contains false|9e12 Ends With \"d_str\" Ends With 0X7).`7esn`?)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`7esn`)Assert Exists(None(`8esn` In {_usn4} Ends With {0} Ends With `1esn`).`5esn`?)"), + octest_legacy:ct_string("Create Constraint On(_usn4:`5esn`)Assert Reduce(_usn3=\"d_str\" Starts With ``,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|$usn2 Ends With 00 Ends With 9e12).#usn7? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`3esn`:@usn6)Assert Exists(Reduce(usn2=12e12[{`4esn`}..`4esn`][999..{@usn6}],`1esn` In $12 In {usn2}|$`8esn`).``?)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:#usn8)Assert Exists(``($usn1[..$999][..0e0]).#usn7!)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`2esn`)Assert {`5esn`:`1esn` In 010 In 1e-1}._usn4! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:@usn6)Assert Exists(({`4esn`:#usn8[\"d_str\"..usn2],`1esn`:12.0[..Count ( * )][..@usn6]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ).`7esn`!)"), + octest_legacy:ct_string("Create Constraint On(_usn4:#usn8)Assert Case {#usn7}[.12e-12] When $`4esn`[$@usn6...12e12] Then .12e-12[@usn6..'s_str'] Else .12e-12 Starts With .12e-12 End.`5esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn6:_usn3)Assert (@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})<-[`3esn`?*{`7esn`:.9e12 Contains 0 Contains $0}]->(:@usn5{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}).`5esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:`8esn`)Assert Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where $usn1[0e0...9e-12]).``? Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[usn1:#usn8]-()Assert Exists($999.`1esn`?.`8esn`.@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:_usn4)Assert Exists(`2esn`(Distinct \"d_str\" Starts With $`7esn` Starts With 999).#usn8?)"), + octest_legacy:ct_string("Create Constraint On()<-[usn2:#usn8]-()Assert Exists(Reduce(`7esn`=$@usn5[``..],`7esn` In 0.12 Is Not Null|.1e-1 Starts With @usn6 Starts With _usn3).`4esn`)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`7esn`)Assert Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 07 Ends With {1000} Ends With 01234567).usn2? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[usn1:`7esn`]-()Assert Exists(Single(`1esn` In $12 In {usn2} Where {_usn4} In 0X7 In 0e0).`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:usn1)Assert Exists(``(Distinct $1000 Is Null).#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(``:#usn7)Assert Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where {1000} Starts With 10.12e12 Starts With .0e-0).`8esn`!.`5esn`?.`5esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`7esn`:`7esn`]-()Assert Exists(Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12])._usn3?)"), + octest_legacy:ct_string("Create Constraint On()-[#usn8:#usn7]->()Assert Exists((@usn6 :@usn6:_usn3)-[_usn4? *..0x0{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]->(:`1esn`:``{_usn4:123.654[01..][Count(*)..],`8esn`:12e12}).`2esn`?)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:#usn7)Assert Exists(Allshortestpaths((((usn2 :`2esn`:`4esn`{`6esn`:Count(*)[$7]})<-[_usn3:@usn5|:#usn7 *..07]-({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000})<-[?:_usn3{#usn7:3.9e-1[..$1000][..0.12]}]-(_usn3 {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})))).`1esn`)"), + octest_legacy:ct_string("Drop Constraint On()<-[#usn7:_usn4]-()Assert Exists(`4esn`(6.0e0 =~12.0 =~9e1).#usn8?)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`7esn`)Assert (:#usn8:@usn6{usn2:{_usn3} In $#usn8 In $12})-[:`5esn` *0xabc..12{``:Count(*) Starts With {usn2} Starts With `2esn`,`1esn`:12e12[{`4esn`}..`4esn`][999..{@usn6}]}]->(_usn3 :``)<-[usn2?:`2esn`|`5esn`{``:{#usn7} =~$@usn6 =~$7}]->({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})._usn4? Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:#usn7)Assert Single(usn2 In .12e-12 Ends With `2esn` Where $999 Ends With `2esn` Ends With 12.0).`8esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[#usn7:_usn4]-()Assert Exists(Filter(usn2 In .12e-12 Ends With `2esn` Where $_usn3[0X0123456789ABCDEF..][0x0..]).`2esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`6esn`)Assert [usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null].`1esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`5esn`)Assert Exists(Reduce(@usn5=0[10.12e12],usn2 In $`5esn`[{`4esn`}][{0}]|$12 Is Null Is Null).#usn8?)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:_usn3)Assert Exists(Reduce(`1esn`={12},`2esn` In $@usn5 Is Not Null Is Not Null|010[..9e-1][..0X7])._usn4!)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`3esn`)Assert count(usn1 =~0Xa =~0).`5esn`!.`1esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[``:@usn6]->()Assert Exists(Case 2.9e1 Ends With `5esn` Ends With 1000 When {`4esn`} Ends With Count(*) Then {0} In {`1esn`} Else _usn4 Ends With {`8esn`} Ends With usn2 End._usn4!.#usn7!.usn2!)"), + octest_legacy:ct_string("Create Constraint On(_usn3:usn2)Assert Exists(Case When $`5esn` =~Count(*) =~1.9e0 Then .1e-1 Starts With @usn6 Starts With _usn3 When $_usn3[0X0123456789ABCDEF..][0x0..] Then #usn8 =~{@usn5} Else 1e1[$_usn3] End.#usn8.@usn5)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`3esn`)Assert Exists(Case 0[10.12e12] When $7[.1e-1..{@usn6}][$7..{`1esn`}] Then 0xabc[0Xa..] Else 0 In 2.9e1 In 7 End.@usn5!.`2esn`!.@usn5)"), + octest_legacy:ct_string("Drop Constraint On(``:_usn3)Assert {`7esn`:`3esn` Starts With 9.1e-1 Starts With .9e-1}.@usn6? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn4:``]-()Assert Exists(Any(usn2 In .12e-12 Ends With `2esn` Where {usn1}[`7esn`..Count(*)]).usn1.usn2!.usn1?)"), + octest_legacy:ct_string("Create Constraint On()-[``:#usn8]-()Assert Exists(None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..])._usn3!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:@usn6)Assert Exists(Case When {`5esn`}[01234567..][5.9e-12..] Then 01 Contains 9e-12 Contains $7 When $`4esn` In {999} Then 010[{`1esn`}..] End.`4esn`?)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`4esn`)Assert Exists([usn1 In {#usn7} =~.12e12 =~9e0 Where usn1 Ends With 11.12e-12 Ends With 5.9e-12]._usn3?)"), + octest_legacy:ct_string("Create Constraint On(``:_usn4)Assert (`5esn` )<-[?:@usn5|:#usn7 *0]-(`7esn` :`5esn`:`7esn`).``? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:`4esn`)Assert Exists(Reduce(`8esn`=123456789[_usn4..`1esn`][$`6esn`..{@usn6}],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.12e12[..7]).usn1!)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:#usn7)Assert All(@usn6 In 9e12[..usn2][.._usn3] Where {`8esn`}[@usn5][$`2esn`]).#usn8?.#usn8?.`2esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:usn2)Assert Exists(Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where Null[$`3esn`..][`1esn`..]|Count ( * )[_usn4..]).`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:_usn3)Assert Exists([#usn8 In 07[..$`5esn`] Where .9e0[07..][4.9e12..]].usn2?.`4esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`2esn`)Assert Exists(All(#usn7 In .0e-0 In 12 Where 123.654[01..][Count(*)..]).`1esn`!.usn1?._usn4)"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:`7esn`]-()Assert Exists({#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}.`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:#usn8)Assert ({`6esn`:{`5esn`}[01234567..][5.9e-12..]})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})<-[?:_usn3{usn2:010[{`1esn`}..],`1esn`:`5esn` Contains 0 Contains $12}]->(:`3esn`).`3esn`!.`1esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`2esn`)Assert _usn3({`5esn`} Is Not Null Is Not Null,$usn1 Contains 4.9e12 Contains $`2esn`).usn2? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`5esn`:_usn4]-()Assert Exists({_usn4:9e-12[010..{#usn7}][{123456789}..7]}.usn1?)"), + octest_legacy:ct_string("Create Constraint On()<-[usn2:usn1]-()Assert Exists(All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where Count(*)[Null..][01234567..]).`6esn`.#usn7?)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`3esn`)Assert Exists(Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where ``[$#usn7]).``?)"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:usn2]->()Assert Exists(All(@usn6 In 9e12[..usn2][.._usn3]).#usn8)"), + octest_legacy:ct_string("Drop Constraint On(``:`5esn`)Assert #usn8(Distinct 9e0[{7}...0e-0][Null..@usn5],1.0 Is Not Null).`7esn`!.`3esn`!.@usn5! Is Unique"), + octest_legacy:ct_string("Create Index On:`4esn`(`5esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[@usn5:_usn3]-()Assert Exists({`1esn`:999 Contains {999} Contains 12}.`5esn`?)"), + octest_legacy:ct_string("Create Constraint On(usn2:`6esn`)Assert All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..])._usn4.`3esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[#usn8:@usn6]-()Assert Exists(Allshortestpaths((:`5esn`:`7esn`)).`2esn`!)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`2esn`)Assert Exists(Extract(_usn3 In `8esn`[_usn4] Where $_usn3[usn2..][usn1..]|$999 =~0e0 =~0X7).`2esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn3:`8esn`]-()Assert Exists(Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End._usn4?)"), + octest_legacy:ct_string("Drop Constraint On(usn1:``)Assert Exists((usn2 {``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[:`2esn`|`5esn`{`8esn`:$`4esn`[$@usn6...12e12]}]-(usn1 {@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]})<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]-(`2esn` :`2esn`:`4esn`{#usn7:0 Starts With `7esn` Starts With 9e0}).#usn8)"), + octest_legacy:ct_string("Create Constraint On(_usn3:#usn8)Assert Exists(Allshortestpaths((:usn1$1000)).`1esn`?.@usn5?.usn1)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:_usn3)Assert Exists(Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0X0123456789ABCDEF Ends With {1000})._usn4?)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:_usn4)Assert Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`).`8esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:usn1)Assert Reduce(`5esn`=$999 Ends With `2esn` Ends With 12.0,_usn3 In `8esn`[_usn4]|_usn3 =~{7} =~123.654).`2esn`.`6esn`!.``? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:``)Assert Exists(Any(usn1 In {#usn7} =~.12e12 =~9e0 Where ``[$#usn7]).`3esn`?)"), + octest_legacy:ct_string("Create Constraint On()<-[``:usn2]-()Assert Exists((`4esn` :`8esn`{12})-[?:`1esn`|:`1esn` *999..123456789]-(usn2 :@usn6:_usn3).`1esn`.`5esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[usn2:`1esn`]-()Assert Exists(Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `6esn` Ends With 1e1 Ends With $#usn7).`8esn`!.`2esn`!.`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`7esn`)Assert Exists(Single(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where false[..usn2][..999]).`5esn`.`1esn`!.`7esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`2esn`)Assert Case 0xabc[..{usn1}][..\"d_str\"] When $1000[..0e-0][..010] Then 999 Starts With 7.0e-0 Starts With true When {123456789} Starts With $_usn4 Starts With 0x0 Then .9e-12[usn2] End.`4esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:_usn4]-()Assert Exists((`3esn` {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(:`5esn`:`7esn`{`4esn`:2.9e1[{`2esn`}]})._usn3!)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:``)Assert Exists(Case When usn2[..$0][..`3esn`] Then $0 Contains $7 End.@usn5!.`6esn`!)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`5esn`)Assert Exists((#usn7 {usn1:2.12[{12}]})-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[#usn8:`5esn`]-({`6esn`:12[@usn6][{`2esn`}]}).`6esn`!.``?.`5esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:#usn8]-()Assert Exists((:usn1{#usn8:$`8esn` Is Not Null Is Not Null,`5esn`:3.9e-1 Starts With .9e0 Starts With {#usn7}})-[:#usn8|:`` *..07{@usn5:01234567[\"d_str\"..][$`4esn`..],`6esn`:$usn1 Ends With {`2esn`} Ends With $usn1}]-(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[? *0X7..0Xa]->(`1esn` ).`6esn`?.`3esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[``:usn1]-()Assert Exists(Single(`7esn` In 0.12 Is Not Null).#usn7?)"), + octest_legacy:ct_string("Drop Constraint On()-[``:`6esn`]->()Assert Exists(Any(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`).`2esn`?)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`4esn`)Assert Exists(Any(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12).usn2)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`8esn`)Assert Filter(`8esn` In {usn1}[7.0e-0..][3.9e-1..]).`4esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:@usn5)Assert Exists(Filter(#usn7 In .0e-0 In 12 Where {`6esn`}[6.0e0..9e0][.9e1..12e12])._usn3!)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:usn2)Assert Exists((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[{`2esn`:9e1[$``.._usn4][999..`3esn`],usn1:0.0[`7esn`]}]->(#usn8 :`5esn`:`7esn`{usn2})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}).`5esn`!.@usn6.`8esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`3esn`)Assert Exists(Reduce(`8esn`=12e12[{`4esn`}..`4esn`][999..{@usn6}],usn1 In $@usn6 Is Null Is Null|$`5esn` =~Count(*) =~1.9e0).``!.`2esn`?.`4esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:usn2)Assert Exists(Reduce(#usn7=Count(*)[Count ( * )][{0}],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|{`2esn`} Contains 0xabc)._usn3?)"), + octest_legacy:ct_string("Create Constraint On(_usn3:@usn5)Assert Exists(_usn3(Distinct 999 Ends With {#usn8}).usn1!)"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:`2esn`]->()Assert Exists({_usn3:{`8esn`} Is Not Null Is Not Null,`1esn`:_usn4 Is Not Null Is Not Null}.@usn5?)"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn3:`8esn`]-()Assert Exists(count().usn1?.@usn6!)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:@usn5)Assert Case 010[...12e-12] When .9e1[$`1esn`..][$``..] Then Count ( * ) Starts With 0.12 End.`8esn`!.#usn8 Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn5:_usn3]-()Assert Exists(Case When 1000[{`1esn`}..][$`3esn`..] Then {`4esn`}[00..] Else {`5esn`}[.1e-1..1e-1][999..{_usn3}] End.`8esn`!.@usn6!.usn2)"), + octest_legacy:ct_string("Create Constraint On(@usn5:`4esn`)Assert None(`2esn` In $@usn5 Is Not Null Is Not Null Where `6esn`[3.9e-1..`8esn`][12.0..0.0]).`7esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`5esn`)Assert Exists([@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`4esn`} Ends With Count(*)|$0 Ends With $usn1 Ends With {``}].`7esn`?.``!.`3esn`)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:#usn8)Assert Exists(count(Count ( * )[`5esn`..\"d_str\"][01234567..{1000}],{`4esn`} In 1000 In {@usn5}).``?.`6esn`!)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`5esn`)Assert Exists(Allshortestpaths(((`8esn` :`8esn`)-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`8esn`*]-(`7esn` :``{usn2:$7}))).`2esn`!._usn3?)"), + octest_legacy:ct_string("Drop Constraint On(usn2:#usn8)Assert Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `6esn` Ends With 1e1 Ends With $#usn7)._usn3 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:#usn7)Assert Case .12e12 Is Not Null When {1000} =~4.9e12 =~9e1 Then `3esn` =~$#usn7 When 12[..$`5esn`] Then usn1 =~0Xa =~0 Else 0e-0[{12}] End.`7esn`!.`8esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn5:``)Assert Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0[10.12e12]).usn2.usn1?.`8esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`3esn`)Assert Exists([`6esn` In 010[{`1esn`}..] Where .1e-1[..$_usn3][..0]].@usn6?.`1esn`!.`5esn`)"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:_usn3]->()Assert Exists(Any(usn1 In \"d_str\" Contains {@usn6} Where $`` =~.1e-1).`3esn`?.#usn7!)"), + octest_legacy:ct_string("Create Constraint On()-[`3esn`:`5esn`]-()Assert Exists(Reduce(@usn5=.9e1 In {#usn7} In .9e-12,`2esn` In $@usn5 Is Not Null Is Not Null|$usn1[9e1][{999}]).usn1!)"), + octest_legacy:ct_string("Create Index On:`7esn`(`5esn`)"), + octest_legacy:ct_string("Create Constraint On(``:_usn4)Assert Exists(Case When 9e12 Is Null Is Null Then \"d_str\" Is Not Null Is Not Null When {`3esn`} Is Not Null Is Not Null Then {``} Is Null Is Null End.usn1?.`2esn`.`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn4:`1esn`]-()Assert Exists((#usn7 {usn2:0X7[#usn7..][$@usn5..]})<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]}).#usn7)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`2esn`)Assert Extract(`1esn` In $12 In {usn2}).`1esn`?.`5esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[``:`6esn`]-()Assert Exists(_usn3(0Xa In 1.0 In $@usn5,$@usn6[.1e-1][9e12]).`7esn`?.``!.@usn6?)"), + octest_legacy:ct_string("Create Constraint On()<-[`2esn`:`3esn`]-()Assert Exists([`7esn` In 0.12 Is Not Null Where 01234567[1000..][$`8esn`..]].@usn5?.#usn7!)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:#usn7)Assert Exists({`6esn`:$_usn3[0x0][{0}]}.#usn8)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:#usn7)Assert Exists(Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}).`8esn`!._usn3!._usn3!)"), + octest_legacy:ct_string("Create Constraint On(@usn6:`3esn`)Assert Exists((`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})<-[`3esn`?:@usn5|:#usn7]->({usn1:0X7[#usn7..][$@usn5..],usn2:01 Ends With .0e0 Ends With 7.0e-0}).@usn6)"), + octest_legacy:ct_string("Create Constraint On(usn2:_usn3)Assert Reduce(_usn3={0}[.0e-0][$`2esn`],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|.0e-0[..``][..$7]).`7esn`? Is Unique"), + octest_legacy:ct_string("Create Index On:`5esn`(#usn7)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`5esn`)Assert Exists(Reduce(@usn6=999[..$@usn5][..``],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|0.0[00..][0xabc..]).`7esn`?._usn4!)"), + octest_legacy:ct_string("Drop Constraint On(usn1:`6esn`)Assert Exists(Extract(_usn3 In `8esn`[_usn4] Where $1000 Is Null|9e-12 Ends With 9e1 Ends With 4.9e12)._usn3)"), + octest_legacy:ct_string("Drop Constraint On()-[#usn7:`5esn`]-()Assert Exists((`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})._usn3.`6esn`)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`2esn`)Assert Exists((_usn3 :`8esn`)-[:#usn7|:@usn5]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]->(`4esn` ).usn2?)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:#usn8)Assert Case .1e-1[2.9e1..][$`7esn`..] When `2esn` Then usn2 Contains `2esn` Contains {1000} End.usn2! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[``:`4esn`]->()Assert Exists(None(usn2 In .12e-12 Ends With `2esn` Where {#usn7} Starts With .1e-1).`6esn`!.`3esn`!.`4esn`)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`1esn`)Assert {_usn4:1e1 =~{@usn5} =~`7esn`}.@usn6? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn6:usn2)Assert Exists(`3esn`(9e12 Ends With 9e-1 Ends With 9e1).`6esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:@usn6]->()Assert Exists(Reduce(``={`7esn`} Is Not Null Is Not Null,usn1 In \"d_str\" Contains {@usn6}|8.1e1 Contains $@usn6).#usn8!)"), + octest_legacy:ct_string("Create Constraint On()-[usn1:``]-()Assert Exists(Reduce(`7esn`=$usn2 Starts With $999 Starts With .0e0,@usn6 In 9e12[..usn2][.._usn3]|$@usn6 Is Null Is Null).`8esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`3esn`)Assert Exists(Case $#usn8 =~9e1 =~{``} When {0}[.0e-0][$`2esn`] Then 0[..12][..{`8esn`}] When 7 In 1e1 In {``} Then {0}[.0e-0][$`2esn`] Else `4esn` =~010 End.`8esn`!)"), + octest_legacy:ct_string("Create Constraint On(#usn8:#usn8)Assert {#usn7:1e-1[$`4esn`]}.#usn8 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn6:_usn3)Assert Exists(Case When $usn1 Contains 4.9e12 Contains $`2esn` Then {usn1} Contains `4esn` Else {0} Ends With 0Xa End.@usn6!)"), + octest_legacy:ct_string("Create Constraint On(_usn4:`2esn`)Assert [`` In `7esn` =~#usn8 =~\"d_str\" Where 3.9e-1 Starts With .9e0 Starts With {#usn7}|$usn1 =~.9e12 =~`6esn`]._usn3.usn1! Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn5:`4esn`)Assert {@usn6:0Xa In 1.0 In $@usn5,`8esn`:$1000 Starts With {@usn6} Starts With $@usn5}.@usn6? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`3esn`)Assert Any(`` In `7esn` =~#usn8 =~\"d_str\" Where 07[{@usn5}..]).#usn7 Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn6:`3esn`)Assert Exists((`8esn` {``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]->(usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7}).@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(usn1:@usn6)Assert {`2esn`:{`2esn`} Ends With 9e-1 Ends With .1e-1}.`4esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:`2esn`)Assert Exists([`1esn` In $12 In {usn2} Where $`8esn` Is Not Null Is Not Null|8.1e1 Contains $@usn6].`8esn`.`3esn`?)"), + octest_legacy:ct_string("Create Constraint On()<-[``:`3esn`]-()Assert Exists(Case When .1e-1[2.9e1..][$`7esn`..] Then `4esn` Is Not Null When `4esn` =~010 Then .12e12[$usn1..][{@usn6}..] End.@usn6)"), + octest_legacy:ct_string("Drop Constraint On()<-[`8esn`:usn2]-()Assert Exists(Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {1000}[..`5esn`][..9e12]|@usn5 Ends With $`8esn` Ends With $1000).`2esn`?._usn3!)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:_usn4)Assert Exists([#usn7 In .0e-0 In 12 Where `1esn` In 6.0e0 In 12|9e-1 Contains 3.9e-1].`3esn`!.`1esn`._usn4?)"), + octest_legacy:ct_string("Drop Constraint On()-[`8esn`:`1esn`]->()Assert Exists(#usn8(Distinct `6esn`[3.9e-1..`8esn`][12.0..0.0],@usn5 In Null).usn2.usn1?.@usn5!)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`3esn`)Assert Exists(Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07).`8esn`.`6esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`6esn`)Assert `1esn`(Null[$`3esn`..][`1esn`..],{`5esn`}[.1e-1..1e-1][999..{_usn3}]).`4esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn4:`8esn`)Assert Exists(Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where `1esn`[Null][{@usn6}]).`4esn`!.#usn8)"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:`4esn`]-()Assert Exists(All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where true[1.9e0..]).`5esn`!)"), + octest_legacy:ct_string("Drop Constraint On()-[`3esn`:#usn7]-()Assert Exists({#usn8:2.9e1[2.12..1.9e0]}.usn2?)"), + octest_legacy:ct_string("Create Constraint On()<-[#usn8:_usn4]-()Assert Exists(Reduce(`2esn`={1000}[..{usn1}][..1e-1],_usn3 In `8esn`[_usn4]|Count(*)[$7]).usn1!._usn4?)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:@usn6)Assert Exists(Single(`7esn` In 0.12 Is Not Null)._usn4!.usn1!)"), + octest_legacy:ct_string("Create Constraint On(@usn5:`7esn`)Assert [usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where `4esn` Ends With 9e12 Ends With {`5esn`}].`6esn`.`2esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn1:_usn4)Assert Exists(Single(`6esn` In 010[{`1esn`}..] Where Count(*) Starts With {usn2} Starts With `2esn`).usn2?)"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:@usn6]-()Assert Exists({@usn6:$@usn6 Is Null Is Null}.``.`7esn`!.`7esn`!)"), + octest_legacy:ct_string("Create Constraint On(``:`6esn`)Assert Exists(None(`2esn` In $@usn5 Is Not Null Is Not Null Where {#usn8}[..@usn5]).`7esn`!)"), + octest_legacy:ct_string("Create Index On:`1esn`(`2esn`)"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:`1esn`]->()Assert Exists((`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[:@usn5|:#usn7 *1000..{``:{usn2} Ends With {@usn6} Ends With 1000,`7esn`:010[..9e-1][..0X7]}]-({#usn7:12e12[.9e12..07]})<-[`2esn`?:`4esn`|:`2esn`]-(`4esn` {`8esn`:5.9e-12[0x0..]}).`5esn`!.`5esn`!.``!)"), + octest_legacy:ct_string("Create Constraint On()-[#usn8:`3esn`]->()Assert Exists(Single(#usn8 In 07[..$`5esn`] Where 123.654 Ends With {1000} Ends With 9e12)._usn3.`1esn`?._usn4?)"), + octest_legacy:ct_string("Create Constraint On()-[`3esn`:usn1]->()Assert Exists(Case When .9e-12[.12e12..][0Xa..] Then Null[$`3esn`..][`1esn`..] Else $`4esn` Ends With {999} End.``!)"), + octest_legacy:ct_string("Create Constraint On(_usn4:``)Assert Extract(`7esn` In 0.12 Is Not Null Where $12 Ends With 7.0e-0 Ends With 9e-12|$0 Contains $7).`4esn`.`1esn`.#usn8 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:usn2)Assert Any(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where $7[.1e-1..{@usn6}][$7..{`1esn`}]).#usn8 Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[`2esn`:@usn6]-()Assert Exists(All(usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]).``)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`4esn`)Assert Single(`7esn` In 0.12 Is Not Null Where 010[{`1esn`}..]).`7esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[usn2:@usn6]-()Assert Exists(Single(usn1 In {#usn7} =~.12e12 =~9e0 Where 0X0123456789ABCDEF Is Not Null Is Not Null).#usn8!.`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On()<-[``:`5esn`]-()Assert Exists({`1esn`:Count(*)[Count ( * )][{0}],`8esn`:{12} Ends With 1e1}.`7esn`!)"), + octest_legacy:ct_string("Create Constraint On()<-[@usn5:``]-()Assert Exists({`1esn`:{@usn5}[10.12e12..]}._usn4?.@usn6!.`2esn`!)"), + octest_legacy:ct_string("Create Constraint On(#usn8:`3esn`)Assert {`5esn`:$999 Is Not Null}.`3esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:`7esn`]-()Assert Exists(Reduce(@usn5=$0 Contains $123456789 Contains {`3esn`},usn2 In .12e-12 Ends With `2esn`|010[..9e-1][..0X7]).`4esn`.usn2?.`4esn`?)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:usn2)Assert (`3esn` :#usn8:@usn6)<-[_usn4?:usn1|usn2{``:.9e1 In {#usn7} In .9e-12}]->(#usn7 :#usn7:`8esn`).@usn6.@usn5.`5esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[@usn6:usn2]-()Assert Exists(Reduce(_usn4=$`5esn` Ends With 's_str' Ends With $`6esn`,usn1 In \"d_str\" Contains {@usn6}|Count(*) Starts With 07 Starts With $#usn7)._usn3?._usn4!)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:@usn6)Assert {`5esn`:$0 Ends With 9e-12 Ends With $_usn4}.usn1!.`7esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn4:_usn3)Assert Case When .9e1 In .1e-1 Then $7 =~01234567 =~12.0 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else $`7esn` In $@usn5 End.#usn8 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`4esn`:@usn6)Assert Exists(All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {`3esn`}[999..$`4esn`])._usn4!.@usn5!.#usn7!)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`3esn`)Assert Exists(Reduce(usn1=\"d_str\" Is Not Null Is Not Null,`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|{#usn8} Ends With _usn3 Ends With `2esn`).`6esn`!.`2esn`)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`7esn`)Assert Exists(Case $`3esn` =~#usn8 =~0x0 When $12 Ends With 7.0e-0 Ends With 9e-12 Then 07[..$`5esn`] End.`7esn`)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`5esn`)Assert Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]).`4esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`6esn`:_usn4]-()Assert Exists({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}.``!.`6esn`?)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`3esn`)Assert Case $_usn3 Starts With 010 When 2.9e1 In {``} Then $`4esn` Ends With {999} When {#usn8}[..@usn5] Then `3esn` Is Null End.`4esn`.`6esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn2:#usn7)Assert Case 9e-12[$7..] When $@usn6 Starts With 0xabc Starts With {`7esn`} Then false Contains {`7esn`} When 1.0 In {usn1} Then 10.12e12 In Null In .12e12 End.`3esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:`2esn`)Assert Exists((`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`).`8esn`.`2esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:`1esn`]-()Assert Exists(Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0X0123456789ABCDEF Is Not Null Is Not Null).@usn6)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`1esn`)Assert Exists(Reduce(`8esn`=12e12[{`4esn`}..`4esn`][999..{@usn6}],usn1 In $@usn6 Is Null Is Null|$`5esn` =~Count(*) =~1.9e0).``!.`2esn`?.`4esn`?)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`7esn`)Assert 3.9e-1.usn1! Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:_usn3)Assert [usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF].usn2! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[_usn3:_usn4]-()Assert Exists(Reduce(usn1=$123456789 Is Not Null Is Not Null,`7esn` In 0.12 Is Not Null|.12e12 Ends With 07 Ends With 3.9e-1).`1esn`!)"), + octest_legacy:ct_string("Create Constraint On(#usn8:_usn4)Assert Exists(All(usn1 In \"d_str\" Contains {@usn6} Where $1000 Is Null)._usn3?._usn4!.`7esn`?)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`1esn`)Assert Single(`` In `7esn` =~#usn8 =~\"d_str\" Where .9e-1 Ends With .0e-0 Ends With {_usn3}).`5esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`2esn`)Assert Exists(Case Count(*) =~01234567 =~.1e-1 When {1000} Starts With 10.12e12 Starts With .0e-0 Then $_usn3[usn2..][usn1..] When {`4esn`} In 1000 In {@usn5} Then 123456789[_usn4..`1esn`][$`6esn`..{@usn6}] End.`2esn`.`1esn`!.`6esn`)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:``)Assert [`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 2.12[{12}]|123.654[10.12e12..$12][6.0e0..{#usn8}]].``?.#usn7!.@usn5? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[usn1:`2esn`]->()Assert Exists(Shortestpath(((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(_usn3 :usn1))).#usn8?)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:usn1)Assert Exists(Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End.``.`2esn`)"). diff --git a/test/performance_cypher_SUITE.erl b/test/performance_cypher_SUITE.erl index 34e96ff..6532eca 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 : 15.12.2016 +%%% Created : 29.12.2016 %%%------------------------------------------------------------------- -module(performance_cypher_SUITE). @@ -38,1003 +38,1003 @@ all() -> %%-------------------------------------------------------------------- test_cypher(_Config) -> - 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}));"). + octest:ct_string("Remove `4esn`(12e12 In $`` In 6.0e0,.9e1[#usn7..]).`5esn`?,@usn6:@usn6:_usn4 Delete 's_str' Ends With $usn1 Merge `1esn`=(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))) On Create Set `8esn`+=Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),`8esn`+=0.0 Is Not Null Is Not Null On Create Set `2esn` =$999[$usn1...0e0] Union Merge #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})) Match ({`4esn`:7 Is Null Is Null})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})"), + octest:ct_string("Delete true In $0 In @usn5 With Distinct *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5[..1e-1] Merge ((_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null On Create Set `3esn`+=12e12 Is Not Null Union With #usn7[`5esn`..`2esn`][$`4esn`...1e1] As _usn4,8.1e1 Is Not Null,$_usn3 Is Not Null Skip usn2 Starts With usn1 Limit 00 Is Not Null Where `6esn`[0e0..`4esn`] Unwind Null Starts With 9e1 Starts With `` As `8esn`"), + octest:ct_string("Detach Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..],.1e-1 Contains 1e1 Contains $`6esn` With *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By .12e-12 =~9e12 =~1e-1 Desc,11.12e-12 =~$`4esn` =~.12e12 Descending Limit [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null Where `2esn` =~usn1 Union All Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})),((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) With [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..] Where $1000 Contains 01234567 Contains 0X7 Create ((usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]->(:usn1{usn1:Count(*)[0.12..2.9e1]})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})),(:usn1{``:.9e1[..`5esn`]}) Union All With {usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])],@usn5 Ends With 's_str' Ends With 01 As `7esn` Limit 1000[_usn3..`8esn`] Remove [`` In 0.12[3.9e-1] Where 07 =~7.0e-0 =~`8esn`].`8esn`;"), + octest:ct_string("Create #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})),``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Union Match (({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})),#usn7=(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[?{#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0}]-({`6esn`:07 Ends With @usn6 Ends With _usn3}) Return *,.12e-12 In 9e12 In 9e-12 As `5esn`,1e-1 Starts With usn2 Starts With 12e-12 As `` Order By 0[true..$7] Descending Skip (_usn4 :`2esn`:`8esn`)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})<-[`2esn`?:@usn5]-(`7esn` :usn1$`6esn`) =~(#usn8 {`3esn`:123456789 Contains .1e-1 Contains .12e12,`1esn`:$`3esn` =~4.9e12 =~$7})-[#usn7? *00..123456789]->(`8esn` :@usn5)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) Union All Detach Delete {`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)],Null Is Not Null Merge @usn6=(((@usn5 {``:.0e0[$`6esn`..]})-[?:usn2|:``]-(_usn4 :`4esn`:`7esn`{#usn7:0xabc Is Not Null,`4esn`:_usn3[`2esn`..10.12e12][9e1..true]})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(@usn5 :usn2))) On Match Set usn2 =$`8esn`[.9e-1][_usn3] On Match Set #usn7+=Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}],`8esn`(Distinct `2esn` Is Not Null Is Not Null,$``[4.9e12..2.9e1]).`6esn`.`1esn`! =.9e0 Is Not Null,usn1($@usn5[...9e-1][..$usn1],$`3esn` Ends With 010 Ends With $`7esn`).`3esn` =(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[? *07..{_usn4:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:$#usn8[...9e1]}]-({`1esn`:0X0123456789ABCDEF Contains 8.1e1})[Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`|$@usn6 =~$`2esn` =~9e1)..][[_usn4 In Count(*)[9e1..][12e-12..] Where $usn1 Starts With 12 Starts With 12e12|0e-0 Contains _usn4 Contains 1e-1]..] With Distinct *,#usn8 In $@usn6 As `8esn` Skip `1esn`[..0x0][..\"d_str\"]"), + octest:ct_string("Optional Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Where `` Ends With .9e-1 Ends With 9e-12 Union Merge _usn3=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Optional Match `2esn`=((@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]})) Where @usn5[...9e12] Unwind (`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As `7esn` Union Optional Match usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})),_usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]})))"), + octest:ct_string("Remove (#usn7 {`5esn`:.12e12[$0]})<-[`6esn`?:``|:`3esn`]->(`5esn` {`6esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]}).`2esn`?,[`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1|true[9e-12...0e-0][`5esn`.._usn4]].usn2!,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..]).`4esn`!._usn4! Create `5esn`=((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})),``=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}) Return *,0X0123456789ABCDEF Contains 8.1e1 As `6esn`,.1e1 =~`1esn` Order By All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])[..{#usn8:.12e12[Count(*)..]}][.._usn4(Distinct `2esn` Starts With 999,$`5esn` Starts With 0X7 Starts With 1e1)] Descending,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] Ascending,.9e1[12] Desc Limit 01234567 Ends With 2.9e1 Ends With 9.1e-1 Union With Distinct 0Xa Contains $999 Contains 0Xa Order By Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"]|`7esn`[3.9e-1..][$@usn5..])[..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] Desc,.0e0 Is Null Is Null Descending,$`4esn` =~0e0 Ascending Limit .0e0[..1e1][..$1000] Remove {`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1}.usn2!.`1esn`.usn2?,Filter(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8).@usn5?,Any(@usn6 In 00 =~.9e-12 =~usn1 Where `` Ends With .9e-1 Ends With 9e-12)._usn4!.`2esn`._usn4 Optional Match `2esn`=(_usn3 :_usn3:_usn3{@usn6:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where `2esn` Is Not Null Is Not Null;"), + octest:ct_string("Create `2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),``=((({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})<-[@usn6:#usn7|:`8esn` *0Xa..7]->(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})<-[@usn6:#usn7|:`8esn` *0Xa..7]->(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`}))) Unwind $999 In 0.0 As `1esn` Create (((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})));"), + octest:ct_string("Remove Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).`5esn`?,None(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).@usn5? Detach Delete .0e-0 =~12e-12,12e12[07..] Remove `2esn`:`7esn`,{`8esn`:`1esn` In 12e-12 In 1e-1}.`4esn`.`3esn`!.usn1!"), + octest:ct_string("Return Distinct `8esn` Is Null As `6esn`,01234567 Starts With `4esn` Starts With 10.12e12,Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null As _usn3 Order By 01[7][`1esn`] Asc,Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null Descending,Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|.9e12 Starts With 6.0e0 Starts With .1e1) Is Null Is Null Asc Skip 1.9e0 =~0x0 Create @usn6=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})),@usn6=(#usn8 {#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[`8esn`?:`8esn`|:`2esn`]-(:usn1{``:.9e1[..`5esn`]})<-[:usn1|:#usn8{_usn4:$12[01]}]-(:`1esn`{`3esn`:#usn8[`2esn`]}) Union All Unwind (#usn7 :@usn6:_usn4)-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]->(:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(usn1 {`6esn`:$`5esn`[true],usn2:1e1 Is Not Null Is Not Null}) Ends With (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]})<-[`6esn`:`6esn`|#usn7*]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12}) Ends With Any(`5esn` In 12[0xabc..][$0..]) As `2esn` Delete $#usn7 =~8.1e1 Create usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))"), + octest:ct_string("Optional Match `7esn`=((#usn7 )) Where 0.12[07..3.9e-1] Create `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Union Detach Delete .1e1[..0][..010] Detach Delete ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]),`2esn` Starts With 12 Starts With 10.12e12,.12e-12[07] Return 1.9e0 Ends With Count ( * ) Ends With .12 As `4esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12),9e1 Is Not Null As #usn8 Order By $`4esn` Ends With 0e-0 Ascending,.9e-1 Contains .0e0 Contains usn1 Asc Skip None(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8) Is Null Is Null"), + octest:ct_string("Merge ((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) With 010 Starts With 0.0 Starts With .0e0 As _usn4 Order By 123456789 =~$`1esn` =~#usn7 Ascending,.1e1 =~010 =~0.12 Descending Skip Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..])[..Extract(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]|$`6esn` Starts With `4esn`)] Limit Extract(`5esn` In 12[0xabc..][$0..] Where 9e-1[0X0123456789ABCDEF][0]|.9e1[..Count(*)][..7.0e-0]) Is Null Is Null Where `6esn`[010...9e-12] Union All Return *,.9e1 Starts With `4esn` As `5esn`,{_usn4:1.9e0 =~$`8esn` =~01234567}[All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] As _usn4 Order By #usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Desc,3.9e-1[..$7] Desc Skip 12 Contains $usn1 Contains 0 Optional Match (((`3esn` :@usn6:_usn4)<-[_usn4?:#usn8|:`4esn` *123456789..0x0]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12})-[?:_usn3|`2esn`]->(`1esn` :`7esn`))),((:@usn6:_usn4{#usn7:9.1e-1 Contains 0xabc})) Union With Distinct *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip 0xabc =~7.0e-0 =~4.9e12 Limit Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null;"), + octest:ct_string("Detach Delete None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567) Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1) Starts With (:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`),All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] Union Unwind .0[01234567][$#usn8] As `2esn` Merge `6esn`=(({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Create Set All(usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]).`2esn`? =0Xa[$usn2..],`3esn`:usn1,`1esn` =$``[`6esn`][00] Union With Distinct `5esn`[$`4esn`] As @usn6,.0e0 Is Null Is Null As _usn4,1.9e0 Starts With .9e0 Order By @usn5 Contains _usn3 Contains 00 Descending,$`6esn` Ends With 12 Ascending"), + octest:ct_string("Unwind usn2 Starts With usn1 As @usn6 Union Detach Delete .1e-1[..12e12] Union All Unwind Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) As `5esn` Optional Match (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}),`1esn`=(((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[:_usn3|`2esn` *010..]-(`` :usn1)<-[@usn5?:@usn6|:_usn3 *07..{_usn3:$`3esn` Is Not Null Is Not Null,#usn8:usn1[0.12..1000]}]->(`3esn` {usn2:$`7esn`[..12.0][..0e0]}))) Where .0e0[$`1esn`][.9e-12];"), + octest:ct_string("Merge `6esn`=((#usn7 )) On Match Set `1esn`().`` =$`2esn`[$1000..][$@usn5..] Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As #usn7"), + octest:ct_string("Remove Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12).`5esn`?,(`7esn` :@usn5{usn2:$`8esn`[#usn7][.9e1],`7esn`:@usn5[$``]})<-[:`1esn`{`8esn`:0xabc[7.0e-0..][12e12..]}]->(:`6esn`:`3esn`{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12}).`6esn`!,Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]).usn1!._usn3?._usn3? Create `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}))"), + octest:ct_string("Create ((:_usn3:_usn3{usn1:.9e1[12]})),@usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Remove 8.1e1.#usn8,None(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null).`5esn`!,{`5esn`:_usn3 Starts With `2esn`,usn1:4.9e12[..Null]}.`5esn`!.@usn5!.usn2 Create ({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}) Union All Merge `4esn`=((@usn5 :usn1{usn1:.9e1[12]})) On Match Set _usn3 =12e-12[.0..],_usn4+=.0e0[..12.0][...1e-1],usn1 =({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null} On Match Set `8esn`+=Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\"),`1esn`+=4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12),(`` {_usn4:9e0[..1e1]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(@usn5 :@usn6:_usn4).#usn8.`1esn`.usn1! =00[0e-0...9e-1][1e-1..``];"), + octest:ct_string("Remove None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`).`7esn`!.`6esn`?,({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null})<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3).`5esn`._usn3! Remove `7esn`:`2esn`:`8esn` Unwind .0[01234567][$#usn8] As `2esn`;"), + octest:ct_string("Merge _usn3=(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})<-[`1esn` *0..010]-(usn2 :``:usn1)<-[?:usn2|:`` *..0X7]-(#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})"), + octest:ct_string("Remove [`5esn` In 12[0xabc..][$0..]].#usn8!,[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]|$`3esn` In 's_str' In $#usn7]._usn4!.#usn8?,Filter(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)._usn3!.@usn5! With *,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"] Starts With ``(12.0[`8esn`],4.9e12 In 5.9e-12 In .9e0) Starts With Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]),$12 Contains $#usn8 Contains 01 Unwind Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) As `6esn` Union Return Distinct *,Null[...9e1] As `2esn` Order By 10.12e12 =~12e-12 =~0X0123456789ABCDEF Descending,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) Asc,8.1e1 Starts With .9e12 Starts With `7esn` Desc"), + octest:ct_string("Return 0 Contains $`6esn` Contains #usn7 Limit usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) With 's_str' =~.9e1 =~3.9e-1 As usn2,@usn5 Ends With 's_str' Ends With 01 As `7esn`,.1e1 Starts With 9e0 As #usn7 Where 1000[_usn3..`8esn`] Union All Create #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Unwind Filter(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) Starts With All(`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]) Starts With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`) As `` Remove {`4esn`:$123456789[$_usn3..][$usn2..]}.usn1 Union All Optional Match ((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) Where 07[\"d_str\"..]['s_str'..] Detach Delete 7.0e-0 Is Null Is Null,Count(*)[.0e0] Create @usn6=(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}))),((_usn3 :usn2)<-[`6esn`?:``|:`3esn`]-(usn1 :_usn4));"), + octest:ct_string("Remove [`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0]._usn3?._usn3?,(:`3esn`{usn1:123.654 Ends With 0Xa Ends With .12e12})-[?{`3esn`:$`6esn`[$`7esn`][$`4esn`]}]->(:_usn4{`7esn`:9.1e-1 =~@usn5 =~Count ( * )}).`5esn`?.usn2,`2esn`(Distinct 12e-12[`7esn`..][5.9e-12..],0.0[$1000][3.9e-1])._usn4!.`2esn`.``! Return Distinct *,_usn3[`2esn`..10.12e12][9e1..true] Remove (usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2})-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12}).@usn5,Filter(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`).`3esn`,Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1).@usn5.`4esn`! Union Optional Match `3esn`=(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})),`5esn`=(((_usn3 )-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3}))) Where $_usn3 In 123.654 In $`8esn`;"), + octest:ct_string("With count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0])[_usn3(8.1e1[usn2..$1000][$7..0x0],false[..12e-12][...9e1])..] As @usn6,.0e-0[0e0..00][.9e1..12] As `1esn`,Count ( * ) Starts With 10.12e12 Starts With `` As `5esn` Order By 5.9e-12[9e0..] Ascending,0x0 Asc Skip 0Xa[$usn2..] Where $``[`6esn`][00] Delete 12e12[..123456789][..false] Union Create @usn5=({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Detach Delete {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null,$`4esn` =~0e0 Delete 10.12e12[0Xa..999][1000..Count(*)],2.9e1 Union With $0 =~01234567 As `2esn`,07[.0e0][3.9e-1] Skip Extract(`7esn` In .12e12[Count(*)..] Where true Starts With 2.9e1 Starts With 9e1|12[0xabc..][$0..]) Starts With Extract(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12|0.12[3.9e-1]) Starts With ``(12e12[true..][$`2esn`..]) Limit [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]] Where 5.9e-12[`4esn`..12e12][0x0..1.9e0] Return #usn7[`5esn`..`2esn`][$`4esn`...1e1] As _usn4,8.1e1 Is Not Null,$_usn3 Is Not Null Order By $`6esn`[.9e1..][`5esn`..] Ascending,#usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Desc,Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Ascending"), + octest:ct_string("Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|.1e1 In 9e12).``,{`2esn`:.0,`5esn`:$`3esn` =~4.9e12 =~$7}.`1esn`!.@usn5!,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`).#usn8? With Distinct *,$`2esn`[$1000..][$@usn5..] As #usn8 Order By .9e0 Is Null Asc,0 Is Not Null Desc Skip #usn7[5.9e-12][00] Where 12e12[..$`8esn`][...0e-0] Union All Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set `6esn` =.1e1 =~10.12e12 On Match Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] Create (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}) Unwind _usn4['s_str'..] As `6esn` Union Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``]|`4esn` Starts With $_usn3 Starts With .9e-12].@usn5!._usn4?.`1esn`?,All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where true In $0 In @usn5).`3esn`"), + octest:ct_string("Detach Delete 010 Is Not Null Is Not Null,None(`8esn` In 01234567[..0.0][..false] Where `7esn`) Is Not Null Is Not Null,07[.0e0][3.9e-1]"), + octest:ct_string("Create usn1=(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1}) Union All Merge usn1=(`5esn` :`1esn`) Union All Remove Filter(`7esn` In .12e12[Count(*)..] Where @usn5[$_usn3..]).usn2? Create `8esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Create @usn6=((`5esn` :`6esn`:`3esn`{usn2:$`4esn`[..2.9e1][..07],`6esn`:#usn7[10.12e12..][\"d_str\"..]})<-[`7esn`*..]->($@usn6)<-[:_usn3|`2esn` *010..]-(`` :usn1));"), + octest:ct_string("Delete $usn1[$7..][$0..]"), + octest:ct_string("Unwind 12[0..usn2] As `7esn`"), + octest:ct_string("With 3.9e-1[0.12..] Order By 123456789 =~6.0e0 Ascending,Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Ascending,1.9e0 Starts With 's_str' Starts With 9.1e-1 Descending Where $123456789 Starts With Count ( * ) Union All Return Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null As `6esn`,`` Contains 12.0 As usn1,.1e-1 Ends With $_usn3 As @usn6 Order By $@usn6 =~$`2esn` =~9e1 Ascending,0Xa[9e0] Desc Limit .0e0[$`1esn`][.9e-12] Delete $usn1[$7..][$0..]"), + octest:ct_string("With #usn7[10.12e12..][\"d_str\"..] As `1esn`,9e-1 Contains $@usn5 Contains Count(*),`` Is Not Null Is Not Null As usn1 Order By @usn6 In 3.9e-1 In 9e-12 Asc,1.9e0[$12][``] Desc,12e12 =~#usn7 =~.9e-1 Asc Limit 0X7 =~$123456789 =~$`` Where $1000[$1000...9e0] Match `1esn`=((({``:_usn3[$_usn3][usn1]})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(#usn8 {_usn3:$usn2 In usn1 In 1e-1})<-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(_usn3 :#usn8))) Union All Detach Delete Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})],$`1esn` =~0.0,8.1e1 Is Not Null Union With Distinct *,Null[12e-12..] As _usn4,$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Skip Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`])[0x0..[`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`]] Create `6esn`=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0})))"), + octest:ct_string("Remove ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(usn1 :usn1)<-[@usn5?:`8esn`|:`2esn` *0..010]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}).`5esn`!.usn2!.`1esn`! Remove `2esn`(usn1[12e-12])._usn4.@usn5!.`6esn`?,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2).`8esn`?._usn3!.`8esn`,[usn1 In 7.0e-0[.._usn4][..0X7] Where 12.0[..Count(*)][..5.9e-12]|.1e-1 Ends With $`8esn` Ends With .9e0].usn2 With Distinct *,Null[12e-12..] As _usn4,$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Skip Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`])[0x0..[`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`]]"), + octest:ct_string("Unwind usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12)[{_usn4:@usn6 In 3.9e-1 In 9e-12}][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]|10.12e12[12e12..0X7])] As `7esn` Delete {@usn5:$0 Starts With 010} In usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]),123.654 In $`5esn` In 9e-1 Union Optional Match `2esn`=(_usn3 :_usn3:_usn3{@usn6:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Delete @usn5[$``],$`5esn`[7..]"), + octest:ct_string("Unwind Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null As #usn7"), + octest:ct_string("Match ((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})),``=((({`4esn`:$`2esn` Ends With $`8esn`})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})-[``]-(:_usn4{#usn8:.0e0[1e1..][01234567..],#usn7:1e-1[..2.9e1]}))) Where $123456789 =~12 =~7 Return 12 Contains usn2 Contains $usn2 As ``,Count ( * )[12e-12] As #usn7 Skip .0 Detach Delete .12e12 =~$#usn7,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] Union All Remove Extract(_usn3 In ``[$``..] Where 0xabc[7.0e-0..][12e12..]|123456789 =~6.0e0).``.`1esn`.@usn5!,`6esn`(Distinct).`2esn` Return Distinct [`` In 0.12[3.9e-1] Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`|Null[10.12e12..]] In {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] As `7esn`"), + octest:ct_string("Remove (usn2 :@usn6:_usn4{usn1:9e12 Contains $@usn6 Contains Count(*)})-[usn2:`4esn`|:@usn5 *01234567]->(:`5esn`{`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567})<-[`4esn`?:_usn3|`2esn`]-(`8esn` {``:$123456789[$_usn3..][$usn2..]}).`6esn`!,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1).`1esn`?.``.usn1,{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}._usn3!.`6esn` Remove ``:`3esn`"), + octest:ct_string("Match (((_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})<-[`4esn`?:_usn3|`2esn` *0..010]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`}))),`2esn`=(({_usn4:01234567[6.0e0][$usn2]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})) Unwind 5.9e-12 Ends With 1e1 Ends With false As _usn3 Remove ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(usn1 :usn1)<-[@usn5?:`8esn`|:`2esn` *0..010]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}).`5esn`!.usn2!.`1esn`! Union All Remove @usn5:@usn5,All(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1).`8esn`.`4esn`! With Distinct *,9.1e-1 =~.12 =~0e-0 As `1esn` Order By 9e-1 Starts With 123.654 Starts With .9e1 Descending,$`8esn`[$``..$`1esn`][9e-12..$7] Descending Skip \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"] Limit $`5esn` Is Not Null Where .9e1[#usn7..] With *,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"] Starts With ``(12.0[`8esn`],4.9e12 In 5.9e-12 In .9e0) Starts With Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]),$12 Contains $#usn8 Contains 01 Where $`4esn` =~0e0"), + octest:ct_string("Return Distinct *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Return Distinct *,$7 Contains _usn4 Contains $`1esn`,0e-0[$`2esn`][8.1e1] As @usn5 Unwind false[..12e-12][...9e1] As #usn8 Union All Remove #usn8(Distinct .0e0 Contains `4esn` Contains Null,_usn4 Is Not Null Is Not Null).`3esn`!.`1esn`,usn1($usn2[1e-1])._usn3?.`1esn`?.`8esn`?"), + octest:ct_string("Unwind Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()] As `8esn` Delete \"d_str\"[12e12..][4.9e12..] Match `3esn`=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) Where $usn1 Starts With 12 Starts With 12e12 Union All Unwind #usn8[`2esn`] As _usn3 Merge (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}) On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1];"), + octest:ct_string("Detach Delete Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8),Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]) Ends With Extract(`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0|12e12[..$`8esn`][...0e-0]) Ends With _usn3(Distinct 5.9e-12[`4esn`..12e12][0x0..1.9e0],`6esn`[..$@usn6][..$`1esn`]) Detach Delete Filter(`2esn` In .9e-12[0e0...9e-1] Where .9e-1 Is Not Null Is Not Null)[Any(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1])..(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})][(`7esn` :#usn7:_usn3{`3esn`:00[0e-0...9e-1][1e-1..``]})<-[_usn3:_usn3|`2esn`{`7esn`:0X7[_usn4..1.9e0][Count ( * )..false],_usn4:.9e-12[9e1..8.1e1]}]-({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]})..Single(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..])],8.1e1 Is Null Is Null,`7esn`(7.0e-0[.._usn4][..0X7],$`5esn`[7..]) Contains [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]] Union Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null"), + octest:ct_string("Unwind `6esn` In 9e-12 As _usn4 Create usn1=(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})"), + octest:ct_string("Optional Match `3esn`=(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))),(((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})-[`2esn`?:#usn8|:`4esn`]-(:@usn6:_usn4{`2esn`:$usn1[$7..][$0..]}))) Where $`4esn` In 123456789 In `5esn` Delete All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])[..{#usn8:.12e12[Count(*)..]}][.._usn4(Distinct `2esn` Starts With 999,$`5esn` Starts With 0X7 Starts With 1e1)],Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1]),07 Ends With 0X7 Ends With 's_str' Create #usn7=((`4esn` {_usn3:@usn6 In 3.9e-1 In 9e-12})<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4)) Union All Remove All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0)._usn3? Unwind $@usn5[..1e-1] As _usn4 With 1000[Null..] As `1esn`,.1e1 Starts With $7 Order By Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Ascending,$`7esn` Contains 0X7 Asc,$_usn4 Is Not Null Ascending Limit .0e0[$`1esn`][.9e-12];"), + octest:ct_string("With *,12.0[..123456789][..01] Limit $usn1 Starts With usn1 Starts With 1e-1 Union Optional Match `2esn`=(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where $usn1 Is Null"), + octest:ct_string("Merge `1esn`=({`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]})-[`3esn`?:`1esn`]-(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) On Match Set (@usn6 :usn1{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(`7esn` :`2esn`:`8esn`).`4esn`! =01[..0Xa],#usn7 =$999[.1e1..0.0],`3esn`+=Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null On Match Set `6esn`+=[usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null]][(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})..] With *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5 Is Null Remove {@usn6:0X7 Starts With 1e1 Starts With $12}.#usn8?.usn1.@usn5!,Extract(usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|0e0 Ends With 1e1 Ends With 0Xa).``?,@usn5:`3esn` Union With Distinct *,Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn` Order By _usn3[`2esn`..10.12e12][9e1..true] Descending Limit `6esn`[0x0..@usn5][$1000...9e-12] Where $@usn6 Contains Count ( * ) Unwind {`5esn`:false,_usn3:.9e-12 Starts With .0e-0 Starts With usn2} Is Null As `3esn` Remove {`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1}.usn2!.`1esn`.usn2?,Filter(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8).@usn5?,Any(@usn6 In 00 =~.9e-12 =~usn1 Where `` Ends With .9e-1 Ends With 9e-12)._usn4!.`2esn`._usn4 Union Create _usn4=((`5esn` {`2esn`:`1esn` =~0 =~_usn4})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[usn2?{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3}]-(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})),((usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})) Return Distinct *,`7esn` Ends With `7esn` Ends With $`3esn` Order By `1esn`[11.12e-12..] Asc Limit All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1) =~_usn3(Distinct 5.9e-12[9e0..],$@usn5 Is Null)"), + octest:ct_string("Create ((usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]->(:usn1{usn1:Count(*)[0.12..2.9e1]})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})) Create usn1=({`5esn`:07 Starts With usn1 Starts With 010})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}),_usn3=({usn1:usn2 Ends With 10.12e12})"), + octest:ct_string("Detach Delete #usn7 Ends With Count ( * ) Ends With @usn6,`8esn` Is Null,`7esn` Contains $7 Contains 07 Unwind Count(*)[0e0..] As `7esn` Union All Remove All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0)._usn3? Unwind $@usn5[..1e-1] As _usn4 With 1000[Null..] As `1esn`,.1e1 Starts With $7 Order By Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Ascending,$`7esn` Contains 0X7 Asc,$_usn4 Is Not Null Ascending Limit .0e0[$`1esn`][.9e-12] Union Merge (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}) On Create Set Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`).`3esn`!.`5esn`!.`1esn` =(:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null),None(`7esn` In .12e12[Count(*)..] Where `4esn` Starts With $_usn3 Starts With .9e-12).@usn5._usn3!.@usn5 =Extract(`5esn` In 12[0xabc..][$0..] Where 9e-1[0X0123456789ABCDEF][0]|.9e1[..Count(*)][..7.0e-0]) Is Null Is Null On Match Set usn2 =8.1e1 Is Null,`1esn` =$_usn4 Contains .12e-12 Create (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))),`2esn`=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})))"), + octest:ct_string("Remove {_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}.`1esn` Union All Delete .1e1 In 9e12 Match (`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null})"), + octest:ct_string("Delete 0[$999..],Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null]) Is Not Null Is Not Null,$#usn7 In .12e-12 Union All Unwind $usn2[4.9e12..false][.0e-0..00] As `5esn` Merge _usn4=((`` :usn1)<-[``?:_usn3|`2esn` *0X0123456789ABCDEF..0{`5esn`:`4esn`[0.0..][.1e-1..]}]->({`7esn`:0[$`1esn`..`8esn`]})) On Create Set #usn7+=(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] On Match Set (@usn6 :usn1{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(`7esn` :`2esn`:`8esn`).`4esn`! =01[..0Xa],#usn7 =$999[.1e1..0.0],`3esn`+=Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null Union All With Distinct Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Limit 9e0[..1e1] Where $usn2[1e-1] With Distinct *,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,false[12e-12..][usn1..] Order By Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]) Desc Limit $`1esn`[`3esn`..] Where $usn1 =~$999 =~$7 Return Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] As usn1,Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) As usn1,_usn4[9e0..$#usn8] Order By $``[`4esn`..][0.0..] Desc,9e0[$usn2][0] Ascending Limit Count ( * )[`7esn`];"), + octest:ct_string("Detach Delete `3esn` Contains 01234567 Contains .9e-12,`1esn`[..0x0][..\"d_str\"] Union Merge ((:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})-[usn2?:@usn6|:_usn3]->({usn1:01[.9e-12..],@usn6:$`5esn` Ends With $#usn7 Ends With .0e-0})) On Match Set {@usn5:12e-12 Contains .9e-1 Contains 9e-1}.``! =usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]),@usn6 =0.0 Is Not Null Is Not Null,[`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0]._usn3?._usn3? =.1e1 Starts With .1e-1 On Match Set `8esn`+=Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\"),`1esn`+=4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12),(`` {_usn4:9e0[..1e1]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(@usn5 :@usn6:_usn4).#usn8.`1esn`.usn1! =00[0e-0...9e-1][1e-1..``] Unwind $`5esn` Contains `2esn` Contains 9e1 As `1esn` Union All Remove {`3esn`:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7],@usn6:01[..0.12]}._usn4!,_usn3:`8esn`:#usn7,None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`5esn` Starts With 0X7 Starts With 1e1).@usn5? Match `1esn`=(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})))"), + octest:ct_string("With Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07),{@usn6:8.1e1[$`5esn`][0e0],`5esn`:$`8esn` Starts With `2esn`}[[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]] As ``,false[12e-12..][usn1..] Order By 12[0..usn2] Descending Skip Null[12e-12..] Limit $@usn5[true..][$usn1..] Union Create @usn6=((:_usn3:_usn3{usn1:.9e1[12]})) With Distinct *,$`` Is Not Null Is Not Null,12e12[..123456789][..false] Skip 12e-12 Ends With @usn5 Ends With $`2esn` Limit .9e-12[..$`7esn`][...9e-1] Union All Optional Match `2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),usn2=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Create (((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))),(`5esn` :`5esn`)"), + octest:ct_string("Optional Match (`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]}),(#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`}) Where $`3esn` In 's_str' In $#usn7 Union All Unwind `5esn` Contains 1.9e0 Contains 9e0 As `4esn`"), + octest:ct_string("Detach Delete .1e1[..0][..010] Detach Delete ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]),`2esn` Starts With 12 Starts With 10.12e12,.12e-12[07] Return 1.9e0 Ends With Count ( * ) Ends With .12 As `4esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12),9e1 Is Not Null As #usn8 Order By $`4esn` Ends With 0e-0 Ascending,.9e-1 Contains .0e0 Contains usn1 Asc Skip None(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8) Is Null Is Null Union Delete $@usn5[true..][$usn1..] Return Distinct $`` Ends With 6.0e0,$`6esn` In `2esn`,\"d_str\" Starts With `6esn` Starts With 1.9e0 As _usn3 Order By true Is Null Is Null Descending,(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] Descending,{usn1:`7esn` Is Not Null}[Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8)..{`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3}][Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 9.1e-1[.1e-1])..{usn2:1e1[3.9e-1][.9e-1]}] Descending Skip 010[11.12e-12..] Union Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where ``[..$#usn7]|2.9e1).`1esn`?,None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]).`3esn`?"), + octest:ct_string("Merge ((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) On Create Set #usn8 =usn2 Ends With 10.12e12 On Match Set {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}.@usn6 =07[.0e0][3.9e-1],`5esn`:`3esn` Return *,true Is Null Limit `6esn`[010...9e-12] With $0 =~01234567 As `2esn`,07[.0e0][3.9e-1] Skip Extract(`7esn` In .12e12[Count(*)..] Where true Starts With 2.9e1 Starts With 9e1|12[0xabc..][$0..]) Starts With Extract(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12|0.12[3.9e-1]) Starts With ``(12e12[true..][$`2esn`..]) Limit [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]] Where 5.9e-12[`4esn`..12e12][0x0..1.9e0] Union With Distinct 0Xa Ends With #usn8 Ends With usn2 As `6esn`,$7 Starts With Null Starts With `6esn` Order By 0xabc[$`4esn`..][`8esn`..] Desc,0 Is Not Null Descending Unwind $`2esn`[$1000..][$@usn5..] As `5esn` With Distinct *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Skip `` =~123456789 Limit Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Where 12 In 1000 In \"d_str\""), + octest:ct_string("Remove All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`2esn`[010..`5esn`][``..0.12]).@usn5?,(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})-[`6esn`:`6esn`|#usn7*]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5}).`3esn`?"), + octest:ct_string("With Distinct count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0])[_usn3(8.1e1[usn2..$1000][$7..0x0],false[..12e-12][...9e1])..] As @usn6,.0e-0[0e0..00][.9e1..12] As `1esn`,Count ( * ) Starts With 10.12e12 Starts With `` As `5esn` Union Create @usn6=((`5esn` :`6esn`:`3esn`{usn2:$`4esn`[..2.9e1][..07],`6esn`:#usn7[10.12e12..][\"d_str\"..]})<-[`7esn`*..]->($@usn6)<-[:_usn3|`2esn` *010..]-(`` :usn1)),(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}) Return *,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) As `7esn`,$`3esn` Starts With 0Xa As @usn6 Order By true Starts With 2.9e1 Starts With 9e1 Asc,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending Skip 12 =~$@usn5;"), + octest:ct_string("Merge ((`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010})) On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] With 11.12e-12 Is Null Is Null As `4esn`,#usn8 Starts With 11.12e-12 Starts With $`3esn` As `2esn` Skip 123.654 Ends With 0Xa Ends With .12e12 Union Optional Match (`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[_usn3:usn1|:#usn8 *07..]-({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}),`7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) Union All Return Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1]"), + octest:ct_string("Unwind .1e1 Starts With $`7esn` As usn1 Detach Delete $usn1[$7..][$0..] Delete 0Xa Ends With #usn8 Ends With usn2,#usn8[3.9e-1.._usn3],_usn4 In `3esn` In 7.0e-0 Union Create `5esn`=(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}),((@usn5 :usn1)-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})) Unwind $``[`5esn`..][`2esn`..] As `8esn` Union Match `7esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Return *,.9e0 Is Null As _usn4 Order By {`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-12 Is Not Null Is Not Null)..None(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)][[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']|12e12[..$`8esn`][...0e-0]]..`4esn`(_usn4 Is Not Null Is Not Null,_usn4['s_str'..])] Descending,.9e-12[0e0...9e-1] Asc Optional Match `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),((_usn3 {`5esn`:`8esn` =~.1e1 =~.0}));"), + octest:ct_string("Optional Match (#usn8 :#usn8)<-[`5esn`?:``|:`3esn` *..0xabc]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[{#usn8:.0e0[1e1..][01234567..],`6esn`:123.654 Ends With 0Xa Ends With .12e12}]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12}) Union All Delete All(`8esn` In 01234567[..0.0][..false] Where 07 Ends With @usn6 Ends With _usn3) In (:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})<-[`3esn`?:`1esn`]-(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[usn2:@usn6|:_usn3 *123456789..0x0$_usn3]->(:`8esn`:#usn7{``:$7 Starts With Null Starts With `6esn`,`4esn`:#usn8[..#usn7][..@usn6]}) In Null Merge (`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[_usn3:usn1|:#usn8 *07..]-({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}) On Match Set `6esn`:`6esn`:`3esn`,`8esn`:`7esn` On Match Set {#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}.`6esn`!.`3esn`! =5.9e-12[$`4esn`],_usn3:`2esn`:`8esn`,#usn7(0e0 Starts With $1000 Starts With `2esn`,Count ( * )[..`8esn`]).@usn5? =.0e0 =~5.9e-12 =~`7esn` Union Return *,0X0123456789ABCDEF Contains 8.1e1 As `6esn`,.1e1 =~`1esn` Order By All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])[..{#usn8:.12e12[Count(*)..]}][.._usn4(Distinct `2esn` Starts With 999,$`5esn` Starts With 0X7 Starts With 1e1)] Descending,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] Ascending,.9e1[12] Desc Limit 01234567 Ends With 2.9e1 Ends With 9.1e-1 Create `7esn`=((#usn7 )) With Distinct *,`8esn` Is Null As `6esn` Order By [usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc,0x0 =~$7 =~Null Desc,12e-12[9e0..1.9e0] Asc Where `` =~$`5esn`"), + octest:ct_string("With {@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2} Is Not Null Where `1esn`[11.12e-12..] Merge ((`5esn` :`2esn`:`8esn`)<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})) Union Detach Delete ({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null},Count(*) =~Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7),{@usn5:true Contains 0x0} In Extract(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$1000[..01234567][..0X0123456789ABCDEF]) Merge usn2=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Remove ({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})<-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(`4esn` :usn1{`1esn`:0X0123456789ABCDEF Contains 8.1e1}).`4esn` Union Delete usn2[Count ( * )..07],None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn`[..0x0][..\"d_str\"])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1])..Single(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])] Match (((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Where 5.9e-12 =~$@usn6 Detach Delete {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})"), + octest:ct_string("Unwind \"d_str\" =~9e-12 =~`5esn` As `8esn` Return *,_usn4['s_str'..] As `2esn`,Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Order By .0e0[1e1..][01234567..] Descending,5.9e-12[2.9e1][9e0] Desc Skip Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7) Detach Delete .1e-1[$`2esn`..][$`1esn`..] Union Remove _usn3(Distinct Null =~true =~.1e-1).`7esn`? Return 10.12e12 Starts With .9e12 As #usn7,_usn4['s_str'..] As `2esn`,false[12e-12..][usn1..] Order By 123456789[Count ( * )..] Desc,``(Distinct `4esn`[$1000..$``][$_usn4..$_usn4],.1e-1 Starts With 1000 Starts With $`1esn`) In [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|`4esn` Starts With $_usn3 Starts With .9e-12] In {`6esn`:``[$``..]} Desc,[usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc Skip .1e-1 Is Null Limit All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0)[Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"])..Single(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1])][{usn1:9e-1 Starts With 123.654 Starts With .9e1,#usn8:$_usn4 Is Not Null}..(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})] Union All Delete Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12),$usn2[4.9e12..false][.0e-0..00],usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})"), + octest:ct_string("Unwind .1e1[1e-1..][1.9e0..] As _usn3"), + octest:ct_string("Detach Delete 0e0 Ends With 0X7 Ends With .1e1,0[true..$7],[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null Create @usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),`5esn`=(((:@usn5{usn2:$usn1[$12..]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)<-[`8esn`?:`7esn`|@usn6 *..7]->(`5esn` {`2esn`:`1esn` =~0 =~_usn4}))) Unwind Filter(`` In $_usn3 Is Not Null Where 7 Is Null Is Null) =~{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} As `2esn` Union All Return Distinct *,`7esn` Ends With `7esn` Ends With $`3esn` Order By `1esn`[11.12e-12..] Asc Limit All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1) =~_usn3(Distinct 5.9e-12[9e0..],$@usn5 Is Null);"), + octest:ct_string("With *,$#usn7[$_usn4..][.12e-12..] As `6esn`,5.9e-12 =~$@usn6 As `7esn` Limit usn1[12e-12] Merge ((`6esn` :`7esn`)-[`7esn`?:`5esn`]->(#usn8 )<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})) On Match Set #usn8 =_usn4['s_str'..],`7esn` =$usn1[$12..] On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 Union Remove Any(`` In $`5esn` Starts With 0X7 Starts With 1e1).usn2?,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5[$``]].`6esn`!,Single(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12).`7esn`! Union Match ((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1))),_usn4=((_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))"), + octest:ct_string("Detach Delete $`6esn` Starts With `4esn` Remove (#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *01234567]->(`5esn` :`2esn`:`8esn`).#usn7!.`3esn`!.@usn6!"), + octest:ct_string("Match (`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1}),({@usn5:$12 Contains $`7esn` Contains .0})<-[usn2 *..0xabc]->(:@usn5{`7esn`:7.0e-0[`6esn`..]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1}) Where $`6esn` Starts With `4esn` Match `8esn`=(`3esn` :#usn7:_usn3)<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(`2esn` :usn2)<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}),`4esn`=(((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})))"), + octest:ct_string("Unwind Extract(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``]|$_usn4[..usn2]) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) Starts With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null|`4esn` Is Not Null Is Not Null) As `4esn` Match (_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}),((`6esn` :usn1)) Where 9.1e-1 In #usn8 Remove `6esn`(1e1 Is Not Null Is Not Null,$`1esn` Starts With Count(*) Starts With $`8esn`).`7esn`,{`3esn`:.0,`5esn`:Count ( * )[..`8esn`]}.``?.`6esn`.@usn5?,Any(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`).#usn7?.usn2._usn4? Union Delete None(_usn3 In ``[$``..] Where .0e0 In 10.12e12 In $`5esn`) Is Null Is Null,@usn5 Is Null Is Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)],Null[...9e1] Delete {@usn5:$`2esn`[8.1e1]}[None(`7esn` In .12e12[Count(*)..] Where .9e1[12])..Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1)][`6esn`(Distinct 0e0 In $_usn4 In `2esn`)..{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]}] Union All Remove Single(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12).`6esn`,(:@usn5{`4esn`:.0e0[$`6esn`..]})-[? *0X0123456789ABCDEF..0]-({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`)._usn3._usn3!.`4esn`?,{@usn5:'s_str' Is Null,`3esn`:Count(*)[12..][0X0123456789ABCDEF..]}.`6esn` Remove Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|$_usn3 Is Not Null).`5esn`!,count(Distinct $`3esn` Starts With 0Xa).#usn7"), + octest:ct_string("Detach Delete `4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Ends With None(`` In $_usn3 Is Not Null Where .9e1[...12e12]),`5esn`[0X7..][12..] Remove None(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]).#usn8,{@usn5:$`1esn` Starts With Count(*) Starts With $`8esn`}._usn3! Optional Match ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})) Union Remove [`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1|`6esn`[..$@usn6][..$`1esn`]].`8esn`?,None(`8esn` In 01234567[..0.0][..false] Where 5.9e-12[.1e1][$#usn8])._usn4! Detach Delete 2.9e1[...9e-12][..0]"), + octest:ct_string("Unwind .9e-1[3.9e-1]['s_str'] As `7esn` Detach Delete $`2esn`[010..`5esn`][``..0.12] Return Distinct *,(`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As @usn6 Skip `7esn`[.1e1..][`8esn`..] Limit Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12)[Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12)..][`4esn`(Distinct)..] Union All Remove {`7esn`:.0[usn2.._usn4],`5esn`:9.1e-1 Is Null}.@usn6?,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Starts With 9e1 Starts With $`4esn`).`2esn`!,{_usn4:$12 Contains $`7esn` Contains .0}.#usn8!.`8esn` Create `6esn`=(((#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`3esn` {#usn8:`7esn` Is Null})-[@usn6?:@usn5]-(`4esn` :usn1{`1esn`:0X0123456789ABCDEF Contains 8.1e1}))),(($@usn6)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[#usn8?:#usn7|:`8esn` *..0X7]->(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999})) Union Remove (#usn8 :#usn8)-[`` *..0X7]->(usn2 :#usn8).#usn8,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`).#usn8?,[@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]]._usn3?.`4esn`?.@usn5? Return *,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) As `7esn`,$`3esn` Starts With 0Xa As @usn6 Order By true Starts With 2.9e1 Starts With 9e1 Asc,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending Skip 12 =~$@usn5"), + octest:ct_string("Optional Match `3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where @usn5[$_usn3..] Return Distinct $#usn7 =~8.1e1 As #usn7,`4esn`[$1000..$``][$_usn4..$_usn4] Skip $`2esn` In 0X7 In 3.9e-1 Union All Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Where 's_str' Is Null Union All Remove Single(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12).`6esn`"), + octest:ct_string("Match ``=(#usn8 :`3esn`)<-[`2esn`?:usn2|:`` *010..{`5esn`:$`4esn` Ends With 0e-0}]->(:`8esn`:#usn7{#usn8:_usn4 Ends With .0 Ends With 7,`6esn`:0X7 Starts With 1e1 Starts With $12})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-($`2esn`)"), + octest:ct_string("Return Distinct *,.0e0 Is Null Is Null As _usn4,[_usn4 In Count(*)[9e1..][12e-12..] Where $_usn3[1e-1..]][[`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0]][None(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)] As `6esn` Order By [usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|9e0 =~9e1 =~.12e12] Is Null Is Null Asc,_usn3(Distinct $_usn4 Is Not Null,9e1 Ends With 123456789)[{`8esn`:$`` Is Null Is Null}] Desc Skip All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Limit [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]} Union Merge (({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) On Match Set .9e-12.`3esn`?.`3esn`.`7esn`? =Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) Union All Optional Match (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Remove Single(usn1 In 7.0e-0[.._usn4][..0X7] Where .9e12[$usn2..][7..])._usn3.`3esn`?"), + octest:ct_string("With Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1] Detach Delete {#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}[{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}..]"), + octest:ct_string("With Distinct {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})] Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] Descending Detach Delete 0x0,$``[`6esn`][00],'s_str' Ends With $usn1 Unwind Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3) Starts With `2esn`(Distinct) Starts With (`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}) As `6esn` Union All Delete `7esn`[.1e1..][`8esn`..],9e12 Ends With 07,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..])[..{`4esn`:0 Starts With 0Xa Starts With $0}][..Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``)]"), + octest:ct_string("Unwind $`` Ends With `8esn` Ends With 9e-12 As `3esn` Return Distinct $7 Is Null Is Null As usn1,07[\"d_str\"..]['s_str'..],All(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[..Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`])] As _usn3 Order By Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} Descending,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``]|$_usn4[..usn2]) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) Starts With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null|`4esn` Is Not Null Is Not Null) Descending,$`` Is Not Null Ascending Merge `1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) Union All Remove {`4esn`:01[..01]}.`8esn`?.`8esn`?.usn1?,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`2esn`[010..`5esn`][``..0.12]).`4esn`"), + octest:ct_string("Remove `3esn`($`5esn`[7..],9e-1[0X0123456789ABCDEF][0]).usn2,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 11.12e-12 Is Null Is Null).`6esn`?,{#usn8:_usn4 Ends With .0 Ends With 7,`6esn`:0X7 Starts With 1e1 Starts With $12}.@usn5! Create @usn5=(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}),#usn8=({_usn3:$`8esn` Is Null}) Create `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Union Delete _usn3 Ends With 01 Ends With .1e-1,All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7])[..Extract(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..])],Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]) With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],.1e-1 Is Null,.9e12[$usn2..][7..] As `2esn` Limit _usn4 Is Null Is Null Where .12e-12 Ends With $`7esn` Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Union All Remove (`` :`3esn`{`5esn`:``[$``..]})-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}).`7esn`,(`8esn` {#usn8:1e1[Null..][.12..]})-[`2esn`?{@usn5:`6esn` Is Not Null Is Not Null,_usn4:9e12 Contains $@usn6 Contains Count(*)}]->({usn1:`6esn`[0x0..@usn5][$1000...9e-12]}).``?.``!.`8esn`!,{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}.@usn5? Detach Delete $0[9e1],Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] Delete 12e12 Starts With 4.9e12 Starts With 0e0,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]) Ends With (:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null}) Ends With [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]|0x0 Contains $`1esn` Contains 0.0],0 Starts With 0Xa Starts With $0"), + octest:ct_string("With Distinct \"d_str\" Starts With `6esn` Starts With 1.9e0 As #usn8,Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]) Ends With usn2(0.0[$1000][3.9e-1],0e0[.12..][3.9e-1..]) Ends With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Skip Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) Where 1e1 In .1e-1 In .0 Union All Merge usn1=((:_usn3:_usn3{usn1:.9e1[12]})) Create _usn3=(({_usn3:00[$`6esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`7esn` {usn2:12.0[..123456789][..01]})),((usn1 :#usn8))"), + octest:ct_string("Create `7esn`=(#usn8 :#usn8)<-[`5esn`?:``|:`3esn` *..0xabc]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[{#usn8:.0e0[1e1..][01234567..],`6esn`:123.654 Ends With 0Xa Ends With .12e12}]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12}),_usn4=((`5esn` {`2esn`:`1esn` =~0 =~_usn4})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[usn2?{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3}]-(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})) Remove Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..]).`1esn`.`8esn`?.`2esn`!,@usn5(Distinct 1e-1[..$@usn5][..0xabc]).`3esn`!,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12e12 Starts With 4.9e12 Starts With 0e0).@usn6!.`8esn`? With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12)[Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12)..][`4esn`(Distinct)..] As `5esn`,.0e0[8.1e1..0.12] Skip .0[...12e12][..`7esn`] Union Remove `8esn`:`3esn` With Distinct *,Count(*)[..Count(*)][..9e0] Order By 07 Starts With usn1 Starts With 010 Ascending,7.0e-0[..$`7esn`][..Null] Descending,$usn2[8.1e1...9e-1][.1e-1..11.12e-12] Desc Skip Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] Limit 999 Ends With $123456789 Ends With $_usn4 Where 10.12e12[Count(*)..] Return *,.9e0 Is Null As _usn4 Order By {`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-12 Is Not Null Is Not Null)..None(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)][[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']|12e12[..$`8esn`][...0e-0]]..`4esn`(_usn4 Is Not Null Is Not Null,_usn4['s_str'..])] Descending,.9e-12[0e0...9e-1] Asc"), + octest:ct_string("Detach Delete (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1) Ends With Filter(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7]) Optional Match ((#usn8 {_usn3:$usn2 In usn1 In 1e-1})),usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union Delete .0e0[..1e1][..$1000] Delete 1000 Is Not Null Is Not Null,'s_str' Ends With 0.0 Ends With .12e12"), + octest:ct_string("Create (((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))) Unwind 1.9e0 =~0x0 As @usn5 Union All Remove None(_usn3 In ``[$``..] Where 0xabc[7.0e-0..][12e12..]).`3esn`.usn2?.@usn5!,Filter(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])._usn3? Create (usn1 :`2esn`:`8esn`)-[`7esn`?:`5esn`]->(`1esn` :`6esn`:`3esn`) Return 0 Ends With 2.9e1 Ends With 1000,$`` In $usn2,None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) Contains [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0] As @usn6 Skip usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) Union All Create _usn4=((`4esn` {usn2:$`7esn`[..12.0][..0e0]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}))"), + octest:ct_string("Detach Delete {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null,$`4esn` =~0e0 Delete $12[$12..],usn2 Ends With 10.12e12,1.9e0[$12][``] Remove `3esn`:`7esn`,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}._usn3 Union Unwind Extract(usn2 In .0e0[$`6esn`..] Where 9.1e-1[Count(*)..][5.9e-12..]) =~#usn8(5.9e-12 Contains $`` Contains $`5esn`) As `7esn` Unwind $999[$usn1...0e0] As `3esn` Remove (_usn3 :_usn4)-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)._usn4?,(usn2 :`1esn`$7)<-[_usn3{`8esn`:0e0[..'s_str']}]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`1esn`{`7esn`:8.1e1 Ends With $0 Ends With 6.0e0})._usn4? Union Delete .9e-1 Ends With `8esn` Return Distinct *,_usn4['s_str'..] As `2esn`,Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7)"), + octest:ct_string("Remove None(usn1 In 7.0e-0[.._usn4][..0X7] Where $12 Contains $`7esn` Contains .0).``!,All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0)._usn3? Return Distinct *,7.0e-0[3.9e-1..`1esn`],Count(*) Ends With `3esn` Ends With `7esn` Order By Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"]|`7esn`[3.9e-1..][$@usn5..])[..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] Asc,true Contains 0x0 Ascending,.9e-12[12e12][.0e0] Asc Skip .0[01234567][$#usn8] Limit .9e0[$7][1e1] Union Unwind 123.654 Starts With Count ( * ) As `5esn`;"), + octest:ct_string("Match `3esn`=((@usn6 :`6esn`:`3esn`)<-[`1esn`? *0X0123456789ABCDEF..0{`4esn`:9e1 Ends With .9e0}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})),({usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) Create (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Match usn1=(:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}) Where $`6esn`[$_usn4][01];"), + octest:ct_string("Unwind $12[.9e-1] As @usn5 With Distinct Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3) Starts With `2esn`(Distinct) Starts With (`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}),9e1 Contains 4.9e12 Contains 123456789 Order By 0e-0 Contains 11.12e-12 Contains $`4esn` Asc Limit Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] Where 0e0 Ends With 1e1 Ends With 0Xa Match `5esn`=(`5esn` :`1esn`),(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))) Where 9e-1 Starts With 123.654 Starts With .9e1"), + octest:ct_string("Create `8esn`=((`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})),`7esn`=({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) With Null =~9e12 As #usn7,.0[usn2.._usn4] As `8esn` Order By $`5esn`[true] Descending,`7esn` Contains $7 Contains 07 Asc,3.9e-1[..$7] Desc Where $@usn6 Contains Count ( * ) Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Union Match (((`2esn` :`6esn`:`3esn`{@usn5:Count(*)[.0e0]})-[usn1?:usn1|:#usn8*..]-(`7esn` {`3esn`:.9e-1 Is Null})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))),@usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}) Where Count(*) In .9e-12 In $usn1 Create (:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[`7esn`*..]->({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[`8esn`:`3esn`|:_usn3 *123456789..0x0{`8esn`:$`3esn` Ends With 010 Ends With $`7esn`,usn2:7.0e-0[$usn2..0.12][$``..0]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010}) Union Return Distinct $123456789 Starts With Count ( * ) As `1esn` Order By usn1 Ends With 12 Ascending,.0[01..`5esn`] Asc,00 Is Not Null Desc Skip 0e0[.12..][3.9e-1..] Limit Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null"), + octest:ct_string("Detach Delete Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Union With Distinct .1e-1[..12e12] Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null Desc Limit 's_str' In `7esn` In .9e-12 Return .1e1 =~`1esn`,Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],$#usn7 Is Not Null Order By All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Desc,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] Ascending,.9e0 In 9.1e-1 In $123456789 Desc"), + octest:ct_string("Return Distinct *,#usn7[12e-12..][$`2esn`..] As @usn6,$`` Contains 00 Contains 123456789 As `3esn` Limit All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0)[Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"])..Single(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1])][{usn1:9e-1 Starts With 123.654 Starts With .9e1,#usn8:$_usn4 Is Not Null}..(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})] With Distinct Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null"), + octest:ct_string("Unwind .9e-1 Is Null As @usn6 With *,`3esn`[.12e-12..] As `7esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4 Return #usn8[7..@usn5],00 Is Null Is Null Order By 0Xa Starts With .0 Desc,01234567[$#usn7][.0] Desc Skip $`4esn`[..2.9e1][..07] Limit .9e-1[12.0] Union All Match `2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Where 0x0 Starts With $`5esn` Starts With 9e-12 Return Count ( * )[..1.9e0][..`8esn`] As `1esn`,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] As @usn6,01[1e-1] Order By Extract(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``]|$_usn4[..usn2]) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) Starts With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null|`4esn` Is Not Null Is Not Null) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} Descending Skip (:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})<-[``:`8esn`|:`2esn` *12..0Xa]-(usn2 :@usn5{`3esn`:$usn1 Is Null})[..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 8.1e1 Is Null)][..#usn7(Distinct usn2 Ends With .0)]"), + octest:ct_string("Remove {`1esn`:@usn5[$_usn3..]}.`5esn`!"), + octest:ct_string("Merge `3esn`=(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Create `1esn`=(((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[:_usn3|`2esn` *010..]-(`` :usn1)<-[@usn5?:@usn6|:_usn3 *07..{_usn3:$`3esn` Is Not Null Is Not Null,#usn8:usn1[0.12..1000]}]->(`3esn` {usn2:$`7esn`[..12.0][..0e0]}))),#usn7=(`4esn` {@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[@usn5?:`8esn`|:`2esn`]->(_usn4 ) With 8.1e1 Is Null Is Null,Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` Is Null Is Null) Is Not Null Is Not Null As _usn4 Order By (`6esn` $@usn6)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]}) =~All(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~{``:7.0e-0 Is Null Is Null,@usn5:9e-12[$0][$`4esn`]} Asc,999 =~0Xa =~9e0 Asc Skip All(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])[..(:_usn4{`4esn`:9e1 Contains 4.9e12 Contains .9e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})][..(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)<-[?{_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})] Where 9e1 Ends With .9e0 Union All Create `4esn`=((`6esn` :usn1)<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]})) Detach Delete .9e-12[12e12][.0e0],'s_str' Is Null,$`2esn` Ends With $`8esn`"), + octest:ct_string("Detach Delete 010[11.12e-12..] Create (({usn2:#usn7[10.12e12..][\"d_str\"..]})-[?:`8esn`|:`2esn` *..7]-(`4esn` :#usn8{#usn8:_usn4[7][8.1e1],#usn7:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})),(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}))) Union Remove {_usn3:true[9e-12...0e-0][`5esn`.._usn4]}.usn1.`6esn`?.`2esn`,[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010].`5esn`!.`1esn`?,`7esn`(Distinct $usn2[1e-1])._usn3!.@usn5 With Distinct *,`` Is Not Null Is Not Null As usn1 Order By (:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[`7esn`?]->(`5esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(#usn8 {_usn3:$_usn4 Contains .12e-12}) Ends With `4esn`($usn2 In usn1 In 1e-1,01[Count(*)..0e-0][7..$`2esn`]) Desc,7.0e-0 =~$123456789 =~`8esn` Descending Unwind false Is Not Null Is Not Null As _usn4 Union Match `3esn`=(({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[``?:``|:`3esn` *01234567]->(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})),((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) Merge ((`` )<-[?]->(_usn4 :@usn5)) On Create Set @usn6 =123.654 Ends With 0Xa Ends With .12e12,`` =.0e-0 Starts With $#usn7 Starts With _usn3 Remove [`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12].`2esn`?.@usn6!,(:#usn8)<-[`3esn`?:`2esn`|`7esn`*..]-(usn2 :`1esn`{@usn5:Count(*)[.0e0]})<-[_usn4?:`4esn`|:@usn5 *1000]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})._usn4,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null).`2esn`!"), + octest:ct_string("Unwind $@usn6 =~$`2esn` =~9e1 As usn1 Union All Remove {usn2:`3esn` In 0X7,usn2:7 Is Null Is Null}.`4esn`.@usn6!,{@usn6:.9e-12[..$`7esn`][...9e-1]}.usn2 With Distinct *,$usn2[1e-1],8.1e1[usn2..$1000][$7..0x0] As _usn3 Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) Asc,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1) Ends With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) Ascending Skip .0 Is Null Is Null Where 7.0e-0[0X7..$`2esn`][`4esn`..`7esn`] Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set _usn3 =12e-12[.0..],_usn4+=.0e0[..12.0][...1e-1],usn1 =({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null} Union All Return 1.9e0 Starts With 's_str' Starts With 9.1e-1,8.1e1 Is Null,.1e1 Starts With .1e-1 Order By 1.9e0 In $0 Desc,7.0e-0 =~$123456789 =~`8esn` Asc,#usn7[10.12e12..][\"d_str\"..] Desc Create `2esn`=((`5esn` :`1esn`));"), + octest:ct_string("Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]|$_usn3 Is Not Null).usn2!.#usn7!.`8esn`! Union All Unwind .1e1 Starts With $`7esn` As usn1 Detach Delete $usn1[$7..][$0..] Delete 0Xa Ends With #usn8 Ends With usn2,#usn8[3.9e-1.._usn3],_usn4 In `3esn` In 7.0e-0"), + octest:ct_string("Delete 123.654,$_usn4 =~`7esn` Remove Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]).#usn8? Create `7esn`=(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]}) Union All Create `6esn`=(((#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`3esn` {#usn8:`7esn` Is Null})-[@usn6?:@usn5]-(`4esn` :usn1{`1esn`:0X0123456789ABCDEF Contains 8.1e1}))),(($@usn6)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[#usn8?:#usn7|:`8esn` *..0X7]->(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999})) Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0).`5esn`?,.9e-1.`6esn`?,Any(_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]).usn1.@usn6?.#usn8! Delete 's_str' Ends With $usn1"), + octest:ct_string("Delete Extract(usn2 In .0e0[$`6esn`..] Where 010|0e-0 Contains _usn4 Contains 1e-1)[{#usn7:_usn4 Ends With .0 Ends With 7,#usn8:`` Ends With .9e-1 Ends With 9e-12}],.12e12[`7esn`][#usn8],Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)[{_usn3:$0 Starts With 010}] With *,(`5esn` :`2esn`:`8esn`)-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]}) Is Null Is Null As `8esn` Skip {#usn7:$usn2[1e-1]}[(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)..][(usn1 :`2esn`:`8esn`)<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]})..] With 1000[Null..] As `1esn`,.1e1 Starts With $7 Order By Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Ascending,$`7esn` Contains 0X7 Asc,$_usn4 Is Not Null Ascending Limit .0e0[$`1esn`][.9e-12] Union Delete 0X7[Count(*)][.9e0],`1esn` In 12e-12 In 1e-1,010 Unwind $999 As `` Union All Merge `8esn`=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2})) On Match Set ``+=0.12['s_str'];"), + octest:ct_string("Detach Delete 1.9e0 Ends With 0Xa Ends With $12,.9e-12[9e1..8.1e1] Optional Match _usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))),`2esn`=(usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2}) Where `4esn` Is Not Null Is Not Null Union All Create (((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})))"), + octest:ct_string("Merge (usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]}) On Match Set `6esn`(010[@usn5..123.654],0X0123456789ABCDEF Contains $`6esn` Contains $123456789).usn1 =Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],`6esn` =Null[..07],Single(`5esn` In 12[0xabc..][$0..] Where .1e1 Starts With $7).@usn6?.`8esn` ={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) On Match Set #usn8+=_usn4[9e0..$#usn8],`2esn`+=$`2esn` Contains false Contains 123456789,`6esn`+=0x0 Contains $`1esn` Contains 0.0 Union All Remove _usn4:`5esn` Remove @usn6:usn1,Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $@usn6 Contains Count ( * )).`4esn`? Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12|.1e-1).`1esn`?,All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]).`7esn`!,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).usn1?"), + octest:ct_string("Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Remove All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`4esn`?.#usn7!,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|$_usn3 Is Not Null).`5esn`! Union All Create ((:_usn3:_usn3{usn1:.9e1[12]})),@usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Remove 8.1e1.#usn8,None(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null).`5esn`!,{`5esn`:_usn3 Starts With `2esn`,usn1:4.9e12[..Null]}.`5esn`!.@usn5!.usn2 Create ({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}) Union All Return *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn`"), + octest:ct_string("Remove `7esn`:`3esn` Union All Unwind Filter(`` In $_usn3 Is Not Null Where 7 Is Null Is Null) =~{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} As `2esn` Union Unwind .0 Is Null Is Null As _usn4 Remove usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4!,@usn6($`3esn`,$`1esn`[`3esn`..]).``?,`7esn`($`3esn` Ends With 010 Ends With $`7esn`,01234567[6.0e0][$usn2])._usn3!.@usn5.`5esn`? Match (:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]})"), + octest:ct_string("Return *,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] As `7esn` Skip Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12) In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null|.12e12[$12..4.9e12][11.12e-12..9e12]) In {`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``} Detach Delete .1e-1[@usn6..] Unwind 2.9e1[...9e-12][..0] As usn2 Union All Remove `4esn`(12e12 In $`` In 6.0e0,.9e1[#usn7..]).`5esn`?,@usn6:@usn6:_usn4 Delete 's_str' Ends With $usn1 Merge `1esn`=(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))) On Create Set `8esn`+=Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),`8esn`+=0.0 Is Not Null Is Not Null On Create Set `2esn` =$999[$usn1...0e0]"), + octest:ct_string("Match `7esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Return *,.9e0 Is Null As _usn4 Order By {`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-12 Is Not Null Is Not Null)..None(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)][[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']|12e12[..$`8esn`][...0e-0]]..`4esn`(_usn4 Is Not Null Is Not Null,_usn4['s_str'..])] Descending,.9e-12[0e0...9e-1] Asc Optional Match `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),((_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))"), + octest:ct_string("Remove _usn4:`5esn` Remove @usn6:usn1,Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $@usn6 Contains Count ( * )).`4esn`? Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12|.1e-1).`1esn`?,All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]).`7esn`!,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).usn1? Union Create ``=((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})),_usn3=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Remove {usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`}.`1esn`!.usn1!,(`2esn` :``:usn1)<-[`6esn`? *..0xabc{``:$_usn4[Null]}]->(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]}).#usn7?.`3esn` Unwind {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} As usn1 Union All Optional Match `8esn`=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Detach Delete (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)] Unwind 123.654 Starts With Count ( * ) As `5esn`"), + octest:ct_string("With Distinct $`2esn` Contains 123.654,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] As usn2,.9e-12[01][Count(*)] Order By (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] Ascending Skip $`3esn` Ends With 010 Ends With $`7esn`"), + octest:ct_string("Return *,.0e0 Is Null Is Null As _usn4,[_usn4 In Count(*)[9e1..][12e-12..] Where $_usn3[1e-1..]][[`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0]][None(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)] As `6esn` Skip 1000[..0e0][..$`6esn`] Limit usn1[..10.12e12][..7] Detach Delete {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} =~Filter(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]),2.9e1[0..$@usn5][`7esn`..$`1esn`],All(usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null])[``($_usn3[1e-1..],.12e12[Count(*)..])][None(_usn4 In Count(*)[9e1..][12e-12..] Where 123456789 Ends With _usn4)] Remove `3esn`($`5esn`[7..],9e-1[0X0123456789ABCDEF][0]).usn2,`6esn`(Distinct $_usn3 In 123.654 In $`8esn`,$@usn5[$#usn8..][_usn3..]).usn1?.`4esn`?.`8esn`?,`7esn`(Distinct $`3esn` =~4.9e12 =~$7,0xabc[$`4esn`..][`8esn`..]).`8esn`!.``?.#usn8! Union All Remove `3esn`($`5esn`[7..],9e-1[0X0123456789ABCDEF][0]).usn2,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 11.12e-12 Is Null Is Null).`6esn`?,{#usn8:_usn4 Ends With .0 Ends With 7,`6esn`:0X7 Starts With 1e1 Starts With $12}.@usn5! Create @usn5=(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}),#usn8=({_usn3:$`8esn` Is Null}) Create `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}))"), + octest:ct_string("Unwind .1e1[..0][..010] As `5esn` Union All Create `7esn`=({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}),`2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Union Return 12e12 =~#usn7 =~.9e-1,All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null As @usn6 Order By Extract(`8esn` In 01234567[..0.0][..false] Where .12e-12[$@usn6..5.9e-12]|$`3esn` Starts With 0Xa) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e1 Contains 4.9e12 Contains .9e0) Starts With Single(`` In $_usn3 Is Not Null Where $@usn6 =~$`2esn` =~9e1) Descending,$`` Contains 00 Contains 123456789 Asc With Distinct $123456789 Is Null Is Null As #usn8,@usn6[..$`3esn`][..4.9e12] As #usn8,1.9e0[$12][``] As `5esn` Order By `1esn` Ends With 7.0e-0 Ends With $usn1 Desc Limit $`2esn` Ends With $`8esn` Create `6esn`=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0})));"), + octest:ct_string("Unwind (:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )[{usn2:7.0e-0 =~$12 =~5.9e-12}..][Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)..] As `3esn` Union Match `5esn`=((`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]})-[:`6esn`|#usn7{usn1:$`2esn` Contains $1000,`7esn`:`7esn`[.1e1..][`8esn`..]}]-(#usn8 {`2esn`:usn2 Ends With .0})) Where 999 Starts With .9e12 Starts With 3.9e-1 Create (_usn4 :`7esn`{@usn6:.12e-12[999...12]}),_usn4=(({_usn3:$`5esn`[7..]})) Union All Return Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1]"), + octest:ct_string("Optional Match `5esn`=(((:@usn5{usn2:$usn1[$12..]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)<-[`8esn`?:`7esn`|@usn6 *..7]->(`5esn` {`2esn`:`1esn` =~0 =~_usn4}))),`3esn`=(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))) Union With Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],.0e0 In 10.12e12 In $`5esn` As #usn8,4.9e12[..Null] As `7esn` Skip $`1esn`[.9e0][$_usn3] Limit [`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] In Any(`7esn` In .12e12[Count(*)..] Where 0Xa[9e0]) In [usn2 In .0e0[$`6esn`..] Where .12e12[`7esn`][#usn8]|7 Is Null Is Null] Where Count(*)[.0e0] Detach Delete (`8esn` {`3esn`:#usn8[`2esn`]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null,Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null),9e-1 Starts With 123.654 Starts With .9e1"), + octest:ct_string("Detach Delete 12 Contains _usn3,$usn2[.12e12],$@usn5[$#usn8..][_usn3..] Remove All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`).`3esn`?._usn4!._usn4,Filter(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])._usn4? With (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7),Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),12.0 =~$@usn5 =~8.1e1 Order By Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] Ascending Limit $@usn6 Contains Count ( * )"), + octest:ct_string("With Distinct *,$`5esn`[true],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Skip $`1esn` =~0.0 Union Remove None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]).`6esn`? Remove ({`1esn`:0X0123456789ABCDEF Contains 8.1e1})-[`` *..0X7]->(usn2 :#usn8)._usn3 Delete #usn8(Distinct false[$1000..$@usn6][7..12],123456789 In 9e-12 In false) Starts With `4esn`(Distinct 0e0 Is Null Is Null),0e0 Contains $`8esn` Contains 9e-12 Union All With `8esn` As usn2 Order By Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"]|`7esn`[3.9e-1..][$@usn5..])[..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] Desc,.0e0 Is Null Is Null Descending,$`4esn` =~0e0 Ascending Unwind $usn1 Is Null As `2esn` Return Distinct Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12)[Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12)..][`4esn`(Distinct)..],Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] As `7esn`,None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[..Filter(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0)][..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] As #usn8 Order By {`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])] Asc,`6esn`[`6esn`..] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip `6esn` Is Not Null;"), + octest:ct_string("Unwind [usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|`3esn` Ends With 010 Ends With 9.1e-1][(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})-[`7esn`?:`5esn`]->(#usn8 )..None(_usn4 In Count(*)[9e1..][12e-12..] Where 7 Contains $#usn7)] As `8esn` Return $`4esn` Contains $12 Contains .9e-1,.1e-1[@usn6..] As `4esn`,`2esn` =~usn1 As `6esn` Skip 0xabc[7.0e-0..][12e12..] Limit .12e12 =~$#usn7 Union All Detach Delete (`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})-[`6esn`? *123456789..0x0]->({`6esn`:$usn1 Starts With usn1 Starts With 1e-1,#usn8:$#usn7 Starts With 10.12e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}) Is Null,_usn4 Is Null Is Null Optional Match #usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})))"), + octest:ct_string("Delete `3esn` Ends With 010 Ends With 9.1e-1 Detach Delete 999[...12e12][..0] Delete .12e12[Count(*)..],123.654[...9e12][..#usn8],Null =~true =~.1e-1 Union Create `5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)),``=(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`` :@usn6:_usn4)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}) Union Merge _usn4=((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) Merge _usn4=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[@usn6?:`5esn`]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]})"), + octest:ct_string("Merge `8esn`=(`6esn` :``:usn1) On Create Set usn2 =[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]|12e12 Is Not Null][{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]}],`5esn`+=.9e1[..`5esn`] On Create Set `1esn` =@usn5[6.0e0][Count ( * )] Match `2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),usn2=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where 12 Contains usn2 Contains $usn2 Union All Return *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Return *,$0[$`7esn`..$`3esn`]['s_str'...0],usn1 Ends With 12 Order By $#usn7 Starts With #usn7 Descending,9e12[.0e-0] Descending,01[..01] Descending Limit (usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})-[`4esn`?:`6esn`|#usn7]->(`1esn` )[[`2esn` In .12e-12[$@usn6..5.9e-12]|$#usn7 Starts With 10.12e12]..] Create (`1esn` :`5esn`)-[:#usn8|:`4esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}]-(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}),_usn4=(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}) Union Delete Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),All(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)[`3esn`(Distinct 0[true..$7],`3esn`[$0..][.9e1..])..] Merge (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) On Match Set Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12).`4esn`!.#usn8?.`1esn` =1.9e0 =~$`8esn` =~01234567,`1esn` =1000[$`6esn`..12.0]['s_str'..$`3esn`],@usn5 =9e0[$usn2][0] Merge ``=(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`` :@usn6:_usn4)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]});"), + octest:ct_string("Optional Match ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})) Optional Match (:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}),((#usn8 :`3esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(:`6esn`:`3esn`{_usn3:Count ( * )[7]})) Where 010[9e0..9e1][$_usn4..$12] Unwind Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) As `5esn`"), + octest:ct_string("Unwind 7.0e-0[0X7..$`2esn`][`4esn`..`7esn`] As `1esn` Union All Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1;"), + octest:ct_string("Match `2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),usn2=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where 12 Contains usn2 Contains $usn2 Union Unwind 0Xa Contains $999 Contains 0Xa As _usn4 With All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Where .9e1 Contains Null Union All Unwind (:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] As `3esn`"), + octest:ct_string("Optional Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Where .0e0[1e1..][01234567..] Match (((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Union All Unwind 0x0 =~$7 =~Null As #usn7 Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`}))"), + octest:ct_string("Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),(usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1})"), + octest:ct_string("Create #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Unwind Filter(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) Starts With All(`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]) Starts With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`) As `` Remove {`4esn`:$123456789[$_usn3..][$usn2..]}.usn1"), + octest:ct_string("Create #usn7=(`2esn` :``:usn1)-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}),#usn7=(`8esn` {``:$123456789[$_usn3..][$usn2..]}) Match `8esn`=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``]|`4esn` Starts With $_usn3 Starts With .9e-12].@usn5!._usn4?.`1esn`? Union All Unwind .12e12 =~$#usn7 As `7esn` Unwind `2esn`(Distinct) Starts With Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]) Starts With (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}) As _usn4 Create ((:_usn3:_usn3{usn1:.9e1[12]})),@usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Union Merge ((#usn8 :`3esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(:`6esn`:`3esn`{_usn3:Count ( * )[7]})) On Create Set `7esn` =`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)],@usn6(Distinct true Starts With 2.9e1 Starts With 9e1).@usn5.`2esn` =07[usn1..]"), + octest:ct_string("With *,{`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] As `2esn` Order By Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) Ascending Limit $_usn4[1e-1..8.1e1][`1esn`..1.9e0] Where 12e-12 Contains .9e-1 Contains 9e-1;"), + octest:ct_string("Create ((`` :usn1)-[ *0..010]->(_usn4 :`5esn`)),(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) Union All Create (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Union All Remove None(_usn3 In ``[$``..] Where 0xabc[7.0e-0..][12e12..]).`3esn`.usn2?.@usn5!,Filter(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])._usn3? Create (usn1 :`2esn`:`8esn`)-[`7esn`?:`5esn`]->(`1esn` :`6esn`:`3esn`) Return 0 Ends With 2.9e1 Ends With 1000,$`` In $usn2,None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) Contains [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0] As @usn6 Skip usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})"), + octest:ct_string("Detach Delete (:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]),Count(*) Starts With $_usn4 Merge `2esn`=((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Union All Return Distinct *,Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn` Order By _usn3[`2esn`..10.12e12][9e1..true] Descending Limit `6esn`[0x0..@usn5][$1000...9e-12] With 8.1e1 Is Null Is Null,Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` Is Null Is Null) Is Not Null Is Not Null As _usn4 Order By (`6esn` $@usn6)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]}) =~All(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~{``:7.0e-0 Is Null Is Null,@usn5:9e-12[$0][$`4esn`]} Asc,999 =~0Xa =~9e0 Asc Skip All(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])[..(:_usn4{`4esn`:9e1 Contains 4.9e12 Contains .9e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})][..(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)<-[?{_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})] Where 9e1 Ends With .9e0 Match `6esn`=({_usn3:$`5esn`[7..]})<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}),((_usn4 )-[usn2?:@usn6|:_usn3]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`4esn`?:_usn3|`2esn`]-(`8esn` {``:$123456789[$_usn3..][$usn2..]})) Where $@usn5[usn1..][$`8esn`..] Union All With {`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]],_usn4[.0e-0][010],Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]] As `3esn` Order By .1e-1[..12][.._usn4] Descending Return [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..] Create (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999});"), + octest:ct_string("Merge `7esn`=(@usn5 :usn1{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(@usn5 {#usn8:_usn3 Ends With 01 Ends With .1e-1}) With 12 Contains usn2 Contains $usn2 As ``,Count ( * )[12e-12] As #usn7 Skip .0 Union All Optional Match usn1=(@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),#usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Union Optional Match `2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Delete $@usn5 Is Null Is Null Unwind $`` Contains 00 Contains 123456789 As `4esn`"), + octest:ct_string("Optional Match usn1=((`8esn` :_usn3:_usn3)<-[_usn4? *..7{#usn7:Count ( * )[7]}]->(`6esn` :`7esn`)<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)) Where .9e-12[_usn4..#usn8][9.1e-1..0.12] Remove None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 01 Ends With \"d_str\").@usn6?,`2esn`:_usn3:_usn3,{`7esn`:.1e1 Starts With $`7esn`}.`6esn`! Union Merge usn1=((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})) Remove {usn1:usn2[..7.0e-0]}.`2esn`.`2esn`?.usn1,(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6?,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e12 Is Not Null Is Not Null).#usn8? Union Remove Filter(usn2 In .0e0[$`6esn`..] Where $123456789 Is Not Null)._usn4.`1esn`!.`1esn`!,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`).`5esn`!.`7esn`,_usn3:#usn8 Unwind (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] As `2esn`"), + octest:ct_string("Remove (@usn5 :usn2)<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}).usn1? Merge `5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Union Merge (({_usn3:$`5esn`[7..]})) Return Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null As `6esn`,`` Contains 12.0 As usn1,.1e-1 Ends With $_usn3 As @usn6 Order By $@usn6 =~$`2esn` =~9e1 Ascending,0Xa[9e0] Desc Limit .0e0[$`1esn`][.9e-12] Union Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set usn1+=9e0[..1e1] On Match Set usn1+=Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],@usn6+={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null});"), + octest:ct_string("Match (:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}) Delete (`8esn` :_usn3:_usn3{`6esn`:9e0[..1e1],@usn6:0x0 =~$7 =~Null})<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`8esn` *1000]->(usn1 :_usn4) In Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where ``[$``..]) In {usn2:.9e-1 Is Not Null Is Not Null},1e1 Starts With `8esn` Starts With .9e0 Match (((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) Union Remove {usn1:usn2[..7.0e-0]}.`2esn`.`2esn`?.usn1 With *,$12 Contains $#usn8 Contains 01 As usn1 Order By 0X7[`4esn`..][`3esn`..] Ascending,$#usn7 In .12e-12 Ascending,$`6esn` In `2esn` Ascending Where $0 =~01234567 Return *,`6esn`[010...9e-12] As `5esn`"), + octest:ct_string("Unwind $usn1 Is Null As `2esn` Unwind 0.0[$1000][3.9e-1] As #usn8 With 6.0e0 Is Null Is Null As @usn6 Limit Count ( * ) Starts With 10.12e12 Starts With `` Where `3esn`[3.9e-1..$`5esn`] Union All Remove None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`8esn`?.`3esn`?.@usn6?,Extract(`5esn` In 12[0xabc..][$0..] Where `7esn` Ends With 9e12).`8esn` Optional Match `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Where 0e0 Starts With $1000 Starts With `2esn` Match @usn6=(((`3esn` :`4esn`:`7esn`)<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(usn1 :`2esn`:`8esn`))) Union All Return Distinct Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,9e-1 Starts With 123.654 Starts With .9e1 As `6esn`,.9e0 Is Null Is Null Skip usn1(07 Ends With @usn6 Ends With _usn3,$`2esn` In 0X7 In 3.9e-1) Contains [`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|9e0 =~9e1 =~.12e12] Limit $7 Starts With Null Starts With `6esn`"), + octest:ct_string("Optional Match _usn4=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[@usn6?:`5esn`]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) Where Count(*)[.0e0..][#usn7..] Create @usn5=((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})-[`6esn`? *..0xabc{``:$_usn4[Null]}]->({usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`6esn` {_usn3:$_usn4 Contains .12e-12})) Union All With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Limit #usn7[10.12e12..][\"d_str\"..] Where 9e12[...12e12][..$`2esn`] Union Remove _usn3(Distinct Null =~true =~.1e-1).`7esn`? Return 10.12e12 Starts With .9e12 As #usn7,_usn4['s_str'..] As `2esn`,false[12e-12..][usn1..] Order By 123456789[Count ( * )..] Desc,``(Distinct `4esn`[$1000..$``][$_usn4..$_usn4],.1e-1 Starts With 1000 Starts With $`1esn`) In [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|`4esn` Starts With $_usn3 Starts With .9e-12] In {`6esn`:``[$``..]} Desc,[usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc Skip .1e-1 Is Null Limit All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0)[Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"])..Single(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1])][{usn1:9e-1 Starts With 123.654 Starts With .9e1,#usn8:$_usn4 Is Not Null}..(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})]"), + octest:ct_string("Match #usn8=((_usn4 {`3esn`:1.9e0 Ends With 0Xa Ends With $12,@usn5:.9e12 Is Not Null Is Not Null})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})) Delete $0[9e1],9e1 Contains 4.9e12 Contains .9e0 Merge ((`3esn` {#usn8:`7esn` Is Null})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})) On Create Set {`1esn`:$`1esn`[.9e0][$_usn3]}.`8esn`? =`1esn`[Count ( * )][5.9e-12],`8esn`+=123.654 Ends With Count(*) Union All Optional Match `3esn`=((@usn6 :`6esn`:`3esn`)<-[`1esn`? *0X0123456789ABCDEF..0{`4esn`:9e1 Ends With .9e0}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})),(((`3esn` {_usn4:$`2esn` Starts With 0x0})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})-[{usn1:$#usn8[...9e1]}]->({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null}))) Return *,#usn7 =~0.0 =~usn2 As `1esn` Order By Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]) Desc,$0[..0x0][..01234567] Ascending,`3esn`(Distinct 12 Ends With $7 Ends With $#usn8,$`` =~$_usn3) Contains _usn3(Distinct #usn8[..#usn7][..@usn6]) Contains Filter(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]) Asc"), + octest:ct_string("Remove None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 01 Ends With \"d_str\").@usn6?,`2esn`:_usn3:_usn3,{`7esn`:.1e1 Starts With $`7esn`}.`6esn`! Merge `5esn`=((`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]})-[:`6esn`|#usn7{usn1:$`2esn` Contains $1000,`7esn`:`7esn`[.1e1..][`8esn`..]}]-(#usn8 {`2esn`:usn2 Ends With .0})) On Match Set [_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8].`5esn`! ={_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12),#usn8 =(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] On Match Set {@usn5:12e-12 Contains .9e-1 Contains 9e-1}.``! =usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]),@usn6 =0.0 Is Not Null Is Not Null,[`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0]._usn3?._usn3? =.1e1 Starts With .1e-1 Unwind All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..] As ``"), + octest:ct_string("Detach Delete 7.0e-0 Contains Count ( * ) Contains 0Xa,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]],`2esn`[..9.1e-1][..0xabc] Merge #usn7=(`2esn` :``:usn1)-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) On Create Set @usn6+=01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..] Merge `8esn`=(`6esn` :``:usn1) On Create Set usn2 =[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]|12e12 Is Not Null][{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]}],`5esn`+=.9e1[..`5esn`] On Create Set `1esn` =@usn5[6.0e0][Count ( * )] Union All Create `7esn`=(`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Optional Match `3esn`=(@usn5 :`7esn`),((#usn8 {_usn3:$usn2 In usn1 In 1e-1})) Where usn2[..10.12e12][..$`7esn`] Create ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((`` :``:usn1)) Union All Unwind {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null As `5esn`;"), + octest:ct_string("Unwind {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) As `5esn` Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),(usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}) Return Distinct ({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)[{``:.1e-1 Ends With $`8esn` Ends With .9e0,`7esn`:.9e-12 Is Not Null Is Not Null}][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])],Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) Union Optional Match `2esn`=((@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]}))"), + octest:ct_string("Create ((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Create `8esn`=((`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})),`7esn`=({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) Union With Distinct *,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Skip $_usn4[..usn2] Limit $`8esn` In 9e-12 In 3.9e-1 Detach Delete ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]),`2esn` Starts With 12 Starts With 10.12e12,.12e-12[07] Union All Remove {#usn7:.0e0[1e1..][01234567..],@usn5:`2esn` Is Not Null Is Not Null}.#usn8?.`7esn`?,`1esn`:``:usn1,$12.`8esn`!.usn2!._usn4"), + octest:ct_string("Create ((`3esn` {#usn8:`7esn` Is Null})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})),#usn7=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Optional Match `2esn`=(`` :usn2),((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})) Create ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?]->(:@usn5{usn2:$usn1[$12..]})) Union Optional Match usn1=((#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})<-[#usn8?{`3esn`:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7],@usn6:01[..0.12]}]-(`3esn` :_usn3:_usn3)),(((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}))) Union Merge ((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set @usn6+=123456789[Count ( * )..],`8esn`+=Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * ))[{`4esn`:12e-12 Starts With .9e12 Starts With 0.12}..(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})],#usn7+=12e-12 Starts With .9e12 Starts With 0.12 Merge `5esn`=((({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))) On Match Set Extract(`` In $_usn3 Is Not Null Where $_usn3 In 123.654 In $`8esn`|$`8esn`[$usn2..]).`6esn`!.``! =_usn4 In `3esn` In 7.0e-0 On Create Set {`1esn`:$`1esn`[.9e0][$_usn3]}.`8esn`? =`1esn`[Count ( * )][5.9e-12],`8esn`+=123.654 Ends With Count(*) Detach Delete 9e12[.0e-0],12.0[$1000..][123456789..],Extract(`` In 0.12[3.9e-1]|0X7 Starts With 1e1 Starts With $12)[`7esn`(9.1e-1 Contains 0xabc)..][Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3])..]"), + octest:ct_string("Create _usn4=({usn1:usn2 Ends With 10.12e12}),`3esn`=(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))) Union All With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Order By 12.0[.._usn4][..0X7] Descending,`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Ascending Skip 's_str' Ends With 0.0 Ends With .12e12 With *,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2 Order By .1e-1 Contains 1e1 Contains $`6esn` Asc,(_usn4 {`3esn`:1.9e0 Ends With 0Xa Ends With $12,@usn5:.9e12 Is Not Null Is Not Null})<-[`2esn`{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-(`3esn` {`7esn`:9.1e-1 =~@usn5 =~Count ( * )})<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) In None(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]) In `7esn`(12 Ends With $7 Ends With $#usn8) Desc Skip \"d_str\" =~`5esn` =~.12e-12 Limit .9e12[..$usn1][..10.12e12] Where $`6esn`[$_usn4][01] Unwind .9e1 Contains Null As _usn3 Union Unwind Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) As _usn4 Remove ({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})<-[`3esn`?:`5esn`]->(`2esn` ).``!,$12.`8esn`!.usn2!._usn4,None(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]).`3esn`?.@usn6!._usn3! With Distinct *,$7 Contains _usn4 Contains $`1esn`,0e-0[$`2esn`][8.1e1] As @usn5 Order By 123456789[\"d_str\"..] Asc,9.1e-1[$`4esn`..][$`4esn`..] Ascending"), + octest:ct_string("Remove (`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}).#usn7? Merge ((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Match `7esn`=((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})),usn1=((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})) Where 1.9e0 Ends With Count ( * ) Ends With .12 Union Match ((_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})),#usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) With 1e-1 Starts With usn2 Starts With 12e-12 As _usn4 Order By 's_str'[0Xa..12e-12][.9e1..0xabc] Descending,{#usn7:01 Ends With \"d_str\",_usn4:`3esn` In 0X7}[All(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12])..Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]|999[..@usn5][..`1esn`])][Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1)..Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)] Descending Skip Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Limit 12e12 Is Null Is Null Where 9.1e-1 Is Null With Distinct *,0Xa Ends With #usn8 Ends With usn2 As `6esn` Union Merge ((`5esn` :`2esn`:`8esn`)<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})) On Match Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Remove (`` :@usn6:_usn4{`4esn`:00 Is Not Null Is Not Null})-[`1esn`:usn1|:#usn8]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}).`6esn`!.@usn5?._usn4?,@usn5:_usn4,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]).`2esn`!.`8esn`!._usn3!"), + octest:ct_string("Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set All(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null).usn1! =.12e12[`7esn`][#usn8],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `2esn` Starts With $`7esn` Starts With _usn4).`1esn`?.#usn8?.@usn6! =All(`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])[None(`` In $_usn3 Is Not Null)..][All(`8esn` In 01234567[..0.0][..false] Where .12e-12[$@usn6..5.9e-12])..] Union Optional Match @usn6=(((@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[#usn7? *00..123456789]->(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}))),`3esn`=((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Where .9e12 =~`5esn` =~07 Return ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]) Order By `2esn` Starts With 12 Starts With 10.12e12 Desc,0e0[..'s_str'] Descending Skip $`1esn` Starts With Count(*) Starts With $`8esn` Unwind 9e1 Is Not Null As #usn8"), + octest:ct_string("Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),(({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})<-[`4esn`:_usn4|`1esn` *123456789..0x0{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})-[_usn3 *..7]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})) Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),(usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}) Return Distinct 9e-12 In 5.9e-12 As ``,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0x0 Contains $`1esn` Contains 0.0) In None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0) As `5esn` Order By 0e0 Ends With 0X7 Ends With .1e1 Desc,(#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Asc,0x0 =~$7 =~Null Desc Union All Detach Delete 00[0e-0...9e-1][1e-1..``],9e12[...12e12][..$`2esn`],7.0e-0 Contains Count ( * ) Contains 0Xa Union With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2 In usn1 In 1e-1) =~{#usn8:00[0e-0...9e-1][1e-1..``]} As #usn8,$@usn5[$#usn8..][_usn3..] As `8esn`,1.9e0 Starts With 's_str' Starts With 9.1e-1 As _usn4 Where 's_str' Is Null Delete {@usn6:\"d_str\" =~9e-12 =~`5esn`}[#usn8(Distinct 999 Starts With .9e12 Starts With 3.9e-1,true Contains 0x0)..[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010]][All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)..{`4esn`:0 Starts With 0Xa Starts With $0}] Unwind $12[.9e-1] As @usn5;"), + octest:ct_string("Return Distinct {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null),010 As ``,`1esn`[..0x0][..\"d_str\"] With *,{`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] As `2esn` Order By Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) Ascending Limit $_usn4[1e-1..8.1e1][`1esn`..1.9e0] Union All Merge (((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))),(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}) Where 01234567[6.0e0][$usn2]"), + octest:ct_string("Unwind $`` In $7 In 9e-1 As @usn5 Union All Unwind .9e0 Is Null Is Null As `5esn` Union Remove Any(`8esn` In 01234567[..0.0][..false] Where 12e-12 Contains .9e-1 Contains 9e-1).#usn7,{_usn3:$`8esn` Is Null}.usn2._usn4? Unwind $1000[.._usn3][..#usn7] As `5esn`"), + octest:ct_string("Match (((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999}))),(`` :``:usn1{usn2:12.0[..123456789][..01]}) Merge ((@usn6 :usn1{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})) Detach Delete None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4) Union All Unwind .9e12 Starts With .9e12 Starts With `7esn` As _usn4 Merge ((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) On Create Set (`6esn` :usn1)<-[usn1{`2esn`:usn2 Ends With .0}]->(_usn3 :_usn3:_usn3)-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})._usn3? =Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}],@usn5 =.9e1[...12e12] Merge (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) On Match Set Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12).`4esn`!.#usn8?.`1esn` =1.9e0 =~$`8esn` =~01234567,`1esn` =1000[$`6esn`..12.0]['s_str'..$`3esn`],@usn5 =9e0[$usn2][0];"), + octest:ct_string("Unwind $usn2[4.9e12..false][.0e-0..00] As `5esn` Merge _usn4=((`` :usn1)<-[``?:_usn3|`2esn` *0X0123456789ABCDEF..0{`5esn`:`4esn`[0.0..][.1e-1..]}]->({`7esn`:0[$`1esn`..`8esn`]})) On Create Set #usn7+=(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] On Match Set (@usn6 :usn1{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(`7esn` :`2esn`:`8esn`).`4esn`! =01[..0Xa],#usn7 =$999[.1e1..0.0],`3esn`+=Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null"), + octest:ct_string("Create _usn3=((:`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[`3esn`:`5esn` *123456789..0x0{`6esn`:.9e-12[12e12][.0e0]}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})) Union With Distinct Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,9e-1 Starts With 123.654 Starts With .9e1 As `6esn`,.9e0 Is Null Is Null Skip usn1(07 Ends With @usn6 Ends With _usn3,$`2esn` In 0X7 In 3.9e-1) Contains [`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|9e0 =~9e1 =~.12e12] Limit $7 Starts With Null Starts With `6esn` Remove `3esn`.`2esn`? Unwind Null In 0Xa In .9e-1 As `3esn` Union All Match `2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Where 0x0 Starts With $`5esn` Starts With 9e-12 Return Count ( * )[..1.9e0][..`8esn`] As `1esn`,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] As @usn6,01[1e-1] Order By Extract(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``]|$_usn4[..usn2]) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) Starts With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null|`4esn` Is Not Null Is Not Null) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} Descending Skip (:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})<-[``:`8esn`|:`2esn` *12..0Xa]-(usn2 :@usn5{`3esn`:$usn1 Is Null})[..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 8.1e1 Is Null)][..#usn7(Distinct usn2 Ends With .0)];"), + octest:ct_string("Create (:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}) Delete 12.0[$1000..][123456789..] With Distinct 11.12e-12 =~{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]} =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|0[..$@usn5]),$123456789 Is Not Null,1000 Starts With 11.12e-12 Starts With 01234567 Skip 12 In 1000 In \"d_str\" Limit All(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])[..(:_usn4{`4esn`:9e1 Contains 4.9e12 Contains .9e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})][..(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)<-[?{_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})] Where 12.0 Contains $_usn4 Contains $usn2 Union Unwind 123456789[Count(*)] As usn1"), + octest:ct_string("Create `3esn`=(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`),(((:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]})-[`8esn` *..7{usn2:12.0 Contains $_usn4 Contains $usn2}]-(`8esn` :`7esn`{`6esn`:_usn4 Is Not Null Is Not Null})))"), + octest:ct_string("Unwind {_usn4:$`5esn` Is Null Is Null}[Filter(usn2 In .0e0[$`6esn`..] Where $1000 Contains 01234567 Contains 0X7)..] As @usn6 Delete 12e12 =~#usn7 =~.9e-1,(:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[`2esn`? *..7]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]})<-[#usn7? *00..123456789]->(:`6esn`:`3esn`)[{``:`1esn`[Count ( * )][5.9e-12],_usn3:$_usn3[1e-1..]}..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1)],010 Ends With 0x0 Union All Optional Match (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))),(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Optional Match ((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Where 1e1[Null..][.12..] With Distinct Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,07 =~_usn4 =~.9e12 As `` Order By 5.9e-12[9e0..] Ascending,#usn8[`2esn`] Desc,`7esn` Ends With 9e-1 Ends With usn1 Ascending Skip $#usn7 Starts With #usn7 Limit $123456789[$_usn3..][$usn2..] Union Merge ``=((({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})<-[@usn6:#usn7|:`8esn` *0Xa..7]->(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})<-[@usn6:#usn7|:`8esn` *0Xa..7]->(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`}))) Merge (((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))) On Create Set `7esn` =$`7esn` Is Null Is Null,Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1]|12 Contains usn2 Contains $usn2).usn2? =`1esn` Ends With 7.0e-0 Ends With $usn1,None(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12)._usn4 =.1e-1[@usn6..];"), + octest:ct_string("Remove {usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}.`8esn`! Delete _usn4 In `3esn` In 7.0e-0;"), + octest:ct_string("Remove `6esn`($12 Contains $#usn8 Contains 01).`3esn`?.@usn6?,Single(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1).#usn8!,{@usn5:$`5esn` Is Null Is Null,#usn8:$@usn5[..1e-1]}.`5esn`!.usn1 Create `5esn`=(`5esn` :`1esn`),(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))) Merge `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})) Union Return *,`3esn` Contains 01234567 Contains .9e-12 Skip Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]) In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )] In `8esn`(Distinct $_usn3 Contains 1e1 Contains .12) Limit $1000 Unwind $`6esn` In `2esn` As _usn4"), + octest:ct_string("Return *,`8esn` Is Null As `1esn` Union All Merge `6esn`=((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) On Create Set `2esn`+=Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],#usn8 =.9e-12[0e0...9e-1] Union Merge (`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[_usn3:usn1|:#usn8 *07..]-({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}) On Create Set `2esn` =$999[$usn1...0e0] On Match Set All(`` In $_usn3 Is Not Null Where $`` =~$_usn3).`3esn`? =$`8esn`[$usn2..] Return Distinct 7.0e-0 Is Null Is Null,0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7] As `5esn`,usn1(Distinct true Starts With 2.9e1 Starts With 9e1)[Extract(usn2 In .0e0[$`6esn`..] Where 9.1e-1[Count(*)..][5.9e-12..]|.0e0[$`1esn`][.9e-12])..][Extract(`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6|$_usn4 Contains 123456789)..] Skip (`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :``:usn1{usn2:12.0[..123456789][..01]}) Contains {`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12} Contains {`7esn`:`3esn` Starts With _usn4} Limit {@usn5:.0 Is Null Is Null}[Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0|01 Ends With \"d_str\")][[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|0X0123456789ABCDEF[1.9e0]]] Delete ``(0X0123456789ABCDEF Contains 8.1e1,Count ( * )[..123456789][...0e0])[..All(usn2 In .0e0[$`6esn`..] Where .0e0 In 10.12e12 In $`5esn`)][..(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})],All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)],`2esn` Starts With $`7esn` Starts With _usn4"), + octest:ct_string("Unwind Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] As `` Union Match `3esn`=((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})),_usn4=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[@usn6?:`5esn`]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) Union All Unwind .9e12 =~`5esn` =~07 As `5esn` Remove Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2|0e-0[...9e12]).@usn5?,All(`` In 0.12[3.9e-1]).#usn8!.@usn5!.`2esn`!,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7).``!.`7esn`?.`6esn`! Optional Match `5esn`=((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]})),@usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))) Where $@usn5 In .9e1 In $``"), + octest:ct_string("Unwind $123456789 Starts With Count ( * ) As `8esn`"), + octest:ct_string("Return Distinct `2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,1e1 In .1e-1 In .0 Order By Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) Asc Skip 00 =~.9e-12 =~usn1 Limit 12e12 Ends With usn1 Union With Distinct $`` In $@usn6 In 3.9e-1 As usn1 Order By (:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] Desc,[`2esn` In .12e-12[$@usn6..5.9e-12] Where $`6esn` Starts With `4esn`|@usn6 In 's_str'] Ends With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Asc,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]) Descending Skip Null[..123456789][..`8esn`] Where $`8esn`[$``..$`1esn`][9e-12..$7] With Distinct *,Count(*)[..Count(*)][..9e0] Order By 07 Starts With usn1 Starts With 010 Ascending,7.0e-0[..$`7esn`][..Null] Descending,$usn2[8.1e1...9e-1][.1e-1..11.12e-12] Desc Skip Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] Limit 999 Ends With $123456789 Ends With $_usn4 Where 10.12e12[Count(*)..] Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By $7 In .9e1 In $`` Desc,$`6esn` Starts With `4esn` Descending,8.1e1 Starts With .9e12 Starts With `7esn` Desc Skip 12.0 Is Null Is Null Union Delete .9e12 Starts With .9e12 Starts With `7esn`,$#usn7 Is Not Null Detach Delete .0e-0[3.9e-1][.12e12] Merge ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})) On Create Set @usn5+=_usn4 Ends With .0 Ends With 7,None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0e-0 Contains _usn4 Contains 1e-1).`6esn`! =Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) On Create Set [_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8].`5esn`! ={_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12),#usn8 =(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..]"), + octest:ct_string("Create `1esn`=(_usn3 )-[?:`6esn`|#usn7{_usn4:8.1e1 Is Null,#usn7:$_usn3 =~$usn1 =~_usn4}]-(usn2 :@usn5{`8esn`:00[$`6esn`]})-[?:usn2|:``]-(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}),usn1=((`8esn` :_usn3:_usn3)<-[_usn4? *..7{#usn7:Count ( * )[7]}]->(`6esn` :`7esn`)<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)) Create ``=((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})),`3esn`=((`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})) Remove None(`5esn` In 12[0xabc..][$0..] Where .9e0 Is Null Is Null).`4esn`?.`7esn`!,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $`8esn`[$``..$`1esn`][9e-12..$7]).`7esn`.`5esn`,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null].#usn7?.`6esn`?.`1esn`;"), + octest:ct_string("With *,7.0e-0[3.9e-1..`1esn`] As `8esn`,$`6esn` In `2esn` Limit $`1esn` Starts With Count(*) Starts With $`8esn` Where 1.9e0 =~$`8esn` =~01234567 Return $``[7..] As #usn8 Merge #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})) On Match Set All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 999 =~0Xa =~9e0).`1esn`?.`2esn`? =()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] On Create Set Any(`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]).usn1!.``?.``? =false =~4.9e12,usn1 =7.0e-0[3.9e-1..`1esn`];"), + octest:ct_string("Create (:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Unwind 12e12 =~#usn7 =~.9e-1 As #usn8 Remove {#usn7:11.12e-12 Contains 9e-12}.`4esn`!.`7esn`!;"), + octest:ct_string("Unwind @usn5 Ends With 's_str' Ends With 01 As `7esn` With .9e0 Is Null Is Null As #usn7,$12[`1esn`][1e1] As @usn6,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2 Order By 9e-1 =~6.0e0 =~`` Descending,999[0.12..8.1e1] Ascending Limit (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null Where .9e1[...12e12] With 1e-1 =~0.0 =~9.1e-1 As usn1,Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null,Count(*) In .9e-12 In $usn1 As _usn4 Order By $`7esn`[..12.0][..0e0] Asc,.9e0[$7][1e1] Descending,8.1e1[usn2..$1000][$7..0x0] Descending Skip Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] Limit `1esn`[11.12e-12..] Where $`2esn` Contains false Contains 123456789 Union Delete [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..],.12e12 Starts With 0xabc Starts With 12.0,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..]|$`5esn` Starts With 0X7 Starts With 1e1) Is Null Is Null Create (usn1 :`2esn`:`8esn`)-[`7esn`?:`5esn`]->(`1esn` :`6esn`:`3esn`)"), + octest:ct_string("Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Optional Match `7esn`=((#usn7 )) Where 0.12[07..3.9e-1] Unwind 0X0123456789ABCDEF Contains $`6esn` Contains $123456789 As usn2 Union Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Optional Match `7esn`=((#usn7 )) Where 0.12[07..3.9e-1] Unwind 0X0123456789ABCDEF Contains $`6esn` Contains $123456789 As usn2 Union All Delete All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)],#usn7[10.12e12..][\"d_str\"..],(#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Unwind 123456789 Contains .1e-1 Contains .12e12 As `6esn`"), + octest:ct_string("Create #usn8=(usn1 :_usn3:_usn3) Remove `3esn`($`5esn`[7..],9e-1[0X0123456789ABCDEF][0]).usn2,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 11.12e-12 Is Null Is Null).`6esn`?,{#usn8:_usn4 Ends With .0 Ends With 7,`6esn`:0X7 Starts With 1e1 Starts With $12}.@usn5! Union Unwind {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null As `` Remove (`8esn` {`3esn`:#usn8[`2esn`]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1).`1esn`!.`5esn`?.@usn5! Union All Remove Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]).`2esn`,All(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]).`3esn`._usn3!,Single(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]).`3esn`.`7esn` Delete 123.654 Ends With 0Xa Ends With .12e12,0X7[$7..] With $_usn3 In 123.654 In $`8esn` As `2esn`,@usn5[$_usn3..],.1e-1 Contains 1e1 Contains $`6esn` As `5esn` Order By $usn1 Contains `7esn` Contains .9e12 Ascending,8.1e1 Ends With $0 Ends With 6.0e0 Descending,9e12[...12e12][..$`2esn`] Descending Limit `3esn`[`4esn`..Null][$usn1..`5esn`]"), + octest:ct_string("Remove Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `4esn` Is Not Null Is Not Null).``?,(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})<-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`}).@usn5!;"), + octest:ct_string("Merge ``=((#usn8 {_usn3:$_usn4 Contains .12e-12})) With 1000 In 123.654 In $`8esn`,[_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null,_usn4(0[true..$7]) =~Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`) =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0) As _usn3 Order By $_usn3 Contains 1e1 Contains .12 Asc,9e12 Asc,0e0[`3esn`..][.9e-1..] Descending Merge `8esn`=(`3esn` {`2esn`:01[1e-1]}) On Match Set [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12]].@usn6 =$`8esn`[.9e-1][_usn3] On Create Set usn2 =8.1e1 Is Null,`1esn` =$_usn4 Contains .12e-12 Union All Return Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] As `7esn`,12e12 Starts With `6esn` Starts With true As #usn8,$_usn4[1e-1..8.1e1][`1esn`..1.9e0] As `` Optional Match @usn6=(((@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[#usn7? *00..123456789]->(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}))),`4esn`=(((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Where 01[Count(*)..0e-0][7..$`2esn`] Union All Create ((:usn2{@usn6:`3esn` Ends With `6esn`,`1esn`:$`2esn` Starts With 0x0})<-[`4esn`]->(#usn7 :_usn3:_usn3)),`4esn`=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1}) Optional Match ``=((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})),(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}) Where 0[true..$7] Remove Extract(_usn3 In ``[$``..] Where 01234567 Ends With 2.9e1 Ends With 9.1e-1|$`3esn`).`6esn`.`1esn`!;"), + octest:ct_string("Create _usn3=(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Unwind 0x0[01234567..'s_str'] As `` Create ((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Union Unwind .0 Is Null Is Null As _usn4 Remove usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4!,@usn6($`3esn`,$`1esn`[`3esn`..]).``?,`7esn`($`3esn` Ends With 010 Ends With $`7esn`,01234567[6.0e0][$usn2])._usn3!.@usn5.`5esn`? Match (:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}) Union Remove Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12).`5esn`? Merge usn2=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}) Merge _usn4=(({_usn3:$`5esn`[7..]}))"), + octest:ct_string("Detach Delete 9e-12 In usn2 Unwind [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) As usn1 Return Distinct Null[.12e-12] As #usn7 Order By {`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] Descending,[_usn4 In Count(*)[9e1..][12e-12..] Where $_usn3[1e-1..]][[`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0]][None(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)] Ascending,(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[`7esn`?]->(`5esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(#usn8 {_usn3:$_usn4 Contains .12e-12}) Ends With `4esn`($usn2 In usn1 In 1e-1,01[Count(*)..0e-0][7..$`2esn`]) Desc Skip 12e12 Is Not Null Limit 0x0 =~$7 =~Null Union All Create #usn8=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]}))"), + octest:ct_string("Match #usn7=(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[?{#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0}]-({`6esn`:07 Ends With @usn6 Ends With _usn3}) Where $`5esn`[true] Create ({`5esn`:07 Starts With usn1 Starts With 010})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}),({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) Union All Create @usn5=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Unwind 1.9e0 =~0x0 As @usn5 Create @usn5=(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}),#usn8=({_usn3:$`8esn` Is Null})"), + octest:ct_string("Unwind @usn5 In $1000 In 07 As #usn7 Union All Merge (_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ) On Create Set `2esn`+=Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],#usn8 =.9e-12[0e0...9e-1] On Create Set ``+=.1e1[..0][..010],`1esn` ={`8esn`:$`` Is Null Is Null}[Extract(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..])..][Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)])..],`4esn` =#usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null"), + octest:ct_string("Unwind (_usn4 {usn1:`3esn` Ends With `6esn`})<-[``?:#usn8|:`4esn`]-(:usn1{@usn5:Count(*)}) Ends With Extract(`` In $_usn3 Is Not Null Where .9e1 Contains Null|.9e1[..`5esn`]) As `2esn` With Distinct *,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e1[..Count(*)][..7.0e-0]) =~[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 01[Count(*)..0e-0][7..$`2esn`]] =~Single(usn2 In .0e0[$`6esn`..] Where 01[1e-1]),usn1 Ends With 12 As `` Limit `7esn` Ends With `7esn` Ends With $`3esn` Where @usn6[01][.9e0] Unwind 0e0[.12..][3.9e-1..] As `2esn` Union All Merge ((`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010})) On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] With 11.12e-12 Is Null Is Null As `4esn`,#usn8 Starts With 11.12e-12 Starts With $`3esn` As `2esn` Skip 123.654 Ends With 0Xa Ends With .12e12 Union All Create ((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})),`5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}));"), + octest:ct_string("Delete .1e-1 Ends With $_usn3,.0e0[8.1e1..0.12]"), + octest:ct_string("Return Distinct $usn1 Is Not Null Is Not Null As `5esn`,#usn7 =~0.0 =~usn2 As _usn4 Skip _usn4 In `3esn` In 7.0e-0"), + octest:ct_string("Delete 12e-12[.0..] Union With $usn1 Is Null As `5esn`,123.654 Starts With Count ( * ) As `4esn` Skip .9e-1 Ends With `8esn` Where 7.0e-0 =~$12 =~5.9e-12 Union With Distinct `5esn`[$`4esn`] As @usn6,.0e0 Is Null Is Null As _usn4,1.9e0 Starts With .9e0 Order By @usn5 Contains _usn3 Contains 00 Descending,$`6esn` Ends With 12 Ascending;"), + octest:ct_string("Return Distinct 0[..$@usn5] As `` Skip $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Limit 1e1 Is Not Null Is Not Null"), + octest:ct_string("With Distinct *,false[$1000..$@usn6][7..12],.0e0[8.1e1..0.12] Where $`3esn` Is Not Null Is Not Null Union All Unwind 12[0..usn2] As `7esn` Union Optional Match @usn5=((@usn6 :`6esn`:`3esn`)<-[`6esn`? *..0xabc{``:$_usn4[Null]}]->(:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Where .12e12[`7esn`][#usn8] Match @usn6=(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]}),`8esn`=(`` {_usn4:9e0[..1e1]}) Delete None(_usn3 In ``[$``..] Where .0e0 In 10.12e12 In $`5esn`) Is Null Is Null,@usn5 Is Null Is Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})"), + octest:ct_string("Detach Delete 9e12[.0e-0],12.0[$1000..][123456789..],Extract(`` In 0.12[3.9e-1]|0X7 Starts With 1e1 Starts With $12)[`7esn`(9.1e-1 Contains 0xabc)..][Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3])..] Remove All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]).@usn5!._usn4!.#usn8? Union All Remove @usn5().@usn5,5.9e-12.``!.`6esn`!,Extract(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]).usn1"), + octest:ct_string("Create `6esn`=(((#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`3esn` {#usn8:`7esn` Is Null})-[@usn6?:@usn5]-(`4esn` :usn1{`1esn`:0X0123456789ABCDEF Contains 8.1e1}))),(($@usn6)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[#usn8?:#usn7|:`8esn` *..0X7]->(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999})) Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0).`5esn`?,.9e-1.`6esn`?,Any(_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]).usn1.@usn6?.#usn8! Delete 's_str' Ends With $usn1 Union Create ``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Remove Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1).`1esn`?.``.usn1,Single(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1])._usn3.`2esn`,_usn3(.12[.0e-0..],1000[Null..]).#usn7 Delete .9e12 Is Not Null Is Not Null Union All Match `7esn`=((`8esn` {@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})),({usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))"), + octest:ct_string("Merge (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))) On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 Union All With Distinct *,Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null,$`7esn` Contains 0X7 As usn2 Order By Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Limit All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..])[`8esn`()] Where #usn7[10.12e12..][\"d_str\"..] Return $`7esn` Contains 0X7 As usn2,$`8esn` Starts With `2esn` Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})),((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3))"), + octest:ct_string("Unwind 0e0 Ends With `7esn` Ends With usn1 As #usn7 Return Distinct {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As ``,$`8esn`[12.0..][4.9e12..],.1e-1 Ends With @usn6 As @usn6 Order By false Starts With 3.9e-1 Asc,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Descending With *,#usn7[12e-12..][$`2esn`..] As @usn6,$`` Contains 00 Contains 123456789 As `3esn` Limit All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0)[Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"])..Single(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1])][{usn1:9e-1 Starts With 123.654 Starts With .9e1,#usn8:$_usn4 Is Not Null}..(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})]"), + octest:ct_string("Unwind usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]) As usn2 Return Distinct {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null),010 As ``,`1esn`[..0x0][..\"d_str\"] Optional Match (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Where 999[0.12..8.1e1] Union With *,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"] Starts With ``(12.0[`8esn`],4.9e12 In 5.9e-12 In .9e0) Starts With Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]),$12 Contains $#usn8 Contains 01 Where $`4esn` =~0e0 Optional Match (((:@usn5)-[#usn8 *0..010{_usn4:Count(*)[.0e0..][#usn7..]}]->(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[?:``|:`3esn`{#usn8:.9e1[Count(*)..$`3esn`]}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}))),_usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`)"), + octest:ct_string("Merge ((:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]})) With Distinct *,$12 Contains $#usn8 Contains 01 As usn1 Order By 0X7[`4esn`..][`3esn`..] Ascending,$#usn7 In .12e-12 Ascending,$`6esn` In `2esn` Ascending Create (`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),((`6esn` :_usn4)<-[`7esn`*..]->(`` :@usn6:_usn4)-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Union All Return Distinct 10.12e12[12e12..0X7] As #usn8,.9e-12[01][Count(*)] As _usn3 Union All Remove Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]).`2esn`,All(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]).`3esn`._usn3!,Single(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]).`3esn`.`7esn` Delete 123.654 Ends With 0Xa Ends With .12e12,0X7[$7..] With $_usn3 In 123.654 In $`8esn` As `2esn`,@usn5[$_usn3..],.1e-1 Contains 1e1 Contains $`6esn` As `5esn` Order By $usn1 Contains `7esn` Contains .9e12 Ascending,8.1e1 Ends With $0 Ends With 6.0e0 Descending,9e12[...12e12][..$`2esn`] Descending Limit `3esn`[`4esn`..Null][$usn1..`5esn`]"), + octest:ct_string("With Distinct *,Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) As #usn7,.12e-12 Ends With $`7esn` Where .9e-1 Ends With `8esn` Optional Match ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),@usn5=((:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(`4esn` :`2esn`:`8esn`)-[`8esn`:`4esn`|:@usn5{#usn7:Count(*)}]-({`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Union All With *,(:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})<-[``:`8esn`|:`2esn` *12..0Xa]-(usn2 :@usn5{`3esn`:$usn1 Is Null})[..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 8.1e1 Is Null)][..#usn7(Distinct usn2 Ends With .0)],Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]) Skip Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) Where 1000[$`6esn`..12.0]['s_str'..$`3esn`] Create `7esn`=((`2esn` :usn2)-[usn2:`4esn`|:@usn5 *01234567]->(:`5esn`{`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567})<-[:#usn8|:`4esn`{usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})),@usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) Where _usn3 Starts With `2esn` Union Remove [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where true Contains 0x0|$@usn6 Is Not Null Is Not Null].`8esn`,`2esn`:`3esn`,[`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1|`6esn`[..$@usn6][..$`1esn`]].`8esn`? With Distinct *,[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},07 =~_usn4 =~.9e12 As `` Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending Where .9e-1[12.0] Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) On Match Set `5esn` =$`2esn` Starts With #usn7 Starts With 12e12,#usn7(07[.0e0][3.9e-1]).`3esn` =$``[`6esn`][00] On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1"), + octest:ct_string("Merge ((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) On Create Set `2esn` =(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)],`3esn` =9e1 Contains 4.9e12 Contains 123456789 Unwind 0.12 =~2.9e1 =~12e-12 As @usn5 Return Distinct *,@usn5 Ends With 's_str' Ends With 01 As _usn4,Null[.12e-12] Skip 's_str' Ends With $usn1 Union Return Distinct *,0 Starts With 0Xa Starts With $0 Limit Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}] Union All Delete 9e12 Contains $@usn6 Contains Count(*),All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)];"), + octest:ct_string("Optional Match @usn5=($`8esn`)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[``?:@usn5]->(_usn3 :#usn8),(((_usn3 :_usn3:_usn3)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})-[#usn7? *00..123456789]->(usn1 :@usn6:_usn4))) Where 0[$999..] Unwind $`1esn`[.9e0][$_usn3] As `4esn`"), + octest:ct_string("Return *,Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),3.9e-1[.0e0..][07..] Order By 2.9e1 Starts With 12e-12 Starts With 0.0 Asc,.0e0 Starts With $@usn6 Starts With Null Descending Union With 12 Contains usn2 Contains $usn2 As ``,Count ( * )[12e-12] As #usn7 Skip .0 Where .9e-1 Contains .0e0 Contains usn1 Merge ((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) With Distinct 0e0 Is Null Is Null,None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[..Filter(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0)][..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] Order By .9e-12[0e0...9e-1] Ascending,.1e1 Starts With .1e-1 Asc Skip 0.12 Ends With $123456789 Ends With `7esn` Where 07 In $usn1 In 12 Union Return Distinct *,(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12})[[`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1|`6esn`[..$@usn6][..$`1esn`]]];"), + octest:ct_string("Unwind true[`6esn`..10.12e12] As `7esn` With [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Order By Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Desc Limit .0e0 Is Null Is Null Where 7.0e-0 Is Null Is Null Unwind 9e12 Is Null Is Null As `8esn` Union All Detach Delete 123.654 In $`5esn` In 9e-1,999[..@usn5][..`1esn`],12.0[`8esn`] Delete {usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Delete 0X7[Count(*)][.9e0],`1esn` In 12e-12 In 1e-1,010 Union All Remove {`3esn`:$`` Is Null Is Null}.`1esn`!.`2esn`.`7esn`?"), + octest:ct_string("Create usn1=({`5esn`:07 Starts With usn1 Starts With 010})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}),_usn3=({usn1:usn2 Ends With 10.12e12}) Unwind All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..] As `` Union All Create `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Optional Match `8esn`=(`6esn` :``:usn1),((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})));"), + octest:ct_string("With $`2esn`[$1000..][$@usn5..],`7esn` Ends With `7esn` Ends With $`3esn` Limit $0 =~01234567 Where 9e1 Ends With .9e0 Merge `2esn`=((`5esn` :`4esn`:`7esn`)) On Create Set Any(`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]).usn1!.``?.``? =false =~4.9e12,usn1 =7.0e-0[3.9e-1..`1esn`] Union All With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null)[[`2esn` In .12e-12[$@usn6..5.9e-12] Where 00]][Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12])] Limit [usn1 In 7.0e-0[.._usn4][..0X7]|7.0e-0 Is Null Is Null] =~#usn7 =~`4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Union All With Distinct *,(`2esn` {usn2:7.0e-0 Starts With $7 Starts With true})-[{usn2:$`8esn`[#usn7][.9e1],`7esn`:@usn5[$``]}]->(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}) Is Not Null Is Not Null,{`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null) As `8esn` Skip .0 Where 8.1e1 Is Null Is Null"), + octest:ct_string("Merge ((@usn6 {#usn8:12 Contains usn2 Contains $usn2})) On Match Set `3esn`+=123456789 Ends With _usn4,`7esn` =`1esn` Ends With 7.0e-0 Ends With $usn1,usn1 =Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null On Create Set `5esn` =(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[`7esn`?]->(`5esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(#usn8 {_usn3:$_usn4 Contains .12e-12}) Ends With `4esn`($usn2 In usn1 In 1e-1,01[Count(*)..0e-0][7..$`2esn`]) Return *,123456789 =~6.0e0 As usn1,Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) As #usn7 Limit 999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] With Distinct 2.9e1 As usn2,.1e-1[$`2esn`..][$`1esn`..] Order By `2esn` Starts With $`7esn` Starts With _usn4 Ascending,0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7] Asc,.12e12[$0] Asc Skip All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..])[`8esn`()] Where 8.1e1 Contains 0e-0 Contains $_usn3"), + octest:ct_string("Remove @usn6:usn1,Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $@usn6 Contains Count ( * )).`4esn`? Create `1esn`=(((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[:_usn3|`2esn` *010..]-(`` :usn1)<-[@usn5?:@usn6|:_usn3 *07..{_usn3:$`3esn` Is Not Null Is Not Null,#usn8:usn1[0.12..1000]}]->(`3esn` {usn2:$`7esn`[..12.0][..0e0]}))),#usn7=(`4esn` {@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[@usn5?:`8esn`|:`2esn`]->(_usn4 ) Union Delete Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7)[{usn2:`8esn` Is Null}..[@usn6 In .9e12 Starts With #usn8 Starts With 00]][(:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null})..{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}],999 Ends With $123456789 Ends With $_usn4 Create (`1esn` :`6esn`:`3esn`) Remove (`` :`3esn`{`5esn`:``[$``..]})-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}).`7esn`,[`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$`` Is Not Null].`8esn`._usn3?,(`` :usn2)-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}).usn1! Union With *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Where Null[`2esn`..] Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) Unwind 07[\"d_str\"..]['s_str'..] As usn1"), + octest:ct_string("Create #usn7=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Union All Create `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),_usn4=((`6esn` :#usn7:_usn3)<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Unwind .1e1[.0e0..] As `` Union Remove {`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}.``,`7esn`:_usn4,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0).`6esn`? With Distinct *,$7 Contains _usn4 Contains $`1esn`,9e-12 In 5.9e-12 As `` Skip 3.9e-1 Contains 9.1e-1 Contains `8esn` Limit Count ( * )[7] Where 11.12e-12 In $`1esn` In 9e12"), + octest:ct_string("Optional Match `1esn`=(#usn8 :#usn7:_usn3) Create `2esn`=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))),((`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010})) Union All Detach Delete 123456789 Contains .1e-1 Contains .12e12 With *,{_usn4:$1000 Contains 01234567 Contains 0X7} Is Null Is Null As `1esn`,`5esn`[$`4esn`] Order By Count ( * )[..`8esn`] Asc,3.9e-1[..$7] Desc Limit #usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Where 1000[..0e0][..$`6esn`] Merge ((usn2 )-[#usn8?:usn1|:#usn8 *0X0123456789ABCDEF..0]->(`` :`8esn`:#usn7)<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})) On Match Set usn1+=Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1])"), + octest:ct_string("Delete ()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)],.9e-1 Is Null,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 123456789 Ends With _usn4) =~{usn2:$``[`6esn`][00],#usn7:.12e12[$12..4.9e12][11.12e-12..9e12]} =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`5esn` Is Null Is Null)"), + octest:ct_string("Return Distinct 8.1e1 Is Null Is Null,5.9e-12[$`4esn`] Order By `6esn` Is Not Null Ascending,`6esn` Is Not Null Desc,(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})[{`5esn`:8.1e1 Ends With $0 Ends With 6.0e0,@usn5:9e0[..1e1]}..None(`` In $_usn3 Is Not Null Where $@usn6 =~$`2esn` =~9e1)] Descending Skip Null In 0Xa In .9e-1 Unwind $usn1 Is Not Null Is Not Null As `5esn` Delete true Is Null Is Null Union All Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})),((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) With [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..] Where $1000 Contains 01234567 Contains 0X7 Create ((usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]->(:usn1{usn1:Count(*)[0.12..2.9e1]})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})),(:usn1{``:.9e1[..`5esn`]})"), + octest:ct_string("Create #usn8=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})),`3esn`=(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set usn1+=9e0[..1e1] On Match Set usn1+=Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],@usn6+={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) Union All Merge usn1=(:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}) On Create Set None(`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0).`8esn`? =[`5esn` In 12[0xabc..][$0..] Where $123456789 Is Not Null] Starts With Any(`7esn` In .12e12[Count(*)..] Where 's_str' Ends With 0.0 Ends With .12e12),``+={`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])] On Create Set #usn7:`4esn`:`7esn`,{`7esn`:$`5esn`[7..],`5esn`:`5esn` Contains `6esn`}.#usn8?.usn2.@usn5! =usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]],@usn6 =\"d_str\" =~9e-12 =~`5esn` Merge usn1=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})) On Match Set `4esn` =$`` =~$_usn3,`7esn` =\"d_str\" Ends With `5esn` Ends With 7 Union Remove (:`7esn`{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[#usn8?:`4esn`|:@usn5]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})._usn3!,Any(`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0).usn1"), + octest:ct_string("Create `3esn`=((:`2esn`:`8esn`)<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}))) Optional Match (@usn5 {_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2)-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]-(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12}),((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})) Where 12.0 Contains $_usn4 Contains $usn2"), + octest:ct_string("Return Distinct (`8esn` {`3esn`:#usn8[`2esn`]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null As @usn5 Order By 123456789[Count ( * )..] Asc,01[..0.12] Asc Skip .0e0[$@usn5..$`8esn`][0X7..$usn1] Limit 8.1e1[usn2..$1000][$7..0x0] With Distinct `2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,1e1 In .1e-1 In .0 Order By Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) Asc Skip 00 =~.9e-12 =~usn1 Limit 12e12 Ends With usn1 Where 12[123456789][5.9e-12] With Distinct *,Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) In {`5esn`:$`` =~$_usn3,`4esn`:`7esn`} In `3esn` Order By [usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|`3esn` Ends With 010 Ends With 9.1e-1][(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})-[`7esn`?:`5esn`]->(#usn8 )..None(_usn4 In Count(*)[9e1..][12e-12..] Where 7 Contains $#usn7)] Ascending Limit 0xabc[$`4esn`..][`8esn`..] Union Return `7esn` Ends With `7esn` Ends With $`3esn`,12e-12[`7esn`..][5.9e-12..] Order By 01[..0.12] Ascending Skip (`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] Detach Delete .1e-1 Ends With @usn6,Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Null Is Null,$`2esn` Contains false Contains 123456789 Return $_usn3 In 123.654 In $`8esn` As `2esn`,@usn5[$_usn3..],.1e-1 Contains 1e1 Contains $`6esn` As `5esn` Order By $usn1 Contains `7esn` Contains .9e12 Ascending,8.1e1 Ends With $0 Ends With 6.0e0 Descending,9e12[...12e12][..$`2esn`] Descending Limit `3esn`[`4esn`..Null][$usn1..`5esn`] Union Optional Match ({`4esn`:$@usn5[$#usn8..][_usn3..]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})"), + octest:ct_string("Delete 00 Is Not Null Merge @usn5=(#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})-[`1esn`*..{usn2:$1000[.._usn3][..#usn7]}]-(:`3esn`{_usn4:7.0e-0 =~$12 =~5.9e-12}) Match @usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))),(({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)) Union Remove Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12).`5esn`?,(`7esn` :@usn5{usn2:$`8esn`[#usn7][.9e1],`7esn`:@usn5[$``]})<-[:`1esn`{`8esn`:0xabc[7.0e-0..][12e12..]}]->(:`6esn`:`3esn`{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12}).`6esn`!,Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]).usn1!._usn3?._usn3? Create `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}))"), + octest:ct_string("Return Distinct [`` In 0.12[3.9e-1] Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`|Null[10.12e12..]] In {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] As `7esn` Order By 00 Ascending Skip 12.0 Contains $_usn4 Contains $usn2 Limit .9e1 Starts With `4esn` Detach Delete 01[Count(*)..0e-0][7..$`2esn`],@usn6[usn1..][`1esn`..]"), + octest:ct_string("With 1000[Null..] As `1esn`,`8esn`[..7.0e-0][..0xabc] As _usn3 Skip 0e-0 Contains 11.12e-12 Contains $`4esn` Where Null[10.12e12..] Union All With Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1] Detach Delete {#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}[{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}..]"), + octest:ct_string("Unwind `3esn` Ends With true As @usn6"), + octest:ct_string("With Distinct .1e-1[$`2esn`..][$`1esn`..] Order By `7esn` Ends With 9e-1 Ends With usn1 Ascending,5.9e-12[`4esn`..12e12][0x0..1.9e0] Ascending,$#usn7 In .12e-12 Ascending Skip Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Limit Count ( * ) In 999 Where 010 Create `8esn`=(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}))),usn1=(`` {_usn4:9e0[..1e1]})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}) Union Create usn1=(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}),`5esn`=(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Unwind None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} As `7esn`"), + octest:ct_string("Unwind 11.12e-12 Is Null As usn1 Return *,_usn4(Distinct 1e-1 =~0.0 =~9.1e-1) =~None(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~(`2esn` {usn2:7.0e-0 Starts With $7 Starts With true})-[`2esn`:`5esn`{usn2:Count(*)[12..][0X0123456789ABCDEF..]}]-({_usn4:$`3esn` In 's_str' In $#usn7})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12}) As ``,`3esn` Ends With true Limit {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) Union With Distinct *,123.654,9e-1 Starts With 123.654 Starts With .9e1 As `6esn` Order By $`8esn`[.._usn4(Null[..07],123.654)] Desc Skip 123456789[\"d_str\"..] Where $`2esn` Contains false Contains 123456789 Match `3esn`=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) Where $usn1 Starts With 12 Starts With 12e12 Union Remove [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|.9e1[..`5esn`]]._usn3!.`6esn`?.`3esn`?,(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )._usn4!.usn2.#usn7! Optional Match `7esn`=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}),((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Where .0e0 Is Null Is Null Create @usn5=({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})"), + octest:ct_string("Merge @usn5=(({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})-[:``|:`3esn` *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})) On Match Set #usn7 ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0} =~Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]),`8esn` =`5esn`(Distinct 123456789 Ends With 8.1e1,01234567[6.0e0][$usn2])[{@usn5:usn1 Is Not Null,usn2:0xabc[7.0e-0..][12e12..]}..][(_usn3 :_usn3:_usn3)<-[`6esn`?:``|:`3esn`]-(:@usn6:_usn4$`6esn`)<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})..] On Create Set [usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]].`4esn`?.usn2?.usn2! =[@usn6 In .9e12 Starts With #usn8 Starts With 00|9e12 Contains $@usn6 Contains Count(*)][(`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]})][Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null)],Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654).`4esn`? =Count ( * )[0e-0..01],#usn7+={usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])] Union Unwind $usn1 Is Not Null Is Not Null As `2esn`"), + octest:ct_string("Optional Match usn1=(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}),@usn5=({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}) Where 7.0e-0[3.9e-1..`1esn`] Union All With Distinct [@usn6 In .9e12 Starts With #usn8 Starts With 00|9e12 Contains $@usn6 Contains Count(*)][(`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]})][Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null)] As @usn5,12 =~9e0 =~$#usn8 Skip 5.9e-12[`1esn`][usn2]"), + octest:ct_string("Create usn1=({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}),#usn8=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Unwind `7esn` Ends With _usn4 As _usn3"), + octest:ct_string("Unwind 1e1 Ends With Null Ends With `7esn` As `3esn`"), + octest:ct_string("Match (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[:usn1|:#usn8]-(:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`}),`2esn`=((_usn4 {#usn7:$`5esn` Is Null Is Null})-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})) Union Remove Filter(usn2 In .0e0[$`6esn`..] Where $123456789 Is Not Null)._usn4.`1esn`!.`1esn`!,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`).`5esn`!.`7esn`,_usn3:#usn8 Unwind (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] As `2esn`"), + octest:ct_string("With Distinct *,$7 Contains _usn4 Contains $`1esn`,9e-12 In 5.9e-12 As `` Skip 3.9e-1 Contains 9.1e-1 Contains `8esn` Limit Count ( * )[7] Where 11.12e-12 In $`1esn` In 9e12 Detach Delete 9e12[1e1...9e-12] Detach Delete 5.9e-12 Ends With 1e1 Ends With false Union Create #usn7=((`4esn` {_usn3:@usn6 In 3.9e-1 In 9e-12})<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4)) Optional Match #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),`8esn`=(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})))"), + octest:ct_string("Optional Match `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Where 0e0 Starts With $1000 Starts With `2esn` Unwind Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)[{_usn3:$0 Starts With 010}] As _usn4 Union All Create `8esn`=(`4esn` :`5esn`),((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Union Return *,`6esn`[010...9e-12] As `5esn` Match `3esn`=(:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})<-[? *0X0123456789ABCDEF..0]-(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null}) Where #usn8[usn1] With *,7.0e-0[3.9e-1..`1esn`] As `8esn`,$`6esn` In `2esn` Limit $`1esn` Starts With Count(*) Starts With $`8esn` Where 1.9e0 =~$`8esn` =~01234567;"), + octest:ct_string("Create @usn5=((#usn8 :usn1)<-[`2esn`?:usn2|:`` *010..{`5esn`:$`4esn` Ends With 0e-0}]->(:usn1{`3esn`:$0 =~01234567,@usn5:7 Is Null Is Null})-[@usn5?:usn1|:#usn8 *01234567{`1esn`:7.0e-0[3.9e-1..`1esn`]}]-({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) With 11.12e-12 Is Null Is Null As `4esn`,#usn8 Starts With 11.12e-12 Starts With $`3esn` As `2esn` Skip 123.654 Ends With 0Xa Ends With .12e12 Union All Unwind All(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]) Starts With Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) As `3esn` Return *,_usn4['s_str'..] As `2esn`,Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Order By .0e0[1e1..][01234567..] Descending,5.9e-12[2.9e1][9e0] Desc Skip Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7)"), + octest:ct_string("Remove _usn3(`2esn` =~usn1)._usn3 Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Return [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..]"), + octest:ct_string("Optional Match `4esn`=(#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]}) Return _usn3[`2esn`..][0x0..] As usn1 Order By 123456789[\"d_str\"..] Descending,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending,12e-12[`7esn`..][5.9e-12..] Asc Limit All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..])[`8esn`()] Detach Delete 12e12[11.12e-12],false Starts With 3.9e-1 Union All Remove All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0)._usn3? Unwind $@usn5[..1e-1] As _usn4 With 1000[Null..] As `1esn`,.1e1 Starts With $7 Order By Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Ascending,$`7esn` Contains 0X7 Asc,$_usn4 Is Not Null Ascending Limit .0e0[$`1esn`][.9e-12]"), + octest:ct_string("Delete Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null)[#usn7(`4esn`[0.0..][.1e-1..])..@usn6(_usn4 Is Not Null Is Not Null)],[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12]][None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null)..[`5esn` In 12[0xabc..][$0..] Where .12e12[$12..4.9e12][11.12e-12..9e12]]] Union All Unwind $`2esn` Contains false Contains 123456789 As `8esn` Detach Delete .1e-1[@usn6..] Union All With Distinct *,$#usn7 Is Not Null As `7esn`,2.9e1 As usn2 Skip Extract(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..]|.9e12[..$usn1][..10.12e12]) Starts With Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]) Limit $#usn7 Starts With 10.12e12 Create usn2=(#usn7 :_usn3:_usn3)<-[#usn8?:`4esn`|:@usn5]-(#usn8 :_usn3:_usn3) Merge ((:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null})-[:_usn4|`1esn` *00..123456789]-(`2esn` :`1esn`)-[@usn6:#usn7|:`8esn` *0Xa..7]-(`8esn` {@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) On Create Set Filter(`` In $_usn3 Is Not Null Where 7 Is Null Is Null).#usn7! ={`5esn`:false,_usn3:.9e-12 Starts With .0e-0 Starts With usn2} Is Null On Match Set `4esn`+=1000[Null..],{`4esn`:0e0 Is Null Is Null,`8esn`:1.9e0 Is Null Is Null}.`6esn`? =$`2esn` In 0 In 0Xa,`3esn` =_usn4['s_str'..]"), + octest:ct_string("With Distinct *,8.1e1 Ends With .1e-1,$#usn7 =~8.1e1 As #usn7 Order By false =~4.9e12 Asc Skip 0x0 =~0x0 Limit $_usn4[1e-1..8.1e1][`1esn`..1.9e0] Where 5.9e-12[.1e1][$#usn8] Union All Delete $0[9e1],01 Contains 12.0,0.12[.12e-12] Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Union All Remove Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0).`6esn`?.`2esn`!,{``:@usn6 In 3.9e-1 In 9e-12,`3esn`:$`` Is Not Null Is Not Null}.@usn5?.`3esn`!.`2esn`,Filter(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).``.`8esn` Remove Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where ``[..$#usn7]).usn1?,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})-[`8esn`:`3esn`|:_usn3*..{`2esn`:.9e-1 Ends With `8esn`,``:0[..$@usn5]}]-(`5esn` :`7esn`{`7esn`:$_usn3[.1e1..][$`1esn`..],`5esn`:.12e-12 =~9e12 =~1e-1}).`4esn`!.#usn8"), + octest:ct_string("Merge `5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Merge (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) On Match Set Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12).`4esn`!.#usn8?.`1esn` =1.9e0 =~$`8esn` =~01234567,`1esn` =1000[$`6esn`..12.0]['s_str'..$`3esn`],@usn5 =9e0[$usn2][0] With @usn6[.9e12] As ``,01234567 Starts With `4esn` Starts With 10.12e12 Order By $`7esn` Is Null Is Null Descending,Any(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1) Asc,#usn8[usn1] Asc Where .9e1[...12e12] Union Create usn1=(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})"), + octest:ct_string("Return Distinct *,Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,`3esn` Contains 01234567 Contains .9e-12 Order By 12 =~$@usn5 Desc,0Xa In 0.12 In $#usn7 Descending With Distinct [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null,Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,1.9e0 Starts With .9e0 Skip Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4])[..{_usn3:.1e-1 Ends With $`8esn` Ends With .9e0}] Limit Null Is Not Null Is Not Null Optional Match ((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})),`4esn`=(((`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})-[``]-(`7esn` :``:usn1{`1esn`:0e0 Starts With $1000 Starts With `2esn`,@usn6:@usn6 In 3.9e-1 In 9e-12})-[@usn5*{`7esn`:`3esn` Starts With _usn4}]->(#usn8 :_usn4{_usn3:.0 Is Null Is Null})))"), + octest:ct_string("Detach Delete ()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 ) Contains Any(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]) Contains All(@usn6 In 00 =~.9e-12 =~usn1),Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .12[.0e-0..]|$`8esn`[$usn2..]) Is Null Is Null,usn1[..10.12e12][..7] Return count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0])[_usn3(8.1e1[usn2..$1000][$7..0x0],false[..12e-12][...9e1])..] As @usn6,.0e-0[0e0..00][.9e1..12] As `1esn`,Count ( * ) Starts With 10.12e12 Starts With `` As `5esn` Union All Detach Delete $`8esn`[$``..$`1esn`][9e-12..$7],Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]),.9e-1 Ends With `8esn` Delete `1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)],_usn4 In `3esn` In 7.0e-0,'s_str' =~.9e1 =~3.9e-1 Merge ((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2))"), + octest:ct_string("Match `3esn`=(:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})<-[? *0X0123456789ABCDEF..0]-(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null}) Where #usn8[usn1] Remove [`2esn` In .12e-12[$@usn6..5.9e-12] Where 1000[..0e0][..$`6esn`]|Count(*)[12..][0X0123456789ABCDEF..]].@usn6!,`8esn`:_usn3:_usn3 Union Merge `6esn`=(:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}) On Create Set `1esn`+=00[0e-0...9e-1][1e-1..``],``+=2.9e1 Starts With 12e-12 Starts With 0.0,(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8 Remove Any(`8esn` In 01234567[..0.0][..false] Where 0e0 Starts With $1000 Starts With `2esn`).`4esn`.@usn5!.`2esn`!;"), + octest:ct_string("Unwind Count ( * )[0e-0..01] As `3esn` Unwind .12e-12 Starts With 's_str' Starts With 123.654 As `2esn` Unwind $usn1[$12..] As `` Union All Optional Match _usn3=(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Where .9e-12[1000..$`3esn`] With Distinct *,`8esn` Is Null As `6esn` Order By [usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc,0x0 =~$7 =~Null Desc,12e-12[9e0..1.9e0] Asc Where `` =~$`5esn` Create ((`6esn` :usn1)) Union With *,_usn3[`2esn`..][0x0..] As usn1,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,usn1() In Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) In (`7esn` :usn1)-[usn2:`4esn`|:@usn5 *01234567]->(_usn4 )-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]}) Desc,``[..$#usn7] Asc Limit 07 Ends With @usn6 Ends With _usn3 Where $7 Contains 0e-0 Contains .0e-0"), + octest:ct_string("With Distinct *,0X0123456789ABCDEF Contains 8.1e1 As @usn5 Order By (#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})[Any(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)..][Single(_usn3 In ``[$``..] Where Null[`2esn`..])..] Asc Limit _usn3[`2esn`..10.12e12][9e1..true] Remove Extract(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]).`1esn`?.`6esn`.`3esn`?,({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})<-[`3esn`?:`5esn`]->(`2esn` ).``!,Filter(@usn6 In 00 =~.9e-12 =~usn1 Where 0x0 Contains $`1esn` Contains 0.0).`1esn` Union All Match (usn1 :usn2),usn2=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Where @usn6[.9e12..0e0] Unwind 0e0 Ends With 0X7 Ends With .1e1 As _usn4 Union Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Unwind {@usn6:\"d_str\" =~9e-12 =~`5esn`}[#usn8(Distinct 999 Starts With .9e12 Starts With 3.9e-1,true Contains 0x0)..[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010]][All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)..{`4esn`:0 Starts With 0Xa Starts With $0}] As `8esn` Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Where $`6esn` Starts With `4esn`"), + octest:ct_string("Remove (_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`}).usn2?.usn2?,Filter(`8esn` In 01234567[..0.0][..false] Where .12e-12[$@usn6..5.9e-12])._usn3 Remove {`7esn`:.9e-12 Is Not Null Is Not Null}.``?,{``:999 =~0Xa =~9e0}.#usn8,{usn1:$`` Is Not Null,`5esn`:0X7 Starts With 1e1 Starts With $12}.usn2!"), + octest:ct_string("Detach Delete .0e0 Ends With `8esn`,$`2esn` Ends With 2.9e1 Ends With $usn1,[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null][..`1esn`(Distinct `5esn` Contains `6esn`,`3esn` Contains $`8esn` Contains 0e0)][..Single(`5esn` In 12[0xabc..][$0..] Where 1000[_usn3..`8esn`])] Optional Match ((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Union Remove #usn8:`2esn`:`8esn` Optional Match usn1=(@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),#usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Union Match ((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) Where $`2esn` Starts With 0x0 Optional Match ((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) Where 07[\"d_str\"..]['s_str'..] Create `3esn`=(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`),(((:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]})-[`8esn` *..7{usn2:12.0 Contains $_usn4 Contains $usn2}]-(`8esn` :`7esn`{`6esn`:_usn4 Is Not Null Is Not Null})))"), + octest:ct_string("Delete 11.12e-12 In $`1esn` In 9e12 Unwind 123.654 Is Not Null Is Not Null As `6esn` Merge ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`5esn` *01234567]->(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) On Create Set None(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).`5esn`?.`3esn`! =[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]},`8esn` =Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]],None(`` In $_usn3 Is Not Null Where 7.0e-0 =~$123456789 =~`8esn`).`3esn` =Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1]) On Match Set `8esn` =[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]).#usn7!.usn1?.usn1? =$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 9e0 =~9e1 =~.12e12|$@usn5 =~.12e-12).`2esn`?.`1esn`! =0e-0[...9e12] Union Create ((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)),`7esn`=({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})"), + octest:ct_string("Detach Delete {`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)],Null Is Not Null Merge @usn6=(((@usn5 {``:.0e0[$`6esn`..]})-[?:usn2|:``]-(_usn4 :`4esn`:`7esn`{#usn7:0xabc Is Not Null,`4esn`:_usn3[`2esn`..10.12e12][9e1..true]})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(@usn5 :usn2))) On Match Set usn2 =$`8esn`[.9e-1][_usn3] On Match Set #usn7+=Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}],`8esn`(Distinct `2esn` Is Not Null Is Not Null,$``[4.9e12..2.9e1]).`6esn`.`1esn`! =.9e0 Is Not Null,usn1($@usn5[...9e-1][..$usn1],$`3esn` Ends With 010 Ends With $`7esn`).`3esn` =(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[? *07..{_usn4:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:$#usn8[...9e1]}]-({`1esn`:0X0123456789ABCDEF Contains 8.1e1})[Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`|$@usn6 =~$`2esn` =~9e1)..][[_usn4 In Count(*)[9e1..][12e-12..] Where $usn1 Starts With 12 Starts With 12e12|0e-0 Contains _usn4 Contains 1e-1]..] With Distinct *,#usn8 In $@usn6 As `8esn` Skip `1esn`[..0x0][..\"d_str\"] Union All Detach Delete _usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null;"), + octest:ct_string("With ``[..$#usn7],$`6esn`[$`8esn`..][false..] As _usn3 Union Unwind [usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..]|12e-12[9e0..1.9e0]][{`7esn`:$0 Starts With 010,_usn4:$`8esn`[$``..$`1esn`][9e-12..$7]}..Extract(`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|$_usn4[Null])][#usn7(Distinct 's_str'[0Xa..12e-12][.9e1..0xabc])..Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9e12[$#usn8..9e-1][$999..$`4esn`]|999 Starts With .9e12 Starts With 3.9e-1)] As `1esn`"), + octest:ct_string("With Distinct usn1(Distinct true Starts With 2.9e1 Starts With 9e1)[Extract(usn2 In .0e0[$`6esn`..] Where 9.1e-1[Count(*)..][5.9e-12..]|.0e0[$`1esn`][.9e-12])..][Extract(`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6|$_usn4 Contains 123456789)..] Order By 0xabc[7.0e-0..][12e12..] Ascending Limit 7.0e-0 Is Null Is Null Match usn1=({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}),(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}) Unwind 11.12e-12[010..11.12e-12] As `3esn`"), + octest:ct_string("Optional Match (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Where 999[0.12..8.1e1] Union All Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7]).`5esn`,@usn6:``:usn1,{`4esn`:.0e0[$`6esn`..]}.#usn8._usn3 Unwind true Is Null As #usn8 Union Unwind 0X7 As `3esn` Merge ((#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set `8esn`+=Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\"),`1esn`+=4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12),(`` {_usn4:9e0[..1e1]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(@usn5 :@usn6:_usn4).#usn8.`1esn`.usn1! =00[0e-0...9e-1][1e-1..``] On Create Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] With Distinct [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1|.9e1[12]] Is Null Is Null As #usn8 Order By $usn1 Contains `7esn` Contains .9e12 Ascending Skip $usn1 Is Not Null Is Not Null Limit {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})] Where 010;"), + octest:ct_string("Detach Delete 0X7[$7..],$usn1 Contains `7esn` Contains .9e12,(:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Union Create #usn7=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}))"), + octest:ct_string("Delete .9e12 =~`5esn` =~07,1.9e0 Ends With 0Xa Ends With $12,$`2esn`[010..`5esn`][``..0.12] Union Merge `5esn`=(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[:#usn8|:`4esn`{_usn3:'s_str' Is Null,#usn7:#usn7[..0X0123456789ABCDEF]}]->(`` {`2esn`:.1e-1[2.9e1..][12..]}) Remove ({`1esn`:0X0123456789ABCDEF Contains 8.1e1})<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}).``!,`8esn`(07 Is Null Is Null).`7esn`!,Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]).``!.@usn6?;"), + octest:ct_string("Create `1esn`=(#usn8 :#usn7:_usn3) Union All Merge (@usn6 :_usn4) On Create Set ``+=2.9e1 Starts With 12e-12 Starts With 0.0 With Distinct Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) As _usn4,1000 In 123.654 In $`8esn`,usn1 Is Not Null As `8esn` Limit Count(*)[0.12..2.9e1] Where .9e1[11.12e-12] Match (((`3esn` :@usn6:_usn4)<-[_usn4?:#usn8|:`4esn` *123456789..0x0]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12})-[?:_usn3|`2esn`]->(`1esn` :`7esn`))) Where $@usn5[..1e-1] Union Optional Match `2esn`=((@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]}))"), + octest:ct_string("With *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Limit `8esn`[6.0e0..][$`1esn`..] Match `2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Where .0e0 =~5.9e-12 =~`7esn` Detach Delete 9e12[1e1...9e-12]"), + octest:ct_string("Detach Delete 00[0e-0...9e-1][1e-1..``],9e12[...12e12][..$`2esn`],7.0e-0 Contains Count ( * ) Contains 0Xa"), + octest:ct_string("Remove (:@usn6:_usn4$`6esn`)<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)<-[`7esn`?]-({usn2:#usn7[10.12e12..][\"d_str\"..]}).`6esn`!.`3esn`.`1esn`!,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0 Starts With 0Xa Starts With $0|#usn8 =~.9e-12 =~$usn1].`4esn`,{#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}.`7esn` Return Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 123456789 Ends With _usn4) =~{usn2:$``[`6esn`][00],#usn7:.12e12[$12..4.9e12][11.12e-12..9e12]} =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`5esn` Is Null Is Null),1e1 Skip 8.1e1 Starts With 9e-12 Starts With $1000 Remove [`8esn` In 12.0 Contains $_usn4 Contains $usn2|#usn8 Starts With 11.12e-12 Starts With $`3esn`].`6esn`.`6esn`!.`5esn` Union Unwind _usn3(0x0 Starts With 1000,.1e1[.0e0..])[[`` In $_usn3 Is Not Null Where 7.0e-0 =~$123456789 =~`8esn`|999[...12e12][..0]]..``(Distinct)][(`2esn` :`1esn`)-[?{@usn5:6.0e0 Is Not Null}]->({`8esn`:$`7esn` Is Not Null,`5esn`:01234567 Starts With `4esn` Starts With 10.12e12})<-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]->(`` )..({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)] As `4esn`;"), + octest:ct_string("With Count ( * )[..1.9e0][..`8esn`] As `1esn`,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] As @usn6,01[1e-1] Order By Count(*) Is Not Null Desc Skip Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) Limit `5esn`(Distinct 123456789 Ends With 8.1e1,01234567[6.0e0][$usn2])[{@usn5:usn1 Is Not Null,usn2:0xabc[7.0e-0..][12e12..]}..][(_usn3 :_usn3:_usn3)<-[`6esn`?:``|:`3esn`]-(:@usn6:_usn4$`6esn`)<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})..] Return Distinct $``[7..] As #usn8 Order By 1000[_usn3..`8esn`] Desc,9e-1 Starts With 123.654 Starts With .9e1 Descending,`` =~123456789 Descending Skip (usn1 :`2esn`:`8esn`)<-[?{_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)[All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)..][[`8esn` In 01234567[..0.0][..false] Where 6.0e0 Is Not Null|$usn2 In usn1 In 1e-1]..] Limit 's_str' In `7esn` In .9e-12 Union With Distinct $123456789 Is Null Is Null As #usn8,@usn6[..$`3esn`][..4.9e12] As #usn8,1.9e0[$12][``] As `5esn` Order By `1esn` Ends With 7.0e-0 Ends With $usn1 Desc Limit $`2esn` Ends With $`8esn` Match usn2=((:@usn5)-[@usn5:_usn3|`2esn`{`1esn`:5.9e-12[$`4esn`],usn1:9.1e-1[Count(*)..][5.9e-12..]}]->(usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})),(({#usn7:0X7[Count(*)][.9e0],`2esn`:0x0[`5esn`][$`5esn`]})-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})) Unwind {#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}[{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}..] As usn2 Union All Remove `3esn`:`7esn`,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}._usn3"), + octest:ct_string("Remove Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0).usn2!.``!.`3esn`?,(#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0).#usn7?.usn2?,`6esn`(Distinct 5.9e-12 Contains $`` Contains $`5esn`,.1e1 Ends With `2esn` Ends With $`1esn`).#usn7.#usn8!.usn1 Union Return Distinct *,All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1) =~_usn3(Distinct 5.9e-12[9e0..],$@usn5 Is Null),{_usn4:1.9e0 =~$`8esn` =~01234567}[All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Ends With [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|$999 Ends With .9e-12] Ends With [usn2 In .0e0[$`6esn`..] Where usn2 Ends With .0] Desc Skip $_usn3 Ends With Count(*) Ends With $`` Limit All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0)[..[@usn6 In 00 =~.9e-12 =~usn1 Where 0.0[$1000][3.9e-1]|$usn2 =~$`2esn` =~\"d_str\"]] Match (:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567}) Match ``=((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),(((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})));"), + octest:ct_string("Delete [usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},`7esn` Contains $7 Contains 07 Remove Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]).#usn7! Unwind `1esn`[9.1e-1] As `5esn`"), + octest:ct_string("Detach Delete $#usn7 Starts With 10.12e12,Null =~true =~.1e-1,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where $_usn4[..usn2]|`1esn` Starts With 999 Starts With 3.9e-1) =~(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}) =~Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]) Delete (`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})-[`6esn`? *123456789..0x0]->({`6esn`:$usn1 Starts With usn1 Starts With 1e-1,#usn8:$#usn7 Starts With 10.12e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}) Is Null,Filter(`2esn` In .9e-12[0e0...9e-1] Where .9e-1 Is Not Null Is Not Null)[Any(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1])..(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})][(`7esn` :#usn7:_usn3{`3esn`:00[0e-0...9e-1][1e-1..``]})<-[_usn3:_usn3|`2esn`{`7esn`:0X7[_usn4..1.9e0][Count ( * )..false],_usn4:.9e-12[9e1..8.1e1]}]-({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]})..Single(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..])] Union With Distinct {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})] Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] Descending Detach Delete 0x0,$``[`6esn`][00],'s_str' Ends With $usn1 Unwind Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3) Starts With `2esn`(Distinct) Starts With (`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}) As `6esn`"), + octest:ct_string("Create usn2=(`4esn` :`6esn`:`3esn`) Create `8esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Unwind usn2['s_str'...9e-1][$7..Count ( * )] As `1esn` Union All Create (_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[@usn6?:`5esn`]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) Union All Merge `8esn`=(`4esn` :`5esn`) On Match Set `3esn`+=$#usn7 Is Not Null Is Not Null,{#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}.usn2! ={`1esn`:01234567 Ends With 2.9e1 Ends With 9.1e-1}[(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})-[:#usn8|:`4esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}]-(:#usn8{_usn4:$999 Ends With .9e-12})<-[:@usn6|:_usn3{`5esn`:$@usn6 =~$`2esn` =~9e1}]->({`7esn`:.9e1[Count(*)..$`3esn`]})..] On Match Set _usn4:#usn7:_usn3,Extract(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0|`6esn` In 9e-12)._usn4? =0Xa Ends With #usn8 Ends With usn2 Remove count().`1esn`!._usn4?.`7esn`!,None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12).@usn5!.`2esn`!,[`5esn` In 12[0xabc..][$0..] Where $usn2[0e0][$7]|Count ( * )[`7esn`..]].``._usn4!.`5esn`"), + octest:ct_string("Merge ((:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})-[usn2?:@usn6|:_usn3]->({usn1:01[.9e-12..],@usn6:$`5esn` Ends With $#usn7 Ends With .0e-0})) On Create Set @usn5:usn2,None(`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]).`5esn`? =#usn7 Is Null,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where .9e1[#usn7..]).`8esn` =$`8esn` In 9e-12 In 3.9e-1 On Create Set @usn5 =0.12 Is Not Null Is Not Null,`3esn`+=11.12e-12 Is Null,`` =Count ( * )[..2.9e1] Union All Unwind 123456789[Count(*)] As _usn4 Merge (`` :#usn8{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}) Detach Delete `2esn` =~.1e-1 =~$usn1,$12[`1esn`..],07[.0e0][3.9e-1] Union All Return Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],`2esn` Is Not Null Is Not Null Skip $123456789 Starts With Count ( * ) Limit Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..] Merge `1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null"), + octest:ct_string("Merge @usn5=(({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) On Create Set {@usn6:$_usn3 Is Not Null Is Not Null}.usn2! =.9e-12[0e0...9e-1],usn2 =12e12[07..]"), + octest:ct_string("Return Distinct Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2|0e-0[...9e12])..[`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]|.9e1[..`5esn`]]][Extract(`5esn` In 12[0xabc..][$0..] Where .9e0 Is Null Is Null|$7 Is Null Is Null)..Any(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null)] As `6esn` Order By Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12e12 Starts With 4.9e12 Starts With 0e0)[Extract(`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0|12e12[..$`8esn`][...0e-0])] Descending,07 Starts With usn1 Starts With 010 Ascending Union Merge (((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) On Create Set _usn3 =5.9e-12 Contains `3esn` Contains Null Create _usn3=((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]})) Return Distinct usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]) As usn1 Order By .9e-12 Starts With .0e-0 Starts With usn2 Ascending Skip `4esn`[..$#usn7][..0X7];"), + octest:ct_string("Create (`6esn` :`8esn`:#usn7{`4esn`:00 Is Not Null Is Not Null,`4esn`:7 =~$`5esn`}) With None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]) Is Null Is Null,Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()] As #usn7 Skip Null[10.12e12..] Limit @usn6[usn1..][`1esn`..] With Distinct 9e12 Starts With `4esn` Starts With .9e-1 As @usn6 Order By {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} Ascending,01 Ends With \"d_str\" Asc,1000 Is Null Is Null Ascending Limit 0e0 Starts With $1000 Starts With `2esn` Union Remove Single(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1).`2esn`?,`1esn`:_usn4,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where usn1 Is Not Null).#usn8? Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where $`1esn` Starts With Count(*) Starts With $`8esn` Return Distinct Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] Order By 01[..0.12] Asc,6.0e0 Ends With .12e-12 Ends With 999 Ascending,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `2esn` Starts With $`7esn` Starts With _usn4|`1esn`[1000][Null]) Contains Single(`8esn` In 01234567[..0.0][..false] Where Count(*)[9e1..][12e-12..]) Desc Skip (`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})-[`6esn`? *123456789..0x0]->({`6esn`:$usn1 Starts With usn1 Starts With 1e-1,#usn8:$#usn7 Starts With 10.12e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}) Is Null Union Return $`4esn` In 123456789 In `5esn` As @usn5,`8esn`[..7.0e-0][..0xabc] As _usn3 Skip 00[0e-0...9e-1][1e-1..``] Limit 00[0e-0...9e-1][1e-1..``]"), + octest:ct_string("Return *,Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0)[(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..][Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..])..] As `5esn`,usn2 =~$`7esn` =~$`8esn` Skip $``[4.9e12..2.9e1] Remove Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0xabc In 10.12e12)._usn3?.@usn5!,{``:00[$`6esn`]}.`8esn`!,usn2:`8esn`:#usn7 Unwind Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) As _usn4 Union Detach Delete $``[4.9e12..2.9e1],@usn6[.9e12..0e0]"), + octest:ct_string("Remove Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null).`2esn`? Merge usn1=({`5esn`:07 Starts With usn1 Starts With 010})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null}"), + octest:ct_string("Unwind Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] As `7esn` Remove Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where $usn2[.12e12]).usn1?.``!._usn4?,(`7esn` :_usn4)<-[`2esn`?:usn2|:`` *0Xa..7]->({`8esn`:$`` Is Null Is Null})._usn3!._usn4._usn3?,`7esn`(07 =~7.0e-0 =~`8esn`).``.usn2? Union All Remove {`4esn`:`8esn` =~.1e1 =~.0,`4esn`:Count(*) Starts With $_usn4}.@usn5?,count(Distinct 9.1e-1 =~@usn5 =~Count ( * )).`2esn`,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7).#usn7!"), + octest:ct_string("Remove None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`8esn`?.`3esn`?.@usn6?,Extract(`5esn` In 12[0xabc..][$0..] Where `7esn` Ends With 9e12).`8esn` Optional Match `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Where 0e0 Starts With $1000 Starts With `2esn` Match @usn6=(((`3esn` :`4esn`:`7esn`)<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(usn1 :`2esn`:`8esn`))) Union Return Distinct Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],(`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As `6esn`,$123456789 Is Not Null Order By $usn1 Contains `7esn` Contains .9e12 Ascending Limit `6esn` In 9e-12 Merge ((`7esn` {usn2:12.0[..123456789][..01]})-[_usn3{#usn7:Count(*)}]->(`2esn` :_usn3:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})) On Create Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Union All Return *,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null As `6esn`,01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..] Skip [_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789|0e-0 Contains _usn4 Contains 1e-1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567) Limit @usn5[``..][12e-12..] Detach Delete 12e-12 Starts With .9e12 Starts With 0.12,9e-12 Ends With `7esn`,010;"), + octest:ct_string("Detach Delete ({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`3esn`?:`1esn`]-(:`8esn`:#usn7{@usn5:$12 Contains $`7esn` Contains .0})<-[@usn6?:@usn5]->(:usn1{usn1:Count(*)[0.12..2.9e1]}) Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2|9e0[..1e1]) Ends With {`1esn`:7.0e-0[3.9e-1..`1esn`]},$`2esn`[$1000][2.9e1],$usn1 Is Not Null Is Not Null With _usn4(0[true..$7]) =~Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`) =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0) As _usn3,Null Is Not Null Is Not Null Unwind Count ( * )[0e-0..01] As `3esn`;"), + octest:ct_string("Unwind Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)[{_usn3:$0 Starts With 010}] As _usn4 Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12|.1e-1).`1esn`?,All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]).`7esn`!,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).usn1? Union All Return *,$999 Order By _usn3[`2esn`..10.12e12][9e1..true] Descending Skip $`2esn` Ends With $`8esn` Limit All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],.1e-1 Is Null,.9e12[$usn2..][7..] As `2esn` Limit _usn4 Is Null Is Null Where .12e-12 Ends With $`7esn` Merge ``=(({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})) On Create Set usn2:usn2,usn1+=0xabc[$`4esn`..][`8esn`..],#usn7+=Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12])[..None(_usn3 In ``[$``..] Where Null[`2esn`..])][..{`3esn`:.0e-0 Starts With $#usn7 Starts With _usn3,usn2:`6esn` In 9e-12}] On Match Set #usn7 =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct)"), + octest:ct_string("Unwind $`3esn` Is Not Null As `4esn` With Distinct 0x0 Starts With $`5esn` Starts With 9e-12,$`6esn` Ends With 12 Order By Count ( * )[0..][010..] Desc Skip .9e-1[12.0]"), + octest:ct_string("Delete `` =~$`5esn`,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]|12e12 Is Not Null][{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]}],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|$@usn5 In .9e1 In $``) Contains (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null}) Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Create Set (`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8,_usn3+=Null[..07] On Match Set `2esn`+=3.9e-1[.9e-12],`5esn` =.0,`3esn`+=$_usn4 Is Not Null Union Return Count(*)[8.1e1..],Any(`` In $_usn3 Is Not Null Where 12e12[true..][$`2esn`..]) =~{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12} =~{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3} As `3esn` Order By 9e-1[0X0123456789ABCDEF][0] Ascending,`5esn` Contains `6esn` Asc,9e12 Is Null Is Null Ascending Limit (#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})[Any(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)..][Single(_usn3 In ``[$``..] Where Null[`2esn`..])..] With Distinct *,All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Starts With 10.12e12 Starts With #usn7(false =~4.9e12),0e0[`4esn`] Where 1e1 Ends With Null Ends With `7esn` Detach Delete Filter(`2esn` In .9e-12[0e0...9e-1] Where .9e-1 Is Not Null Is Not Null)[Any(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1])..(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})][(`7esn` :#usn7:_usn3{`3esn`:00[0e-0...9e-1][1e-1..``]})<-[_usn3:_usn3|`2esn`{`7esn`:0X7[_usn4..1.9e0][Count ( * )..false],_usn4:.9e-12[9e1..8.1e1]}]-({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]})..Single(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..])],8.1e1 Is Null Is Null,`7esn`(7.0e-0[.._usn4][..0X7],$`5esn`[7..]) Contains [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]"), + octest:ct_string("Remove Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]).usn2.@usn5!"), + octest:ct_string("Create usn2=(((`7esn` :``:usn1)<-[:`4esn`|:@usn5]-(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[?]->(_usn4 :@usn5))),((:`7esn`)) Return *,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null As `6esn`,01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..] Skip [_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789|0e-0 Contains _usn4 Contains 1e-1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567) Limit @usn5[``..][12e-12..] Union All With Distinct *,$0[$`7esn`..$`3esn`]['s_str'...0],usn1 Ends With 12 Order By Count ( * )[0..][010..] Desc Limit 12.0 Starts With 07 Starts With $`3esn` Where @usn6[usn1..][`1esn`..] Match `3esn`=(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}),usn2=((:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]})) Union Match _usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))) With *,`8esn`[..7.0e-0][..0xabc] As `3esn` Order By Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Ascending,Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] Ascending Skip $@usn5[usn1..][$`8esn`..] Where `7esn` Is Not Null With Distinct $`` Ends With 6.0e0,$`6esn` In `2esn`,\"d_str\" Starts With `6esn` Starts With 1.9e0 As _usn3 Order By true Is Null Is Null Descending,(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] Descending,{usn1:`7esn` Is Not Null}[Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8)..{`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3}][Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 9.1e-1[.1e-1])..{usn2:1e1[3.9e-1][.9e-1]}] Descending Skip 010[11.12e-12..]"), + octest:ct_string("Merge (`8esn` :_usn3:_usn3)-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})-[ *..01]->(#usn8 :#usn7:_usn3) Union Return Distinct *,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]) As usn2 Limit [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]} With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Limit #usn7[10.12e12..][\"d_str\"..] Where 9e12[...12e12][..$`2esn`] Union All With Distinct *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Remove Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $@usn5 =~.12e-12).`4esn`?,Single(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]).`8esn`?"), + octest:ct_string("With `8esn` As usn2 Order By Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"]|`7esn`[3.9e-1..][$@usn5..])[..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] Desc,.0e0 Is Null Is Null Descending,$`4esn` =~0e0 Ascending Unwind $usn1 Is Null As `2esn` Return Distinct Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12)[Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12)..][`4esn`(Distinct)..],Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] As `7esn`,None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[..Filter(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0)][..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] As #usn8 Order By {`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])] Asc,`6esn`[`6esn`..] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip `6esn` Is Not Null Union Remove (:_usn4{``:$_usn3[1e-1..]})-[@usn5?:`8esn`|:`2esn`]-(`2esn` :_usn3:_usn3).#usn7.`1esn`"), + octest:ct_string("Unwind (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] As `2esn` Remove {`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}.`7esn`!.@usn5 Union Merge usn1=((_usn4 :`5esn`)-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})) On Match Set Any(`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]).usn1!.``?.``? =false =~4.9e12,usn1 =7.0e-0[3.9e-1..`1esn`] On Match Set usn2:`4esn`:`7esn` Union All Return *,.9e1 Starts With `4esn` Limit 0e0 Ends With 0X7 Ends With .1e1"), + octest:ct_string("Detach Delete (`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})-[`6esn`? *123456789..0x0]->({`6esn`:$usn1 Starts With usn1 Starts With 1e-1,#usn8:$#usn7 Starts With 10.12e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}) Is Null,_usn4 Is Null Is Null Optional Match #usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Union Remove {#usn8:``[$``..],`1esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}.#usn8.#usn8?,`4esn`:`6esn`:`3esn`,`7esn`(9.1e-1 Contains 0xabc).`7esn`"), + octest:ct_string("Detach Delete None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4) Union Merge @usn6=(((`` :`5esn`)-[:`4esn`|:@usn5 *01234567$_usn4]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})-[`1esn`?:`1esn` *07..]-(_usn3 :_usn4))) Match ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})),_usn3=((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Where $usn2 =~$`2esn` =~\"d_str\" Unwind Count(*)[12..][0X0123456789ABCDEF..] As #usn7 Union Create @usn6=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]}))"), + octest:ct_string("Optional Match usn1=(`5esn` :`1esn`),`4esn`=((@usn5 :usn1{usn1:.9e1[12]})) Unwind usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]] As #usn8 Merge @usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}) On Create Set Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0).``? =.9e1[11.12e-12] On Match Set `7esn` =Filter(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) Starts With All(`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]) Starts With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`)"), + octest:ct_string("Merge ((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) On Create Set (`6esn` :usn1)<-[usn1{`2esn`:usn2 Ends With .0}]->(_usn3 :_usn3:_usn3)-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})._usn3? =Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}],@usn5 =.9e1[...12e12] Unwind All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] As #usn8 Merge (#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) On Create Set Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])._usn3 =_usn4[7][8.1e1],#usn7+=Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()],`1esn`:#usn7:_usn3 Union Unwind Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)[..None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null)][..[@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`]]] As `3esn` Optional Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),`5esn`=(`8esn` $12)<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}) Where $`` =~$_usn3"), + octest:ct_string("Return Distinct *,1000[Null..] As `1esn`,.9e1[#usn7..] As `7esn` Limit Count ( * ) In 999 Unwind 01234567[..Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null)][..999] As usn2"), + octest:ct_string("Unwind 0.0[0x0..0.12]['s_str'..false] As `2esn` Merge `8esn`=((`4esn` )<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})) On Match Set None(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).@usn5! =$`2esn`[8.1e1] On Create Set #usn8+=12 In Count(*) In 0e0,`8esn` =$usn2[.1e1..][.0e-0..],`5esn`+=true[`6esn`..10.12e12] Remove {`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567}._usn3!,Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]).@usn6?;"), + octest:ct_string("Create ((:@usn6:_usn4$`6esn`)<-[_usn3:_usn3|`2esn`{`7esn`:0X7[_usn4..1.9e0][Count ( * )..false],_usn4:.9e-12[9e1..8.1e1]}]-({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})<-[`2esn`?:usn2|:`` *0Xa..7]->(`` :`5esn`)) Create (({_usn4:01234567[6.0e0][$usn2]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})),(`7esn` :`8esn`:#usn7{`4esn`:`8esn` =~.1e1 =~.0}) Union All Remove (_usn3 {`5esn`:`8esn` =~.1e1 =~.0})-[?{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]}]-({_usn3:$`8esn` Is Null})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`).@usn6.``! Return Distinct *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By 01 Ends With \"d_str\" Asc,$_usn3[$`8esn`..$`4esn`] Descending,Null[12e-12..] Desc Skip None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) =~[@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] Limit $``[0.12..] Union Remove (`` :`3esn`{`5esn`:``[$``..]})-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}).`7esn`,[`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$`` Is Not Null].`8esn`._usn3?,(`` :usn2)-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}).usn1! Delete None(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Is Not Null;"), + octest:ct_string("Match ``=((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),(((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}))) Union All Delete ``(Distinct #usn7 =~`5esn` =~``)[Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..])..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)],4.9e12[1e1..'s_str'][Count(*)..0X7] Unwind .0e0 Is Null Is Null As #usn8 Detach Delete 7.0e-0 Is Null Is Null Union Unwind `4esn`(Distinct 01[..0.12],$`8esn` Is Null) Contains All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]) As `1esn` Return Distinct *,Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,`3esn` Contains 01234567 Contains .9e-12 Order By 12 =~$@usn5 Desc,0Xa In 0.12 In $#usn7 Descending Create ``=((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})),_usn3=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`)))"), + octest:ct_string("Remove (:@usn5{`4esn`:.0e0[$`6esn`..]})-[? *0X0123456789ABCDEF..0]-({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`).#usn7! Create (@usn6 :_usn4) Union Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null"), + octest:ct_string("Delete (`8esn` :_usn3:_usn3{`6esn`:9e0[..1e1],@usn6:0x0 =~$7 =~Null})<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`8esn` *1000]->(usn1 :_usn4) In Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where ``[$``..]) In {usn2:.9e-1 Is Not Null Is Not Null},1e1 Starts With `8esn` Starts With .9e0 Return Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) =~Filter(`8esn` In 01234567[..0.0][..false] Where .9e12 =~`5esn` =~07) =~Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0|12[0xabc..][$0..]) As `3esn`,1000[..0e0][..$`6esn`],`7esn` Ends With `7esn` Ends With $`3esn` As #usn8 Order By {`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) Descending,All(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Starts With Filter(_usn3 In ``[$``..] Where .0e0[1e1..][01234567..]) Starts With `3esn`(Distinct) Descending Skip 1e1 Ends With Null Ends With `7esn` Limit {`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]]"), + octest:ct_string("Delete `1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)],_usn4 In `3esn` In 7.0e-0,'s_str' =~.9e1 =~3.9e-1 Union All Delete Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 07[.0e0][3.9e-1]) Contains Extract(`` In $_usn3 Is Not Null),Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Merge (((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999}))) Optional Match #usn7=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),`7esn`=((#usn7 )) Union All With Distinct None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn`[..0x0][..\"d_str\"])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1])..Single(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])] As `4esn`,Null Is Not Null Is Not Null Order By {`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1} In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) Descending,$`6esn` In `2esn` Ascending,usn2 Starts With usn1 Descending Skip 12e-12[.0..] With Distinct *,.9e-12[9e1..6.0e0][`1esn`..9e0] As @usn6,$`6esn` In $`3esn` In 9e1 Order By 5.9e-12 Ends With 1e1 Ends With false Descending,$`2esn` Starts With .12e12 Starts With 3.9e-1 Ascending,`6esn`[`6esn`..] Descending Skip $_usn4 =~$_usn4 =~2.9e1 Where .9e0 Is Null Is Null Remove Any(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).`2esn`!,({``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-(:`3esn`{_usn4:Count(*) =~`5esn` =~$usn2,`7esn`:$123456789[$_usn3..][$usn2..]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`).@usn6.@usn5?"), + octest:ct_string("Remove [`5esn` In 12[0xabc..][$0..] Where _usn3 Ends With 01 Ends With .1e-1].@usn5!.`3esn`,@usn6($`` Is Not Null Is Not Null,.9e0 In 9.1e-1 In $123456789).`8esn`,All(`` In $_usn3 Is Not Null Where 4.9e12 Contains .12e12 Contains 0xabc).`6esn`? Return Distinct 9e-12 In 5.9e-12 As ``,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0x0 Contains $`1esn` Contains 0.0) In None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0) As `5esn` Order By 0e0 Ends With 0X7 Ends With .1e1 Desc,(#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Asc,0x0 =~$7 =~Null Desc"), + octest:ct_string("Remove All(`2esn` In .9e-12[0e0...9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4)._usn3!.`1esn`? Union All Delete .9e1 In 9e-1 In `4esn`,010[..@usn5][.._usn4] Match (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))),`2esn`=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))) Detach Delete Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null)[[`2esn` In .12e-12[$@usn6..5.9e-12] Where 00]][Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12])];"), + octest:ct_string("Delete {#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0} Is Null Is Null,`3esn` In 0X7 Return *,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] As `7esn` Skip Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12) In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null|.12e12[$12..4.9e12][11.12e-12..9e12]) In {`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``} Match ``=((@usn6 :`5esn`{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *0x0..{`3esn`:12[0xabc..][$0..],@usn5:`6esn` Is Not Null Is Not Null}]->({#usn8:7.0e-0[3.9e-1..`1esn`],usn1:.0e0[..1e1][..$1000]})-[:`4esn`|:@usn5 *01234567$_usn4]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})),(((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})))"), + octest:ct_string("With 123.654 Is Not Null Is Not Null As `7esn`,({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]})[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where $`8esn`[$``..$`1esn`][9e-12..$7])] Skip `2esn` =~usn1 Detach Delete (`3esn` :#usn7:_usn3)<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) Ends With [_usn3 In ``[$``..] Where @usn5 Ends With 0],Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1])[[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null|`3esn`[3.9e-1..$`5esn`]]..][All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `8esn` Is Null)..],$1000 Contains 01234567 Contains 0X7"), + octest:ct_string("Match (((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) Unwind 0X7 Starts With 1e1 Starts With $12 As #usn8 Remove (#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *01234567]->(`5esn` :`2esn`:`8esn`).#usn7!.`3esn`!.@usn6! Union All Unwind [usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]|'s_str' Is Null] Is Null As _usn4 Union Merge usn1=(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ) Merge ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})) On Create Set @usn5+=_usn4 Ends With .0 Ends With 7,None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0e-0 Contains _usn4 Contains 1e-1).`6esn`! =Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) On Create Set [_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8].`5esn`! ={_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12),#usn8 =(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] Match @usn6=(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]}),`8esn`=(`` {_usn4:9e0[..1e1]})"), + octest:ct_string("Return Distinct {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As ``,$`8esn`[12.0..][4.9e12..],.1e-1 Ends With @usn6 As @usn6 Order By false Starts With 3.9e-1 Asc,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Descending Delete `2esn`[..9.1e-1][..0xabc],`6esn`[`5esn`..][0.12..],0.0[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])..] Unwind $`6esn`[$`8esn`..][false..] As `6esn` Union All With 123456789 =~$`1esn` =~#usn7 As `5esn`,Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12e12 Starts With 4.9e12 Starts With 0e0)[Extract(`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0|12e12[..$`8esn`][...0e-0])] As `5esn`,{#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})] Limit $12 Contains $`3esn` Where .1e-1 Starts With 1000 Starts With $`1esn` Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1)._usn3!,Any(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).#usn8? Remove None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])._usn4._usn4,Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where usn1[..10.12e12][..7]).``? Union All Remove (`` :@usn6:_usn4{`4esn`:00 Is Not Null Is Not Null})-[`1esn`:usn1|:#usn8]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}).`6esn`!.@usn5?._usn4?,@usn5:_usn4,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]).`2esn`!.`8esn`!._usn3!"), + octest:ct_string("Merge `2esn`=((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) Create #usn7=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Merge _usn4=(((`2esn` {`7esn`:Count(*)[.0e0..][#usn7..]})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)-[:#usn8|:`4esn` *12..0Xa]->(`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]}))) On Match Set _usn4 =$`6esn` In .9e12 In $#usn7,@usn5 =12 Contains _usn3,None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null).`8esn`? =11.12e-12 Contains 9e-12 On Match Set `2esn` =$`3esn`[010..][9e-1..],[`8esn` In 01234567[..0.0][..false] Where 5.9e-12[.1e1][$#usn8]|12 Contains usn2 Contains $usn2].#usn7 =01234567[..0.0][..false],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789).usn1!.``! =010 Starts With 0.0 Starts With .0e0 Union All Optional Match @usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),`3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})) Create `3esn`=(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`),(((:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]})-[`8esn` *..7{usn2:12.0 Contains $_usn4 Contains $usn2}]-(`8esn` :`7esn`{`6esn`:_usn4 Is Not Null Is Not Null}))) Delete .9e-1 =~.9e-1 Union With Distinct *,$7 Contains _usn4 Contains $`1esn`,0e-0[$`2esn`][8.1e1] As @usn5 Order By 123456789[\"d_str\"..] Asc,9.1e-1[$`4esn`..][$`4esn`..] Ascending"), + octest:ct_string("Merge (:_usn3:_usn3{`5esn`:`2esn` Is Not Null Is Not Null,`7esn`:2.9e1})<-[`7esn`*..]-(`7esn` :usn1) Return Distinct `2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,1e1 In .1e-1 In .0 Order By Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) Asc Skip 00 =~.9e-12 =~usn1 Limit 12e12 Ends With usn1"), + octest:ct_string("Remove @usn5:`7esn`,{_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12}.usn2!.`1esn`?.#usn7"), + octest:ct_string("Match `6esn`=(usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}),(({_usn4:01234567[6.0e0][$usn2]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})) Union All Remove ({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})<-[`3esn`?:`5esn`]->(`2esn` ).``!,$12.`8esn`!.usn2!._usn4,None(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]).`3esn`?.@usn6!._usn3!"), + octest:ct_string("Remove @usn5(Distinct Null =~true =~.1e-1,12e12[..123456789][..false])._usn4!,All(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]).`4esn`? Optional Match `5esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}),``=((`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]})-[?:@usn6|:_usn3 *999..]->(`1esn` :`1esn`{`5esn`:$`4esn`[..2.9e1][..07]})<-[`5esn`?:#usn7|:`8esn` *010..]->(:@usn5{usn2:$usn1[$12..]})) Where true Starts With 2.9e1 Starts With 9e1 With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) Starts With count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) Where $`3esn`[..`1esn`][..$`7esn`] Union Unwind Extract(_usn4 In Count(*)[9e1..][12e-12..] Where $_usn4[..usn2]|`1esn` Starts With 999 Starts With 3.9e-1) =~(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}) =~Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]) As _usn3 With $usn2 In usn1 In 1e-1 Skip .9e12 In 12e12 Limit Null[10.12e12..] Where 9e12[...12e12][..$`2esn`] Merge ((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) On Create Set #usn7+=$#usn7 Starts With #usn7,_usn3 =`5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]],`8esn` =07 Ends With @usn6 Ends With _usn3 On Match Set #usn7+=10.12e12[Count(*)..],#usn8 =@usn6[.9e12..0e0] Union Create ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6) Match ((:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[? *12..0Xa]-(`2esn` :#usn7:_usn3)<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})),((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`5esn`]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)) Unwind 10.12e12 In `3esn` In $usn2 As #usn7"), + octest:ct_string("Optional Match #usn7=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),`7esn`=((#usn7 )) Return *,`1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null],#usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(`5esn` In 12[0xabc..][$0..] Where .0e0[1e1..][01234567..]) As `2esn` Limit (:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})<-[``:`8esn`|:`2esn` *12..0Xa]-(usn2 :@usn5{`3esn`:$usn1 Is Null})[..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 8.1e1 Is Null)][..#usn7(Distinct usn2 Ends With .0)] Union Merge @usn5=(({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) On Create Set {@usn6:$_usn3 Is Not Null Is Not Null}.usn2! =.9e-12[0e0...9e-1],usn2 =12e12[07..]"), + octest:ct_string("Create `4esn`=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6),`3esn`=((`6esn` {`4esn`:$@usn5[$#usn8..][_usn3..]})<-[`8esn`?:`7esn`|@usn6 *..7]->(`5esn` {`2esn`:`1esn` =~0 =~_usn4})) Union All Create `3esn`=(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})),`5esn`=(((_usn3 )-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3}))) Union Delete `2esn`[..9.1e-1][..0xabc],Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|.9e12 Starts With 6.0e0 Starts With .1e1) Is Null Is Null,\"d_str\" =~9e-12 =~`5esn` Optional Match _usn3=((usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1})),usn1=(:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}) Where Null Starts With 9e1 Starts With ``;"), + octest:ct_string("Remove All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0).@usn6 Union Return Count(*)[8.1e1..],Any(`` In $_usn3 Is Not Null Where 12e12[true..][$`2esn`..]) =~{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12} =~{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3} As `3esn` Skip 12 Contains $usn1 Contains 0 Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),(({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})<-[`4esn`:_usn4|`1esn` *123456789..0x0{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})-[_usn3 *..7]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})) Merge ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?]->(:@usn5{usn2:$usn1[$12..]})) On Match Set _usn3+=$`2esn` Starts With #usn7 Starts With 12e12,[`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1]._usn3!.`5esn`!._usn4 =$`1esn` Starts With Count(*) Starts With $`8esn`,`5esn`+=0X7 =~$123456789 =~$`` Union All Delete 0.0[0x0..0.12]['s_str'..false]"), + octest:ct_string("Return Distinct All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Order By `6esn`[0x0..@usn5][$1000...9e-12] Desc,Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null Descending,Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Asc Limit 11.12e-12[010..11.12e-12] Optional Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Where `4esn` Starts With $_usn3 Starts With .9e-12 Union All Remove (`` :@usn6:_usn4{`4esn`:00 Is Not Null Is Not Null})-[`1esn`:usn1|:#usn8]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}).`6esn`!.@usn5?._usn4?,@usn5:_usn4,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]).`2esn`!.`8esn`!._usn3! Union All Create (`1esn` :``:usn1{usn1:123.654 Ends With 0Xa Ends With .12e12})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})"), + octest:ct_string("Remove (:`7esn`{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[#usn8?:`4esn`|:@usn5]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})._usn3!,Any(`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0).usn1"), + octest:ct_string("Detach Delete usn2[Count ( * )..07],$999 =~`6esn` Unwind #usn8[7..@usn5] As `` Unwind $123456789[$1000..usn1][#usn7..9e-12] As `7esn` Union All With Distinct Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) As `1esn`,0[..$@usn5] As `` Order By {`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending Limit 12 Contains _usn3 Where $`2esn` Ends With 2.9e1 Ends With $usn1 Detach Delete 5.9e-12[.1e1][$#usn8] Union All Remove Single(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12).`6esn`,(:@usn5{`4esn`:.0e0[$`6esn`..]})-[? *0X0123456789ABCDEF..0]-({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`)._usn3._usn3!.`4esn`?,{@usn5:'s_str' Is Null,`3esn`:Count(*)[12..][0X0123456789ABCDEF..]}.`6esn` Remove Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|$_usn3 Is Not Null).`5esn`!,count(Distinct $`3esn` Starts With 0Xa).#usn7;"), + octest:ct_string("Create usn1=(:`3esn`{_usn4:7.0e-0 =~$12 =~5.9e-12}) Return #usn7[10.12e12..][\"d_str\"..] As `1esn`,9e-1 Contains $@usn5 Contains Count(*),`` Is Not Null Is Not Null As usn1 Order By @usn6 In 3.9e-1 In 9e-12 Asc,1.9e0[$12][``] Desc,12e12 =~#usn7 =~.9e-1 Asc Limit 0X7 =~$123456789 =~$`` Union All Return #usn8[7..@usn5],00 Is Null Is Null Order By 0Xa Starts With .0 Desc,01234567[$#usn7][.0] Desc Skip $`4esn`[..2.9e1][..07] Limit .9e-1[12.0] Delete $_usn4 Starts With 0e-0 Starts With 1e-1,.1e-1[@usn6..]"), + octest:ct_string("Create (:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}),_usn3=((@usn5 :usn1)-[? *123456789..0x0{`8esn`:`2esn` Is Not Null Is Not Null}]->(`` :usn1)) Return Distinct (`2esn` :`6esn`:`3esn`)<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789)..Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1])][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]]..Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 9.1e-1 Is Null|9e1 Contains 4.9e12 Contains .9e0)],00 As `8esn`,_usn3 Ends With .12 Ends With `6esn` Limit Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}]"), + octest:ct_string("Remove {_usn4:$#usn7 Is Not Null Is Not Null,`3esn`:9.1e-1 In #usn8}._usn4?,Any(`8esn` In 01234567[..0.0][..false] Where 6.0e0 Is Not Null).@usn5,`6esn`($0 Starts With 010)._usn3! Unwind 10.12e12 In `3esn` In $usn2 As #usn7 Merge ((#usn8 :#usn8)) On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] On Match Set `2esn`+=9e-12 In usn2,`7esn`($usn1 Is Not Null).`1esn`! =@usn5 Ends With 's_str' Ends With 01,None(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).@usn5! =$`2esn`[8.1e1] Union Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Unwind {@usn6:\"d_str\" =~9e-12 =~`5esn`}[#usn8(Distinct 999 Starts With .9e12 Starts With 3.9e-1,true Contains 0x0)..[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010]][All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)..{`4esn`:0 Starts With 0Xa Starts With $0}] As `8esn` Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Where $`6esn` Starts With `4esn` Union All Detach Delete ({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`3esn`?:`1esn`]-(:`8esn`:#usn7{@usn5:$12 Contains $`7esn` Contains .0})<-[@usn6?:@usn5]->(:usn1{usn1:Count(*)[0.12..2.9e1]}) Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2|9e0[..1e1]) Ends With {`1esn`:7.0e-0[3.9e-1..`1esn`]},{#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]),$#usn7 In .12e-12 Remove Any(@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null).#usn8?;"), + octest:ct_string("Return Distinct *,$#usn7 Is Not Null Is Not Null As `1esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4 Order By 9e12 Ends With 07 Ascending,\"d_str\" =~9e-12 =~`5esn` Desc,Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999)[Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])][[_usn3 In ``[$``..] Where @usn5 Ends With 0]] Descending Skip `` =~$`5esn`"), + octest:ct_string("Create (((`6esn` :`5esn`{usn2:`8esn` Is Null})-[usn1?]-({@usn6:``[$``..]})<-[ *0x0..{`3esn`:$@usn6 Is Not Null Is Not Null}]-({``:_usn3[$_usn3][usn1]}))) Create ({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]});"), + octest:ct_string("Detach Delete $7 Is Null Is Null Unwind 00 Is Not Null As `1esn` Merge ((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})) On Match Set usn1:`2esn`:`8esn`,`1esn` =$`` Is Not Null,_usn4 =0.0[..Null][..9e-12] On Match Set `2esn`+=.1e1 Is Not Null Is Not Null,`5esn`+=Count ( * )[..1.9e0][..`8esn`] Union All Remove All(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count ( * ) Ends With `6esn` Ends With .12e12).`7esn`?"), + octest:ct_string("Unwind 0[..$@usn5] As @usn5 Union Create `3esn`=((:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]-(`8esn` $12)<-[#usn8? *12..0Xa]-(:#usn8$#usn8)),((usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1})-[usn1:`7esn`|@usn6 *..0xabc]->(@usn5 :usn2)<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}))"), + octest:ct_string("Merge _usn3=((:`7esn`)) On Create Set `` =Filter(`7esn` In .12e12[Count(*)..] Where \"d_str\" =~9e-12 =~`5esn`)[(`4esn` )<-[`7esn` *999..{usn2:12e12 =~#usn7 =~.9e-1,`6esn`:5.9e-12 =~$@usn6}]-(#usn8 :_usn4{`1esn`:$`5esn`[7..],#usn7:Count ( * )[..`8esn`]})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})..None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`5esn` Starts With 0X7 Starts With 1e1)],[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|.9e12 Starts With #usn8 Starts With 00].``! =9e1 Contains 4.9e12 Contains 123456789,`5esn`+=$usn2[0e0][$7] On Create Set [_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8].`5esn`! ={_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12),#usn8 =(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] Union Detach Delete $1000 Ends With 3.9e-1,Count ( * )[7],1.9e0 In $0 Union Optional Match (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where 123.654 Starts With 2.9e1 Remove All(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1).usn1!.`7esn`.`2esn`!,Filter(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8).@usn5?,(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})._usn3.@usn6!.@usn5"), + octest:ct_string("Unwind `7esn` Ends With _usn4 As _usn3 Return Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] As `5esn` Order By 0 Starts With 0Xa Starts With $0 Ascending,$`2esn`[$usn1..] Asc,Count(*) Starts With $_usn4 Descending Limit All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..] Union Merge @usn6=(@usn5 {_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) On Create Set `2esn`+=Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],#usn8 =.9e-12[0e0...9e-1] On Match Set `6esn` ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])],All(`5esn` In 12[0xabc..][$0..] Where _usn3 Ends With 01 Ends With .1e-1).`6esn`? =12.0[..Count(*)][..5.9e-12] Unwind {#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}[{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}..] As _usn3"), + octest:ct_string("Return Distinct (`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null}) Is Null As _usn3,All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12),0.12 =~2.9e1 =~12e-12 Order By 12 Contains _usn3 Descending Union Remove Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0[..$@usn5]).@usn6?,`1esn`:_usn3:_usn3"), + octest:ct_string("Merge ({_usn4:$`3esn` In 's_str' In $#usn7}) On Match Set Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 999 Starts With .9e12 Starts With 3.9e-1).`6esn`.@usn6!._usn4? =`4esn`[0.0..][.1e-1..],Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).@usn5! =9e1 Contains 4.9e12 Contains .9e0,`1esn`+=00[0e-0...9e-1][1e-1..``] On Match Set Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1)._usn4 =$7 Contains _usn4 Contains $`1esn` Remove All(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).``!,{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null}.usn2? Optional Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),(({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})<-[`4esn`:_usn4|`1esn` *123456789..0x0{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})-[_usn3 *..7]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})) Union Remove Filter(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])._usn4?,Single(@usn6 In 00 =~.9e-12 =~usn1 Where 0x0 Contains $`1esn` Contains 0.0).`4esn`,@usn5:`4esn`:`7esn` Detach Delete false Is Not Null Is Not Null,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]),0e0[`3esn`..][.9e-1..] Union All Detach Delete .0e0[$`6esn`..],Count ( * )[..2.9e1],Count(*)[0.12..2.9e1]"), + octest:ct_string("Create `3esn`=((:`2esn`:`8esn`)<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})) Return Distinct *,Null[...9e1] As `2esn` Order By $12[01] Ascending,$#usn7 In .12e-12 Descending,$`8esn`[$``..$`1esn`][9e-12..$7] Descending Skip 01234567[6.0e0][$usn2]"), + octest:ct_string("Remove {`8esn`:Null[..07]}._usn4?.`8esn`?,{`4esn`:$123456789[$_usn3..][$usn2..]}.usn1,[`8esn` In 01234567[..0.0][..false] Where 01[..0Xa]].``.@usn5?.`2esn`! Remove Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7]).#usn8?.`3esn`?.@usn5"), + octest:ct_string("Optional Match (:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[`6esn`?:`4esn`|:@usn5{usn1:00,`1esn`:.0e0[1e1..][01234567..]}]->(`3esn` ) Remove `3esn`:`7esn`,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}._usn3 Create _usn4=(`` :usn1)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`) Union Return Distinct Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],(`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As `6esn`,$123456789 Is Not Null Order By $usn1 Contains `7esn` Contains .9e12 Ascending Limit `6esn` In 9e-12 Merge ((`7esn` {usn2:12.0[..123456789][..01]})-[_usn3{#usn7:Count(*)}]->(`2esn` :_usn3:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})) On Create Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)]"), + octest:ct_string("Return Distinct *,_usn3[`2esn`..10.12e12][9e1..true] As `1esn`,1.9e0[$12][``] As `5esn` Skip .0e0[$`1esn`][.9e-12]"), + octest:ct_string("Remove `3esn`:`7esn`,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}._usn3 Union Remove [`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]].`6esn`,All(`` In $_usn3 Is Not Null Where $123456789 =~12 =~7).``!"), + octest:ct_string("Return Distinct Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn` Order By (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] Ascending,12 Contains $usn1 Contains 0 Ascending Skip Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null)[[`2esn` In .12e-12[$@usn6..5.9e-12] Where 00]][Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12])] Limit .9e0 Is Null Is Null Union All Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where `1esn`[9.1e-1]|$`8esn` Starts With `2esn`).``!.`5esn`.``! Union Remove (:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}).`3esn`?,Extract(usn2 In .0e0[$`6esn`..] Where usn2 Ends With .0)._usn4?.@usn5._usn3,{usn2:.9e-1 Is Not Null Is Not Null}.@usn6! Remove Any(`` In $`5esn` Starts With 0X7 Starts With 1e1).usn2?,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5[$``]].`6esn`!,Single(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12).`7esn`! Delete [usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},`7esn` Contains $7 Contains 07"), + octest:ct_string("Delete $`3esn` Is Not Null Is Not Null,@usn5 Ends With 0,9e0[$usn2][0] Return #usn8[7..@usn5],00 Is Null Is Null Order By 0Xa Starts With .0 Desc,01234567[$#usn7][.0] Desc Skip $`4esn`[..2.9e1][..07] Limit .9e-1[12.0] Optional Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Where `5esn` Contains `6esn` Union Optional Match @usn6=((`` :usn1)-[ *0..010]->(_usn4 :`5esn`)),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})) Where 1e1 Is Not Null Is Not Null Detach Delete .12e12[$12..4.9e12][11.12e-12..9e12],$_usn4 =~$_usn4 =~2.9e1 With *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Where Null[`2esn`..] Union Unwind 0.12[07..3.9e-1] As _usn3 Return *,`` Is Not Null Is Not Null As _usn4 Order By [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null Ascending Limit 999[0.12..8.1e1]"), + octest:ct_string("Remove count(Distinct 12e12 Starts With 4.9e12 Starts With 0e0,1e-1[..$@usn5][..0xabc]).`7esn`,{@usn5:$0 Starts With 010}.`3esn`!.``!,Any(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 In 123.654 In $`8esn`).`5esn`? Unwind 7.0e-0[3.9e-1..`1esn`] As _usn3 Union Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Unwind {@usn6:\"d_str\" =~9e-12 =~`5esn`}[#usn8(Distinct 999 Starts With .9e12 Starts With 3.9e-1,true Contains 0x0)..[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010]][All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)..{`4esn`:0 Starts With 0Xa Starts With $0}] As `8esn` Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Where $`6esn` Starts With `4esn`;"), + octest:ct_string("Remove #usn7:`8esn`:#usn7,usn1($@usn5[...9e-1][..$usn1],$`3esn` Ends With 010 Ends With $`7esn`).`3esn`,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0).`8esn`?.#usn8? Remove None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where .9e1[...12e12]).@usn5,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01[.9e-12..]].#usn7!.#usn7!.usn1!"), + octest:ct_string("Create (((:_usn4{_usn3:010 Starts With 0.0 Starts With .0e0})-[_usn4?:``|:`3esn`]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(usn1 {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}))),`1esn`=({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(_usn3 :`6esn`:`3esn`) Union All Unwind (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] As `7esn`;"), + octest:ct_string("With Distinct All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7])[..Extract(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..])],Count(*) Is Not Null Is Not Null As `4esn`,9e12 Ends With 07 Order By $`2esn`[$1000][2.9e1] Desc,9e1 Ends With .9e0 Descending,@usn5 Is Null Is Null Desc Remove Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where ``[..$#usn7]).usn1?,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})-[`8esn`:`3esn`|:_usn3*..{`2esn`:.9e-1 Ends With `8esn`,``:0[..$@usn5]}]-(`5esn` :`7esn`{`7esn`:$_usn3[.1e1..][$`1esn`..],`5esn`:.12e-12 =~9e12 =~1e-1}).`4esn`!.#usn8;"), + octest:ct_string("Unwind Filter(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``])[Any(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)..][(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})..] As @usn5 Remove (`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1})<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}).@usn6.#usn8?,[_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]].`1esn` Unwind Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()] As `8esn`"), + octest:ct_string("Detach Delete [`` In 0.12[3.9e-1] Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`|Null[10.12e12..]] In {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] Match ((@usn6 {`8esn`:999[..@usn5][..`1esn`]})-[usn1?:`3esn`|:_usn3]->(`2esn` {`7esn`:Count(*)[.0e0..][#usn7..]})<-[`8esn`:`3esn`|:_usn3 *123456789..0x0{`8esn`:$`3esn` Ends With 010 Ends With $`7esn`,usn2:7.0e-0[$usn2..0.12][$``..0]}]-(`` :_usn4)),`2esn`=((#usn8 {#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})) Where _usn4['s_str'..] With Distinct $`4esn` In 123456789 In `5esn` As @usn5,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12) Skip 1.9e0 =~0x0 Limit 01234567[$#usn7][.0] Union All With Distinct *,$12 Contains $#usn8 Contains 01 As usn1 Order By 0X7[`4esn`..][`3esn`..] Ascending,$#usn7 In .12e-12 Ascending,$`6esn` In `2esn` Ascending Where $_usn3[1e-1..] With Distinct 12e-12 Ends With @usn5 Ends With $`2esn` As `6esn`,$123456789[#usn8][.9e-12],@usn5 Contains _usn3 Contains 00 As _usn4 Order By Count(*)[0e0..] Ascending,12e-12 Ends With @usn5 Ends With $`2esn` Desc Union Create (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) Merge `5esn`=(`7esn` :`8esn`:#usn7{`4esn`:`8esn` =~.1e1 =~.0}) On Match Set #usn8:`5esn`;"), + octest:ct_string("Unwind 0e-0 In $1000 In .9e1 As _usn4 Remove (`8esn` {`3esn`:#usn8[`2esn`]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1).`1esn`!.`5esn`?.@usn5! Union Merge ((_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) On Create Set _usn3:#usn7:_usn3 Union Remove Filter(`5esn` In 12[0xabc..][$0..] Where `7esn`).`5esn`?.#usn7,Filter(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]).`4esn`.`5esn`?.`3esn`?"), + octest:ct_string("Return *,.0e-0[0e0..00][.9e1..12] Order By (:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[`7esn`?]->(`5esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(#usn8 {_usn3:$_usn4 Contains .12e-12}) Ends With `4esn`($usn2 In usn1 In 1e-1,01[Count(*)..0e-0][7..$`2esn`]) Ascending Union All Delete Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null),.0e-0 =~$`7esn` =~$0"), + octest:ct_string("Merge `2esn`=((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Create @usn5=((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})-[`6esn`? *..0xabc{``:$_usn4[Null]}]->({usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`6esn` {_usn3:$_usn4 Contains .12e-12})) Unwind 0Xa Contains $999 Contains 0Xa As _usn4;"), + octest:ct_string("Return 123.654 Starts With Count ( * ) As `4esn`,(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})-[usn1?:usn1|:#usn8*..]-(`7esn` {`3esn`:.9e-1 Is Null})[..Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 's_str'[12][00])][..usn2($#usn8[...9e1])],Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..] As `8esn` Order By .9e0 Is Null Is Null Asc Skip @usn6[.9e12] Limit `4esn` Starts With $_usn3 Starts With .9e-12 Create ((usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1})),((`2esn` {``:.0e0[$`6esn`..]})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(`6esn` :`3esn`)<-[`7esn`?:`3esn`|:_usn3 *..0xabc]->(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null})) Union All Create ((usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1})),((`2esn` {``:.0e0[$`6esn`..]})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(`6esn` :`3esn`)<-[`7esn`?:`3esn`|:_usn3 *..0xabc]->(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null}))"), + octest:ct_string("Remove Any(`` In $`5esn` Starts With 0X7 Starts With 1e1).usn2?,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5[$``]].`6esn`!,Single(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12).`7esn`!"), + octest:ct_string("Delete {usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0xabc In 10.12e12)..][0X7..],010[..@usn5][.._usn4]"), + octest:ct_string("With *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Skip 0Xa Ends With #usn8 Ends With usn2 Merge (((_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})<-[`4esn`?:_usn3|`2esn` *0..010]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`}))) Remove (`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``!,usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4! Union All Merge `1esn`=((@usn6 :usn2)<-[`7esn`?:`3esn`|:_usn3 *..0xabc]->(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0})) On Create Set [@usn6 In .9e12 Starts With #usn8 Starts With 00|#usn7[..0X0123456789ABCDEF]]._usn4?.`4esn` ={usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])],Single(`5esn` In 12[0xabc..][$0..] Where $123456789 Is Not Null).usn2? =Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0[..$@usn5]|`1esn`[9.1e-1]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where Count(*) Ends With `3esn` Ends With `7esn`] =~Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null),`3esn`+=$`5esn` Is Not Null Is Not Null On Match Set None(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).@usn5! =$`2esn`[8.1e1] Remove {_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}.`1esn` Union All Optional Match (:usn1{``:.9e1[..`5esn`]})"), + octest:ct_string("Delete usn2 Starts With usn1,1000 In 123.654 In $`8esn`,{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}[@usn6(Distinct 12e12 Ends With $`3esn` Ends With 11.12e-12)..count(Distinct 07 Ends With @usn6 Ends With _usn3,$@usn5[..1e-1])][({@usn5:#usn7[`5esn`..`2esn`][$`4esn`...1e1],`6esn`:Count(*) =~`5esn` =~$usn2})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})..Extract(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..]|123.654 Starts With 2.9e1)] Union All Unwind `7esn` Is Not Null As #usn7 Merge `7esn`=({_usn3:$`8esn` Is Null}) On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 On Create Set [@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]].`3esn`?.`6esn`! =Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..])[(usn1 )<-[`8esn`?:usn2|:``]->(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})..0Xa],`2esn`+=$`2esn` Contains false Contains 123456789,`3esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)] Optional Match (usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}),`3esn`=((@usn6 :`6esn`:`3esn`)<-[`1esn`? *0X0123456789ABCDEF..0{`4esn`:9e1 Ends With .9e0}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})) Where 1e-1 =~0.0 =~9.1e-1"), + octest:ct_string("Optional Match ((({`8esn`:$`` Is Null Is Null})<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`3esn`?:`1esn`]-(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}))),`3esn`=((:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]-(`8esn` $12)<-[#usn8? *12..0Xa]-(:#usn8$#usn8))"), + octest:ct_string("Create `7esn`=((`2esn` :usn2)-[usn2:`4esn`|:@usn5 *01234567]->(:`5esn`{`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567})<-[:#usn8|:`4esn`{usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})),@usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Merge `6esn`=((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) On Create Set `2esn`+=Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],#usn8 =.9e-12[0e0...9e-1] Union Merge ({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) On Create Set #usn7 =Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Null Is Null,`4esn`+=$_usn4 =~$_usn4 =~2.9e1 Merge `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Union Unwind 1.9e0 =~$`8esn` =~01234567 As usn2 Create ((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}));"), + octest:ct_string("Match `4esn`=({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}) Unwind None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} As `7esn` With Distinct *,'s_str'[1e-1] As usn1,_usn3[`2esn`..10.12e12][9e1..true] As `1esn` Order By $`8esn`[$``..$`1esn`][9e-12..$7] Descending,$`` In $usn2 Desc,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Ascending"), + octest:ct_string("Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set usn1+=9e0[..1e1] On Match Set usn1+=Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],@usn6+={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) Union All Optional Match ``=((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})),`3esn`=((`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})) Union All Match (`1esn` {#usn8:.12e12[Count(*)..]})<-[{`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}]-(:@usn5) Where $`` Is Null Is Null"), + octest:ct_string("Merge (`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1}) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7]"), + octest:ct_string("Return Distinct 10.12e12[..1.9e0][..Null] As `8esn` Skip `1esn`[..0x0][..\"d_str\"] Create `3esn`=((:`2esn`:`8esn`)<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]}));"), + octest:ct_string("Remove None(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).``?.@usn5?,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).`2esn`;"), + octest:ct_string("With *,$_usn3 Contains usn2 Contains 0xabc,(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`)<-[usn2 *1000{usn1:Null Starts With $`4esn` Starts With $#usn7}]->(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})[{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}][{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}] As @usn5 Order By .9e12 Starts With .9e12 Starts With `7esn` Ascending,Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0)[(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..][Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..])..] Desc Where 12e-12[.0..] Union Remove Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7).``?,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null).@usn5?,[`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|`1esn`[Count ( * )][5.9e-12]].@usn5 Union Merge _usn3=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Optional Match `2esn`=((@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]})) Where @usn5[...9e12] Unwind (`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As `7esn`"), + octest:ct_string("With 0X0123456789ABCDEF Is Not Null Is Not Null As `2esn`,$`` Is Not Null Is Not Null Order By .0[01234567][$#usn8] Descending,`3esn` In 0X7 Desc Limit 0Xa Ends With #usn8 Ends With usn2"), + octest:ct_string("Unwind 0[..$@usn5] As `5esn` Detach Delete $`1esn`[.9e0][$_usn3],0e0[`4esn`] Unwind Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] As usn2 Union Optional Match usn1=((#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})<-[#usn8?{`3esn`:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7],@usn6:01[..0.12]}]-(`3esn` :_usn3:_usn3)),(((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})))"), + octest:ct_string("Create @usn6=(@usn5 {_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) Return *,Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As `5esn`,0xabc =~7.0e-0 =~4.9e12 Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1)._usn3!,Any(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).#usn8?"), + octest:ct_string("Detach Delete 0Xa Starts With .0,$`1esn`[.9e0][$_usn3],$`2esn`[8.1e1];"), + octest:ct_string("Merge ((#usn8 :`3esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(:`6esn`:`3esn`{_usn3:Count ( * )[7]})) On Create Set `7esn` =`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)],@usn6(Distinct true Starts With 2.9e1 Starts With 9e1).@usn5.`2esn` =07[usn1..] Union All Merge ((usn1 )-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})) On Create Set `8esn`+=Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),`8esn`+=0.0 Is Not Null Is Not Null On Match Set {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]}.#usn8?.`4esn`?.@usn6? =.9e12[$usn2..][7..],[_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]].`8esn`.@usn6? =0X7 =~$123456789 =~$`` Create @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`)));"), + octest:ct_string("Match @usn5=((@usn6 :`6esn`:`3esn`)<-[`6esn`? *..0xabc{``:$_usn4[Null]}]->(:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((:#usn8{`8esn`:usn1[12e-12],@usn6:Count ( * ) In 999})<-[?]->(:@usn5{usn2:$usn1[$12..]})-[ *..01]->(#usn8 :#usn7:_usn3)) Optional Match (((`5esn` :`2esn`:`8esn`)-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(`3esn` {_usn4:$`2esn` Starts With 0x0}))),``=((`6esn` :`3esn`)) Union All Remove #usn7:`5esn`,All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`).usn1!,Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Starts With 0Xa).usn1! Merge ((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2)) Union Create ((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})),#usn8=(#usn7 :usn2)<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}) Optional Match (_usn4 :`7esn`{@usn6:.12e-12[999...12]}) Where Null Starts With 9e1 Starts With ``"), + octest:ct_string("Merge ({usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) On Match Set `5esn`(Distinct $`` Is Null Is Null,#usn8[usn1]).usn2! =$`8esn` In 9e-12 In 3.9e-1 Unwind `2esn`(Distinct) Starts With Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]) Starts With (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}) As _usn4"), + octest:ct_string("Return All(`` In 0.12[3.9e-1] Where `7esn`)[(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(`4esn` :_usn3:_usn3)<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999})][`8esn`(#usn7 Ends With $#usn7 Ends With #usn7,7.0e-0[`6esn`..])],01234567 Ends With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 0[true..$7]) Ends With {`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]} As #usn7,Count ( * )[..1.9e0][..`8esn`] Skip 010 Is Not Null Is Not Null Limit 123456789 Ends With _usn4;"), + octest:ct_string("Detach Delete _usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null,'s_str' Ends With 0.0 Ends With .12e12,$`4esn` =~0e0 Union Match (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[:usn1|:#usn8]-(:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`}),`2esn`=((_usn4 {#usn7:$`5esn` Is Null Is Null})-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})) Union All Unwind ``(0X0123456789ABCDEF Contains 8.1e1,Count ( * )[..123456789][...0e0])[..All(usn2 In .0e0[$`6esn`..] Where .0e0 In 10.12e12 In $`5esn`)][..(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})] As #usn8"), + octest:ct_string("With *,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e1[..Count(*)][..7.0e-0]) =~[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 01[Count(*)..0e-0][7..$`2esn`]] =~Single(usn2 In .0e0[$`6esn`..] Where 01[1e-1]),usn1 Ends With 12 As `` Limit `7esn` Ends With `7esn` Ends With $`3esn` Unwind Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) As `5esn` Union All Return Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]) Limit $#usn7 Starts With 10.12e12"), + octest:ct_string("Merge @usn6=((:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[?:`6esn`|#usn7{_usn4:8.1e1 Is Null,#usn7:$_usn3 =~$usn1 =~_usn4}]-({`5esn`:07 Starts With usn1 Starts With 010})<-[`7esn`:`8esn`|:`2esn`]-(:``:usn1{_usn3:00[$`6esn`]})) On Create Set `3esn`+='s_str'[1e-1],`4esn` =.9e-12 Is Not Null Is Not Null,`8esn`+=(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7) Union All Merge (`6esn` :`8esn`:#usn7{`4esn`:00 Is Not Null Is Not Null,`4esn`:7 =~$`5esn`}) On Match Set `8esn`+=0x0 Starts With 01234567 On Match Set #usn8 =[`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7),`8esn`+=$999 =~`6esn`,@usn5 =Extract(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..]|.9e12[..$usn1][..10.12e12]) Starts With Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..])"), + octest:ct_string("Unwind 0.12 =~2.9e1 =~12e-12 As @usn5 Union Remove Any(@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null).#usn8? Merge usn1=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})) On Match Set `4esn` =$`` =~$_usn3,`7esn` =\"d_str\" Ends With `5esn` Ends With 7 Create @usn6=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Union All Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]|Count(*) Starts With $_usn4).`8esn`! Remove (`8esn` {#usn8:1e1[Null..][.12..]})-[?:_usn3|`2esn`]->({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`8esn` *1000]->(#usn8 ).`5esn`!,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0).`6esn`?.`2esn`!,{@usn6:$123456789 Contains 1000 Contains 11.12e-12,usn1:0X7[`4esn`..][`3esn`..]}.@usn5! Merge (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}) On Create Set Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`).`3esn`!.`5esn`!.`1esn` =(:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null),None(`7esn` In .12e12[Count(*)..] Where `4esn` Starts With $_usn3 Starts With .9e-12).@usn5._usn3!.@usn5 =Extract(`5esn` In 12[0xabc..][$0..] Where 9e-1[0X0123456789ABCDEF][0]|.9e1[..Count(*)][..7.0e-0]) Is Null Is Null On Match Set usn2 =8.1e1 Is Null,`1esn` =$_usn4 Contains .12e-12;"), + octest:ct_string("Delete {`5esn`:123456789 =~$`1esn` =~#usn7,#usn7:usn2 =~$`7esn` =~$`8esn`} Is Not Null,{#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[..`8esn`(010[@usn5..123.654],8.1e1[usn2..$1000][$7..0x0])][..{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1}],Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .12[.0e-0..]|$`8esn`[$usn2..]) Is Null Is Null"), + octest:ct_string("Unwind 1.9e0 Starts With .9e0 As #usn7 Union Merge (((`2esn` :usn2)-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})-[usn2? *010..{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}))) On Create Set @usn5 =All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2 In usn1 In 1e-1) =~{#usn8:00[0e-0...9e-1][1e-1..``]},[usn1 In 7.0e-0[.._usn4][..0X7] Where 5.9e-12 Contains `3esn` Contains Null].@usn6 =$`5esn` Contains `2esn` Contains 9e1 On Match Set All(`` In $_usn3 Is Not Null Where $`` =~$_usn3).`3esn`? =$`8esn`[$usn2..] Return 0x0 As @usn6,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] As usn2 Order By $`3esn` Ends With 010 Ends With $`7esn` Asc,.1e1[$usn2..9e1][9e-1...9e-1] Desc,3.9e-1[..$7] Descending Skip .12e12 Is Null Is Null Limit $``[`4esn`..][0.0..] Delete {`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}),Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1])"), + octest:ct_string("Match (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))),(`8esn` {`3esn`:#usn8[`2esn`]}) Union All With Distinct Null =~9e12 As #usn7,.0[usn2.._usn4] As `8esn` Order By [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]][{`2esn`:$`8esn` In 9e-12 In 3.9e-1}..{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}][Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..])..Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Descending,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]) Descending,5.9e-12 Contains $`` Contains $`5esn` Descending Skip .9e0[.1e-1][Count(*)] Where 9e1 Is Not Null Merge #usn7=(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[?{#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0}]-({`6esn`:07 Ends With @usn6 Ends With _usn3}) On Match Set `4esn`+=$`2esn`[$1000][2.9e1],{usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}._usn3 =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1} On Match Set {@usn5:12e-12 Starts With .9e12 Starts With 0.12}.`1esn`? =`3esn`[$0..][.9e1..] Union All Unwind `1esn`[9.1e-1] As #usn8"), + octest:ct_string("Return \"d_str\" Starts With `6esn` Starts With 1.9e0 As #usn8,Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]) Ends With usn2(0.0[$1000][3.9e-1],0e0[.12..][3.9e-1..]) Ends With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Skip $_usn4 =~$_usn4 =~2.9e1 With 0e0[`4esn`] As `6esn`,$_usn3 In $`7esn` In $`3esn` As `` Limit Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Where @usn5[...9e12] Remove All(`2esn` In .9e-12[0e0...9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4)._usn3!.`1esn`? Union All Unwind 11.12e-12 Is Null As usn1 Return *,_usn4(Distinct 1e-1 =~0.0 =~9.1e-1) =~None(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~(`2esn` {usn2:7.0e-0 Starts With $7 Starts With true})-[`2esn`:`5esn`{usn2:Count(*)[12..][0X0123456789ABCDEF..]}]-({_usn4:$`3esn` In 's_str' In $#usn7})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12}) As ``,`3esn` Ends With true Limit {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null});"), + octest:ct_string("Merge usn2=(`4esn` :`6esn`:`3esn`) On Match Set usn2 =$`8esn`[.9e-1][_usn3] Create `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Remove {@usn6:$0 Starts With 010}.@usn6?,[`8esn` In 01234567[..0.0][..false] Where 6.0e0 Is Not Null|`1esn` Starts With 999 Starts With 3.9e-1].@usn5!,[`2esn` In .12e-12[$@usn6..5.9e-12] Where $`6esn` Starts With `4esn`|$`5esn` Is Null Is Null]._usn3 Union All Unwind .12e12[Count(*)..] As `5esn` Return Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,9e-1 Starts With 123.654 Starts With .9e1 As `6esn`,.9e0 Is Null Is Null Skip usn1(07 Ends With @usn6 Ends With _usn3,$`2esn` In 0X7 In 3.9e-1) Contains [`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|9e0 =~9e1 =~.12e12] Limit $7 Starts With Null Starts With `6esn` Remove 123.654.#usn7.`5esn`?,count(Distinct $`3esn` Starts With 0Xa).#usn7,`1esn`:`2esn`:`8esn`"), + octest:ct_string("Unwind Extract(usn2 In .0e0[$`6esn`..] Where 9.1e-1[Count(*)..][5.9e-12..]) =~#usn8(5.9e-12 Contains $`` Contains $`5esn`) As `7esn` Unwind $999[$usn1...0e0] As `3esn` Remove (_usn3 :_usn4)-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)._usn4?,(usn2 :`1esn`$7)<-[_usn3{`8esn`:0e0[..'s_str']}]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`1esn`{`7esn`:8.1e1 Ends With $0 Ends With 6.0e0})._usn4? Union Unwind 7 Starts With 0X7 As usn1;"), + octest:ct_string("With Distinct {`6esn`:.1e-1[..12e12]} As @usn5,Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]) In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $`6esn`[$_usn4][01]) As _usn3,$12[$12..] As `4esn` Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null Desc,Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Asc,10.12e12 =~12e-12 =~0X0123456789ABCDEF Ascending Skip $`6esn` Starts With `4esn` Merge `3esn`=({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})<-[?{_usn3:00[$`6esn`]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}) On Match Set {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}.@usn6 =07[.0e0][3.9e-1],`5esn`:`3esn` Union All Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set _usn3 =12e-12[.0..],_usn4+=.0e0[..12.0][...1e-1],usn1 =({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null} Remove {_usn3:@usn6 In 3.9e-1 In 9e-12}.`3esn`!,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`8esn` Is Null|.0[usn2.._usn4]).usn2!,(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]}).#usn7! Remove `7esn`:#usn8,`8esn`:`6esn`:`3esn`,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0X7[Count(*)][.9e0]|$`8esn`[$``..$`1esn`][9e-12..$7]].usn2?.usn2? Union All Remove All(`2esn` In .9e-12[0e0...9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4)._usn3!.`1esn`?"), + octest:ct_string("Delete ({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null},Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`])[0x0..[`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`]] Delete #usn8 In $#usn8 In \"d_str\",01[..01] Create `4esn`=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1}) Union Optional Match `3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})),`6esn`=((#usn7 )) Where 9.1e-1 In #usn8 With Distinct *,{`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null) Order By 4.9e12 Contains .12e12 Contains 0xabc Asc,$usn1 Is Not Null Desc Skip {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null) Where _usn4[9e0..$#usn8] Remove {usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7}.`3esn`!,(:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}).`3esn`?,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where usn2 Ends With 10.12e12).`3esn`!;"), + octest:ct_string("Detach Delete [@usn6 In .9e12 Starts With #usn8 Starts With 00|9e12 Contains $@usn6 Contains Count(*)][(`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]})][Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null)] Merge (usn2 :@usn5{`3esn`:$usn1 Is Null})-[_usn3:`2esn`|`7esn`*..{#usn8:`1esn` =~0 =~_usn4,`2esn`:0e-0 In $1000 In .9e1}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}) On Match Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Return Distinct *,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"] Starts With ``(12.0[`8esn`],4.9e12 In 5.9e-12 In .9e0) Starts With Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]),$12 Contains $#usn8 Contains 01 Union Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12|.1e-1).`1esn`?,All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]).`7esn`!,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).usn1? Union All Create `5esn`=(((:@usn5{usn2:$usn1[$12..]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)<-[`8esn`?:`7esn`|@usn6 *..7]->(`5esn` {`2esn`:`1esn` =~0 =~_usn4}))),`3esn`=(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))) Merge `7esn`=({_usn3:$`8esn` Is Null}) On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 On Create Set [@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]].`3esn`?.`6esn`! =Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..])[(usn1 )<-[`8esn`?:usn2|:``]->(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})..0Xa],`2esn`+=$`2esn` Contains false Contains 123456789,`3esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)]"), + octest:ct_string("With *,All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,`1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `1esn` Limit {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[..`8esn`(010[@usn5..123.654],8.1e1[usn2..$1000][$7..0x0])][..{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1}] Where 12e12 Is Not Null"), + octest:ct_string("Merge `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) On Create Set None(`8esn` In 01234567[..0.0][..false] Where Count(*)[9e1..][12e-12..]).usn1 =.0e0[$`6esn`..] Return *,`` Is Not Null Is Not Null As _usn4 Order By [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null Ascending Limit 999[0.12..8.1e1] Union Return $@usn6 =~$`2esn` =~9e1 As `1esn` Limit .1e-1 Is Null Remove Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `2esn` Starts With $`7esn` Starts With _usn4).``?,Extract(`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|$_usn4[Null]).`7esn` Create usn2=((:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]})),(((:usn1{@usn5:Count(*)})<-[`6esn`?:``|:`3esn`]-(:@usn6:_usn4$`6esn`)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`2esn`:`8esn`)))"), + octest:ct_string("Unwind 0xabc['s_str'][$``] As `2esn` Unwind Null =~true =~.1e-1 As _usn4 Unwind 07[\"d_str\"..]['s_str'..] As usn1 Union All Return Distinct *,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]},$`6esn` Ends With 12 Limit [`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] In Any(`7esn` In .12e12[Count(*)..] Where 0Xa[9e0]) In [usn2 In .0e0[$`6esn`..] Where .12e12[`7esn`][#usn8]|7 Is Null Is Null] With Distinct .9e0 Is Null Is Null As #usn7,All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Where 5.9e-12[$`4esn`] With count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) =~Filter(_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789) =~[`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]|.9e12 Starts With #usn8 Starts With 00],Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]) Ends With usn2(0.0[$1000][3.9e-1],0e0[.12..][3.9e-1..]) Ends With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Order By ({`1esn`:0X0123456789ABCDEF Contains 8.1e1})-[`` *..0X7]->(usn2 :#usn8)[{_usn3:Null[..07]}..Filter(_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789)] Asc Skip 12e12 Ends With usn1 Limit `1esn`[11.12e-12..] Union Merge @usn5=((#usn8 :usn1)<-[`2esn`?:usn2|:`` *010..{`5esn`:$`4esn` Ends With 0e-0}]->(:usn1{`3esn`:$0 =~01234567,@usn5:7 Is Null Is Null})-[@usn5?:usn1|:#usn8 *01234567{`1esn`:7.0e-0[3.9e-1..`1esn`]}]-({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) On Match Set `7esn`:@usn5 On Match Set usn2+=(:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])],usn2+=Count(*)[9e-12..0Xa][$123456789..0.0],#usn7+=7.0e-0 Contains Count ( * ) Contains 0Xa Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Where Count(*) Delete Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7)[{usn2:`8esn` Is Null}..[@usn6 In .9e12 Starts With #usn8 Starts With 00]][(:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null})..{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}],999 Ends With $123456789 Ends With $_usn4"), + octest:ct_string("Match usn2=((:@usn5)-[@usn5:_usn3|`2esn`{`1esn`:5.9e-12[$`4esn`],usn1:9.1e-1[Count(*)..][5.9e-12..]}]->(usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})),(({#usn7:0X7[Count(*)][.9e0],`2esn`:0x0[`5esn`][$`5esn`]})-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})) Unwind $999[$usn1...0e0] As `3esn` Unwind `6esn` In 9e-12 As _usn4 Union All Match ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})),_usn3=((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Where $usn2 =~$`2esn` =~\"d_str\" Optional Match #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}),`1esn`=(:usn1{usn1:Count(*)[0.12..2.9e1]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999});"), + octest:ct_string("Unwind 0X0123456789ABCDEF[1.9e0] As `5esn` Merge #usn7=((:#usn8{usn1:.9e12 =~`5esn` =~07})-[{usn1:$#usn8[...9e1]}]->({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})<-[`6esn`:`6esn`|#usn7*]->(`3esn` {_usn4:$`2esn` Starts With 0x0})) With Distinct .1e1[9e-1][$usn1] As `6esn`,{_usn3:07 =~_usn4 =~.9e12}[All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 8.1e1 Is Null Is Null)..] As #usn8,10.12e12[0Xa..999][1000..Count(*)] As usn2 Order By `4esn`[0.0..][.1e-1..] Desc,$_usn3 Contains 1e1 Contains .12 Ascending Limit 1e-1 =~0.0 =~9.1e-1 Where 0[$`1esn`..][9e12..] Union Optional Match _usn3=((:`7esn`{`5esn`:0e0 Is Null Is Null})-[usn2?:@usn6|:_usn3]->({usn1:01[.9e-12..],@usn6:$`5esn` Ends With $#usn7 Ends With .0e-0})<-[?:`8esn`|:`2esn` *..7]-(:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})),#usn7=((`7esn` {`7esn`:010[@usn5..123.654]})) Where .9e0 Starts With @usn6"), + octest:ct_string("Match @usn6=(:`1esn`)-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)<-[? *999..]->(_usn3 {`6esn`:8.1e1 Is Null}) Remove {`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567}._usn3!,Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]).@usn6? Union Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`}))"), + octest:ct_string("Return Distinct *,Null[12e-12..] As _usn4,$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Create #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]})-[`3esn`? *..0xabc{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`}) Remove #usn7:`4esn`:`7esn` Union Detach Delete 7 Contains $#usn7 Remove Single(`5esn` In 12[0xabc..][$0..] Where 1000[$`6esn`..12.0]['s_str'..$`3esn`])._usn4?,(_usn4 :@usn5)<-[@usn5?:@usn5 *..01]-(`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}).`5esn`._usn3.#usn7? Union Unwind None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] As `3esn` Unwind \"d_str\"[12e12..][4.9e12..] As `2esn`"), + octest:ct_string("With Distinct *,.0e-0[0e0..00][.9e1..12] Order By 4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Ascending Skip 0x0 Starts With $`5esn` Starts With 9e-12 With Distinct *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Delete .1e-1[..12][.._usn4] Union All With 9e12 Starts With `4esn` Starts With .9e-1 As @usn6 Order By {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} Ascending,01 Ends With \"d_str\" Asc,1000 Is Null Is Null Ascending Limit 0e0 Starts With $1000 Starts With `2esn` Create `2esn`=((`5esn` :`1esn`)) With Distinct All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Order By `6esn`[0x0..@usn5][$1000...9e-12] Desc,Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null Descending,Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Asc Limit 11.12e-12[010..11.12e-12]"), + octest:ct_string("Match ((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) Return Count(*)[8.1e1..],Any(`` In $_usn3 Is Not Null Where 12e12[true..][$`2esn`..]) =~{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12} =~{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3} As `3esn` Skip 12 Contains $usn1 Contains 0 Merge `8esn`=((`4esn` )<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})) On Match Set Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`1esn` =.1e1 Ends With `2esn` Ends With $`1esn`,All(usn1 In 7.0e-0[.._usn4][..0X7] Where 12.0[..Count(*)][..5.9e-12]).`3esn`!.`4esn`!.``! =Count(*)[8.1e1..],{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}.usn1!.@usn6? =$`3esn` In 's_str' In $#usn7 Union Return 0Xa Ends With #usn8 Ends With usn2 As `6esn`,$7 Starts With Null Starts With `6esn` Skip $999 Ends With .9e-12 Return Distinct @usn6[.9e12] As ``,01234567 Starts With `4esn` Starts With 10.12e12 Order By $`7esn` Is Null Is Null Descending,Any(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1) Asc,#usn8[usn1] Asc Optional Match (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),`1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) Where `1esn` Starts With 999 Starts With 3.9e-1 Union All Unwind None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} As `7esn`"), + octest:ct_string("Merge ((usn1 )-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})) On Create Set `8esn`+=Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),`8esn`+=0.0 Is Not Null Is Not Null On Match Set {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]}.#usn8?.`4esn`?.@usn6? =.9e12[$usn2..][7..],[_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]].`8esn`.@usn6? =0X7 =~$123456789 =~$`` Create @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Union All Match (((`3esn` :@usn6:_usn4)<-[_usn4?:#usn8|:`4esn` *123456789..0x0]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12})-[?:_usn3|`2esn`]->(`1esn` :`7esn`))) Where $@usn5[..1e-1] Unwind 's_str' =~.9e1 =~3.9e-1 As usn2"), + octest:ct_string("Detach Delete (:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]),(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]})[Extract(`` In $_usn3 Is Not Null Where .0e-0 =~12e-12)..[`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6]],123456789 Ends With _usn4 Unwind `2esn` Starts With 12 Starts With 10.12e12 As @usn6 Create (`1esn` :`6esn`:`3esn`) Union With Distinct *,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e1[..Count(*)][..7.0e-0]) =~[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 01[Count(*)..0e-0][7..$`2esn`]] =~Single(usn2 In .0e0[$`6esn`..] Where 01[1e-1]),usn1 Ends With 12 As `` Limit `7esn` Ends With `7esn` Ends With $`3esn` Where @usn6[01][.9e0] With Distinct 01[1e-1] As `8esn`,5.9e-12 =~$@usn6 As `7esn`,$123456789 Is Null Is Null As #usn8 Skip Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Union All Remove Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]).#usn8?"), + octest:ct_string("Create (@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})) Remove {usn2:`3esn` In 0X7,usn2:7 Is Null Is Null}.`4esn`.@usn6!,{@usn6:.9e-12[..$`7esn`][...9e-1]}.usn2 Union Remove None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]).`1esn`?.`5esn`!,{`7esn`:$`5esn`[7..],`5esn`:`5esn` Contains `6esn`}.#usn8?.usn2.@usn5!,Any(`5esn` In 12[0xabc..][$0..] Where .9e1 Contains Null).`8esn`? Remove [_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1|8.1e1 Ends With $0 Ends With 6.0e0].`5esn`?._usn3.@usn6 With *,$#usn7[$_usn4..][.12e-12..] As `6esn`,5.9e-12 =~$@usn6 As `7esn` Limit usn1[12e-12] Union Remove (`` :`3esn`{`5esn`:``[$``..]})-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}).`7esn`,[`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$`` Is Not Null].`8esn`._usn3?,(`` :usn2)-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}).usn1! Delete None(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Is Not Null"), + octest:ct_string("Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})),((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) With [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..] Where $1000 Contains 01234567 Contains 0X7 Create ((usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]->(:usn1{usn1:Count(*)[0.12..2.9e1]})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})),(:usn1{``:.9e1[..`5esn`]}) Union Remove {`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567}._usn3!,Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]).@usn6? Merge ({_usn4:$`3esn` In 's_str' In $#usn7}) On Create Set #usn7:`4esn`:`7esn`,{`7esn`:$`5esn`[7..],`5esn`:`5esn` Contains `6esn`}.#usn8?.usn2.@usn5! =usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]],@usn6 =\"d_str\" =~9e-12 =~`5esn` Remove Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 01[Count(*)..0e-0][7..$`2esn`]).`4esn`?,{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`}.`1esn`!.usn1!"), + octest:ct_string("Unwind None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] As `3esn` Unwind \"d_str\"[12e12..][4.9e12..] As `2esn` Union All Optional Match usn1=(`5esn` :`1esn`),`4esn`=((@usn5 :usn1{usn1:.9e1[12]})) Unwind usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]] As #usn8 Merge @usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}) On Create Set Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0).``? =.9e1[11.12e-12] On Match Set `7esn` =Filter(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) Starts With All(`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]) Starts With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`)"), + octest:ct_string("Detach Delete .9e-12[12e12][.0e0],'s_str' Is Null,$`2esn` Ends With $`8esn`;"), + octest:ct_string("With Distinct *,Count(*)[..Count(*)][..9e0] Order By 07 Starts With usn1 Starts With 010 Ascending,7.0e-0[..$`7esn`][..Null] Descending,$usn2[8.1e1...9e-1][.1e-1..11.12e-12] Desc Skip Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] Limit 999 Ends With $123456789 Ends With $_usn4 Where 10.12e12[Count(*)..] Unwind $`6esn`[$`8esn`..][false..] As `6esn` Detach Delete ``[$``..],`7esn`[3.9e-1..][$@usn5..] Union All With Distinct $#usn7 =~8.1e1 As #usn7,7[9.1e-1..][$_usn3..],Filter(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..])[(@usn6 :#usn8)-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]})<-[:@usn6|:_usn3{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`` :`3esn`)][Single(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])] Order By (`5esn` :`2esn`:`8esn`)-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]}) Is Null Is Null Asc,``(@usn6[..$`3esn`][..4.9e12],0x0 Contains $`1esn` Contains 0.0)[{`6esn`:999[...12e12][..0]}][[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)]|.9e1[Count(*)..$`3esn`]]] Asc,'s_str'[12][00] Ascending Skip (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Starts With `7esn`(Distinct $`5esn` Is Null Is Null,$`4esn` Ends With 0e-0) Starts With Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 5.9e-12 Ends With 1e1 Ends With false) Match `5esn`=(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}),((`6esn` :_usn4)<-[`7esn`*..]->(`` :@usn6:_usn4)-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Union All Unwind 0e0[`4esn`] As _usn4 Unwind 12e-12[`7esn`..][5.9e-12..] As `8esn`"), + octest:ct_string("With *,1000 Is Not Null Is Not Null As #usn7,.1e-1 Ends With @usn6 As @usn6 Skip 9.1e-1 =~@usn5 =~Count ( * ) Limit _usn4 In `3esn` In 7.0e-0 Where 1.9e0 Is Null Is Null With Distinct *,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Skip $_usn4[..usn2] Limit $`8esn` In 9e-12 In 3.9e-1 Union All Create `7esn`=(`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Optional Match `3esn`=(@usn5 :`7esn`),((#usn8 {_usn3:$usn2 In usn1 In 1e-1})) Where usn2[..10.12e12][..$`7esn`] Create ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((`` :``:usn1)) Union All Return {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})] Order By $_usn3 Contains 1e1 Contains .12 Asc,9e12 Asc,0e0[`3esn`..][.9e-1..] Descending"), + octest:ct_string("Merge `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Remove `3esn`($`5esn`[7..],9e-1[0X0123456789ABCDEF][0]).usn2,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 11.12e-12 Is Null Is Null).`6esn`?,{#usn8:_usn4 Ends With .0 Ends With 7,`6esn`:0X7 Starts With 1e1 Starts With $12}.@usn5! Union Remove Single(_usn3 In ``[$``..] Where 11.12e-12 In $`1esn` In 9e12).#usn8?,Single(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12).`6esn`,None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12])._usn3?.`3esn`.`3esn`? Optional Match (((`5esn` :usn1{_usn4:8.1e1 Is Null,#usn7:$_usn3 =~$usn1 =~_usn4})<-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(:_usn4{#usn7:.0e0[1e1..][01234567..],@usn5:`2esn` Is Not Null Is Not Null})-[#usn7?:`2esn`|`7esn` *..7]-(`3esn` {`6esn`:$`8esn`[..1e1][..``],`8esn`:$usn2 In usn1 In 1e-1}))) Delete #usn7 =~`5esn` =~``,$#usn7 Starts With 10.12e12"), + octest:ct_string("Detach Delete 9e-1 Ends With 5.9e-12,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) Remove All(`5esn` In 12[0xabc..][$0..] Where .0e0[1e1..][01234567..]).#usn8!,Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]).`6esn`,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 's_str'[12][00]|$`8esn`[#usn7][.9e1]].#usn7?.`4esn`?;"), + octest:ct_string("Unwind Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) As `5esn` Remove Single(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1).`2esn`?,`1esn`:_usn4,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where usn1 Is Not Null).#usn8? Return Distinct *,$`6esn`[$_usn4][01] As `1esn`,`4esn`(Distinct `1esn`[..0x0][..\"d_str\"],false[..12e-12][...9e1]) Is Null Is Null As #usn8 Order By {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} Desc,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where `2esn` Is Not Null Is Not Null|.1e1[.0e0..]) Ascending,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .12[.0e-0..]|$`8esn`[$usn2..]) Is Null Is Null Descending Union All Merge @usn5=((:`7esn`{usn1:123.654 Ends With 0Xa Ends With .12e12})-[ *0..010]->(_usn4 :`5esn`)) On Match Set ``+=0.12[07..3.9e-1] On Create Set @usn6(9.1e-1[$`4esn`..][$`4esn`..]).@usn5?.#usn8!.`2esn` =usn1[12e-12],`4esn` =$`6esn`[..12e12][.._usn3] Create @usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}) Union All Optional Match usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})),_usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Where $_usn4 Starts With 0e-0 Starts With 1e-1 Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where $`1esn` Starts With Count(*) Starts With $`8esn` Remove (:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null}).`8esn`?,Extract(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null).usn2"), + octest:ct_string("Return $`4esn` Contains $12 Contains .9e-1,.1e-1[@usn6..] As `4esn`,`2esn` =~usn1 As `6esn` Skip 0xabc[7.0e-0..][12e12..] Limit .12e12 =~$#usn7 Remove {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}.`7esn`,(`5esn` :`2esn`:`8esn`)-[`6esn`:`6esn`|#usn7*]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})._usn4 Remove `2esn`(Distinct 12 Is Null Is Null)._usn3! Union Create (:usn1{``:.9e1[..`5esn`]}) Merge (usn2 :@usn5{`3esn`:$usn1 Is Null})-[_usn3:`2esn`|`7esn`*..{#usn8:`1esn` =~0 =~_usn4,`2esn`:0e-0 In $1000 In .9e1}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}) On Create Set @usn5 ={``:`1esn` In 12e-12 In 1e-1,usn2:_usn3[`2esn`..10.12e12][9e1..true]}[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )]..][Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`])..],`6esn` =usn2['s_str'...9e-1][$7..Count ( * )] On Create Set None(`8esn` In 01234567[..0.0][..false] Where $_usn3 Contains 1e1 Contains .12).``.`8esn`? =8.1e1[$`5esn`][0e0] Unwind All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0)[..[@usn6 In 00 =~.9e-12 =~usn1 Where 0.0[$1000][3.9e-1]|$usn2 =~$`2esn` =~\"d_str\"]] As `6esn`"), + octest:ct_string("Remove `1esn`:usn2,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where false[$1000..$@usn6][7..12]].`5esn`? Detach Delete Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 07[.0e0][3.9e-1]) Contains Extract(`` In $_usn3 Is Not Null),$`4esn` Ends With 0e-0 Match `5esn`=(`8esn` $12)<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}),`7esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where `1esn`[11.12e-12..];"), + octest:ct_string("With *,.1e1 Starts With .1e-1,(`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})-[`6esn`? *123456789..0x0]->({`6esn`:$usn1 Starts With usn1 Starts With 1e-1,#usn8:$#usn7 Starts With 10.12e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}) Is Null Order By 123456789[\"d_str\"..] Descending,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending,12e-12[`7esn`..][5.9e-12..] Asc Skip $`` In $@usn6 In 3.9e-1 Limit .1e1 =~10.12e12 Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]|$_usn3 Is Not Null).usn2!.#usn7!.`8esn`!"), + octest:ct_string("Delete .1e-1[2.9e1..][12..],12e-12[..$7][..$0] Union Merge ((#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[`3esn`?:`5esn`]->(`2esn` )) On Match Set `7esn`+=$`` In $7 In 9e-1,usn1+=$12 Starts With 1e-1 Starts With $@usn5,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).`2esn`?.#usn8! =Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null Union Delete [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1) Ends With Filter(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7]),Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null,`3esn` Starts With 's_str' With Distinct *,Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As `5esn`,0xabc =~7.0e-0 =~4.9e12 Order By (#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Desc Where @usn6[.9e12..0e0];"), + octest:ct_string("Unwind {`3esn`:4.9e12 =~8.1e1 =~$`8esn`}[@usn6(Distinct 12e12 Ends With $`3esn` Ends With 11.12e-12)..count(Distinct 07 Ends With @usn6 Ends With _usn3,$@usn5[..1e-1])][({@usn5:#usn7[`5esn`..`2esn`][$`4esn`...1e1],`6esn`:Count(*) =~`5esn` =~$usn2})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})..Extract(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..]|123.654 Starts With 2.9e1)] As `3esn` With Distinct All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,usn2[..7.0e-0] As `1esn` Order By $_usn3 Contains 1e1 Contains .12 Ascending,.0e0 Is Null Is Null Descending,.0e0 Starts With $@usn6 Starts With Null Descending Limit 's_str' Ends With 0.0 Ends With .12e12;"), + octest:ct_string("Optional Match ((usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})<-[? *07..{_usn4:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:$#usn8[...9e1]}]-({`1esn`:0X0123456789ABCDEF Contains 8.1e1})) Where 7.0e-0[.._usn4][..0X7] Union All Create `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),((_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))"), + octest:ct_string("With *,'s_str' =~.9e1 =~3.9e-1 As usn2,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `6esn` Order By 01 Ends With \"d_str\" Asc,9e-1 =~6.0e0 =~`` Descending Skip $`5esn` Ends With 9e-1 Ends With $#usn8 Where `7esn`[3.9e-1..][$@usn5..] Union Delete 1.9e0 =~0x0,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]),{_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12) Union Detach Delete All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Unwind #usn8[3.9e-1.._usn3] As `4esn`"), + octest:ct_string("With Distinct Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Limit 9e0[..1e1] Where $usn2[1e-1] With Distinct *,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,false[12e-12..][usn1..] Order By Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]) Desc Limit $`1esn`[`3esn`..] Where $usn1 =~$999 =~$7 Return Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] As usn1,Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) As usn1,_usn4[9e0..$#usn8] Order By $``[`4esn`..][0.0..] Desc,9e0[$usn2][0] Ascending Limit Count ( * )[`7esn`]"), + octest:ct_string("Unwind Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) As `3esn` Detach Delete (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1) Ends With Filter(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7])"), + octest:ct_string("Detach Delete $`1esn`[.9e0][$_usn3],`4esn` Starts With .0e0 Starts With usn2 Optional Match ((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})),`7esn`=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})"), + octest:ct_string("Create `2esn`=(usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2}),`3esn`=((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Remove None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])._usn4._usn4,Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where usn1[..10.12e12][..7]).``? Union Optional Match @usn6=((`` :usn1)-[ *0..010]->(_usn4 :`5esn`)),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})) Where 1e1 Is Not Null Is Not Null Detach Delete .12e12[$12..4.9e12][11.12e-12..9e12],$_usn4 =~$_usn4 =~2.9e1 With *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Where Null[`2esn`..]"), + octest:ct_string("With Distinct *,(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]})[Extract(`` In $_usn3 Is Not Null Where .0e-0 =~12e-12)..[`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6]] Limit All(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]) Starts With Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) Where .9e-12[0e0...9e-1] Union All Return 3.9e-1[0.12..] Order By $`` =~$_usn3 Desc,$0 Contains .12e-12 Descending Skip Count ( * )[`7esn`..] Remove {usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`}.`1esn`!.usn1!,(`2esn` :``:usn1)<-[`6esn`? *..0xabc{``:$_usn4[Null]}]->(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]}).#usn7?.`3esn` Create ({`4esn`:7 Is Null Is Null})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}) Union All Create ((`3esn` {#usn8:`7esn` Is Null})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})),#usn7=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Optional Match `2esn`=(`` :usn2),((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})) Create ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?]->(:@usn5{usn2:$usn1[$12..]}));"), + octest:ct_string("Create usn2=(#usn7 :_usn3:_usn3)<-[#usn8?:`4esn`|:@usn5]-(#usn8 :_usn3:_usn3) Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set `6esn` =.1e1 =~10.12e12 On Match Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] Unwind Count ( * )[12e-12] As @usn6;"), + octest:ct_string("Create `2esn`=(({_usn4:01234567[6.0e0][$usn2]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})) Detach Delete $_usn3 In $`7esn` In $`3esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where $_usn4[..usn2]|`1esn` Starts With 999 Starts With 3.9e-1) =~(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}) =~Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]),Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12)[Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12)..][`4esn`(Distinct)..] Union All Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] Ascending,1e-1[..$`6esn`] Ascending Skip (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Remove {usn2:`3esn` In 0X7,usn2:7 Is Null Is Null}.`4esn`.@usn6!,{@usn6:.9e-12[..$`7esn`][...9e-1]}.usn2 Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1 Union All Return Count(*) Is Not Null Is Not Null As usn2,$`3esn` =~4.9e12 =~$7,.9e0 Is Not Null As `6esn` Skip Any(`8esn` In 01234567[..0.0][..false] Where $_usn3 Contains 1e1 Contains .12) =~0.0 =~Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`) Return Distinct *,Null[...9e1] As `2esn` Order By 10.12e12 =~12e-12 =~0X0123456789ABCDEF Descending,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) Asc,8.1e1 Starts With .9e12 Starts With `7esn` Desc"), + octest:ct_string("Merge _usn4=({usn1:usn2 Ends With 10.12e12}) On Create Set Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999).#usn8? =07 Is Null Is Null,`4esn` =[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null][..`1esn`(Distinct `5esn` Contains `6esn`,`3esn` Contains $`8esn` Contains 0e0)][..Single(`5esn` In 12[0xabc..][$0..] Where 1000[_usn3..`8esn`])],@usn5 =All(usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null])[``($_usn3[1e-1..],.12e12[Count(*)..])][None(_usn4 In Count(*)[9e1..][12e-12..] Where 123456789 Ends With _usn4)] On Match Set usn1+=9e0[..1e1] Delete [`2esn` In .9e-12[0e0...9e-1] Where `3esn` Contains 01234567 Contains .9e-12|10.12e12[$`5esn`]] Ends With .9e0 Ends With {``:999 =~0Xa =~9e0} Union All Return Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] As `5esn` Order By 0 Starts With 0Xa Starts With $0 Ascending,$`2esn`[$usn1..] Asc,Count(*) Starts With $_usn4 Descending Limit All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..] Remove `6esn`:`3esn`,({`6esn`:$`3esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}).``?.`5esn`!.@usn6? With Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `5esn`,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null) Starts With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * )) Starts With (_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) As usn1 Order By 0e0[.12..][3.9e-1..] Descending,Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Asc Limit {#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]) Where true Starts With 2.9e1 Starts With 9e1"), + octest:ct_string("Merge `2esn`=((`5esn` :`4esn`:`7esn`)) On Create Set Any(`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]).usn1!.``?.``? =false =~4.9e12,usn1 =7.0e-0[3.9e-1..`1esn`] Union All Return Distinct *,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]},00[$`6esn`] As `6esn` Order By [`7esn` In .12e12[Count(*)..] Where \"d_str\" =~9e-12 =~`5esn`] Is Null Is Null Asc Limit 123456789[.1e1..][$`5esn`..] With Distinct 010[11.12e-12..],Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) As `2esn`,.9e1[#usn7..] Where \"d_str\" =~9e-12 =~`5esn` With 12 Contains usn2 Contains $usn2 As ``,Count ( * )[12e-12] As #usn7 Skip .0 Where .9e-1 Contains .0e0 Contains usn1 Union Unwind .9e1[Count(*)..$`3esn`] As `5esn` Unwind .0e-0[0e0..00][.9e1..12] As usn2"), + octest:ct_string("Return {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} As _usn3,Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])[All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654])][None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])] As usn2 Skip 5.9e-12 =~$@usn6 Limit 10.12e12[..10.12e12][..`6esn`] Unwind .9e1[Count(*)..$`3esn`] As `5esn` Union Remove [`5esn` In 12[0xabc..][$0..] Where $usn2[0e0][$7]|Count ( * )[`7esn`..]].``._usn4!.`5esn`,`1esn`(Count(*) Starts With $_usn4).#usn7.#usn7,@usn6:#usn8 Optional Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Where `` Ends With .9e-1 Ends With 9e-12"), + octest:ct_string("Match `8esn`=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Remove count().`1esn`!._usn4?.`7esn`!,None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12).@usn5!.`2esn`!,[`5esn` In 12[0xabc..][$0..] Where $usn2[0e0][$7]|Count ( * )[`7esn`..]].``._usn4!.`5esn` Match ((`` :``:usn1)),`8esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where 999[..@usn5][..`1esn`] Union All Unwind 0e0[`4esn`] As _usn4 Unwind 12e-12[`7esn`..][5.9e-12..] As `8esn` Union Unwind 9e1 Is Not Null As #usn8 Unwind 01234567[..Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null)][..999] As usn2 With *,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] As usn1 Limit `3esn`[$0..][.9e1..]"), + octest:ct_string("Delete 123.654 Ends With 0Xa Ends With .12e12,0X7[$7..] Union All Create `2esn`=(({_usn4:01234567[6.0e0][$usn2]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})),(@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}) Merge ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})) On Create Set @usn5+=_usn4 Ends With .0 Ends With 7,None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0e-0 Contains _usn4 Contains 1e-1).`6esn`! =Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) On Create Set [_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8].`5esn`! ={_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12),#usn8 =(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] Merge ((`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010})) On Match Set All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 999 =~0Xa =~9e0).`1esn`?.`2esn`? =()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] Union Merge ``=(((_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`7esn`:`8esn`|:`2esn`]->({`4esn`:$`2esn` Ends With $`8esn`})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0))) Return Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1] Return Distinct {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As ``,$`8esn`[12.0..][4.9e12..],.1e-1 Ends With @usn6 As @usn6 Order By false Starts With 3.9e-1 Asc,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Descending"), + octest:ct_string("Optional Match usn2=(`3esn` {`2esn`:01[1e-1]}),usn1=(#usn7 {`5esn`:.12e12[$0]}) Where 0[$`1esn`..`8esn`]"), + octest:ct_string("With *,$`5esn`[true],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Skip $`1esn` =~0.0 Where 07[.0e0][3.9e-1] Detach Delete 00[0e-0...9e-1][1e-1..``],9e12[...12e12][..$`2esn`],7.0e-0 Contains Count ( * ) Contains 0Xa Return *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip 0xabc =~7.0e-0 =~4.9e12 Limit Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Union All Detach Delete 0.12 Is Not Null Is Not Null,$`1esn` Starts With .12 Remove None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`).`7esn`!.`6esn`?,({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null})<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3).`5esn`._usn3!;"), + octest:ct_string("Delete {`3esn`:`1esn`[9.1e-1]} Ends With {`2esn`:7.0e-0[3.9e-1..`1esn`],`7esn`:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]} Ends With None(`5esn` In 12[0xabc..][$0..] Where 1e1 Starts With `8esn` Starts With .9e0),_usn3[$_usn3][usn1] Remove {_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null}._usn4!.`5esn`._usn3;"), + octest:ct_string("With $12[.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As #usn8,{#usn7:01 Ends With \"d_str\",_usn4:`3esn` In 0X7}[All(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12])..Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]|999[..@usn5][..`1esn`])][Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1)..Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)] Limit Count ( * ) Is Null Is Null Return *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Match `8esn`=(`3esn` :#usn7:_usn3)<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(`2esn` :usn2)<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}),`4esn`=(((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Union Remove All(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1).usn1!.`7esn`.`2esn`!,Filter(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8).@usn5?,(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})._usn3.@usn6!.@usn5 Match _usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))) Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As `8esn`"), + octest:ct_string("With (:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] Where `7esn` Is Null Return *,(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})<-[?:usn1|:#usn8{`8esn`:`2esn` Is Not Null Is Not Null}]-({#usn8:1e1[Null..][.12..]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null,8.1e1 Is Not Null As usn2 Order By .1e1[$usn2..9e1][9e-1...9e-1] Desc Skip Null In 0Xa In .9e-1 Unwind .9e-12[12e12][.0e0] As `3esn` Union Create ({usn2:0.0[4.9e12..][00..]})-[``]-(`7esn` :``:usn1{`1esn`:0e0 Starts With $1000 Starts With `2esn`,@usn6:@usn6 In 3.9e-1 In 9e-12})<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}) Create `2esn`=(usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2}),`3esn`=((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Merge ((`7esn` {_usn3:false[$1000..$@usn6][7..12]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set @usn6 =$`3esn`"), + octest:ct_string("Remove {`4esn`:01[..01]}.`8esn`?.`8esn`?.usn1?,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`2esn`[010..`5esn`][``..0.12]).`4esn` Union All Unwind (`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As `7esn` Union Remove Any(`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6).`4esn`,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0e-0 Contains _usn4 Contains 1e-1].`2esn`,\"d_str\".`2esn`.`8esn`! Merge (({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) On Match Set .9e-12.`3esn`?.`3esn`.`7esn`? =Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).usn2!,{_usn4:$#usn7 Is Not Null Is Not Null,`3esn`:9.1e-1 In #usn8}._usn4?,6.0e0.`8esn`"), + octest:ct_string("Return *,[`` In 0.12[3.9e-1] Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`|Null[10.12e12..]] In {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] Skip 0.0 Contains .9e0 Contains $`8esn` Limit 7 =~$`5esn` With `3esn`[3.9e-1..$`5esn`] As usn2,0X0123456789ABCDEF Is Not Null Is Not Null As `2esn`,11.12e-12 =~5.9e-12 =~.9e1 As `3esn` Limit {`2esn`:`7esn` Is Not Null,@usn5:#usn8[usn1]} Starts With (`7esn` :`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[_usn4 *999..]->({``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}) Match usn1=({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}),(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}) Union All Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Unwind .9e-1 Ends With `8esn` As usn1 Union All Delete 's_str' In `7esn` In .9e-12;"), + octest:ct_string("Remove `7esn`:_usn4,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 9.1e-1 Contains 0xabc|$usn2 In usn1 In 1e-1).usn2?.`1esn`?,@usn6(12 Is Null Is Null)._usn3?.`6esn`! Detach Delete 11.12e-12 Contains 9e-12 Union Optional Match `3esn`=(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})),`5esn`=(((_usn3 )-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3}))) Where $_usn3 In 123.654 In $`8esn`"), + octest:ct_string("With Distinct $`8esn` Is Null Is Null As `7esn` Skip Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-12 Is Not Null Is Not Null) Is Null Is Null Limit .9e0[.1e-1][Count(*)] Where .9e-12 Ends With `1esn` Ends With 123.654 Unwind `1esn` Starts With 999 Starts With 3.9e-1 As _usn4 Optional Match (((`5esn` :usn1{_usn4:8.1e1 Is Null,#usn7:$_usn3 =~$usn1 =~_usn4})<-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(:_usn4{#usn7:.0e0[1e1..][01234567..],@usn5:`2esn` Is Not Null Is Not Null})-[#usn7?:`2esn`|`7esn` *..7]-(`3esn` {`6esn`:$`8esn`[..1e1][..``],`8esn`:$usn2 In usn1 In 1e-1}))) Union Create (:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}),(({#usn8:1e1[Null..][.12..]})<-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]->(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) Union All Create (({_usn3:$`5esn`[7..]})) Detach Delete _usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null Merge ((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) On Create Set (`6esn` :usn1)<-[usn1{`2esn`:usn2 Ends With .0}]->(_usn3 :_usn3:_usn3)-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})._usn3? =Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}],@usn5 =.9e1[...12e12]"), + octest:ct_string("Unwind 0e0 Ends With 0X7 Ends With .1e1 As _usn4 Unwind 999 =~0Xa =~9e0 As `` Union Match (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))),(`8esn` {`3esn`:#usn8[`2esn`]}) Union With ({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)[{``:.1e-1 Ends With $`8esn` Ends With .9e0,`7esn`:.9e-12 Is Not Null Is Not Null}][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])],Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) Unwind $0 Starts With 010 As #usn8 With .0e0 Is Null Is Null As _usn4,`6esn`(usn1 Is Not Null,123456789 =~6.0e0)[Single(_usn3 In ``[$``..] Where Null[..07])..][{_usn3:010[9e0..9e1][$_usn4..$12],`3esn`:7.0e-0[$usn2..0.12][$``..0]}..] As usn1,#usn8 In $@usn6 Order By 8.1e1 Ends With $0 Ends With 6.0e0 Descending,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null Ascending,Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\") Ascending Skip $`2esn` In 0X7 In 3.9e-1 Limit 0x0[`5esn`][$`5esn`]"), + octest:ct_string("Delete 0x0 Starts With $`5esn` Starts With 9e-12,.0e0[..12.0][...1e-1] Union Create `3esn`=(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))),(((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})-[`2esn`?:#usn8|:`4esn`]-(:@usn6:_usn4{`2esn`:$usn1[$7..][$0..]}))) Return .1e1 =~`1esn`,Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],$#usn7 Is Not Null Order By All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Desc,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] Ascending,.9e0 In 9.1e-1 In $123456789 Desc Remove (#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *01234567]->(`5esn` :`2esn`:`8esn`).#usn7!.`3esn`!.@usn6! Union All Merge (((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))),(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}) Where 01234567[6.0e0][$usn2];"), + octest:ct_string("Create ((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1))),_usn4=((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) With Distinct *,0Xa Ends With #usn8 Ends With usn2 As `6esn` Delete #usn8(Distinct false[$1000..$@usn6][7..12],123456789 In 9e-12 In false) Starts With `4esn`(Distinct 0e0 Is Null Is Null),.0 Union All Delete #usn8(Distinct false[$1000..$@usn6][7..12],123456789 In 9e-12 In false) Starts With `4esn`(Distinct 0e0 Is Null Is Null),0e0 Contains $`8esn` Contains 9e-12"), + octest:ct_string("Merge `3esn`=(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Union Return *,Extract(`5esn` In 12[0xabc..][$0..] Where 9e-1[0X0123456789ABCDEF][0]|.9e1[..Count(*)][..7.0e-0]) Is Null Is Null As _usn3 Order By {`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] Ascending Limit 123.654 In $`5esn` In 9e-1 Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Where 0X7[$999...12e12][12..`2esn`] With All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Where .9e1 Contains Null Union All With Distinct *,@usn5 Ends With 's_str' Ends With 01 As _usn4,Null[.12e-12] Order By `3esn`[`4esn`..Null][$usn1..`5esn`] Asc,$``[7..] Ascending,_usn4 In `3esn` In 7.0e-0 Desc Skip Extract(_usn4 In Count(*)[9e1..][12e-12..] Where $_usn4[..usn2]|`1esn` Starts With 999 Starts With 3.9e-1) =~(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}) =~Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]) Where .0e0[$`1esn`][.9e-12] With Distinct *,@usn6[..$`3esn`][..4.9e12] As #usn8 Order By .12e-12[$`6esn`..] Desc"), + octest:ct_string("Return *,$_usn3 Contains usn2 Contains 0xabc,(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`)<-[usn2 *1000{usn1:Null Starts With $`4esn` Starts With $#usn7}]->(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})[{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}][{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}] As @usn5 Order By `7esn` Starts With 11.12e-12 Starts With `7esn` Descending,.0 Is Null Is Null Ascending Create #usn8=(((_usn4 :`7esn`{@usn6:.12e-12[999...12]})-[#usn7? *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null}))),(((`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0)));"), + octest:ct_string("Remove Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count ( * ) Ends With `6esn` Ends With .12e12|5.9e-12[$`4esn`]).#usn7?,{`4esn`:$`8esn` In 9e-12 In 3.9e-1,@usn5:999 Ends With $123456789 Ends With $_usn4}._usn4!.@usn6?.`7esn`,Any(`7esn` In .12e12[Count(*)..] Where \"d_str\" =~9e-12 =~`5esn`).@usn5!"), + octest:ct_string("Delete Extract(usn2 In .0e0[$`6esn`..] Where 010|0e-0 Contains _usn4 Contains 1e-1)[{#usn7:_usn4 Ends With .0 Ends With 7,#usn8:`` Ends With .9e-1 Ends With 9e-12}],0e0 Starts With $1000 Starts With `2esn` Match (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),`1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) Union All Return .0e-0 Starts With $#usn7 Starts With _usn3 As #usn8 Order By $usn2[12.0..] Desc Skip 7.0e-0 Is Null Is Null Delete 01[7][`1esn`],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|$@usn5 In .9e1 In $``) Contains (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null}),07[$`1esn`..$999] Create ((`3esn` {#usn8:`7esn` Is Null})<-[{`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}]-(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Union Unwind $usn1[$12..] As `` Unwind All(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]) Starts With Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) As `3esn` Merge ``=((@usn6 :`5esn`)<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}));"), + octest:ct_string("With Distinct `8esn`[6.0e0..][$`1esn`..],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Unwind (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)] As ``"), + octest:ct_string("Delete Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 9e0 =~9e1 =~.12e12) =~{usn1:$@usn5[...9e-1][..$usn1]} =~(_usn4 {usn1:`3esn` Ends With `6esn`})<-[_usn3{`8esn`:0e0[..'s_str']}]-(usn1 :`2esn`:`8esn`{usn2:$`3esn` =~4.9e12 =~$7,#usn7:12e12[..$`8esn`][...0e-0]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}),12.0[`8esn`] Match (((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}))) Where 12e-12 Contains .9e-1 Contains 9e-1 Union Unwind Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null As @usn5 Return `2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,1e1 In .1e-1 In .0 Order By Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) Asc Skip 00 =~.9e-12 =~usn1 Limit 12e12 Ends With usn1"), + octest:ct_string("Create `7esn`=({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}),`2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})"), + octest:ct_string("With [_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789|0e-0 Contains _usn4 Contains 1e-1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567) As `3esn`,.9e-1 Is Not Null Is Not Null,$@usn6 =~$`2esn` =~9e1 Skip [usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Limit 0X7[_usn4..1.9e0][Count ( * )..false] Where 1.9e0[$12][``]"), + octest:ct_string("Optional Match ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})) Optional Match (({_usn3:$`5esn`[7..]})) Where $@usn6 =~$`2esn` =~9e1 Union All Unwind $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn` As _usn4 Create _usn3=((:`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[`3esn`:`5esn` *123456789..0x0{`6esn`:.9e-12[12e12][.0e0]}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})) Union Unwind $`6esn` In `2esn` As _usn4"), + octest:ct_string("With Null =~9e12 As #usn7,.0[usn2.._usn4] As `8esn` Order By $`5esn`[true] Descending,`7esn` Contains $7 Contains 07 Asc,3.9e-1[..$7] Desc Where $@usn6 Contains Count ( * ) Return *,Null[...9e1],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Optional Match @usn6=((`` :usn1)-[ *0..010]->(_usn4 :`5esn`)),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})) Where 1e1 Is Not Null Is Not Null"), + octest:ct_string("Optional Match (:usn1{``:.9e1[..`5esn`]})"), + octest:ct_string("Unwind 9e12 Is Null Is Null As `8esn` Merge usn1=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) On Match Set (#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`3esn`?:usn1|:#usn8*..{usn1:.12e-12[999...12]}]->(#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]}).`7esn`? =12 Ends With $7 Ends With $#usn8"), + octest:ct_string("Detach Delete Extract(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]|1000[..0e0][..$`6esn`])[{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}][Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 8.1e1 Ends With $0 Ends With 6.0e0)],.9e1[All(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)..][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])..] Union Merge `6esn`=(({`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]})-[#usn8:`2esn`|`7esn`{`5esn`:07 Starts With usn1 Starts With 010}]-(`5esn` :`4esn`:`7esn`)) On Create Set None(`8esn` In 01234567[..0.0][..false] Where Count(*)[9e1..][12e-12..]).usn1 =.0e0[$`6esn`..] Union Detach Delete `4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Ends With None(`` In $_usn3 Is Not Null Where .9e1[...12e12]),`5esn`[0X7..][12..] Remove None(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]).#usn8,{@usn5:$`1esn` Starts With Count(*) Starts With $`8esn`}._usn3! Optional Match ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}))"), + octest:ct_string("Merge (`5esn` :_usn3:_usn3{`5esn`:$`2esn`[010..`5esn`][``..0.12]})<-[usn2:@usn6|:_usn3 *123456789..0x0$_usn3]->(:`8esn`:#usn7{``:$7 Starts With Null Starts With `6esn`,`4esn`:#usn8[..#usn7][..@usn6]}) On Match Set Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`1esn` =.1e1 Ends With `2esn` Ends With $`1esn`,All(usn1 In 7.0e-0[.._usn4][..0X7] Where 12.0[..Count(*)][..5.9e-12]).`3esn`!.`4esn`!.``! =Count(*)[8.1e1..],{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}.usn1!.@usn6? =$`3esn` In 's_str' In $#usn7 With *,None(_usn3 In ``[$``..] Where .0e0 In 10.12e12 In $`5esn`) Is Null Is Null As ``,Count ( * ) Starts With 10.12e12 Starts With `` Skip Count(*)[..Count(*)][..9e0] Where $`6esn` Starts With `4esn` Union Merge `5esn`=(((`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`))) Unwind 7.0e-0[3.9e-1..`1esn`] As _usn3 With Distinct $123456789 Is Null Is Null As #usn8,@usn6[..$`3esn`][..4.9e12] As #usn8,1.9e0[$12][``] As `5esn` Order By `1esn` Ends With 7.0e-0 Ends With $usn1 Desc Limit $`2esn` Ends With $`8esn` Union Unwind .0[01234567][$#usn8] As `2esn` Merge `6esn`=(({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Create Set All(usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]).`2esn`? =0Xa[$usn2..],`3esn`:usn1,`1esn` =$``[`6esn`][00]"), + octest:ct_string("With Distinct *,Null[12e-12..] As _usn4,$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Skip Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`])[0x0..[`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`]] Create `6esn`=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}))) Union All Return *,$#usn7 Is Not Null Is Not Null As `1esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4 Order By 9e12 Ends With 07 Ascending,\"d_str\" =~9e-12 =~`5esn` Desc,Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999)[Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])][[_usn3 In ``[$``..] Where @usn5 Ends With 0]] Descending Skip `` =~$`5esn` Merge (usn2 :@usn5{`3esn`:$usn1 Is Null})-[_usn3:`2esn`|`7esn`*..{#usn8:`1esn` =~0 =~_usn4,`2esn`:0e-0 In $1000 In .9e1}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}) On Create Set @usn5 ={``:`1esn` In 12e-12 In 1e-1,usn2:_usn3[`2esn`..10.12e12][9e1..true]}[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )]..][Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`])..],`6esn` =usn2['s_str'...9e-1][$7..Count ( * )] On Create Set None(`8esn` In 01234567[..0.0][..false] Where $_usn3 Contains 1e1 Contains .12).``.`8esn`? =8.1e1[$`5esn`][0e0] Merge (:usn1{``:.9e1[..`5esn`]}) On Match Set {_usn4:7.0e-0 =~$12 =~5.9e-12}.#usn8?.`` =9e12[...12e12][..$`2esn`] On Match Set _usn3(.9e12[..$usn1][..10.12e12],$`2esn` In 0 In 0Xa).`1esn`? =.1e1 Starts With .1e-1,@usn5+=123456789 =~$`1esn` =~#usn7,`8esn`+=Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]) In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )] In `8esn`(Distinct $_usn3 Contains 1e1 Contains .12) Union All Create @usn6=((`5esn` :`6esn`:`3esn`{usn2:$`4esn`[..2.9e1][..07],`6esn`:#usn7[10.12e12..][\"d_str\"..]})<-[`7esn`*..]->($@usn6)<-[:_usn3|`2esn` *010..]-(`` :usn1)) Create `5esn`=((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]})),@usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))) Return Distinct count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0])[_usn3(8.1e1[usn2..$1000][$7..0x0],false[..12e-12][...9e1])..] As @usn6,.0e-0[0e0..00][.9e1..12] As `1esn`,Count ( * ) Starts With 10.12e12 Starts With `` As `5esn` Order By 5.9e-12[9e0..] Ascending,0x0 Asc Skip 0Xa[$usn2..]"), + octest:ct_string("Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Where 4.9e12 In 5.9e-12 In .9e0 Union Merge ((:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})-[usn2?:@usn6|:_usn3]->({usn1:01[.9e-12..],@usn6:$`5esn` Ends With $#usn7 Ends With .0e-0})) On Create Set @usn5:usn2,None(`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]).`5esn`? =#usn7 Is Null,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where .9e1[#usn7..]).`8esn` =$`8esn` In 9e-12 In 3.9e-1 On Create Set @usn5 =0.12 Is Not Null Is Not Null,`3esn`+=11.12e-12 Is Null,`` =Count ( * )[..2.9e1] Union All Delete [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]],All(`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])[None(`` In $_usn3 Is Not Null)..][All(`8esn` In 01234567[..0.0][..false] Where .12e-12[$@usn6..5.9e-12])..] Match usn1=((`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[?{_usn3:Null Starts With 9e1 Starts With ``}]->({`1esn`:0X0123456789ABCDEF Contains 8.1e1})-[_usn3:_usn4|`1esn`{`2esn`:123456789 In 9e-12 In false}]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]})) With Distinct *,$usn1 Contains `7esn` Contains .9e12,$`2esn` In 0X7 In 3.9e-1 As #usn7;"), + octest:ct_string("Remove {`5esn`:.9e-12 Starts With .0e-0 Starts With usn2}.`3esn`!,Single(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12).`` Union Merge `6esn`=((#usn7 )) On Match Set `1esn`().`` =$`2esn`[$1000..][$@usn5..] Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As #usn7"), + octest:ct_string("Match (#usn8 :#usn8)<-[`5esn`?:``|:`3esn` *..0xabc]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[{#usn8:.0e0[1e1..][01234567..],`6esn`:123.654 Ends With 0Xa Ends With .12e12}]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12}) Where Count(*) In .9e-12 In $usn1 Return 9e12 Starts With `4esn` Starts With .9e-1 As @usn6 Order By {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} Ascending,01 Ends With \"d_str\" Asc,1000 Is Null Is Null Ascending Limit 0e0 Starts With $1000 Starts With `2esn`;"), + octest:ct_string("Remove Filter(_usn4 In Count(*)[9e1..][12e-12..] Where .9e1[#usn7..]).``"), + octest:ct_string("With Distinct 12e-12 Ends With @usn5 Ends With $`2esn` As `6esn`,$123456789[#usn8][.9e-12],@usn5 Contains _usn3 Contains 00 As _usn4 Order By Count(*)[0e0..] Ascending,12e-12 Ends With @usn5 Ends With $`2esn` Desc Remove [`8esn` In 12.0 Contains $_usn4 Contains $usn2|#usn8 Starts With 11.12e-12 Starts With $`3esn`].`6esn`.`6esn`!.`5esn` Create `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2});"), + octest:ct_string("Unwind 9e1 Is Not Null As #usn8 Unwind 01234567[..Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null)][..999] As usn2 With *,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] As usn1 Limit `3esn`[$0..][.9e1..] Union Match `7esn`=((`8esn` {@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})),({_usn3:$`5esn`[7..]})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})-[#usn7?:`2esn`|`7esn` *..7]-(`3esn` {`6esn`:$`8esn`[..1e1][..``],`8esn`:$usn2 In usn1 In 1e-1}) Detach Delete (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] Union Detach Delete 1000[_usn3..`8esn`] Optional Match usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})),_usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Where $_usn4 Starts With 0e-0 Starts With 1e-1;"), + octest:ct_string("Merge #usn8=(@usn5 :usn1{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(@usn5 {#usn8:_usn3 Ends With 01 Ends With .1e-1}) On Match Set `7esn` =$`7esn` Is Null Is Null,`8esn`+=`6esn`[..$@usn6][..$`1esn`],`3esn`+=3.9e-1 Contains 9.1e-1 Contains `8esn` Union All Return 1.9e0 Ends With Count ( * ) Ends With .12 As `4esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12),9e1 Is Not Null As #usn8 Order By $`4esn` Ends With 0e-0 Ascending,.9e-1 Contains .0e0 Contains usn1 Asc Skip None(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8) Is Null Is Null Union All With Distinct ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]),0e0[`4esn`] Skip _usn4(0[true..$7]) =~Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`) =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0) Limit @usn6(Distinct 12e12 Ends With $`3esn` Ends With 11.12e-12)[..{`2esn`:.9e12 Starts With 6.0e0 Starts With .1e1,#usn7:010[11.12e-12..]}][..`1esn`(Distinct $0[$`7esn`..$`3esn`]['s_str'...0])] Where .9e-12 Is Not Null Is Not Null"), + octest:ct_string("With $`4esn` Contains $12 Contains .9e-1,.1e-1[@usn6..] As `4esn`,`2esn` =~usn1 As `6esn` Skip 0xabc[7.0e-0..][12e12..] Limit .12e12 =~$#usn7 Where Count ( * )[`7esn`..] Remove Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 01234567[6.0e0][$usn2]).`3esn`!.usn1! Return Distinct *,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null As usn2,1.9e0[$12][``] As `5esn`;"), + octest:ct_string("Unwind Extract(`7esn` In .12e12[Count(*)..] Where true Starts With 2.9e1 Starts With 9e1|12[0xabc..][$0..]) Starts With Extract(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12|0.12[3.9e-1]) Starts With ``(12e12[true..][$`2esn`..]) As `4esn` Return Distinct $0 =~01234567 As ``,Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])[All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654])][None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])] As usn2 Order By .0e-0 =~$`7esn` =~$0 Descending,01234567 Ends With 2.9e1 Ends With 9.1e-1 Asc,0x0 Contains $`1esn` Contains 0.0 Ascending Skip $`` In $@usn6 In 3.9e-1 Merge `1esn`=(((@usn5 :usn2)-[`4esn`?:_usn3|`2esn`]-(:#usn7:_usn3)<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}))) Union Detach Delete `2esn`[0xabc..][$_usn3..],01[1e-1],$``[Count(*)]"), + octest:ct_string("Optional Match ``=((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})),`3esn`=((`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999}))"), + octest:ct_string("Merge ((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set @usn6+=123456789[Count ( * )..],`8esn`+=Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * ))[{`4esn`:12e-12 Starts With .9e12 Starts With 0.12}..(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})],#usn7+=12e-12 Starts With .9e12 Starts With 0.12 Merge `5esn`=((({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))) On Match Set Extract(`` In $_usn3 Is Not Null Where $_usn3 In 123.654 In $`8esn`|$`8esn`[$usn2..]).`6esn`!.``! =_usn4 In `3esn` In 7.0e-0 On Create Set {`1esn`:$`1esn`[.9e0][$_usn3]}.`8esn`? =`1esn`[Count ( * )][5.9e-12],`8esn`+=123.654 Ends With Count(*) Detach Delete 9e12[.0e-0],12.0[$1000..][123456789..],Extract(`` In 0.12[3.9e-1]|0X7 Starts With 1e1 Starts With $12)[`7esn`(9.1e-1 Contains 0xabc)..][Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3])..] Union Delete 12e12 Starts With 4.9e12 Starts With 0e0,Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)],`6esn`[..01][..`8esn`] Detach Delete 00 =~.9e-12 =~usn1,(`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})],Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Unwind Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `6esn` Union Create `1esn`=((`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1)-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})),((`4esn` )<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}));"), + octest:ct_string("Return Distinct $0 =~01234567 As ``,Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])[All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654])][None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])] As usn2 Order By .0e-0 =~$`7esn` =~$0 Descending,01234567 Ends With 2.9e1 Ends With 9.1e-1 Asc,0x0 Contains $`1esn` Contains 0.0 Ascending Skip $`` In $@usn6 In 3.9e-1 Return .1e1 =~`1esn`,Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],$#usn7 Is Not Null Order By All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Desc,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] Ascending,.9e0 In 9.1e-1 In $123456789 Desc Union All Merge ((:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]-(`8esn` $12)<-[#usn8? *12..0Xa]-(:#usn8$#usn8)) On Create Set `8esn`+=0x0 Starts With 01234567 Union All With Count(*) Is Not Null As `4esn` Skip All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null With *,123.654 Is Not Null Is Not Null As `7esn`,(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) Starts With count(Distinct 9.1e-1 =~@usn5 =~Count ( * ))"), + octest:ct_string("Delete {`8esn`:$`` Is Null Is Null}[Extract(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..])..][Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)])..],$`6esn`[..12e12][.._usn3],$_usn4 Starts With 0e-0 Starts With 1e-1 With `2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,1e1 In .1e-1 In .0 Order By 1000 Contains Null Contains 9e1 Desc,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null Descending,$`7esn`[..12.0][..0e0] Asc Limit 11.12e-12 Is Null Where 's_str' Ends With 0.0 Ends With .12e12 Match `5esn`=((`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]})-[:`6esn`|#usn7{usn1:$`2esn` Contains $1000,`7esn`:`7esn`[.1e1..][`8esn`..]}]-(#usn8 {`2esn`:usn2 Ends With .0})) Where 999 Starts With .9e12 Starts With 3.9e-1"), + octest:ct_string("Optional Match `5esn`=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}),#usn8=((`3esn` {#usn8:`7esn` Is Null})-[_usn4 *999..]->(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]})) Return *,0 Starts With 0Xa Starts With $0 Limit Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}] With .12e-12 Is Not Null,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})],12e12[$@usn5..][.0e-0..] As `2esn` Limit All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] Where true Contains 0x0 Union Unwind 7 Starts With 0X7 As usn1"), + octest:ct_string("Remove {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}.usn2!,{``:7.0e-0 Is Null Is Null,@usn5:9e-12[$0][$`4esn`]}.`1esn`?.`3esn` With _usn3[`2esn`..][0x0..] As usn1 Order By 01234567 Starts With `4esn` Starts With 10.12e12 Ascending,0Xa In 0.12 In $#usn7 Descending,$999 Is Not Null Desc Skip $@usn5 Ends With $@usn6 Ends With \"d_str\" Limit (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Where 11.12e-12 =~$`4esn` =~.12e12 Return Distinct *,9e0[.0e-0] As _usn4 Skip 0X7[`4esn`..][`3esn`..] Union All Optional Match ((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})),(((`2esn` :`6esn`:`3esn`{@usn5:Count(*)[.0e0]})-[usn1?:usn1|:#usn8*..]-(`7esn` {`3esn`:.9e-1 Is Null})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))) Where 0x0 =~$7 =~Null Merge `1esn`=(((`8esn` {@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})-[`3esn`?:`2esn`|`7esn`*..]-(:_usn4)<-[``?:#usn8|:`4esn`]-(:usn1{@usn5:Count(*)}))) On Create Set All(_usn4 In Count(*)[9e1..][12e-12..] Where #usn8[7..@usn5]).`2esn`?.#usn7!.#usn7 =_usn4 Ends With .0 Ends With 7 On Match Set _usn3+=`1esn` =~0 =~_usn4,`3esn` =`5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]] Remove {_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}.`1esn`;"), + octest:ct_string("Return Distinct *,`2esn` Starts With $`7esn` Starts With _usn4 As `3esn` Order By .9e0 Is Null Asc,0 Is Not Null Desc;"), + octest:ct_string("Optional Match ({`4esn`:$@usn5[$#usn8..][_usn3..]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]});"), + octest:ct_string("With *,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] As _usn4 Order By 00[$`6esn`] Descending,$``[Count(*)] Desc,$`5esn` Is Null Is Null Ascending Where .9e1[...12e12] Union Unwind .9e12[..$usn1][..10.12e12] As `3esn` Delete usn2['s_str'...9e-1][$7..Count ( * )] Merge `6esn`=(:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}) On Create Set `1esn`+=00[0e-0...9e-1][1e-1..``],``+=2.9e1 Starts With 12e-12 Starts With 0.0,(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8"), + octest:ct_string("Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Where Count(*) With *,$999 In 0.0,5.9e-12[`1esn`][usn2] Order By Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) Asc Unwind All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2 In usn1 In 1e-1) =~{#usn8:00[0e-0...9e-1][1e-1..``]} As `1esn`"), + octest:ct_string("Match ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})),_usn3=((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Where $usn2 =~$`2esn` =~\"d_str\" Optional Match #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}),`1esn`=(:usn1{usn1:Count(*)[0.12..2.9e1]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})"), + octest:ct_string("Create @usn6=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Union All Remove @usn5(Distinct 1e-1[..$@usn5][..0xabc]).`3esn`!,Filter(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010).`1esn`?.`7esn`?.`3esn`?,`3esn`:usn2 Union Unwind [`` In 0.12[3.9e-1] Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`|Null[10.12e12..]] In {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] As `1esn` Merge (`1esn` :`5esn`)-[:#usn8|:`4esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}]-(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}) On Match Set .9e-12.`3esn`?.`3esn`.`7esn`? =Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) Remove {usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7}.`3esn`!,(:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}).`3esn`?,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where usn2 Ends With 10.12e12).`3esn`!"), + octest:ct_string("Create `8esn`=(`3esn` :#usn7:_usn3)<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(`2esn` :usn2)<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}),`4esn`=(((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Union Remove Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]).`2esn`!._usn4! Unwind 12[0xabc..][$0..] As @usn5 Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null;"), + octest:ct_string("Optional Match ((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Optional Match `3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})),`6esn`=((#usn7 )) Where 9.1e-1 In #usn8 Remove Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $@usn5 =~.12e-12).`4esn`?,Single(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]).`8esn`? Union All Remove {`4esn`:`8esn` =~.1e1 =~.0,`4esn`:Count(*) Starts With $_usn4}.@usn5?,count(Distinct 9.1e-1 =~@usn5 =~Count ( * )).`2esn`,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7).#usn7! Union With *,Count(*)[..Count(*)][..9e0] Order By 07 Starts With usn1 Starts With 010 Ascending,7.0e-0[..$`7esn`][..Null] Descending,$usn2[8.1e1...9e-1][.1e-1..11.12e-12] Desc Skip Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] Limit 999 Ends With $123456789 Ends With $_usn4;"), + octest:ct_string("With (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7),Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),12.0 =~$@usn5 =~8.1e1 Order By Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] Ascending Limit $@usn6 Contains Count ( * ) Return Distinct ``[..$#usn7],$`6esn`[$`8esn`..][false..] As _usn3 Order By (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})[Extract(`` In $_usn3 Is Not Null Where _usn4[7][8.1e1])..None(usn1 In 7.0e-0[.._usn4][..0X7] Where .9e-1 =~.9e-1)] Desc Limit $0 In Count ( * ) In .1e1 Match usn2=((:@usn5)-[@usn5:_usn3|`2esn`{`1esn`:5.9e-12[$`4esn`],usn1:9.1e-1[Count(*)..][5.9e-12..]}]->(usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})),(({#usn7:0X7[Count(*)][.9e0],`2esn`:0x0[`5esn`][$`5esn`]})-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})) Union Merge @usn5=((:`7esn`{usn1:123.654 Ends With 0Xa Ends With .12e12})-[ *0..010]->(_usn4 :`5esn`)) On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} On Match Set `7esn`+=$`` In $7 In 9e-1,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`].``? =Count(*) Starts With $_usn4,`1esn` =0xabc Contains 9e1 Contains 0x0;"), + octest:ct_string("Merge ((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`3esn`? =0.12[3.9e-1],_usn4 =Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],[`` In $_usn3 Is Not Null Where 12 =~$@usn5|$`2esn` In 0X7 In 3.9e-1].`8esn`.`5esn`? =12e-12[9e0..1.9e0] On Create Set `1esn` =.1e-1[..12][.._usn4],_usn4 =usn2[..7.0e-0],`5esn` =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1} Unwind `2esn` Starts With 12 Starts With 10.12e12 As `5esn` Optional Match (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[:usn1|:#usn8]-(:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`}) Where 123456789 Contains .1e-1 Contains .12e12;"), + octest:ct_string("With Distinct .12e-12 In 9e12 In 9e-12,$#usn8[...9e1] Order By $``[`4esn`..][0.0..] Asc,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Skip Extract(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]|1000[..0e0][..$`6esn`])[{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}][Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 8.1e1 Ends With $0 Ends With 6.0e0)] Unwind 123456789[Count(*)] As usn1 Create ((#usn7 :_usn4{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})),_usn3=((usn2 {`4esn`:12e12 Is Not Null})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4})) Union All Unwind 0e-0 Contains _usn4 Contains 1e-1 As _usn3 Union All With Distinct *,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As `5esn`,0X0123456789ABCDEF Contains 8.1e1 Skip false Is Not Null Is Not Null Where 999[...12e12][..0] Return Distinct (#usn8 :#usn8)-[`` *..0X7]->(usn2 :#usn8)-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(@usn6 )[All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .12[$`2esn`..usn2][.9e-1.._usn3])],0.12[.12e-12] As `6esn` Order By true Starts With 2.9e1 Starts With 9e1 Desc Limit (#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})[Any(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)..][Single(_usn3 In ``[$``..] Where Null[`2esn`..])..] Merge ((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}));"), + octest:ct_string("Remove All(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null).`3esn`!.`4esn`?,(#usn8 {`3esn`:123456789 Contains .1e-1 Contains .12e12,`1esn`:$`3esn` =~4.9e12 =~$7})<-[:#usn8|:`4esn`{usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})<-[{`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}]-(:@usn5).`1esn` Optional Match (((`7esn` {`3esn`:.9e-1 Is Null})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`))) Where .0e-0[0e0..00][.9e1..12] Union Merge (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))) On Match Set `4esn`+=.9e0 =~`6esn` =~2.9e1,`` =_usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null With 3.9e-1 Is Null As usn1 Unwind ``[..$#usn7] As @usn5"), + octest:ct_string("Match (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}),`1esn`=(((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[:_usn3|`2esn` *010..]-(`` :usn1)<-[@usn5?:@usn6|:_usn3 *07..{_usn3:$`3esn` Is Not Null Is Not Null,#usn8:usn1[0.12..1000]}]->(`3esn` {usn2:$`7esn`[..12.0][..0e0]}))) Return *,`2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,Null =~9e12 As #usn7 Order By .0e0[..12.0][...1e-1] Descending,5.9e-12 =~$@usn6 Asc"), + octest:ct_string("Merge usn1=(`` {_usn4:9e0[..1e1]})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}) On Create Set `5esn`(Distinct $`2esn`[8.1e1],Count ( * ) Is Null Is Null).`7esn`!.`8esn`? =$``[7..] Union All With 12e12[..$`8esn`][...0e-0] As `1esn`,Null[...9e1] Skip .9e0 =~`6esn` =~2.9e1 Union Optional Match _usn4=(:_usn4),`3esn`=(({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[``?:``|:`3esn` *01234567]->(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})) Where $12[01] Detach Delete All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Delete ``(Distinct #usn7 =~`5esn` =~``)[Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..])..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)],4.9e12[1e1..'s_str'][Count(*)..0X7]"), + octest:ct_string("Create `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Merge `5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))"), + octest:ct_string("Unwind `5esn` Contains 1.9e0 Contains 9e0 As #usn7 Create ``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Union Merge (`` {_usn4:9e0[..1e1]})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}) Return Distinct *,5.9e-12[$`4esn`] Order By 123456789 Ends With $@usn6 Ends With 0.12 Descending Skip 00[$`6esn`] Limit .1e1 Is Null Is Null Remove Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1).`` Union Unwind $#usn8[...9e1] As `7esn` Merge `5esn`=(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[:#usn8|:`4esn`{_usn3:'s_str' Is Null,#usn7:#usn7[..0X0123456789ABCDEF]}]->(`` {`2esn`:.1e-1[2.9e1..][12..]});"), + octest:ct_string("Merge usn2=(({`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]})-[#usn8:`2esn`|`7esn`{`5esn`:07 Starts With usn1 Starts With 010}]-(`5esn` :`4esn`:`7esn`)) Union All Remove All(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1]).`8esn`!,Single(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12).usn1!,{_usn3:false[$1000..$@usn6][7..12]}.#usn8!"), + octest:ct_string("Unwind `7esn` Is Not Null Is Not Null As `1esn` Union All Remove [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )].`5esn`.`7esn`? Unwind Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7)[{usn2:`8esn` Is Null}..[@usn6 In .9e12 Starts With #usn8 Starts With 00]][(:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null})..{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}] As `1esn` Union Create `7esn`=((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})),usn1=((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})) Unwind $`8esn`[$``..$`1esn`][9e-12..$7] As _usn4 Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12}))"), + octest:ct_string("Remove {`4esn`:#usn8[..#usn7][..@usn6],`4esn`:8.1e1 Ends With $0 Ends With 6.0e0}.@usn6!.``! Return Distinct `8esn` Is Null As `6esn`,01234567 Starts With `4esn` Starts With 10.12e12,Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null As _usn3 Order By 01[7][`1esn`] Asc,Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null Descending,Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|.9e12 Starts With 6.0e0 Starts With .1e1) Is Null Is Null Asc Skip 1.9e0 =~0x0"), + octest:ct_string("Remove `6esn`(Distinct).`2esn`,{`8esn`:.1e1 Is Null Is Null}.#usn7? Match (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[:usn1|:#usn8]-(:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`}),`2esn`=((_usn4 {#usn7:$`5esn` Is Null Is Null})-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})) Return Distinct *,0xabc[7.0e-0..][12e12..] Order By .0e0[..12.0][...1e-1] Descending,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Descending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Skip 12e12 =~#usn7 =~.9e-1 Limit All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7)[{`6esn`:$123456789[$_usn3..][$usn2..],#usn7:_usn4[7][8.1e1]}];"), + octest:ct_string("Unwind $@usn5 Is Null Is Null As @usn5 Union Match (:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}),(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}) Where .9e-1[3.9e-1]['s_str'] Merge usn1=(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ) Optional Match `2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Union Unwind true Is Null Is Null As usn1 Unwind `5esn`[$`4esn`] As `4esn` Detach Delete None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),`2esn`(Distinct) Starts With Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]) Starts With (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})"), + octest:ct_string("Return Distinct $`2esn` Contains 123.654,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] As usn2,.9e-12[01][Count(*)] Order By (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] Ascending Skip $`3esn` Ends With 010 Ends With $`7esn` Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) Union All Create @usn6=((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})) Union All Return Distinct #usn8[7..@usn5] As usn2,12 Contains [usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12|$0 Contains .12e-12],10.12e12[$`5esn`] Limit (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] Return Distinct $#usn7 =~8.1e1 As #usn7,`4esn`[$1000..$``][$_usn4..$_usn4] Skip $`2esn` In 0X7 In 3.9e-1"), + octest:ct_string("Delete $`8esn` In .1e1 In 010,123456789 =~6.0e0,@usn5 In $1000 In 07 Delete [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1) Ends With Filter(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7]),5.9e-12[`4esn`..12e12][0x0..1.9e0] Unwind `7esn` Ends With _usn4 As _usn3 Union All Match ((:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[? *12..0Xa]-(`2esn` :#usn7:_usn3)<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})) Remove [#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1].`6esn`._usn4?._usn4!,{`3esn`:#usn8[..#usn7][..@usn6]}.#usn8? Union With Distinct *,$7 Contains _usn4 Contains $`1esn`,9e-12 In 5.9e-12 As `` Skip 3.9e-1 Contains 9.1e-1 Contains `8esn` Limit Count ( * )[7] Where 11.12e-12 In $`1esn` In 9e12 Detach Delete 9e12[1e1...9e-12] Detach Delete 5.9e-12 Ends With 1e1 Ends With false"), + octest:ct_string("With *,10.12e12[..1.9e0][..Null] As `8esn`,All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])[..{#usn8:.12e12[Count(*)..]}][.._usn4(Distinct `2esn` Starts With 999,$`5esn` Starts With 0X7 Starts With 1e1)] As `` Order By 0[true..$7] Descending Skip Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999)[Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])][[_usn3 In ``[$``..] Where @usn5 Ends With 0]] Return Distinct `5esn` Contains `6esn` As `4esn` Skip 0X7[Count(*)][.9e0] Limit None(`7esn` In .12e12[Count(*)..] Where Count(*)[..Count(*)][..9e0])[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1]|.0)..] Unwind [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) As usn1"), + octest:ct_string("Create `2esn`=((:`4esn`:`7esn`{`3esn`:`1esn`[9.1e-1]})<-[?:@usn6|:_usn3 *07..]-(#usn8 :`2esn`:`8esn`{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:@usn5[...9e12]})-[? *..0X7{_usn3:00[$`6esn`]}]->({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})),#usn7=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})) Union Create ((`3esn` {#usn8:`7esn` Is Null})<-[{`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}]-(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Merge (((`4esn` {_usn3:@usn6 In 3.9e-1 In 9e-12})<-[`6esn`? *123456789..0x0]-(`7esn` :`8esn`:#usn7{`4esn`:`8esn` =~.1e1 =~.0})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`6esn` {_usn3:$_usn4 Contains .12e-12}))) On Create Set #usn8 =usn2 Ends With 10.12e12 On Match Set `8esn` =01[.9e-12..],usn2 =.9e-1 =~.9e-1,`2esn`+=$999 Return [_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789|0e-0 Contains _usn4 Contains 1e-1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567) As `7esn`,@usn5 Ends With 's_str' Ends With 01 As _usn4 Order By [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Descending,123456789 =~2.9e1 =~@usn5 Descending Skip .0e0[1e1..][01234567..] Limit Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7)"), + octest:ct_string("Return 0x0 Starts With $`5esn` Starts With 9e-12,$`6esn` Ends With 12 Order By Count ( * )[0..][010..] Desc Skip .9e-1[12.0] Union Merge `7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) On Match Set (`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8,_usn3+=Null[..07] Unwind 5.9e-12 =~$@usn6 As `2esn` Return 1.9e0 Starts With 's_str' Starts With 9.1e-1,8.1e1 Is Null,.1e1 Starts With .1e-1 Order By 1.9e0 In $0 Desc,7.0e-0 =~$123456789 =~`8esn` Asc,#usn7[10.12e12..][\"d_str\"..] Desc Union All Remove All(`2esn` In .9e-12[0e0...9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4)._usn3!.`1esn`?;"), + octest:ct_string("Unwind usn1[12e-12] As #usn8 Return Distinct Null[.12e-12] As #usn7 Skip 0x0 Contains 0X7 Contains 999 Limit `6esn` Is Not Null Is Not Null Union Match (((:#usn8{`8esn`:usn1[12e-12],@usn6:Count ( * ) In 999})<-[`8esn`? *0x0..]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})<-[@usn6?:`5esn`]->(`8esn` {`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}))) Where 0[$999..]"), + octest:ct_string("Remove `5esn`().`7esn`.`7esn`.usn2,{`5esn`:$#usn8[$1000..],#usn7:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]}.`4esn` With *,{`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As #usn7,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Limit [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]][{`2esn`:$`8esn` In 9e-12 In 3.9e-1}..{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}][Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..])..Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Optional Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Where .0e0[1e1..][01234567..]"), + octest:ct_string("Unwind 123.654 =~1e-1 =~.9e-1 As `8esn` Merge `7esn`=((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)) On Match Set Filter(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).``.`8esn` =Count ( * )[..`8esn`],usn1 =123456789 Contains .1e-1 Contains .12e12,`8esn`+=`7esn` Ends With _usn4 On Match Set `6esn` ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])],All(`5esn` In 12[0xabc..][$0..] Where _usn3 Ends With 01 Ends With .1e-1).`6esn`? =12.0[..Count(*)][..5.9e-12] Return *,(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12})[[`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1|`6esn`[..$@usn6][..$`1esn`]]] Order By {@usn5:true Contains 0x0} In Extract(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$1000[..01234567][..0X0123456789ABCDEF]) Descending,$`2esn`[$usn1..] Asc,.9e-12 Is Not Null Is Not Null Asc Skip $usn2[4.9e12..false][.0e-0..00] Union Match `1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) Where 0e0 Is Null Is Null Unwind usn1[12e-12] As #usn8"), + octest:ct_string("Remove [#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1].`6esn`._usn4?._usn4!,{`3esn`:#usn8[..#usn7][..@usn6]}.#usn8? Create ((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),(((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]}))) Union All Delete Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)[{_usn3:$0 Starts With 010}],Extract(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``]|$_usn4[..usn2]) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) Starts With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null|`4esn` Is Not Null Is Not Null) Union Detach Delete {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null),\"d_str\" Starts With `6esn` Starts With 1.9e0,`5esn` Contains 1.9e0 Contains 9e0 Create (((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))),(`5esn` :`5esn`)"), + octest:ct_string("Detach Delete 11.12e-12 Contains 9e-12 Return Distinct *,9e0[.0e-0] As _usn4 Skip 0X7[`4esn`..][`3esn`..] Return Distinct @usn5 Ends With 's_str' Ends With 01 As `7esn`,$`8esn`[..usn1][..$`6esn`] As usn2,Count ( * )[..123456789][...0e0] Order By 10.12e12 =~12e-12 =~0X0123456789ABCDEF Descending,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) Asc,8.1e1 Starts With .9e12 Starts With `7esn` Desc Union All Detach Delete None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),12e12[07..] Union All With Distinct *,$0[$`7esn`..$`3esn`]['s_str'...0],usn1 Ends With 12 Order By Count ( * )[0..][010..] Desc Limit 12.0 Starts With 07 Starts With $`3esn` Where @usn6[usn1..][`1esn`..] Match `3esn`=(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}),usn2=((:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}))"), + octest:ct_string("Create `6esn`=((#usn7 :_usn3:_usn3)<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Merge (`4esn` :`6esn`:`3esn`) On Create Set {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]}.#usn8?.`4esn`?.@usn6? =.9e12[$usn2..][7..],[_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]].`8esn`.@usn6? =0X7 =~$123456789 =~$`` On Match Set `2esn`+=3.9e-1[.9e-12],`5esn` =.0,`3esn`+=$_usn4 Is Not Null Unwind {`1esn`:07 Ends With @usn6 Ends With _usn3} =~Any(`7esn` In .12e12[Count(*)..] Where 01 Ends With \"d_str\") As `` Union All Merge ((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) On Create Set All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where true In $0 In @usn5).`7esn`.#usn8?.@usn5! =usn2 Starts With $_usn3 Unwind `4esn`(Distinct 01[..0.12],$`8esn` Is Null) Contains All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]) As `1esn` Delete None(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Is Not Null Union Return Distinct $_usn3 In 123.654 In $`8esn` As `2esn`,@usn5[$_usn3..],.1e-1 Contains 1e1 Contains $`6esn` As `5esn` Order By $usn1 Contains `7esn` Contains .9e12 Ascending,8.1e1 Ends With $0 Ends With 6.0e0 Descending,9e12[...12e12][..$`2esn`] Descending Limit `3esn`[`4esn`..Null][$usn1..`5esn`] Detach Delete $#usn7 Starts With 10.12e12;"), + octest:ct_string("With *,(`5esn` :`2esn`:`8esn`)-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]}) Is Null Is Null As `8esn` Skip {#usn7:$usn2[1e-1]}[(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)..][(usn1 :`2esn`:`8esn`)<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]})..] Merge (((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}))) On Create Set `2esn` =$`3esn`[010..][9e-1..],[`8esn` In 01234567[..0.0][..false] Where 5.9e-12[.1e1][$#usn8]|12 Contains usn2 Contains $usn2].#usn7 =01234567[..0.0][..false],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789).usn1!.``! =010 Starts With 0.0 Starts With .0e0 Unwind Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null As _usn4"), + octest:ct_string("With *,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1) Ends With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) Skip 123456789[Count(*)] Remove `2esn`(Distinct .9e-12 Ends With `1esn` Ends With 123.654).`6esn`?,({_usn3:$`5esn`[7..]})-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`` :`5esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}).`8esn`!._usn4.@usn5! Union All Delete $usn1[$7..][$0..] Union All With Distinct `8esn`[Null...12e12][0..11.12e-12] Order By 4.9e12[..Null] Desc,12e12 Ends With $`3esn` Ends With 11.12e-12 Asc,#usn8(Distinct false[$1000..$@usn6][7..12],123456789 In 9e-12 In false) =~{#usn7:$`6esn`[..12e12][.._usn3]} =~(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1) Descending Limit 0X0123456789ABCDEF Contains 8.1e1 Detach Delete $`1esn`[.9e0][$_usn3],`4esn` Starts With .0e0 Starts With usn2"), + octest:ct_string("Return *,$12[$12..] As `4esn` Skip Count ( * )[..`8esn`] Unwind Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0|12[0xabc..][$0..]) Contains [`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .12[$`2esn`..usn2][.9e-1.._usn3]] Contains Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]) As #usn8 Detach Delete 1e1 Is Not Null,1e1 Ends With Null Ends With `7esn`,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1])[Filter(_usn3 In ``[$``..] Where Null[`2esn`..])..][Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)..] Union With Distinct Null[...9e1] As usn2 Union Detach Delete 0Xa In 0.12 In $#usn7,12.0[..Count(*)][..5.9e-12] With 11.12e-12 Is Null Is Null As `4esn`,#usn8 Starts With 11.12e-12 Starts With $`3esn` As `2esn` Skip 123.654 Ends With 0Xa Ends With .12e12"), + octest:ct_string("Unwind usn1[12e-12] As `2esn` Unwind Extract(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..]|.9e12[..$usn1][..10.12e12]) Starts With Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]) As #usn7 Union All Merge #usn8=(@usn5 :usn1{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(@usn5 {#usn8:_usn3 Ends With 01 Ends With .1e-1}) Optional Match #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Where 0x0 Starts With $`5esn` Starts With 9e-12"), + octest:ct_string("Match usn1=(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}),@usn5=({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}) Where $`3esn`[..`1esn`][..$`7esn`] Union All Merge _usn4=(((`2esn` {`7esn`:Count(*)[.0e0..][#usn7..]})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)-[:#usn8|:`4esn` *12..0Xa]->(`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]}))) Remove [usn2 In $_usn3 =~$usn1 =~_usn4 Where 0xabc In 10.12e12|9e-1 Starts With 123.654 Starts With .9e1].`2esn`?.`5esn`"), + octest:ct_string("Merge ((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})) On Match Set usn1:`2esn`:`8esn`,`1esn` =$`` Is Not Null,_usn4 =0.0[..Null][..9e-12] On Match Set `2esn`+=.1e1 Is Not Null Is Not Null,`5esn`+=Count ( * )[..1.9e0][..`8esn`] With *,'s_str'[1e-1] As usn1,_usn3[`2esn`..10.12e12][9e1..true] As `1esn` Order By $`8esn`[$``..$`1esn`][9e-12..$7] Descending,$`` In $usn2 Desc,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Ascending Unwind Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()] As `8esn` Union Merge ((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) On Create Set #usn8 =usn2 Ends With 10.12e12 On Match Set {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}.@usn6 =07[.0e0][3.9e-1],`5esn`:`3esn` Return *,true Is Null Limit `6esn`[010...9e-12] With $0 =~01234567 As `2esn`,07[.0e0][3.9e-1] Skip Extract(`7esn` In .12e12[Count(*)..] Where true Starts With 2.9e1 Starts With 9e1|12[0xabc..][$0..]) Starts With Extract(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12|0.12[3.9e-1]) Starts With ``(12e12[true..][$`2esn`..]) Limit [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]] Where 5.9e-12[`4esn`..12e12][0x0..1.9e0] Union All With Distinct .12e-12 In 9e12 In 9e-12,$#usn8[...9e1] Order By $``[`4esn`..][0.0..] Asc,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Skip Extract(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]|1000[..0e0][..$`6esn`])[{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}][Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 8.1e1 Ends With $0 Ends With 6.0e0)] Unwind 123456789[Count(*)] As usn1 Create ((#usn7 :_usn4{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})),_usn3=((usn2 {`4esn`:12e12 Is Not Null})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}))"), + octest:ct_string("With *,Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]),0x0 Starts With $`5esn` Starts With 9e-12 Order By 0.0[4.9e12..][00..] Ascending,Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07) Desc"), + octest:ct_string("Optional Match `2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Merge usn1=(:#usn7:_usn3{#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) On Match Set `7esn`+=$`` In $7 In 9e-1,usn1+=$12 Starts With 1e-1 Starts With $@usn5,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).`2esn`?.#usn8! =Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null Union Unwind `4esn`[$1000..$``][$_usn4..$_usn4] As `7esn` Union All Merge ((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12}))"), + octest:ct_string("Detach Delete $usn1[$7..][$0..] Union All Unwind 999 =~0Xa =~9e0 As `` Remove {`8esn`:Null[..07]}._usn4?.`8esn`?,{`4esn`:$123456789[$_usn3..][$usn2..]}.usn1,[`8esn` In 01234567[..0.0][..false] Where 01[..0Xa]].``.@usn5?.`2esn`!"), + octest:ct_string("With Distinct *,true Is Null Is Null As _usn3 Skip 12e-12[.0..] Limit $@usn5 Is Null Is Null With Distinct Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Limit 9e0[..1e1] Where $usn2[1e-1] Merge ((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Union All Unwind 00 Is Not Null As `1esn` Remove {`4esn`:01[..01]}.`8esn`?.`8esn`?.usn1?,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`2esn`[010..`5esn`][``..0.12]).`4esn`"), + octest:ct_string("Return Distinct $1000[$1000...9e0] As `2esn`,$_usn3[1e-1..],`5esn` Contains `6esn` As `4esn` Order By {`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"} Is Not Null Is Not Null Ascending,{`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] Descending,{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"} Is Not Null Is Not Null Asc Skip @usn6[usn1..][`1esn`..] Limit 01 Ends With \"d_str\";"), + octest:ct_string("Match ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})),(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}) Where .0e0 Is Null Is Null Return Distinct *,[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12} Order By $@usn5 Ends With $@usn6 Ends With \"d_str\" Ascending,$`6esn` In `2esn` Asc,#usn8[`2esn`] Desc Skip `3esn` Ends With `6esn` Limit .1e1 Starts With $`7esn` Union All Delete `` =~123456789,`3esn`[`4esn`..Null][$usn1..`5esn`] Delete $12 Contains $`3esn`;"), + octest:ct_string("Unwind Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Detach Delete (`2esn` :_usn3:_usn3)<-[:_usn3|`2esn` *..0X7{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[_usn3:_usn4|`1esn`{`2esn`:123456789 In 9e-12 In false}]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) =~Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 0e-0 Contains _usn4 Contains 1e-1) =~[usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]],.12e-12 Ends With $`7esn`,`3esn` Union Delete $`6esn` In $`3esn` In 9e1 Create #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})),``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}))"), + octest:ct_string("Merge @usn6=(((@usn5 {``:.0e0[$`6esn`..]})-[?:usn2|:``]-(_usn4 :`4esn`:`7esn`{#usn7:0xabc Is Not Null,`4esn`:_usn3[`2esn`..10.12e12][9e1..true]})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(@usn5 :usn2))) On Create Set #usn7:`4esn`:`7esn`,{`7esn`:$`5esn`[7..],`5esn`:`5esn` Contains `6esn`}.#usn8?.usn2.@usn5! =usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]],@usn6 =\"d_str\" =~9e-12 =~`5esn` On Match Set {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]}.#usn8?.`4esn`?.@usn6? =.9e12[$usn2..][7..],[_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]].`8esn`.@usn6? =0X7 =~$123456789 =~$`` Union All Unwind @usn5 Contains _usn3 Contains 00 As #usn8 Merge #usn8=(`6esn` :``:usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[_usn4:`6esn`|#usn7]-(`8esn` $12) On Match Set _usn4:#usn7:_usn3,Extract(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0|`6esn` In 9e-12)._usn4? =0Xa Ends With #usn8 Ends With usn2 With Distinct *,'s_str'[1e-1] As usn1,_usn3[`2esn`..10.12e12][9e1..true] As `1esn` Order By $`8esn`[$``..$`1esn`][9e-12..$7] Descending,$`` In $usn2 Desc,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Ascending Union All Match ((:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})<-[_usn4:`6esn`|#usn7]-(`8esn` $12));"), + octest:ct_string("Optional Match @usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),`3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})) Create `3esn`=(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`),(((:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]})-[`8esn` *..7{usn2:12.0 Contains $_usn4 Contains $usn2}]-(`8esn` :`7esn`{`6esn`:_usn4 Is Not Null Is Not Null}))) Delete .9e-1 =~.9e-1"), + octest:ct_string("Unwind {`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] As `3esn` Merge `8esn`=((`4esn` )<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})) On Match Set Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`1esn` =.1e1 Ends With `2esn` Ends With $`1esn`,All(usn1 In 7.0e-0[.._usn4][..0X7] Where 12.0[..Count(*)][..5.9e-12]).`3esn`!.`4esn`!.``! =Count(*)[8.1e1..],{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}.usn1!.@usn6? =$`3esn` In 's_str' In $#usn7 Union Create (((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))),`5esn`=(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Create ``=(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn8? *0x0..]->(usn2 :`6esn`:`3esn`) Unwind 0xabc['s_str'][$``] As `2esn`"), + octest:ct_string("Create ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) Union Create `5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)),``=(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`` :@usn6:_usn4)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})"), + octest:ct_string("Merge ((#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[`3esn`?:`5esn`]->(`2esn` )) On Match Set usn1 =.0e0[$`1esn`][.9e-12],(_usn4 :``:usn1)-[ *..01]->(#usn8 :#usn7:_usn3)-[usn2?:@usn5*{`6esn`:.9e0 In 9.1e-1 In $123456789,`6esn`:.12[$`2esn`..usn2][.9e-1.._usn3]}]->($`2esn`).`2esn`?.#usn7? =`4esn` Starts With .0e0 Starts With usn2,`8esn`+=$usn2[4.9e12..false][.0e-0..00]"), + octest:ct_string("With Distinct *,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1) Ends With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) Merge #usn8=(:@usn6:_usn4$`6esn`)<-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :#usn8{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})<-[`1esn`?:#usn7|:`8esn` *..01]-(:`6esn`:`3esn`) On Create Set @usn6 =$`3esn` Remove Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`).`1esn`!._usn4!.#usn8? Union All Optional Match usn1=(@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),#usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12});"), + octest:ct_string("Return *,0 Starts With 0Xa Starts With $0 Limit Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}] Remove (:@usn5{`4esn`:.0e0[$`6esn`..]})-[? *0X0123456789ABCDEF..0]-({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`).#usn7!"), + octest:ct_string("Delete 12e12 =~#usn7 =~.9e-1,(:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[`2esn`? *..7]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]})<-[#usn7? *00..123456789]->(:`6esn`:`3esn`)[{``:`1esn`[Count ( * )][5.9e-12],_usn3:$_usn3[1e-1..]}..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1)],010 Ends With 0x0"), + octest:ct_string("Merge #usn8=(@usn5 :usn1{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(@usn5 {#usn8:_usn3 Ends With 01 Ends With .1e-1}) Optional Match #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Where 0x0 Starts With $`5esn` Starts With 9e-12 Union All Unwind $`` Is Not Null As _usn3 With Count(*) Is Not Null As `4esn` Skip All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Unwind Extract(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``]|$_usn4[..usn2]) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) Starts With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null|`4esn` Is Not Null Is Not Null) As `4esn`;"), + octest:ct_string("With Distinct *,(`2esn` :`6esn`:`3esn`)<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789)..Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1])][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]]..Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 9.1e-1 Is Null|9e1 Contains 4.9e12 Contains .9e0)] Skip $#usn7[..$`8esn`][..2.9e1] Limit Extract(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..]|.9e12[..$usn1][..10.12e12]) Starts With Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]);"), + octest:ct_string("With Distinct 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] Ascending,1e-1[..$`6esn`] Ascending Skip (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Where #usn7 Ends With $#usn7 Ends With #usn7 Return `6esn` In 9e-12 As `3esn` Skip (#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})[Any(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)..][Single(_usn3 In ``[$``..] Where Null[`2esn`..])..] Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] Ascending,1e-1[..$`6esn`] Ascending Skip (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`)"), + octest:ct_string("Return Distinct [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null,Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,1.9e0 Starts With .9e0 Order By `5esn`[0X7..][12..] Asc Limit 0 Is Not Null Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),`3esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1)"), + octest:ct_string("Return 0[..$@usn5],0e0 Ends With 0X7 Ends With .1e1 As _usn3,12e12[..123456789][..false] Limit {`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"} Is Not Null Is Not Null Return Distinct *,_usn3[`2esn`..][0x0..] As usn1,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,usn1() In Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) In (`7esn` :usn1)-[usn2:`4esn`|:@usn5 *01234567]->(_usn4 )-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]}) Desc,``[..$#usn7] Asc Limit 07 Ends With @usn6 Ends With _usn3 Union Merge #usn8=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) On Create Set `2esn` =(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)],`3esn` =9e1 Contains 4.9e12 Contains 123456789 Detach Delete 0x0,$``[`6esn`][00],'s_str' Ends With $usn1"), + octest:ct_string("Return Distinct $`2esn` In 0X7 In 3.9e-1 As #usn7,All(usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null])[``($_usn3[1e-1..],.12e12[Count(*)..])][None(_usn4 In Count(*)[9e1..][12e-12..] Where 123456789 Ends With _usn4)] Skip Count ( * )[7] Limit 123456789 =~2.9e1 =~@usn5 Return $``[7..] As #usn8 Union All Merge ``=((@usn6 :`5esn`)<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})) Delete Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Detach Delete Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8),_usn4[7][8.1e1],Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999)[Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])][[_usn3 In ``[$``..] Where @usn5 Ends With 0]]"), + octest:ct_string("Create #usn7=(({`5esn`:8.1e1 Ends With $0 Ends With 6.0e0,@usn5:9e0[..1e1]})-[`5esn`?:`3esn`|:_usn3{`3esn`:1.9e0 Is Null Is Null,``:$usn2 Ends With `8esn` Ends With _usn3}]-(:``:usn1{_usn3:$#usn7[$_usn4..][.12e-12..],`1esn`:false})<-[`2esn`:`5esn`{usn2:Count(*)[12..][0X0123456789ABCDEF..]}]->(`1esn` {`5esn`:0X7[_usn4..1.9e0][Count ( * )..false],@usn5:123456789 Ends With _usn4}))"), + octest:ct_string("Unwind $_usn3 Is Not Null As @usn6 Union Detach Delete $_usn3 =~$usn1 =~_usn4,false[$1000..$@usn6][7..12] Union Create `5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)),``=(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`` :@usn6:_usn4)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})"), + octest:ct_string("Optional Match usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),`2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Unwind All(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12) In All(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`]) In {usn1:`3esn` Ends With `6esn`} As usn2 Union All Remove {_usn4:$#usn7 Is Not Null Is Not Null,`3esn`:9.1e-1 In #usn8}._usn4?,Any(`8esn` In 01234567[..0.0][..false] Where 6.0e0 Is Not Null).@usn5,`6esn`($0 Starts With 010)._usn3! Unwind 10.12e12 In `3esn` In $usn2 As #usn7 Merge ((#usn8 :#usn8)) On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] On Match Set `2esn`+=9e-12 In usn2,`7esn`($usn1 Is Not Null).`1esn`! =@usn5 Ends With 's_str' Ends With 01,None(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).@usn5! =$`2esn`[8.1e1] Union All Create `2esn`=((:`4esn`:`7esn`{`3esn`:`1esn`[9.1e-1]})<-[?:@usn6|:_usn3 *07..]-(#usn8 :`2esn`:`8esn`{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:@usn5[...9e12]})-[? *..0X7{_usn3:00[$`6esn`]}]->({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})),#usn7=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}))"), + octest:ct_string("Delete #usn8(Distinct false[$1000..$@usn6][7..12],123456789 In 9e-12 In false) Starts With `4esn`(Distinct 0e0 Is Null Is Null),.0 Optional Match (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))),(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Where .9e1[Count(*)..$`3esn`] Union All Merge usn1=(:#usn7:_usn3{#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) On Match Set `7esn`+=$`` In $7 In 9e-1,usn1+=$12 Starts With 1e-1 Starts With $@usn5,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).`2esn`?.#usn8! =Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null;"), + octest:ct_string("Detach Delete 7.0e-0 Is Null Is Null Return *,(`5esn` :`2esn`:`8esn`)-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]}) Is Null Is Null As `8esn` Limit 010 Is Not Null Is Not Null Union Detach Delete $`1esn`[.9e0][$_usn3],`4esn` Starts With .0e0 Starts With usn2 Optional Match ((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})),`7esn`=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})"), + octest:ct_string("Return *,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null As usn2 Limit 0X0123456789ABCDEF Contains 8.1e1 Create `6esn`=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}))) Return $999 Ends With .9e-12 As `7esn`,$``[Count(*)] Order By 1.9e0 In $0 Desc,7.0e-0 =~$123456789 =~`8esn` Asc,#usn7[10.12e12..][\"d_str\"..] Desc Union Optional Match `2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),usn2=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where 0e0[.12..][3.9e-1..] Create _usn4=((`5esn` {`2esn`:`1esn` =~0 =~_usn4})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[usn2?{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3}]-(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})),((usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})) Detach Delete Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8),_usn4[7][8.1e1],Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999)[Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])][[_usn3 In ``[$``..] Where @usn5 Ends With 0]]"), + octest:ct_string("Detach Delete 5.9e-12 =~$@usn6,10.12e12[..1.9e0][..Null] Union Detach Delete Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12])[..None(_usn3 In ``[$``..] Where Null[`2esn`..])][..{`3esn`:.0e-0 Starts With $#usn7 Starts With _usn3,usn2:`6esn` In 9e-12}] Union All Unwind Count(*)[0e0..] As `7esn`"), + octest:ct_string("Merge _usn4=((`5esn` {`2esn`:`1esn` =~0 =~_usn4})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[usn2?{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3}]-(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})) Union Delete 0Xa Ends With #usn8 Ends With usn2,#usn8[3.9e-1.._usn3],_usn4 In `3esn` In 7.0e-0 Delete 0x0 Starts With $`5esn` Starts With 9e-12,.0e0[..12.0][...1e-1] Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2}))"), + octest:ct_string("Merge usn1=((#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})<-[#usn8?{`3esn`:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7],@usn6:01[..0.12]}]-(`3esn` :_usn3:_usn3)) On Create Set `2esn`+=Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],#usn8 =.9e-12[0e0...9e-1] Unwind _usn3(0x0 Starts With 1000,.1e1[.0e0..])[[`` In $_usn3 Is Not Null Where 7.0e-0 =~$123456789 =~`8esn`|999[...12e12][..0]]..``(Distinct)][(`2esn` :`1esn`)-[?{@usn5:6.0e0 Is Not Null}]->({`8esn`:$`7esn` Is Not Null,`5esn`:01234567 Starts With `4esn` Starts With 10.12e12})<-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]->(`` )..({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)] As `4esn` Remove (:@usn5{`4esn`:.0e0[$`6esn`..]})-[? *0X0123456789ABCDEF..0]-({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`)._usn3._usn3!.`4esn`?,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1|9.1e-1 Contains 0xabc).`6esn`"), + octest:ct_string("Merge `2esn`=((#usn8 {#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})) On Match Set ``+=0.12[07..3.9e-1] On Create Set `4esn`+=1000[Null..],{`4esn`:0e0 Is Null Is Null,`8esn`:1.9e0 Is Null Is Null}.`6esn`? =$`2esn` In 0 In 0Xa,`3esn` =_usn4['s_str'..] Match ($`8esn`)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[``?:@usn5]->(_usn3 :#usn8),(:#usn8{`7esn`:0[$`1esn`..`8esn`]})-[`4esn`?:`6esn`|#usn7]->(`1esn` ) Where 123456789 =~$`1esn` =~#usn7 Union All Merge `1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) On Match Set #usn7 =[usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|9e0 =~9e1 =~.12e12] Is Null Is Null,`8esn`+=123.654 Is Not Null Is Not Null,`3esn`+=_usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null Delete `3esn`[.12e-12..]"), + octest:ct_string("Merge @usn5=((#usn8 :usn1)<-[`2esn`?:usn2|:`` *010..{`5esn`:$`4esn` Ends With 0e-0}]->(:usn1{`3esn`:$0 =~01234567,@usn5:7 Is Null Is Null})-[@usn5?:usn1|:#usn8 *01234567{`1esn`:7.0e-0[3.9e-1..`1esn`]}]-({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) On Match Set `7esn`:@usn5 On Match Set usn2+=(:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])],usn2+=Count(*)[9e-12..0Xa][$123456789..0.0],#usn7+=7.0e-0 Contains Count ( * ) Contains 0Xa Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Where Count(*) Delete Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7)[{usn2:`8esn` Is Null}..[@usn6 In .9e12 Starts With #usn8 Starts With 00]][(:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null})..{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}],999 Ends With $123456789 Ends With $_usn4 Union Merge @usn5=($`8esn`)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[``?:@usn5]->(_usn3 :#usn8) Remove [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]|$`3esn` In 's_str' In $#usn7]._usn4!.#usn8?,`2esn`:`5esn`,[`7esn` In .12e12[Count(*)..] Where 's_str' Ends With 0.0 Ends With .12e12].`4esn`?.``!"), + octest:ct_string("Remove {_usn3:10.12e12 In `3esn` In $usn2}._usn3?.`7esn`!,Filter(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0).`2esn`?.``!.`2esn`!,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[..0e0][..$`6esn`]].usn2._usn3! Merge ({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}) On Match Set ({usn2:.9e-1 Is Not Null Is Not Null})<-[?:@usn6|:_usn3 *07..]-(#usn8 :`2esn`:`8esn`{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:@usn5[...9e12]}).`5esn` =(:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null),Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0).``?.#usn7?.@usn6 =9.1e-1 In #usn8,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..]).usn1? =Extract(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]|$`5esn` Ends With 9e-1 Ends With $#usn8)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\")..[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0X7[Count(*)][.9e0]|$`8esn`[$``..$`1esn`][9e-12..$7]]][{usn1:`6esn` Is Not Null}..``(.9e-1 =~.9e-1,$_usn4 Starts With 0e-0 Starts With 1e-1)] On Create Set usn2+=01234567[$#usn7][.0],{`3esn`:1.9e0 Is Null Is Null,``:$usn2 Ends With `8esn` Ends With _usn3}.`3esn`? =Null Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null),_usn4+=#usn8[3.9e-1.._usn3] With Distinct {`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]],_usn4[.0e-0][010],Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]] As `3esn` Limit 12.0[$1000..][123456789..]"), + octest:ct_string("Return _usn4 In `3esn` In 7.0e-0 As #usn7 Order By $`` Ends With 6.0e0 Descending,$1000[..01234567][..0X0123456789ABCDEF] Ascending Limit .1e-1[.9e12..usn2][`4esn`..$_usn3] Remove Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $@usn6 Contains Count ( * )).`4esn`?,({`4esn`:.0e0[$`6esn`..]})<-[:`2esn`|`7esn`]-({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`4esn`?:`5esn`]->(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}).`5esn`?,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]|`3esn` Contains 01234567 Contains .9e-12).`7esn`! Return All(`` In 0.12[3.9e-1] Where `7esn`)[(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(`4esn` :_usn3:_usn3)<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999})][`8esn`(#usn7 Ends With $#usn7 Ends With #usn7,7.0e-0[`6esn`..])],01234567 Ends With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 0[true..$7]) Ends With {`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]} As #usn7,Count ( * )[..1.9e0][..`8esn`] Skip 010 Is Not Null Is Not Null Limit 123456789 Ends With _usn4 Union Unwind `7esn`[.1e1..][`8esn`..] As `3esn` With Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],`2esn` Is Not Null Is Not Null Skip $123456789 Starts With Count ( * ) Limit Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..] Create @usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))),(({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)) Union All Create `1esn`=(((@usn5 :usn2)-[`4esn`?:_usn3|`2esn`]-(:#usn7:_usn3)<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) With Distinct .1e-1[..12e12] Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null Desc Limit 's_str' In `7esn` In .9e-12"), + octest:ct_string("Unwind 12e-12[`7esn`..][5.9e-12..] As `8esn`;"), + octest:ct_string("Remove Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]).`2esn`!._usn4! Unwind 12[0xabc..][$0..] As @usn5 Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null"), + octest:ct_string("Create usn1=((`8esn` :_usn3:_usn3)<-[_usn4? *..7{#usn7:Count ( * )[7]}]->(`6esn` :`7esn`)<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)),`3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Union Create ((usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]->(:usn1{usn1:Count(*)[0.12..2.9e1]})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})),(:usn1{``:.9e1[..`5esn`]}) With Distinct 2.9e1 As usn2,.1e-1[$`2esn`..][$`1esn`..] Order By `2esn` Starts With $`7esn` Starts With _usn4 Ascending,0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7] Asc,.12e12[$0] Asc Skip All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..])[`8esn`()] Where 8.1e1 Contains 0e-0 Contains $_usn3 Union All Remove `3esn`($`5esn`[7..],9e-1[0X0123456789ABCDEF][0]).usn2,`6esn`(Distinct $_usn3 In 123.654 In $`8esn`,$@usn5[$#usn8..][_usn3..]).usn1?.`4esn`?.`8esn`?,`7esn`(Distinct $`3esn` =~4.9e12 =~$7,0xabc[$`4esn`..][`8esn`..]).`8esn`!.``?.#usn8! Detach Delete All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0)[Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"])..Single(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1])][{usn1:9e-1 Starts With 123.654 Starts With .9e1,#usn8:$_usn4 Is Not Null}..(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})],$`6esn`[$`7esn`][$`4esn`],0X7 =~$123456789 =~$``"), + octest:ct_string("Unwind 9e12 Ends With 07 As `5esn`"), + octest:ct_string("With Distinct Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) As `1esn`,0[..$@usn5] As `` Order By {`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending Limit 12 Contains _usn3 Where $`2esn` Ends With 2.9e1 Ends With $usn1 Detach Delete 5.9e-12[.1e1][$#usn8]"), + octest:ct_string("Unwind 0Xa Contains $999 Contains 0Xa As _usn4 With All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Where .9e1 Contains Null Union All Create _usn4=(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0}),((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) Remove `3esn`(Distinct 9e12[...12e12][..$`2esn`],.9e1[12]).`2esn`!.`7esn`?"), + octest:ct_string("Optional Match ({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}) Where .0[usn2.._usn4] Delete 1.9e0 =~0x0,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]),{_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12) Remove {@usn6:\"d_str\" =~9e-12 =~`5esn`}.@usn5?,None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).@usn6!._usn3?._usn4!,None(_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]).usn1.``?.usn2 Union Remove Filter(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..])._usn4!,All(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]).`6esn`!.usn1!,Filter(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12).`6esn` Delete 1e1[3.9e-1][.9e-1] Create `5esn`=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}),#usn8=((`3esn` {#usn8:`7esn` Is Null})-[_usn4 *999..]->(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]}));"), + octest:ct_string("Merge (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) On Create Set Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])._usn3 =_usn4[7][8.1e1],#usn7+=Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()],`1esn`:#usn7:_usn3 Unwind 123456789[Count ( * )..] As `6esn` Union All Remove (usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2})-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12}).@usn5,count(Distinct $`6esn` In $`3esn` In 9e1,.9e1[12]).`4esn` Delete 1000[$#usn7][$``],$`5esn` Contains `2esn` Contains 9e1 Return $`7esn` Contains 0X7 As usn2,$`8esn` Starts With `2esn`;"), + octest:ct_string("Match `1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) Where 0e0 Is Null Is Null Unwind usn1[12e-12] As #usn8 Union All Create @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Merge (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}) On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1]"), + octest:ct_string("Remove (_usn3 {`5esn`:`8esn` =~.1e1 =~.0})-[?{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]}]-({_usn3:$`8esn` Is Null})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`).@usn6.``! Return Distinct *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By 01 Ends With \"d_str\" Asc,$_usn3[$`8esn`..$`4esn`] Descending,Null[12e-12..] Desc Skip None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) =~[@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] Limit $``[0.12..]"), + octest:ct_string("Remove {@usn5:Count(*)}.@usn6!.`5esn`.usn2!,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2).`8esn`?._usn3!.`8esn`,None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1)._usn4.#usn8! Create (((_usn3 :_usn3:_usn3)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})-[#usn7? *00..123456789]->(usn1 :@usn6:_usn4))),usn1=(:`1esn`)-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)<-[? *999..]->(_usn3 {`6esn`:8.1e1 Is Null}) Union All Unwind 0X0123456789ABCDEF Contains $`6esn` Contains $123456789 As usn2 Optional Match @usn6=(((@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[#usn7? *00..123456789]->(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}))),({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})-[ *01234567]-(`5esn` :`7esn`{`7esn`:$_usn3[.1e1..][$`1esn`..],`5esn`:.12e-12 =~9e12 =~1e-1}) Unwind 12e12 =~#usn7 =~.9e-1 As #usn8 Union All Remove `4esn`(12e12 In $`` In 6.0e0,.9e1[#usn7..]).`5esn`?,@usn6:@usn6:_usn4 Delete 's_str' Ends With $usn1 Merge `1esn`=(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))) On Create Set `8esn`+=Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),`8esn`+=0.0 Is Not Null Is Not Null On Create Set `2esn` =$999[$usn1...0e0]"), + octest:ct_string("Delete Any(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0) In (usn2 :#usn8)<-[?:@usn5 *..0xabc]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[_usn3?:`8esn`|:`2esn` *..7{#usn8:0xabc[7.0e-0..][12e12..],_usn3:#usn8 Starts With 11.12e-12 Starts With $`3esn`}]->(`2esn` :_usn3:_usn3) In {`8esn`:usn1[12e-12],@usn6:Count ( * ) In 999} Create ((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})),(((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))) Union All Return Distinct $`2esn` Contains 123.654,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] As usn2,.9e-12[01][Count(*)] Order By (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] Ascending Skip $`3esn` Ends With 010 Ends With $`7esn` Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) Union All Detach Delete 00[0e-0...9e-1][1e-1..``],9e12[...12e12][..$`2esn`],7.0e-0 Contains Count ( * ) Contains 0Xa"), + octest:ct_string("Create ((:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[? *12..0Xa]-(`2esn` :#usn7:_usn3)<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})) Unwind Count ( * )[12e-12] As @usn6 Unwind .9e-1[3.9e-1]['s_str'] As `7esn` Union Remove [`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0]._usn3?._usn3?,(:`3esn`{usn1:123.654 Ends With 0Xa Ends With .12e12})-[?{`3esn`:$`6esn`[$`7esn`][$`4esn`]}]->(:_usn4{`7esn`:9.1e-1 =~@usn5 =~Count ( * )}).`5esn`?.usn2,`2esn`(Distinct 12e-12[`7esn`..][5.9e-12..],0.0[$1000][3.9e-1])._usn4!.`2esn`.``! Return Distinct *,_usn3[`2esn`..10.12e12][9e1..true] Remove (usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2})-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12}).@usn5,Filter(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`).`3esn`,Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1).@usn5.`4esn`! Union With Distinct *,true Is Null Is Null As _usn3,All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn` Skip All(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Starts With Filter(_usn3 In ``[$``..] Where .0e0[1e1..][01234567..]) Starts With `3esn`(Distinct) Limit Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Where 123456789 Ends With _usn4"), + octest:ct_string("Detach Delete {#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]),(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Is Not Null With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Skip usn2 Starts With $_usn3 Where 10.12e12[12e12..0X7]"), + octest:ct_string("With $12[.9e-1] As `6esn` Order By (:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[`7esn`?]->(`5esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(#usn8 {_usn3:$_usn4 Contains .12e-12}) Ends With `4esn`($usn2 In usn1 In 1e-1,01[Count(*)..0e-0][7..$`2esn`]) Ascending Where $7 Is Null Is Null Return *,_usn4['s_str'..] As `2esn`,Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Order By .0e0[1e1..][01234567..] Descending,5.9e-12[2.9e1][9e0] Desc Skip Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7)"), + octest:ct_string("Remove [usn2 In $_usn3 =~$usn1 =~_usn4 Where 0xabc In 10.12e12|9e-1 Starts With 123.654 Starts With .9e1].`2esn`?.`5esn` Merge @usn6=((:_usn3:_usn3{usn1:.9e1[12]})) On Create Set `4esn` =9e-12 In 0X0123456789ABCDEF In $999 Match ``=((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})),#usn8=((`3esn` {#usn8:`7esn` Is Null})-[_usn4 *999..]->(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]})) Union Unwind \"d_str\"[12e12..][4.9e12..] As `2esn` Remove Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7).``?,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null).@usn5?,[`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|`1esn`[Count ( * )][5.9e-12]].@usn5"), + octest:ct_string("Remove [`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12e12[..123456789][..false]|12[0xabc..][$0..]].@usn6!,[@usn6 In .9e12 Starts With #usn8 Starts With 00].usn2?,{usn2:$usn1[$12..]}._usn3 Union Merge (`8esn` :_usn3:_usn3)-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})-[ *..01]->(#usn8 :#usn7:_usn3)"), + octest:ct_string("Create usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),`2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) Detach Delete `8esn`[..7.0e-0][..0xabc],{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)],[_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null Union All Delete $_usn4[1e-1..8.1e1][`1esn`..1.9e0],0e-0[$`2esn`][8.1e1] Unwind 7.0e-0[0X7..$`2esn`][`4esn`..`7esn`] As `7esn` Detach Delete `` =~$`5esn`,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12)[{_usn4:@usn6 In 3.9e-1 In 9e-12}][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]|10.12e12[12e12..0X7])],`` Ends With .9e-1 Ends With 9e-12 Union All Optional Match #usn7=(:usn1{``:.9e1[..`5esn`]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})<-[`8esn`? *0x0..]->({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null}) With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Limit #usn7[10.12e12..][\"d_str\"..] Where 9e12[...12e12][..$`2esn`] Delete $usn1[$7..][$0..]"), + octest:ct_string("Return Distinct *,'s_str' =~.9e1 =~3.9e-1 As usn2,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `6esn` Order By `3esn` Starts With 's_str' Asc,8.1e1[$`5esn`][0e0] Descending,$usn2 Contains $`4esn` Contains true Ascending Limit [`4esn` In 01234567 Ends With $1000 Ends With $#usn7] In (#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]}) In {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]} Detach Delete 0x0,$``[`6esn`][00],'s_str' Ends With $usn1 Union All Match (({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})) Create ((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})),`7esn`=((`2esn` :usn2)-[usn2:`4esn`|:@usn5 *01234567]->(:`5esn`{`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567})<-[:#usn8|:`4esn`{usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]}))"), + octest:ct_string("Delete 0 Contains $`6esn` Contains #usn7,1e1 Union All Optional Match (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))),(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Optional Match ((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Where 1e1[Null..][.12..] With Distinct Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,07 =~_usn4 =~.9e12 As `` Order By 5.9e-12[9e0..] Ascending,#usn8[`2esn`] Desc,`7esn` Ends With 9e-1 Ends With usn1 Ascending Skip $#usn7 Starts With #usn7 Limit $123456789[$_usn3..][$usn2..]"), + octest:ct_string("Optional Match (((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999}))),(`` :``:usn1{usn2:12.0[..123456789][..01]}) Where 12e-12[9e0..1.9e0] Merge `6esn`=(usn2 {_usn4:$999 Ends With .9e-12})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``}) On Create Set Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3|`4esn` Starts With .0e0 Starts With usn2).`3esn`?.`4esn`!.`8esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct),_usn4+=0X7[$999...12e12][12..`2esn`],`7esn` =6.0e0 In 12 On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} Union All Return Distinct _usn4(0[true..$7]) =~Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`) =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0) As _usn3,Null Is Not Null Is Not Null Remove All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1).`1esn`?"), + octest:ct_string("With *,Count(*)[..Count(*)][..9e0] Order By 07 Starts With usn1 Starts With 010 Ascending,7.0e-0[..$`7esn`][..Null] Descending,$usn2[8.1e1...9e-1][.1e-1..11.12e-12] Desc Skip Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] Limit 999 Ends With $123456789 Ends With $_usn4"), + octest:ct_string("Merge (:#usn8{_usn4:$999 Ends With .9e-12})<-[?{_usn4:$#usn7 Is Not Null Is Not Null,`3esn`:9.1e-1 In #usn8}]->(#usn8 {_usn3:$usn2 In usn1 In 1e-1}) Unwind ``(Distinct `4esn`[$1000..$``][$_usn4..$_usn4],.1e-1 Starts With 1000 Starts With $`1esn`) In [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|`4esn` Starts With $_usn3 Starts With .9e-12] In {`6esn`:``[$``..]} As `6esn`"), + octest:ct_string("Detach Delete {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null),\"d_str\" Starts With `6esn` Starts With 1.9e0,`5esn` Contains 1.9e0 Contains 9e0 Create (((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))),(`5esn` :`5esn`) Union Unwind usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]] As #usn8 Optional Match (:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}),((#usn8 :`3esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(:`6esn`:`3esn`{_usn3:Count ( * )[7]})) Where 1000[$`6esn`..12.0]['s_str'..$`3esn`] Union All Merge `1esn`=((@usn6 :usn2)<-[`7esn`?:`3esn`|:_usn3 *..0xabc]->(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0})) On Create Set [@usn6 In .9e12 Starts With #usn8 Starts With 00|#usn7[..0X0123456789ABCDEF]]._usn4?.`4esn` ={usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])],Single(`5esn` In 12[0xabc..][$0..] Where $123456789 Is Not Null).usn2? =Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0[..$@usn5]|`1esn`[9.1e-1]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where Count(*) Ends With `3esn` Ends With `7esn`] =~Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null),`3esn`+=$`5esn` Is Not Null Is Not Null On Match Set None(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).@usn5! =$`2esn`[8.1e1] Remove {_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}.`1esn`"), + octest:ct_string("Return Distinct 0xabc[$`4esn`..][`8esn`..] As #usn7 Order By Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null Desc,#usn8[..#usn7][..@usn6] Ascending Skip `2esn`[..9.1e-1][..0xabc] Union Create @usn5=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))),@usn6=(((@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[#usn7? *00..123456789]->(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]})))"), + octest:ct_string("Return `6esn`[..$``][..4.9e12] Unwind .12[.0e-0..] As `3esn` Merge ((`3esn` {#usn8:`7esn` Is Null})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})) On Create Set {`1esn`:$`1esn`[.9e0][$_usn3]}.`8esn`? =`1esn`[Count ( * )][5.9e-12],`8esn`+=123.654 Ends With Count(*)"), + octest:ct_string("Delete ``(0X0123456789ABCDEF Contains 8.1e1,Count ( * )[..123456789][...0e0])[..All(usn2 In .0e0[$`6esn`..] Where .0e0 In 10.12e12 In $`5esn`)][..(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})],All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)],`2esn` Starts With $`7esn` Starts With _usn4 Union All Detach Delete _usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null"), + octest:ct_string("Detach Delete `4esn`[0.0..][.1e-1..],.0e0[$`6esn`..] Merge (`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}) On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] With Distinct *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5[..1e-1] Union All Remove `7esn`:`3esn` Union Unwind @usn5 Ends With 's_str' Ends With 01 As `7esn` With .9e0 Is Null Is Null As #usn7,$12[`1esn`][1e1] As @usn6,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2 Order By 9e-1 =~6.0e0 =~`` Descending,999[0.12..8.1e1] Ascending Limit (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null Where .9e1[...12e12] With 1e-1 =~0.0 =~9.1e-1 As usn1,Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null,Count(*) In .9e-12 In $usn1 As _usn4 Order By $`7esn`[..12.0][..0e0] Asc,.9e0[$7][1e1] Descending,8.1e1[usn2..$1000][$7..0x0] Descending Skip Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] Limit `1esn`[11.12e-12..] Where $`2esn` Contains false Contains 123456789"), + octest:ct_string("Create usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) Union Unwind true Is Null Is Null As usn1 Unwind `5esn`[$`4esn`] As `4esn` Detach Delete None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),`2esn`(Distinct) Starts With Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]) Starts With (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}) Union Remove None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1).`8esn`!.`2esn`!.``?,`7esn`:@usn5"), + octest:ct_string("Unwind `7esn` Is Not Null As #usn7 Merge `7esn`=({_usn3:$`8esn` Is Null}) On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 On Create Set [@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]].`3esn`?.`6esn`! =Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..])[(usn1 )<-[`8esn`?:usn2|:``]->(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})..0Xa],`2esn`+=$`2esn` Contains false Contains 123456789,`3esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)] Optional Match (usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}),`3esn`=((@usn6 :`6esn`:`3esn`)<-[`1esn`? *0X0123456789ABCDEF..0{`4esn`:9e1 Ends With .9e0}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})) Where 1e-1 =~0.0 =~9.1e-1 Union All Create @usn5=((#usn8 :usn1)<-[`2esn`?:usn2|:`` *010..{`5esn`:$`4esn` Ends With 0e-0}]->(:usn1{`3esn`:$0 =~01234567,@usn5:7 Is Null Is Null})-[@usn5?:usn1|:#usn8 *01234567{`1esn`:7.0e-0[3.9e-1..`1esn`]}]-({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) With 11.12e-12 Is Null Is Null As `4esn`,#usn8 Starts With 11.12e-12 Starts With $`3esn` As `2esn` Skip 123.654 Ends With 0Xa Ends With .12e12 Union With Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8),``(@usn6[..$`3esn`][..4.9e12],0x0 Contains $`1esn` Contains 0.0)[{`6esn`:999[...12e12][..0]}][[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)]|.9e1[Count(*)..$`3esn`]]] As `7esn`,usn2 =~$`7esn` =~$`8esn` Order By $7 Contains _usn4 Contains $`1esn` Ascending,{#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]) Asc,`5esn`[0X7..][12..] Asc Limit `1esn`[..0x0][..\"d_str\"] Merge #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}))"), + octest:ct_string("Match `1esn`=(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))) Merge (usn2 {_usn4:$999 Ends With .9e-12})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``});"), + octest:ct_string("Optional Match ((`3esn` {#usn8:`7esn` Is Null})<-[{`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}]-(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})),((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Match (({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)),((`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]})) Union All Return Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 123456789 Ends With _usn4) =~{usn2:$``[`6esn`][00],#usn7:.12e12[$12..4.9e12][11.12e-12..9e12]} =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`5esn` Is Null Is Null),1e1 Skip 8.1e1 Starts With 9e-12 Starts With $1000 With Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1] Merge `2esn`=((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}))"), + octest:ct_string("Unwind true Starts With 2.9e1 Starts With 9e1 As _usn4 Delete true In $0 In @usn5 Return Count(*) Is Not Null Is Not Null As usn2,$`3esn` =~4.9e12 =~$7,.9e0 Is Not Null As `6esn` Skip Any(`8esn` In 01234567[..0.0][..false] Where $_usn3 Contains 1e1 Contains .12) =~0.0 =~Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`) Union All With .0e0[$`1esn`][.9e-12] As `6esn`,\"d_str\"[$123456789..][0X7..] Order By All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Asc,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Limit (usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})-[`4esn`?:`6esn`|#usn7]->(`1esn` )[[`2esn` In .12e-12[$@usn6..5.9e-12]|$#usn7 Starts With 10.12e12]..] Remove Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2|0e-0[...9e12]).@usn5?,All(`` In 0.12[3.9e-1]).#usn8!.@usn5!.`2esn`!,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7).``!.`7esn`?.`6esn`! Unwind Count(*) Is Not Null Is Not Null As `8esn` Union Unwind 12e12 =~#usn7 =~.9e-1 As #usn8 Remove (`` :@usn6:_usn4{`4esn`:00 Is Not Null Is Not Null})-[`1esn`:usn1|:#usn8]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}).`6esn`!.@usn5?._usn4?,@usn5:_usn4,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]).`2esn`!.`8esn`!._usn3!"), + octest:ct_string("Create (((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) Return Distinct 123.654 Is Not Null Is Not Null As `1esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Ascending Skip 0.0[0x0..0.12]['s_str'..false] Limit $`7esn`[..12.0][..0e0] Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))"), + octest:ct_string("Optional Match usn1=(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ),((_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0)-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]})) Where $`2esn` In 0 In 0Xa Remove {`1esn`:0.12[07..3.9e-1]}.usn1.usn1!,(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})._usn4._usn3?,Extract(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`]|$`3esn`[..`1esn`][..$`7esn`]).@usn6! Unwind .12[.0e-0..] As `3esn` Union Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) Union All Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where `1esn`[9.1e-1]|$`8esn` Starts With `2esn`).``!.`5esn`.``!"), + octest:ct_string("Unwind Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `2esn` Optional Match _usn4=((`4esn` {usn2:$`7esn`[..12.0][..0e0]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})) Merge `3esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1) On Match Set `7esn`+=$`` In $7 In 9e-1,usn1+=$12 Starts With 1e-1 Starts With $@usn5,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).`2esn`?.#usn8! =Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null On Match Set All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 999 =~0Xa =~9e0).`1esn`?.`2esn`? =()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)]"), + octest:ct_string("Match ((_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})),#usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) With 1e-1 Starts With usn2 Starts With 12e-12 As _usn4 Order By 's_str'[0Xa..12e-12][.9e1..0xabc] Descending,{#usn7:01 Ends With \"d_str\",_usn4:`3esn` In 0X7}[All(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12])..Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]|999[..@usn5][..`1esn`])][Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1)..Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)] Descending Skip Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Limit 12e12 Is Null Is Null Where 9.1e-1 Is Null With Distinct *,0Xa Ends With #usn8 Ends With usn2 As `6esn` Union Merge _usn4=((`5esn` {`2esn`:`1esn` =~0 =~_usn4})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[usn2?{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3}]-(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}));"), + octest:ct_string("Create ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6) Match ((:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[? *12..0Xa]-(`2esn` :#usn7:_usn3)<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})),((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`5esn`]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)) Unwind 10.12e12 In `3esn` In $usn2 As #usn7 Union All Delete 8.1e1 Is Not Null,{`4esn`:5.9e-12[9e0..]} =~None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12) Merge #usn8=(:@usn6:_usn4$`6esn`)<-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :#usn8{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})<-[`1esn`?:#usn7|:`8esn` *..01]-(:`6esn`:`3esn`) On Create Set @usn6 =$`3esn` Detach Delete _usn4 Ends With .0 Ends With 7,All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7])[..Extract(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..])]"), + octest:ct_string("With *,9e0[.0e-0] As _usn4 Skip 0X7[`4esn`..][`3esn`..] Where 00 =~.9e-12 =~usn1 Return *,Null[..07],5.9e-12 =~$@usn6 As `7esn` Skip #usn8 In $#usn8 In \"d_str\" Merge ((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Union Return *,.9e1 Starts With `4esn` As `5esn`,Count ( * )[`7esn`..] Order By $``[`4esn`..][0.0..] Desc,07 =~7.0e-0 =~`8esn` Descending Skip .9e-12[01][Count(*)] Union Optional Match (({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})) Where 5.9e-12 =~$@usn6"), + octest:ct_string("Match ((`4esn` )<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})),`1esn`=(:usn1{usn1:Count(*)[0.12..2.9e1]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}) Remove All(`5esn` In 12[0xabc..][$0..] Where .0e0[1e1..][01234567..]).#usn8!,Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]).`6esn`,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 's_str'[12][00]|$`8esn`[#usn7][.9e1]].#usn7?.`4esn`? Match (@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})) Union Remove {#usn7:11.12e-12 Contains 9e-12}.`4esn`!.`7esn`! Unwind 9e1 Is Not Null As #usn8 Return Count(*)[8.1e1..],Any(`` In $_usn3 Is Not Null Where 12e12[true..][$`2esn`..]) =~{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12} =~{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3} As `3esn` Skip 12 Contains $usn1 Contains 0 Union All Create @usn6=(((@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[#usn7? *00..123456789]->(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}))),`4esn`=(((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Merge (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null});"), + octest:ct_string("Return Distinct *,$7 Contains _usn4 Contains $`1esn`,0e-0[$`2esn`][8.1e1] As @usn5 Detach Delete $1000 Ends With 3.9e-1,Count ( * )[7],1.9e0 In $0 Match (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))),(`8esn` {`3esn`:#usn8[`2esn`]}) Union All Optional Match ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),@usn5=((:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(`4esn` :`2esn`:`8esn`)-[`8esn`:`4esn`|:@usn5{#usn7:Count(*)}]-({`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Remove None(`5esn` In 12[0xabc..][$0..] Where .9e0 Is Null Is Null).`4esn`?.`7esn`!,{`4esn`:9.1e-1 Is Null}.`` Delete 10.12e12[0Xa..999][1000..Count(*)],2.9e1"), + octest:ct_string("Unwind _usn4 Is Null Is Null As usn2 Return _usn4 In `3esn` In 7.0e-0 As #usn7 Order By $`` Ends With 6.0e0 Descending,$1000[..01234567][..0X0123456789ABCDEF] Ascending Limit .1e-1[.9e12..usn2][`4esn`..$_usn3] Union With Distinct *,0 Starts With 0Xa Starts With $0 Order By None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4) Asc,$``[`5esn`..][`2esn`..] Desc,0e-0[$`2esn`][8.1e1] Asc Match @usn5=((@usn6 :`6esn`:`3esn`)<-[`6esn`? *..0xabc{``:$_usn4[Null]}]->(:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((:#usn8{`8esn`:usn1[12e-12],@usn6:Count ( * ) In 999})<-[?]->(:@usn5{usn2:$usn1[$12..]})-[ *..01]->(#usn8 :#usn7:_usn3)) Optional Match ((#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[`3esn`?:`5esn`]->(`2esn` )) Where .0e0 In 10.12e12 In $`5esn`"), + octest:ct_string("Unwind All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] As `` Create `7esn`=({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}),`2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Delete .0e0[..1e1][..$1000]"), + octest:ct_string("With Distinct *,_usn3[`2esn`..10.12e12][9e1..true] Where .9e1[#usn7..] Optional Match `7esn`=((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)),``=(({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})) Union Return $`6esn`[..12e12][.._usn3] As `5esn`,($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]) As _usn4 Unwind .12[.0e-0..] As `3esn` Union All With *,`8esn`(Distinct $999 Ends With .9e-12,Null Is Not Null Is Not Null)[.._usn3(Distinct 5.9e-12[9e0..],$@usn5 Is Null)][..@usn5(@usn5 =~$@usn5 =~6.0e0,$`4esn` In 11.12e-12 In .9e12)] Order By .0e0 Starts With $@usn6 Starts With Null Asc Skip `3esn`[`4esn`..Null][$usn1..`5esn`] Limit Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1])[(:@usn5{`7esn`:7.0e-0[`6esn`..]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)][All(usn2 In .0e0[$`6esn`..] Where .0e0[..1e1][..$1000])]"), + octest:ct_string("With Distinct `6esn`[`5esn`] As usn1,$`3esn` Starts With 0Xa As @usn6 Limit $`8esn`[#usn7][.9e1] Where 9e12[$#usn8..9e-1][$999..$`4esn`] Merge (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))) Match (`` :#usn8{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}),`5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Union Merge `1esn`=((({``:_usn3[$_usn3][usn1]})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(#usn8 {_usn3:$usn2 In usn1 In 1e-1})<-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(_usn3 :#usn8)));"), + octest:ct_string("With Distinct *,`3esn`[.12e-12..] As `7esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4 Order By 01[Count(*)..0e-0][7..$`2esn`] Desc Where 0e0[..'s_str'] Union Unwind Count ( * )[12e12][$_usn4] As #usn8 Union Unwind 1.9e0 =~$`8esn` =~01234567 As usn2 Create ((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))"), + octest:ct_string("Merge `3esn`=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) On Match Set #usn7 =[usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|9e0 =~9e1 =~.12e12] Is Null Is Null,`8esn`+=123.654 Is Not Null Is Not Null,`3esn`+=_usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null With *,`5esn`[$`4esn`],#usn8[7..@usn5] As `4esn` Order By 9e0[.0e-0] Asc Limit `8esn` Is Not Null Is Not Null"), + octest:ct_string("Unwind $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] As `4esn` Create @usn5=({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Union Unwind 0e0 Ends With `7esn` Ends With usn1 As #usn7 Return Distinct {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As ``,$`8esn`[12.0..][4.9e12..],.1e-1 Ends With @usn6 As @usn6 Order By false Starts With 3.9e-1 Asc,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Descending With *,#usn7[12e-12..][$`2esn`..] As @usn6,$`` Contains 00 Contains 123456789 As `3esn` Limit All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0)[Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"])..Single(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1])][{usn1:9e-1 Starts With 123.654 Starts With .9e1,#usn8:$_usn4 Is Not Null}..(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})];"), + octest:ct_string("Merge ``=(((_usn4 )<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[?{`3esn`:$`6esn`[$`7esn`][$`4esn`]}]->(`8esn` {`5esn`:`3esn` Starts With _usn4,#usn7:$1000[$1000...9e0]}))) Remove None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null).`6esn` Union Remove Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12|$`4esn` =~0e0).usn1?._usn3!.`6esn`!,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 01 Ends With \"d_str\").@usn6?,{_usn4:Count(*)[.0e0..][#usn7..]}.#usn8?;"), + octest:ct_string("Match (`1esn` {#usn8:.12e12[Count(*)..]})<-[{`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}]-(:@usn5) Where $`` Is Null Is Null Union Delete {#usn8:8.1e1 Ends With $0 Ends With 6.0e0,#usn8:Null =~true =~.1e-1} Contains {usn1:Count ( * )[..2.9e1],_usn3:07 Starts With usn1 Starts With 010},`2esn`[..9.1e-1][..0xabc] Union All Remove Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]).`6esn`?,`4esn`:#usn7:_usn3 Remove (`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``!,usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4!"), + octest:ct_string("Return Distinct #usn8[7..@usn5] As usn2,12 Contains [usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12|$0 Contains .12e-12],10.12e12[$`5esn`] Limit (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] Return Distinct $#usn7 =~8.1e1 As #usn7,`4esn`[$1000..$``][$_usn4..$_usn4] Skip $`2esn` In 0X7 In 3.9e-1 Union Remove 9e-12._usn4 With (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7),Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),12.0 =~$@usn5 =~8.1e1 Order By Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] Ascending Limit $@usn6 Contains Count ( * )"), + octest:ct_string("Return Distinct $`7esn` Contains 0X7 As usn2,$`8esn` Starts With `2esn` Union Remove Filter(`7esn` In .12e12[Count(*)..] Where @usn5[$_usn3..]).usn2?,[`5esn` In 12[0xabc..][$0..] Where .12e12[$12..4.9e12][11.12e-12..9e12]|Count(*)[9e-12..0Xa][$123456789..0.0]].@usn5,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where #usn8[7..@usn5]).usn2? Merge `8esn`=((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) On Match Set _usn3+=$usn2[12.0..],`7esn`+=false[..12e-12][...9e1] Remove Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).`5esn`!.`3esn`.usn2!,Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])._usn3!.`7esn`.`4esn`!,Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]).@usn5.usn2 Union Create `3esn`=(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))),(((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})-[`2esn`?:#usn8|:`4esn`]-(:@usn6:_usn4{`2esn`:$usn1[$7..][$0..]}))) Return .1e1 =~`1esn`,Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],$#usn7 Is Not Null Order By All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Desc,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] Ascending,.9e0 In 9.1e-1 In $123456789 Desc Remove (#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *01234567]->(`5esn` :`2esn`:`8esn`).#usn7!.`3esn`!.@usn6!"), + octest:ct_string("Detach Delete ({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null},Count(*) =~Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7),{@usn5:true Contains 0x0} In Extract(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$1000[..01234567][..0X0123456789ABCDEF]) Merge usn2=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Remove ({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})<-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(`4esn` :usn1{`1esn`:0X0123456789ABCDEF Contains 8.1e1}).`4esn` Union All Match `7esn`=((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})),usn1=((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})) Where 1.9e0 Ends With Count ( * ) Ends With .12"), + octest:ct_string("Create #usn7=(:usn1{``:.9e1[..`5esn`]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})<-[`8esn`? *0x0..]->({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null}),@usn6=((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where $`1esn` Starts With Count(*) Starts With $`8esn` Unwind $`6esn` In `2esn` As _usn4 Union Merge ((:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})-[usn2?:@usn6|:_usn3]->({usn1:01[.9e-12..],@usn6:$`5esn` Ends With $#usn7 Ends With .0e-0})) On Match Set {@usn5:12e-12 Contains .9e-1 Contains 9e-1}.``! =usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]),@usn6 =0.0 Is Not Null Is Not Null,[`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0]._usn3?._usn3? =.1e1 Starts With .1e-1 On Match Set `8esn`+=Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\"),`1esn`+=4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12),(`` {_usn4:9e0[..1e1]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(@usn5 :@usn6:_usn4).#usn8.`1esn`.usn1! =00[0e-0...9e-1][1e-1..``] Unwind $`5esn` Contains `2esn` Contains 9e1 As `1esn`"), + octest:ct_string("Merge #usn8=(((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) On Match Set Filter(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).``.`8esn` =Count ( * )[..`8esn`],usn1 =123456789 Contains .1e-1 Contains .12e12,`8esn`+=`7esn` Ends With _usn4 Remove (`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``!,usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4! With Distinct #usn7[10.12e12..][\"d_str\"..] As `1esn`,9e-1 Contains $@usn5 Contains Count(*),`` Is Not Null Is Not Null As usn1 Order By @usn6 In 3.9e-1 In 9e-12 Asc,1.9e0[$12][``] Desc,12e12 =~#usn7 =~.9e-1 Asc Limit 0X7 =~$123456789 =~$`` Union All Create _usn3=((`6esn` :`7esn`)-[`7esn`?:`5esn`]->(#usn8 )<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})),@usn6=(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Create _usn3=((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]}))"), + octest:ct_string("With usn2 =~$`7esn` =~$`8esn` As _usn3 Match (({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})) Union With $12[.9e-1] As `4esn`,.12e12 =~$#usn7,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) As `8esn` Order By (:`3esn`{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1})<-[?:@usn6|:_usn3 *07..]-({_usn4:01234567[6.0e0][$usn2]})<-[`2esn`?:`2esn`|`7esn` *..0X7{@usn5:$12 Contains $`7esn` Contains .0}]->(:``:usn1) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]) In {usn1:`7esn` Is Not Null} Ascending,0x0 Contains $`1esn` Contains 0.0 Ascending,$`6esn` In `2esn` Ascending Skip (`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] Union All Unwind Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) In {`5esn`:$`` =~$_usn3,`4esn`:`7esn`} In `3esn` As #usn8 Create `8esn`=(({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),usn1=((@usn5 :usn1{usn1:.9e1[12]}))"), + octest:ct_string("Unwind 11.12e-12 Is Null As `1esn` With *,0e0 Ends With 0X7 Ends With .1e1 As _usn3 Order By Extract(@usn6 In 00 =~.9e-12 =~usn1 Where `2esn` Is Not Null Is Not Null|.1e1[.0e0..]) Ascending Skip 7 Contains $#usn7 Limit Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]) In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )] In `8esn`(Distinct $_usn3 Contains 1e1 Contains .12) Create (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Union All Merge @usn6=((_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) With Distinct *,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,false[12e-12..][usn1..] Order By Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]) Desc Limit $`1esn`[`3esn`..] Where $usn1 =~$999 =~$7 Unwind [usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|`3esn` Ends With 010 Ends With 9.1e-1][(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})-[`7esn`?:`5esn`]->(#usn8 )..None(_usn4 In Count(*)[9e1..][12e-12..] Where 7 Contains $#usn7)] As `8esn`"), + octest:ct_string("Optional Match ((#usn8 {_usn3:$usn2 In usn1 In 1e-1})),usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Merge ((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}))) On Match Set `6esn` =Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,_usn4+=8.1e1 Starts With .9e12 Starts With `7esn`,All(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null).usn1! =$`6esn`[.9e1..][`5esn`..] Remove @usn5:`7esn`,{_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12}.usn2!.`1esn`?.#usn7"), + octest:ct_string("With Distinct *,[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},07 =~_usn4 =~.9e12 As `` Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending Where .9e-1[12.0] Union All Match ((`` :``:usn1)),`8esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where 999[..@usn5][..`1esn`] Union With *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `5esn`,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null) Starts With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * )) Starts With (_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) As usn1 Order By 0e0[.12..][3.9e-1..] Descending,Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Asc Limit {#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]) Where 12 =~$@usn5 Match `7esn`=({_usn3:$`5esn`[7..]})<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}),_usn4=((`4esn` {usn2:$`7esn`[..12.0][..0e0]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})) Match (((:@usn5)-[#usn8 *0..010{_usn4:Count(*)[.0e0..][#usn7..]}]->(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[?:``|:`3esn`{#usn8:.9e1[Count(*)..$`3esn`]}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}))),_usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) Where .9e1 Contains Null;"), + octest:ct_string("Merge ((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})) On Match Set `2esn`+=false Starts With 3.9e-1 On Create Set ``:_usn4 Create _usn3=((@usn6 {`8esn`:1.9e0 Is Null Is Null})),(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))) Union All Remove (`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1})<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}).@usn6.#usn8?,[_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]].`1esn` Union Delete 11.12e-12 In $`1esn` In 9e12 Unwind 123.654 Is Not Null Is Not Null As `6esn` Merge ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`5esn` *01234567]->(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) On Create Set None(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).`5esn`?.`3esn`! =[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]},`8esn` =Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]],None(`` In $_usn3 Is Not Null Where 7.0e-0 =~$123456789 =~`8esn`).`3esn` =Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1]) On Match Set `8esn` =[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]).#usn7!.usn1?.usn1? =$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 9e0 =~9e1 =~.12e12|$@usn5 =~.12e-12).`2esn`?.`1esn`! =0e-0[...9e12];"), + octest:ct_string("Unwind 0[..$@usn5] As `6esn` With Distinct 9e1 Contains 4.9e12 Contains 123456789 As _usn4,1e1[Null..][.12..],1e1 Is Not Null Is Not Null Order By #usn7[`5esn`..`2esn`][$`4esn`...1e1] Ascending Skip `7esn`(7.0e-0[.._usn4][..0X7],$`5esn`[7..]) Contains [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]] Limit 0e-0[$`2esn`][8.1e1] Remove All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`4esn`?.#usn7!,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|$_usn3 Is Not Null).`5esn`! Union With *,`5esn`[$`4esn`],#usn8[7..@usn5] As `4esn` Order By 9e0[.0e-0] Asc Limit `8esn` Is Not Null Is Not Null Optional Match ((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})),``=((({`4esn`:$`2esn` Ends With $`8esn`})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})-[``]-(:_usn4{#usn8:.0e0[1e1..][01234567..],#usn7:1e-1[..2.9e1]}))) Detach Delete `3esn`[.12e-12..],Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Union All Match usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Return Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]),$`6esn`[$`8esn`..][false..] As _usn3,$`6esn`[..12e12][.._usn3] As `5esn` Order By $@usn6 =~$`2esn` =~9e1 Desc,$`2esn`[$usn1..] Desc,@usn6[01][.9e0] Ascending Skip All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Limit `1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Create #usn7=((`4esn` :_usn3:_usn3))"), + octest:ct_string("Optional Match `1esn`=({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(_usn3 :`6esn`:`3esn`),`3esn`=((#usn8 {`5esn`:8.1e1 Ends With $0 Ends With 6.0e0,@usn5:9e0[..1e1]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))"), + octest:ct_string("Remove Any(@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null).#usn8? Merge usn1=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})) On Match Set `4esn` =$`` =~$_usn3,`7esn` =\"d_str\" Ends With `5esn` Ends With 7 Create @usn6=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Union Unwind Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] As ``"), + octest:ct_string("With Distinct `5esn`[$`4esn`] As @usn6,count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) =~Filter(_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789) =~[`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]|.9e12 Starts With #usn8 Starts With 00],[_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] As usn2 Limit All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6)"), + octest:ct_string("Merge @usn5=((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})-[`6esn`? *..0xabc{``:$_usn4[Null]}]->({usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`6esn` {_usn3:$_usn4 Contains .12e-12})) On Create Set None(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).`5esn`?.`3esn`! =[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]},`8esn` =Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]],None(`` In $_usn3 Is Not Null Where 7.0e-0 =~$123456789 =~`8esn`).`3esn` =Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1]) On Match Set Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3|`4esn` Starts With .0e0 Starts With usn2).`3esn`?.`4esn`!.`8esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct),_usn4+=0X7[$999...12e12][12..`2esn`],`7esn` =6.0e0 In 12 Detach Delete $`8esn`[..1e1][..``],0e0 Ends With 1e1 Ends With 0Xa,0x0[#usn8...1e-1]['s_str'..$`6esn`] Return *,`2esn` Is Not Null Is Not Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Order By 12.0[$1000..][123456789..] Descending,$`1esn` Starts With Count(*) Starts With $`8esn` Ascending Skip $`` Ends With 6.0e0 Limit $`8esn`[..1e1][..``]"), + octest:ct_string("Return Distinct 10.12e12[12e12..0X7] As #usn8,.9e-12[01][Count(*)] As _usn3"), + octest:ct_string("Delete `4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Ends With None(`` In $_usn3 Is Not Null Where .9e1[...12e12]),`2esn`[0xabc..][$_usn3..],9e0[..1e1] Merge (:@usn5{usn2:$usn1[$12..]})-[usn1?*]->(:#usn7:_usn3{#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) On Create Set `8esn` =$12[01] Union All Create #usn8=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Detach Delete $_usn3 In $`7esn` In $`3esn`,All(`` In $_usn3 Is Not Null Where Count(*) Is Not Null Is Not Null)[..(`5esn` :`3esn`{#usn8:$_usn4[Null]})<-[:#usn8|:`4esn`{usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})<-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(#usn8 {`3esn`:123456789 Contains .1e-1 Contains .12e12,`1esn`:$`3esn` =~4.9e12 =~$7})],`1esn` =~0 =~_usn4 Union Remove usn1($@usn5[...9e-1][..$usn1],$`3esn` Ends With 010 Ends With $`7esn`).`3esn`,Any(_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8).``.#usn8!,Filter(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4).``?.usn1! Delete ()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)],.9e-1 Is Null,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 123456789 Ends With _usn4) =~{usn2:$``[`6esn`][00],#usn7:.12e12[$12..4.9e12][11.12e-12..9e12]} =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`5esn` Is Null Is Null)"), + octest:ct_string("Detach Delete Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 07[.0e0][3.9e-1]) Contains Extract(`` In $_usn3 Is Not Null),$`4esn` Ends With 0e-0 Remove Single(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12).`6esn` Return Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3) Starts With `2esn`(Distinct) Starts With (`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}),7.0e-0[3.9e-1..`1esn`] As `8esn`,9e1 Is Not Null As #usn8 Limit `7esn` Ends With 9e-1 Ends With usn1"), + octest:ct_string("Unwind .1e-1 Contains 1e1 Contains $`6esn` As @usn6"), + octest:ct_string("Remove {@usn6:0X7 Starts With 1e1 Starts With $12}.#usn8?.usn1.@usn5!,Extract(usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|0e0 Ends With 1e1 Ends With 0Xa).``?,@usn5:`3esn` Union Merge `7esn`=(`7esn` :usn1)-[`6esn`? *0Xa..7{`4esn`:$`2esn` Ends With $`8esn`}]->({usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]-(`1esn` :``:usn1{_usn4:.1e1 Is Null Is Null}) On Match Set `6esn`+=$`2esn` Starts With .12e-12 Starts With .0e-0,_usn4+='s_str' Ends With $usn1,#usn8:_usn4 On Match Set Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 999 Starts With .9e12 Starts With 3.9e-1).`6esn`.@usn6!._usn4? =`4esn`[0.0..][.1e-1..],Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).@usn5! =9e1 Contains 4.9e12 Contains .9e0,`1esn`+=00[0e-0...9e-1][1e-1..``] Union Merge #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})) Match ({`4esn`:7 Is Null Is Null})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})"), + octest:ct_string("With Distinct *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Remove Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $@usn5 =~.12e-12).`4esn`?,Single(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]).`8esn`? Union Detach Delete $`8esn`[$usn2..] Return Count ( * ) Starts With 10.12e12 Starts With `` Skip Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)] Union All Match @usn6=((:_usn3:_usn3{`5esn`:`2esn` Is Not Null Is Not Null,`7esn`:2.9e1})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0)),`8esn`=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Return #usn7[`5esn`..`2esn`][$`4esn`...1e1] As _usn4,8.1e1 Is Not Null,$_usn3 Is Not Null Order By $`6esn`[.9e1..][`5esn`..] Ascending,#usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Desc,Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Ascending Optional Match `3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})),`6esn`=((#usn7 )) Where 9.1e-1 In #usn8"), + octest:ct_string("Match ((`` :`5esn`)),`7esn`=({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) Union All Detach Delete {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})"), + octest:ct_string("Unwind 123456789 Contains .1e-1 Contains .12e12 As `6esn` Optional Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Where .0e0[1e1..][01234567..]"), + octest:ct_string("Remove [`8esn` In 12.0 Contains $_usn4 Contains $usn2|#usn8 Starts With 11.12e-12 Starts With $`3esn`].`6esn`.`6esn`!.`5esn` Merge ({`5esn`:07 Starts With usn1 Starts With 010})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) Remove {`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]}.#usn7!,{usn2:12.0[..123456789][..01]}.#usn8! Union Create (($@usn6)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[#usn8?:#usn7|:`8esn` *..0X7]->(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999})),usn2=((@usn6 :`5esn`{@usn5:$`4esn` Ends With 0e-0})<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(:_usn4{``:$_usn3[1e-1..]})<-[``?:@usn5]->(_usn3 :#usn8)) Create `3esn`=(`` :`3esn`) Create (`` :`3esn`)-[@usn6:#usn7|:`8esn` *0Xa..7]-(:`2esn`:`8esn`{`6esn`:7.0e-0 Is Null Is Null,`6esn`:999[0.12..8.1e1]})<-[`8esn` *1000]->(#usn8 ),`1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) Union Create (:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[`6esn`?:`4esn`|:@usn5{usn1:00,`1esn`:.0e0[1e1..][01234567..]}]->(`3esn` ),usn1=((:_usn3:_usn3{usn1:.9e1[12]}));"), + octest:ct_string("Delete $usn2 In usn1 In 1e-1,$999[1000..1.9e0] Unwind .9e-1 Is Null As `2esn` Union Delete Count ( * )[12e-12],{`5esn`:false,_usn3:.9e-12 Starts With .0e-0 Starts With usn2} Is Null,$`2esn`[..12e12][..0]"), + octest:ct_string("Remove All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]).`1esn`? Union Create ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})),_usn3=((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Remove {@usn5:Count(*)}.@usn6!.`5esn`.usn2!,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2).`8esn`?._usn3!.`8esn`,None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1)._usn4.#usn8! Remove Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `2esn` Starts With $`7esn` Starts With _usn4).``?,Extract(`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|$_usn4[Null]).`7esn`"), + octest:ct_string("Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01[.9e-12..]].#usn7!.#usn7!.usn1!,{_usn3:@usn6 In 3.9e-1 In 9e-12}.`3esn`._usn3! Create @usn6=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}))"), + octest:ct_string("Remove All(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).``!,{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null}.usn2? Create (usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]-(:_usn4{_usn3:010 Starts With 0.0 Starts With .0e0})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})"), + octest:ct_string("Unwind [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null As `3esn` Return $`4esn` In 123456789 In `5esn` As @usn5,`8esn`[..7.0e-0][..0xabc] As _usn3 Skip 00[0e-0...9e-1][1e-1..``] Limit 00[0e-0...9e-1][1e-1..``];"), + octest:ct_string("Merge ((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Create Set `6esn`(Distinct .9e-1[3.9e-1]['s_str'],9e0 =~9e1 =~.12e12).@usn5?.`1esn` =123456789 Ends With $@usn6 Ends With 0.12 Return Distinct false[..12e-12][...9e1] As `1esn`,$usn1 Contains `7esn` Contains .9e12 As `8esn`"), + octest:ct_string("Match `2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Where .0e0 =~5.9e-12 =~`7esn` Unwind 12.0[..Count(*)][..5.9e-12] As `1esn` Union Optional Match #usn8=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`3esn`=({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})<-[?{_usn3:00[$`6esn`]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}) Where .9e1[12] Remove ({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[ *07..{#usn8:`1esn`[1000][Null]}]-(usn1 :`2esn`:`8esn`).`5esn`?,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"]._usn4,(:`7esn`{`8esn`:$usn2[0e0][$7],_usn3:.9e-12[0e0...9e-1]})-[_usn4?:``|:`3esn`]-(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn1? *0X0123456789ABCDEF..0{_usn4:00[0e-0...9e-1][1e-1..``]}]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6!"), + octest:ct_string("Merge (((`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0))) Union All Optional Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),`5esn`=(`8esn` $12)<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}) Where 123456789 In 9e-12 In false Union All Create ({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})-[`4esn`?:`6esn`|#usn7]->($@usn6),(((@usn6 {`8esn`:999[..@usn5][..`1esn`]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]}))) Detach Delete {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null,$`4esn` =~0e0 Optional Match `2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),usn2=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where 0e0[.12..][3.9e-1..]"), + octest:ct_string("Detach Delete .1e1[..0][..010],Extract(usn2 In .0e0[$`6esn`..]|$@usn6 Contains Count ( * ))[`2esn`(usn1[12e-12])..][(`8esn` :usn2)<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})..],`7esn` Unwind true Is Null As #usn8 Merge ((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))"), + octest:ct_string("Return `3esn` Contains $`8esn` Contains 0e0 As usn2,1e-1 =~0.0 =~9.1e-1 Order By 7.0e-0[3.9e-1..`1esn`] Asc,#usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Desc,0.12[.12e-12] Ascending Skip 12 Contains usn2 Contains $usn2 Unwind `5esn`[$`4esn`] As `4esn` Union Optional Match (`4esn` :`6esn`:`3esn`) Where 8.1e1 Is Null Is Null Match usn2=(((_usn4 :`7esn`{@usn6:.12e-12[999...12]})-[#usn7? *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null}))),#usn8=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Remove Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0).`6esn`?.`2esn`!,{``:@usn6 In 3.9e-1 In 9e-12,`3esn`:$`` Is Not Null Is Not Null}.@usn5?.`3esn`!.`2esn`,Filter(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).``.`8esn` Union Match `5esn`=(({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})-[:``|:`3esn` *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})),``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Create usn1=(@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),#usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) With *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `5esn`,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null) Starts With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * )) Starts With (_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) As usn1 Skip Count(*)[0.12..2.9e1] Limit (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)] Where .9e1 Starts With `4esn`"), + octest:ct_string("Delete 0X7[Count(*)][.9e0],`1esn` In 12e-12 In 1e-1,010 Unwind $999 As `` Union With Distinct *,Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As `5esn`,0xabc =~7.0e-0 =~4.9e12 Order By (#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Desc Where @usn6[.9e12..0e0] Unwind $_usn3 Is Not Null As `5esn` Union All Create @usn6=((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null}))"), + octest:ct_string("Detach Delete $`7esn`[..12.0][..0e0] Create (({usn2:#usn7[10.12e12..][\"d_str\"..]})-[?:`8esn`|:`2esn` *..7]-(`4esn` :#usn8{#usn8:_usn4[7][8.1e1],#usn7:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})),(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})))"), + octest:ct_string("Remove None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where .9e1[...12e12]).@usn5,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01[.9e-12..]].#usn7!.#usn7!.usn1! Return `6esn`(usn1 Is Not Null,123456789 =~6.0e0)[Single(_usn3 In ``[$``..] Where Null[..07])..][{_usn3:010[9e0..9e1][$_usn4..$12],`3esn`:7.0e-0[$usn2..0.12][$``..0]}..] As #usn7 Skip .0[01..`5esn`] Limit Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]) Create (((:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[@usn5?:`4esn`|:@usn5 *1000]-(`` :usn2)-[@usn5{@usn5:$`4esn` Ends With 0e-0}]->(`7esn` {`2esn`:usn2 Ends With .0}))) Union All Unwind Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0|12[0xabc..][$0..]) Contains [`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .12[$`2esn`..usn2][.9e-1.._usn3]] Contains Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]) As #usn8"), + octest:ct_string("With Distinct *,$12[.9e-1] As `6esn`,`6esn`[010...9e-12] As `5esn` Order By 123456789[\"d_str\"..] Descending,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending,12e-12[`7esn`..][5.9e-12..] Asc Where 07[.0e0][3.9e-1] Merge (((`7esn` :usn1)<-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(_usn3 :#usn8)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`2esn`:`8esn`))) Union Delete `2esn`[..9.1e-1][..0xabc],`6esn`[`5esn`..][0.12..],0.0[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])..] Merge ((`5esn` :`2esn`:`8esn`)<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})) On Match Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] Return Distinct {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As ``,$`8esn`[12.0..][4.9e12..],.1e-1 Ends With @usn6 As @usn6 Order By 01[..01] Desc,$123456789 Is Null Is Null Desc,Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Asc Skip #usn8 =~.9e-12 =~$usn1"), + octest:ct_string("Return Distinct *,1.9e0 Ends With 0Xa Ends With $12 As `7esn`,All(`` In 0.12[3.9e-1] Where `7esn`)[(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(`4esn` :_usn3:_usn3)<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999})][`8esn`(#usn7 Ends With $#usn7 Ends With #usn7,7.0e-0[`6esn`..])] Order By 9e-12 In usn2 Asc,.9e-1 Ends With `8esn` Asc,$usn2[.1e1..][.0e-0..] Desc Limit 00 Return *,$`5esn`[true],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Skip $`1esn` =~0.0 Unwind {usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) As usn2 Union Delete `2esn` Is Not Null Is Not Null,$0 =~01234567,[`7esn` In .12e12[Count(*)..] Where \"d_str\" =~9e-12 =~`5esn`] Is Null Is Null Merge `2esn`=((:`3esn`{_usn3:10.12e12 In `3esn` In $usn2})<-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]->(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})) Unwind $999 In 0.0 As `1esn`"), + octest:ct_string("Return 00[$`6esn`] As `6esn`,Count ( * )[12e-12] As #usn7,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] Order By .9e1[Count(*)..$`3esn`] Asc Unwind true Starts With 2.9e1 Starts With 9e1 As _usn4;"), + octest:ct_string("Merge ({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}) Return *,0 Starts With 0Xa Starts With $0 Order By None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4) Asc,$``[`5esn`..][`2esn`..] Desc,0e-0[$`2esn`][8.1e1] Asc Detach Delete (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)]"), + octest:ct_string("With Distinct 0x0 Starts With $`5esn` Starts With 9e-12 Order By Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7) Descending Skip [@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null][..`1esn`(Distinct `5esn` Contains `6esn`,`3esn` Contains $`8esn` Contains 0e0)][..Single(`5esn` In 12[0xabc..][$0..] Where 1000[_usn3..`8esn`])] Limit false[..12e-12][...9e1] Where 00 Is Not Null Is Not Null Union All Remove Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7).#usn7!,(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12}).``!.`` Detach Delete {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} =~Filter(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]),2.9e1[0..$@usn5][`7esn`..$`1esn`],All(usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null])[``($_usn3[1e-1..],.12e12[Count(*)..])][None(_usn4 In Count(*)[9e1..][12e-12..] Where 123456789 Ends With _usn4)]"), + octest:ct_string("Return *,_usn4['s_str'..] As `2esn`,Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Order By .0e0[1e1..][01234567..] Descending,5.9e-12[2.9e1][9e0] Desc Skip Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7) Return Distinct .9e1[#usn7..] Order By 00 Ascending Union Remove (`1esn` :``:usn1{_usn4:.1e1 Is Null Is Null})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`}).@usn6"), + octest:ct_string("Merge `8esn`=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1}) On Match Set {#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}.`6esn`!.`3esn`! =5.9e-12[$`4esn`],_usn3:`2esn`:`8esn`,#usn7(0e0 Starts With $1000 Starts With `2esn`,Count ( * )[..`8esn`]).@usn5? =.0e0 =~5.9e-12 =~`7esn` On Create Set _usn3+=Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567)..] With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],.1e-1 Is Null,.9e12[$usn2..][7..] As `2esn` Limit _usn4 Is Null Is Null Where .12e-12 Ends With $`7esn`"), + octest:ct_string("Create ((usn1 :usn2{``:$`` Is Not Null})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})),({`4esn`:7 Is Null Is Null})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}) Create `5esn`=((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]})),@usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))) Detach Delete 01[$`4esn`..$_usn4][0e-0..$@usn6],Extract(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|Count(*) Is Not Null Is Not Null)[(_usn4 {#usn7:$`5esn` Is Null Is Null})-[_usn3:usn1|:#usn8 *07..]->(`4esn` :#usn8{#usn8:_usn4[7][8.1e1],#usn7:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})][Filter(`5esn` In 12[0xabc..][$0..] Where .12e-12[$@usn6..5.9e-12])],.9e-1 =~.9e-1 Union All Remove `7esn`:#usn8,`8esn`:`6esn`:`3esn`,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0X7[Count(*)][.9e0]|$`8esn`[$``..$`1esn`][9e-12..$7]].usn2?.usn2? Union All With *,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] As _usn4 Order By 00[$`6esn`] Descending,$``[Count(*)] Desc,$`5esn` Is Null Is Null Ascending Where .9e1[...12e12]"), + octest:ct_string("Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1)._usn3!,Any(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).#usn8? Remove [`5esn` In 12[0xabc..][$0..] Where 12 Is Null Is Null].``?,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).#usn8?.@usn6._usn3 Union All Delete Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 07[.0e0][3.9e-1]) Contains Extract(`` In $_usn3 Is Not Null),Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Merge (((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999}))) Optional Match #usn7=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),`7esn`=((#usn7 )) Union All Optional Match usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})),_usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Where $_usn4 Starts With 0e-0 Starts With 1e-1 Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where $`1esn` Starts With Count(*) Starts With $`8esn` Remove (:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null}).`8esn`?,Extract(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null).usn2"), + octest:ct_string("Unwind $123456789 Contains 1000 Contains 11.12e-12 As `6esn` Detach Delete .12e12 Ends With #usn7 Ends With 2.9e1,Extract(`7esn` In .12e12[Count(*)..] Where true Starts With 2.9e1 Starts With 9e1|12[0xabc..][$0..]) Starts With Extract(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12|0.12[3.9e-1]) Starts With ``(12e12[true..][$`2esn`..]),Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * ))[{`4esn`:12e-12 Starts With .9e12 Starts With 0.12}..(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})] Union Return Distinct *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By 01 Ends With \"d_str\" Asc,$_usn3[$`8esn`..$`4esn`] Descending,Null[12e-12..] Desc Skip None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) =~[@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] Limit $``[0.12..] Unwind 0e0 Ends With `7esn` Ends With usn1 As #usn7 Union Create `3esn`=((`2esn` {``:.0e0[$`6esn`..]})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(`6esn` :`3esn`)<-[`7esn`?:`3esn`|:_usn3 *..0xabc]->(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null})),(usn2 :`6esn`:`3esn`)<-[``? *07..{`8esn`:$usn2[0e0][$7],_usn3:.9e-12[0e0...9e-1]}]-(:`2esn`:`8esn`{`6esn`:7.0e-0 Is Null Is Null,`6esn`:999[0.12..8.1e1]})"), + octest:ct_string("With `3esn`[3.9e-1..$`5esn`] As usn2,0X0123456789ABCDEF Is Not Null Is Not Null As `2esn`,11.12e-12 =~5.9e-12 =~.9e1 As `3esn` Limit {`2esn`:`7esn` Is Not Null,@usn5:#usn8[usn1]} Starts With (`7esn` :`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[_usn4 *999..]->({``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}) Remove @usn6($`` Is Not Null Is Not Null,.9e0 In 9.1e-1 In $123456789).`8esn`,(`7esn` :`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})<-[_usn3:_usn3|`2esn`{`7esn`:0X7[_usn4..1.9e0][Count ( * )..false],_usn4:.9e-12[9e1..8.1e1]}]-({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]}).`3esn`! Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As #usn7 Union Return `1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `4esn` Unwind $usn1[$12..] As `7esn` Merge ((:`2esn`:`8esn`{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3}))"), + octest:ct_string("Create `8esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Remove Filter(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])._usn4?,Single(@usn6 In 00 =~.9e-12 =~usn1 Where 0x0 Contains $`1esn` Contains 0.0).`4esn`,@usn5:`4esn`:`7esn` Merge (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) On Match Set Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12).`4esn`!.#usn8?.`1esn` =1.9e0 =~$`8esn` =~01234567,`1esn` =1000[$`6esn`..12.0]['s_str'..$`3esn`],@usn5 =9e0[$usn2][0] Union All With Distinct $`2esn` Contains 123.654,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] As usn2,.9e-12[01][Count(*)] Order By (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] Ascending Skip $`3esn` Ends With 010 Ends With $`7esn` Union All Detach Delete true Is Null Is Null,$usn2 In usn1 In 1e-1"), + octest:ct_string("Unwind _usn4 Ends With .0 Ends With 7 As `7esn` Union All With *,$_usn3 Contains usn2 Contains 0xabc,(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`)<-[usn2 *1000{usn1:Null Starts With $`4esn` Starts With $#usn7}]->(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})[{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}][{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}] As @usn5 Order By .9e12 Starts With .9e12 Starts With `7esn` Ascending,Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0)[(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..][Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..])..] Desc Where 12e-12[.0..] Union All Create `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) With Distinct *,0 Starts With 0Xa Starts With $0 Order By None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4) Asc,$``[`5esn`..][`2esn`..] Desc,0e-0[$`2esn`][8.1e1] Asc Unwind (`3esn` :#usn7:_usn3)<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) Ends With [_usn3 In ``[$``..] Where @usn5 Ends With 0] As _usn4"), + octest:ct_string("Match (`1esn` :_usn3:_usn3$0)-[`7esn`?:`5esn`]->(`1esn` :`6esn`:`3esn`)-[ *0x0..{`3esn`:$@usn6 Is Not Null Is Not Null}]-(usn1 :@usn6:_usn4),`6esn`=(:`1esn`)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`) Where `8esn` =~.1e1 =~.0 Match (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Merge usn2=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}) Union Remove {`5esn`:`4esn`[0.0..][.1e-1..]}.usn2! Union All Remove All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where true In $0 In @usn5).`4esn`.`4esn`?.`3esn`,Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where #usn7[10.12e12..][\"d_str\"..]).@usn6.`7esn`!,Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567).`4esn`!.`8esn`!.`4esn` Optional Match `4esn`=(((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})<-[`8esn`?:usn2|:``]->(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})-[`3esn`?:`5esn` *07..{#usn7:9e-1 =~6.0e0 =~``}]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))),((@usn6 )<-[`2esn`{`4esn`:.0e0[$`6esn`..]}]->({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})-[`6esn`:#usn7|:`8esn` *01234567]-(`5esn` :`2esn`:`8esn`)) Where 0xabc Is Not Null Create `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0}))"), + octest:ct_string("Remove Extract(`7esn` In .12e12[Count(*)..] Where Count(*)[..Count(*)][..9e0]|Null =~true =~.1e-1)._usn4?,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where usn1 Is Not Null).usn1!.@usn6! Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]|$`5esn`[7..])._usn3.`4esn`?.`1esn`!,{usn1:01[.9e-12..],@usn6:$`5esn` Ends With $#usn7 Ends With .0e-0}.`5esn`? Return Distinct Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,07 =~_usn4 =~.9e12 As `` Order By 5.9e-12[9e0..] Ascending,#usn8[`2esn`] Desc,`7esn` Ends With 9e-1 Ends With usn1 Ascending Skip $#usn7 Starts With #usn7 Limit $123456789[$_usn3..][$usn2..]"), + octest:ct_string("Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where `1esn`[9.1e-1]|$`8esn` Starts With `2esn`).``!.`5esn`.``! Union Unwind {@usn5:true Contains 0x0} In Extract(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$1000[..01234567][..0X0123456789ABCDEF]) As `2esn` Return *,.0e0 Is Null Is Null As _usn4,[_usn4 In Count(*)[9e1..][12e-12..] Where $_usn3[1e-1..]][[`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0]][None(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)] As `6esn` Skip 1000[..0e0][..$`6esn`] Limit usn1[..10.12e12][..7] Return Distinct *,0 Starts With 0Xa Starts With $0 Skip Null Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null)"), + octest:ct_string("Remove `3esn`(Distinct 9e12[...12e12][..$`2esn`],.9e1[12]).`2esn`!.`7esn`?"), + octest:ct_string("With Distinct _usn4 In `3esn` In 7.0e-0 As #usn7 Order By $`` Ends With 6.0e0 Descending,$1000[..01234567][..0X0123456789ABCDEF] Ascending Limit .1e-1[.9e12..usn2][`4esn`..$_usn3] Where $_usn4 Contains 123456789 Merge `8esn`=(`6esn` :``:usn1) On Create Set `7esn`:`8esn`:#usn7,(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(usn2 :@usn5{`8esn`:00[$`6esn`]}).#usn7.@usn5 =@usn5 Ends With 's_str' Ends With 01,None(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12).#usn7! =$999 Is Not Null Remove (#usn7 {`5esn`:.12e12[$0]})<-[`6esn`?:``|:`3esn`]->(`5esn` {`6esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]}).`2esn`?,[`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1|true[9e-12...0e-0][`5esn`.._usn4]].usn2!,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..]).`4esn`!._usn4! Union Delete $12[01],.9e-12 =~$`2esn` =~`4esn` Remove {#usn7:.0e0[1e1..][01234567..],@usn5:`2esn` Is Not Null Is Not Null}.#usn8?.`7esn`?,`1esn`:``:usn1,$12.`8esn`!.usn2!._usn4"), + octest:ct_string("With *,None(_usn3 In ``[$``..] Where .0e0 In 10.12e12 In $`5esn`) Is Null Is Null As ``,Count ( * ) Starts With 10.12e12 Starts With `` Skip Count(*)[..Count(*)][..9e0] Where $`6esn` Starts With `4esn` Union All With Count ( * ) Starts With 10.12e12 Starts With `` Order By Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Ascending,4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Ascending,$`2esn`[$1000][2.9e1] Desc Remove {`4esn`:01[..01]}.`8esn`?.`8esn`?.usn1?,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`2esn`[010..`5esn`][``..0.12]).`4esn` Create (:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[`6esn`?:`4esn`|:@usn5{usn1:00,`1esn`:.0e0[1e1..][01234567..]}]->(`3esn` ),usn1=((:_usn3:_usn3{usn1:.9e1[12]})) Union Remove {@usn6:$0 Starts With 010}.@usn6?,[`8esn` In 01234567[..0.0][..false] Where 6.0e0 Is Not Null|`1esn` Starts With 999 Starts With 3.9e-1].@usn5!,[`2esn` In .12e-12[$@usn6..5.9e-12] Where $`6esn` Starts With `4esn`|$`5esn` Is Null Is Null]._usn3"), + octest:ct_string("Return Distinct *,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null As usn2,1.9e0[$12][``] As `5esn` Merge (((`7esn` :usn1)<-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(_usn3 :#usn8)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`2esn`:`8esn`))) Match (((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) Union Return Distinct 0[..$@usn5] As `` Skip $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Limit 1e1 Is Not Null Is Not Null"), + octest:ct_string("Optional Match (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where 123.654 Starts With 2.9e1 Remove All(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1).usn1!.`7esn`.`2esn`!,Filter(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8).@usn5?,(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})._usn3.@usn6!.@usn5"), + octest:ct_string("Remove All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9e12[$#usn8..9e-1][$999..$`4esn`]).``?.`8esn`!,{`8esn`:9e-1 Starts With 123.654 Starts With .9e1}._usn3!._usn3?.#usn8,(`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``! Union Remove {`4esn`:#usn8[..#usn7][..@usn6],`4esn`:8.1e1 Ends With $0 Ends With 6.0e0}.@usn6!.``! Return Distinct `8esn` Is Null As `6esn`,01234567 Starts With `4esn` Starts With 10.12e12,Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null As _usn3 Order By 01[7][`1esn`] Asc,Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null Descending,Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|.9e12 Starts With 6.0e0 Starts With .1e1) Is Null Is Null Asc Skip 1.9e0 =~0x0;"), + octest:ct_string("Return 123.654 Starts With Count ( * ) As `4esn`,(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})-[usn1?:usn1|:#usn8*..]-(`7esn` {`3esn`:.9e-1 Is Null})[..Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 's_str'[12][00])][..usn2($#usn8[...9e1])],Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..] As `8esn` Order By 12 Contains _usn3 Descending Skip 12 In 1000 In \"d_str\" Remove Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567).`4esn`!.`8esn`!.`4esn`,(:`1esn`{`7esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[`7esn`*..]-(`7esn` :usn1).`6esn` Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where ``[..$#usn7]|2.9e1).`1esn`?,None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]).`3esn`? Union Match _usn3=((usn2 {`4esn`:12e12 Is Not Null})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4})) Delete 0.12['s_str'],[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Create `3esn`=(({usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7}))"), + octest:ct_string("Optional Match ((usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})) Where Null[12e-12..] Unwind `1esn`[9.1e-1] As #usn8 Union Match (:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567}) With Distinct *,Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) As #usn7,.12e-12 Ends With $`7esn` Where .9e-1 Ends With `8esn` Remove [`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|`1esn`[Count ( * )][5.9e-12]].@usn5,Filter(`8esn` In 01234567[..0.0][..false] Where 6.0e0 Is Not Null).usn1 Union All Optional Match `5esn`=(((`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`))),#usn8=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Optional Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Where .0e0[1e1..][01234567..];"), + octest:ct_string("With _usn3[`2esn`..][0x0..] As usn1 Order By 01234567 Starts With `4esn` Starts With 10.12e12 Ascending,0Xa In 0.12 In $#usn7 Descending,$999 Is Not Null Desc Skip $@usn5 Ends With $@usn6 Ends With \"d_str\" Limit (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Where 11.12e-12 =~$`4esn` =~.12e12 Optional Match (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Where 999[0.12..8.1e1] Delete $`2esn` Ends With 2.9e1 Ends With $usn1 Union All Merge (`` {_usn4:9e0[..1e1]})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}) On Match Set Any(`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]).usn1!.``?.``? =false =~4.9e12,usn1 =7.0e-0[3.9e-1..`1esn`] On Match Set {@usn5:12e-12 Contains .9e-1 Contains 9e-1}.``! =usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]),@usn6 =0.0 Is Not Null Is Not Null,[`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0]._usn3?._usn3? =.1e1 Starts With .1e-1 Optional Match usn1=((`8esn` :_usn3:_usn3)<-[_usn4? *..7{#usn7:Count ( * )[7]}]->(`6esn` :`7esn`)<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)) Where .9e-12[_usn4..#usn8][9.1e-1..0.12]"), + octest:ct_string("Detach Delete .0e-0[3.9e-1][.12e12] Union All Remove (`2esn` {usn2:7.0e-0 Starts With $7 Starts With true})-[{usn2:$`8esn`[#usn7][.9e1],`7esn`:@usn5[$``]}]->(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}).#usn7.usn1!,`5esn`(.9e-1 Ends With `8esn`,0xabc In 10.12e12).#usn7?,Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7).``!.usn2? Create `1esn`=((:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[usn1 *12..0Xa]->({`5esn`:07 Starts With usn1 Starts With 010})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}))"), + octest:ct_string("Return 9e12[7.0e-0] As #usn7 Skip Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Limit $usn2[4.9e12..false][.0e-0..00] Union All Return *,07 =~7.0e-0 =~`8esn` Order By 9e12[...12e12][..$`2esn`] Ascending Limit Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) Remove None(_usn3 In ``[$``..] Where 0xabc[7.0e-0..][12e12..]).`3esn`.usn2?.@usn5!,Filter(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])._usn3?"), + octest:ct_string("Return *,`8esn` Is Null As `6esn` Order By [usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc,0x0 =~$7 =~Null Desc,12e-12[9e0..1.9e0] Asc Create @usn5=((@usn5 :`1esn`)),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null})"), + octest:ct_string("Create `7esn`=(`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Optional Match `3esn`=(@usn5 :`7esn`),((#usn8 {_usn3:$usn2 In usn1 In 1e-1})) Where usn2[..10.12e12][..$`7esn`] Create ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((`` :``:usn1)) Union Remove Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn`[..0x0][..\"d_str\"]).#usn8!"), + octest:ct_string("Remove Any(`5esn` In 12[0xabc..][$0..] Where `3esn` Starts With _usn4).`3esn`?,[_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]].#usn8? Unwind $@usn5 Is Null Is Null As @usn5 Create `6esn`=((_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))"), + octest:ct_string("With Distinct .9e12[$usn2..][7..] As `2esn`,4.9e12[..Null] As `` Limit .9e-12 =~$`2esn` =~`4esn` Detach Delete 1e1 Is Not Null,1e1 Ends With Null Ends With `7esn`,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1])[Filter(_usn3 In ``[$``..] Where Null[`2esn`..])..][Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)..] Match usn2=(((_usn4 :`7esn`{@usn6:.12e-12[999...12]})-[#usn7? *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null}))),#usn8=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Union Return 0.0[..Null][..9e-12] As `1esn`,$0 =~01234567 As `2esn` Order By All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Asc,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Skip (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null) Remove _usn3:`1esn`,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']).`2esn`! Union Merge (({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`))"), + octest:ct_string("Unwind .9e1[Count(*)..$`3esn`] As `5esn` Unwind .0e-0[0e0..00][.9e1..12] As usn2 Union Remove `3esn`.`2esn`? Delete Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12),$usn2[4.9e12..false][.0e-0..00],usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) Detach Delete .0[usn2.._usn4],.12[.0e-0..] Union Optional Match `8esn`=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(usn1 :usn1),`7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) Where `7esn` Ends With 9e12 Create `2esn`=((:`4esn`:`7esn`{`3esn`:`1esn`[9.1e-1]})<-[?:@usn6|:_usn3 *07..]-(#usn8 :`2esn`:`8esn`{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:@usn5[...9e12]})-[? *..0X7{_usn3:00[$`6esn`]}]->({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})) Optional Match `7esn`=(`` {_usn4:9e0[..1e1]}),usn2=(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})"), + octest:ct_string("Delete 12e-12[`7esn`..][5.9e-12..],#usn7[`5esn`..`2esn`][$`4esn`...1e1] Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1 Union All Remove _usn3:`1esn`,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']).`2esn`! Match ((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Where 0[$`1esn`..][9e12..] Delete 12 Is Null Is Null,[usn1 In 7.0e-0[.._usn4][..0X7]|7.0e-0 Is Null Is Null] =~#usn7 =~`4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`),$`2esn` In 0X7 In 3.9e-1 Union All With Distinct Null =~9e12 As #usn7 Where @usn6 In 3.9e-1 In 9e-12 Create `1esn`=({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[@usn6?:@usn5]->(usn1 :``:usn1{``:#usn8 In $#usn8 In \"d_str\",`2esn`:'s_str' Ends With 0.0 Ends With .12e12})"), + octest:ct_string("Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})) Merge `6esn`=(usn2 {_usn4:$999 Ends With .9e-12})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``}) On Create Set Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3|`4esn` Starts With .0e0 Starts With usn2).`3esn`?.`4esn`!.`8esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct),_usn4+=0X7[$999...12e12][12..`2esn`],`7esn` =6.0e0 In 12 On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} Optional Match (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),`1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) Where `1esn` Starts With 999 Starts With 3.9e-1"), + octest:ct_string("Return {`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``} In All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) In {`6esn`:999[...12e12][..0]} As `6esn` Order By Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7) Contains {`1esn`:$`1esn`[.9e0][$_usn3]} Contains None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]) Ascending,{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Asc,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) Asc Limit Count(*) Delete [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]],All(`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])[None(`` In $_usn3 Is Not Null)..][All(`8esn` In 01234567[..0.0][..false] Where .12e-12[$@usn6..5.9e-12])..] Union Delete Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) With All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..] As `3esn` Order By (usn1 {`6esn`:$`5esn`[true],usn2:1e1 Is Not Null Is Not Null})-[`3esn`?:`5esn` *07..{#usn7:9e-1 =~6.0e0 =~``}]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}) Is Not Null Is Not Null Desc,{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1} In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) Descending,$usn2 Contains $`4esn` Contains true Ascending Where false =~4.9e12 Union Remove {#usn8:``[$``..],`1esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}.#usn8.#usn8?,`4esn`:`6esn`:`3esn`,`7esn`(9.1e-1 Contains 0xabc).`7esn`"), + octest:ct_string("Create ((`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})<-[`8esn`?:`3esn`|:_usn3*..{@usn5:$0 Starts With 010}]-(`3esn` :@usn5)<-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(`1esn` )) Union Merge @usn5=(({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})-[:``|:`3esn` *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})) On Match Set #usn7 ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0} =~Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]),`8esn` =`5esn`(Distinct 123456789 Ends With 8.1e1,01234567[6.0e0][$usn2])[{@usn5:usn1 Is Not Null,usn2:0xabc[7.0e-0..][12e12..]}..][(_usn3 :_usn3:_usn3)<-[`6esn`?:``|:`3esn`]-(:@usn6:_usn4$`6esn`)<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})..] On Create Set [usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]].`4esn`?.usn2?.usn2! =[@usn6 In .9e12 Starts With #usn8 Starts With 00|9e12 Contains $@usn6 Contains Count(*)][(`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]})][Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null)],Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654).`4esn`? =Count ( * )[0e-0..01],#usn7+={usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])];"), + octest:ct_string("Return All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Union Remove Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 01[..0Xa]).`1esn`!.`1esn`! Merge #usn8=(usn1 :_usn3:_usn3) Optional Match `5esn`=(:``:usn1{_usn3:00[$`6esn`]})-[?:_usn3|`2esn`]->(`1esn` :`7esn`),`7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) Where 1e-1 =~0.0 =~9.1e-1"), + octest:ct_string("Create ((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})),#usn8=(#usn7 :usn2)<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}) Optional Match (_usn4 :`7esn`{@usn6:.12e-12[999...12]}) Where Null Starts With 9e1 Starts With `` Union With All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Where .9e1 Contains Null"), + octest:ct_string("With Distinct None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn`[..0x0][..\"d_str\"])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1])..Single(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])] As `4esn`,Null Is Not Null Is Not Null Order By {`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1} In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) Descending,$`6esn` In `2esn` Ascending,usn2 Starts With usn1 Descending Skip 12e-12[.0..] With Distinct *,.9e-12[9e1..6.0e0][`1esn`..9e0] As @usn6,$`6esn` In $`3esn` In 9e1 Order By 5.9e-12 Ends With 1e1 Ends With false Descending,$`2esn` Starts With .12e12 Starts With 3.9e-1 Ascending,`6esn`[`6esn`..] Descending Skip $_usn4 =~$_usn4 =~2.9e1 Where .9e0 Is Null Is Null Remove Any(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).`2esn`!,({``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-(:`3esn`{_usn4:Count(*) =~`5esn` =~$usn2,`7esn`:$123456789[$_usn3..][$usn2..]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`).@usn6.@usn5? Union Remove #usn7:`3esn`,Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]).usn2!.@usn6!.`1esn`?,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1].`6esn`._usn4?._usn4! Delete $12[01],.9e-12 =~$`2esn` =~`4esn`"), + octest:ct_string("Unwind (`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As `7esn` Union All Return Distinct $`2esn` Contains 123.654,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] As usn2,.9e-12[01][Count(*)] Order By (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] Ascending Skip $`3esn` Ends With 010 Ends With $`7esn` Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}))"), + octest:ct_string("Return Distinct `` =~$`5esn`,`2esn`[..3.9e-1],1e1 As `2esn` Order By (:`3esn`{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1})<-[?:@usn6|:_usn3 *07..]-({_usn4:01234567[6.0e0][$usn2]})<-[`2esn`?:`2esn`|`7esn` *..0X7{@usn5:$12 Contains $`7esn` Contains .0}]->(:``:usn1) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]) In {usn1:`7esn` Is Not Null} Descending,.9e12[..$usn1][..10.12e12] Descending Skip @usn6[..$`3esn`][..4.9e12]"), + octest:ct_string("Merge #usn8=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) On Create Set `2esn` =(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)],`3esn` =9e1 Contains 4.9e12 Contains 123456789 Detach Delete 0x0,$``[`6esn`][00],'s_str' Ends With $usn1 Union All Merge _usn4=(((`2esn` {`7esn`:Count(*)[.0e0..][#usn7..]})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)-[:#usn8|:`4esn` *12..0Xa]->(`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]}))) Remove [usn2 In $_usn3 =~$usn1 =~_usn4 Where 0xabc In 10.12e12|9e-1 Starts With 123.654 Starts With .9e1].`2esn`?.`5esn`;"), + octest:ct_string("Return *,false[$1000..$@usn6][7..12],.0e0[8.1e1..0.12] Union Remove [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where true Contains 0x0|$@usn6 Is Not Null Is Not Null].`8esn`,`2esn`:`3esn`,[`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1|`6esn`[..$@usn6][..$`1esn`]].`8esn`? With Distinct *,[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},07 =~_usn4 =~.9e12 As `` Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending Where .9e-1[12.0] Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) On Match Set `5esn` =$`2esn` Starts With #usn7 Starts With 12e12,#usn7(07[.0e0][3.9e-1]).`3esn` =$``[`6esn`][00] On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1 Union Create usn2=(((`7esn` :``:usn1)<-[:`4esn`|:@usn5]-(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[?]->(_usn4 :@usn5))),((:`7esn`)) Return *,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null As `6esn`,01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..] Skip [_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789|0e-0 Contains _usn4 Contains 1e-1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567) Limit @usn5[``..][12e-12..];"), + octest:ct_string("Remove `8esn`:`4esn`:`7esn`,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1])._usn4?.`8esn`,(`6esn` :`2esn`:`8esn`{`6esn`:.1e-1[..12e12]})<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}).@usn5? Create usn1=({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}),#usn8=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Optional Match ((#usn8 {_usn3:$usn2 In usn1 In 1e-1})),usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union Create (`1esn` :`5esn`)-[:#usn8|:`4esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}]-(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}),_usn4=(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}) With Distinct *,.0e-0[0e0..00][.9e1..12] Order By 4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Ascending Skip 0x0 Starts With $`5esn` Starts With 9e-12 Detach Delete #usn7 Ends With Count ( * ) Ends With @usn6,Extract(usn2 In .0e0[$`6esn`..] Where 010|0e-0 Contains _usn4 Contains 1e-1)[{#usn7:_usn4 Ends With .0 Ends With 7,#usn8:`` Ends With .9e-1 Ends With 9e-12}],`5esn` Contains 1.9e0 Contains 9e0 Union Merge #usn7=((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?]->(:@usn5{usn2:$usn1[$12..]})) On Create Set [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]].`8esn`.@usn6? =07[..@usn6][..$`4esn`],Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]).`3esn` =Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07),usn1:`8esn`:#usn7 On Match Set usn2+=#usn7 Ends With $#usn7 Ends With #usn7,`5esn` =Count ( * )[7],`4esn` =123456789 =~2.9e1 =~@usn5 Merge #usn7=((:`4esn`:`7esn`{`7esn`:9e-12 In usn2,usn2:0x0[`5esn`][$`5esn`]})) On Create Set `2esn` =(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)],`3esn` =9e1 Contains 4.9e12 Contains 123456789 On Create Set `6esn` =.1e1 =~10.12e12 Return *,0Xa[$usn2..] As #usn8,#usn7 =~0.0 =~usn2 As _usn4 Skip 123456789[Count(*)] Limit false Is Not Null Is Not Null;"), + octest:ct_string("Match ({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) Union All Merge ((usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]->(:usn1{usn1:Count(*)[0.12..2.9e1]})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})) On Match Set `6esn`:`6esn`:`3esn`,`8esn`:`7esn` On Match Set [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12]].@usn6 =$`8esn`[.9e-1][_usn3] Remove Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`8esn` Starts With `2esn`)._usn3?.#usn8 Union All Create `2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))),#usn7=(({`5esn`:8.1e1 Ends With $0 Ends With 6.0e0,@usn5:9e0[..1e1]})-[`5esn`?:`3esn`|:_usn3{`3esn`:1.9e0 Is Null Is Null,``:$usn2 Ends With `8esn` Ends With _usn3}]-(:``:usn1{_usn3:$#usn7[$_usn4..][.12e-12..],`1esn`:false})<-[`2esn`:`5esn`{usn2:Count(*)[12..][0X0123456789ABCDEF..]}]->(`1esn` {`5esn`:0X7[_usn4..1.9e0][Count ( * )..false],@usn5:123456789 Ends With _usn4}));"), + octest:ct_string("Create ((:@usn5{`7esn`:7.0e-0[`6esn`..]})<-[`7esn`?:``|:`3esn`{@usn5:0x0[`5esn`][$`5esn`]}]->(`3esn` :_usn3:_usn3)<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})),((_usn3 :#usn8)-[_usn4?:``|:`3esn`]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1})) Create @usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}) Union Delete $`1esn` Starts With .12,8.1e1 Contains 0e-0 Contains $_usn3,12e12 Is Not Null Union Merge usn1=({`5esn`:07 Starts With usn1 Starts With 010})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) Remove [`2esn` In .9e-12[0e0...9e-1]|$1000[$1000...9e0]].`1esn`._usn3!,{@usn5:`2esn` =~usn1,#usn8:$`` Is Not Null Is Not Null}.@usn5!,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0 Starts With 0Xa Starts With $0].`7esn`! Unwind $0[..0x0][..01234567] As `7esn`;"), + octest:ct_string("Unwind [`5esn` In 12[0xabc..][$0..] Where $123456789 Is Not Null] Starts With Any(`7esn` In .12e12[Count(*)..] Where 's_str' Ends With 0.0 Ends With .12e12) As `2esn` Detach Delete Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null Union All Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1 Union With Distinct `5esn`[$`4esn`] As @usn6,.0e0 Is Null Is Null As _usn4,1.9e0 Starts With .9e0 Order By @usn5 Contains _usn3 Contains 00 Descending,$`6esn` Ends With 12 Ascending;"), + octest:ct_string("Return `6esn`(usn1 Is Not Null,123456789 =~6.0e0)[Single(_usn3 In ``[$``..] Where Null[..07])..][{_usn3:010[9e0..9e1][$_usn4..$12],`3esn`:7.0e-0[$usn2..0.12][$``..0]}..] As #usn7 Skip .0[01..`5esn`] Limit Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]) Union With Distinct *,[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},07 =~_usn4 =~.9e12 As `` Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending Where .9e-1[12.0] Union All Create ((:usn2{@usn6:`3esn` Ends With `6esn`,`1esn`:$`2esn` Starts With 0x0})<-[`4esn`]->(#usn7 :_usn3:_usn3)),`4esn`=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1}) Optional Match ``=((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})),(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}) Where 0[true..$7] Remove Extract(_usn3 In ``[$``..] Where 01234567 Ends With 2.9e1 Ends With 9.1e-1|$`3esn`).`6esn`.`1esn`!;"), + octest:ct_string("Unwind {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null) As #usn8 Optional Match `7esn`=(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}),(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Where 01234567[...0e-0][..12] Remove `6esn`:`2esn`:`8esn`,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]).@usn6!.usn2?.`4esn`!,(`2esn` :`1esn`)<-[?:#usn8|:`4esn` *1000]-({_usn3:$0 Starts With 010})<-[``?:@usn5]-(`2esn` :usn2).`3esn`.@usn5? Union All Merge (`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1}) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7];"), + octest:ct_string("With Distinct `3esn`[3.9e-1..$`5esn`] As usn2,0X0123456789ABCDEF Is Not Null Is Not Null As `2esn`,11.12e-12 =~5.9e-12 =~.9e1 As `3esn` Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null Desc,8.1e1[usn2..$1000][$7..0x0] Descending,0Xa Ends With #usn8 Ends With usn2 Ascending Where @usn5[$``] Union All Unwind `1esn`[9.1e-1] As #usn8 Union Merge ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})) On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1];"), + octest:ct_string("Create ((usn1 :usn2{``:$`` Is Not Null})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})),((`7esn` {usn2:12.0[..123456789][..01]})-[_usn3{#usn7:Count(*)}]->(`2esn` :_usn3:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``}));"), + octest:ct_string("Create `3esn`=(@usn5 :`7esn`),(`8esn` {usn1:Count ( * )[..2.9e1],_usn3:07 Starts With usn1 Starts With 010}) Union Match (`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]}),(#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`}) Merge usn1=((`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})) On Match Set #usn7:usn2,({usn1:usn2 Ends With 10.12e12})<-[`8esn` *1000]->(#usn8 ).usn2! =$`` In `2esn` In 07,`5esn` =`8esn`[6.0e0..][$`1esn`..] Union Match `7esn`=((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)) Where $_usn4[Null] Create usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})),_usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Merge usn1=(`` {_usn4:9e0[..1e1]})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}) On Create Set `5esn`(Distinct $`2esn`[8.1e1],Count ( * ) Is Null Is Null).`7esn`!.`8esn`? =$``[7..];"), + octest:ct_string("Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),`5esn`=(`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Where .9e-1 =~.9e-1 With Distinct _usn4 In `3esn` In 7.0e-0 As #usn7 Order By $`` Ends With 6.0e0 Descending,$1000[..01234567][..0X0123456789ABCDEF] Ascending Limit .1e-1[.9e12..usn2][`4esn`..$_usn3] Where $_usn4 Contains 123456789 Union Delete .1e-1[..12][.._usn4],[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]} Union Unwind $`` In $@usn6 In 3.9e-1 As _usn3;"), + octest:ct_string("Create ((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Delete .1e-1[$`2esn`..][$`1esn`..] Unwind `8esn`[Null...12e12][0..11.12e-12] As usn2 Union All With Distinct *,Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]) Ends With Extract(`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0|12e12[..$`8esn`][...0e-0]) Ends With _usn3(Distinct 5.9e-12[`4esn`..12e12][0x0..1.9e0],`6esn`[..$@usn6][..$`1esn`]) As `3esn` Where `6esn`[010...9e-12];"), + octest:ct_string("Remove `6esn`:``:usn1 With Distinct usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) In {`2esn`:$`2esn` Contains $1000} In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $@usn6 Contains Count ( * )|11.12e-12 Contains 9e-12],`1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null],.1e-1 Is Null As #usn8 Order By 9e-1 Starts With 123.654 Starts With .9e1 Descending,$`8esn`[$``..$`1esn`][9e-12..$7] Descending Limit None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) Contains [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0] Return {`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``} In All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) In {`6esn`:999[...12e12][..0]} As `6esn` Order By Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7) Contains {`1esn`:$`1esn`[.9e0][$_usn3]} Contains None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]) Ascending,{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Asc,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) Asc Limit Count(*) Union All Detach Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..],.1e-1 Contains 1e1 Contains $`6esn` With *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By .12e-12 =~9e12 =~1e-1 Desc,11.12e-12 =~$`4esn` =~.12e12 Descending Limit [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null Where `2esn` =~usn1 Union All Return *,$7 Contains _usn4 Contains $`1esn`,0e-0[$`2esn`][8.1e1] As @usn5 With `3esn`[3.9e-1..$`5esn`] As usn2,0X0123456789ABCDEF Is Not Null Is Not Null As `2esn`,11.12e-12 =~5.9e-12 =~.9e1 As `3esn` Limit {`2esn`:`7esn` Is Not Null,@usn5:#usn8[usn1]} Starts With (`7esn` :`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[_usn4 *999..]->({``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}) With Distinct `5esn`[$`4esn`] As @usn6,.0e0 Is Null Is Null As _usn4,1.9e0 Starts With .9e0 Order By @usn5 Contains _usn3 Contains 00 Descending,$`6esn` Ends With 12 Ascending;"), + octest:ct_string("With Distinct (`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[:usn2|:``*..{`1esn`:3.9e-1[.0e0..][07..],`6esn`:$`6esn` Ends With 12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})[All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)..`1esn`(Distinct 01234567 Ends With $1000 Ends With $#usn7,$0[..0x0][..01234567])][_usn3(9e0[.0e-0])..[`5esn` In 12[0xabc..][$0..] Where $usn2[0e0][$7]|Count ( * )[`7esn`..]]] As `6esn` Order By #usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Ascending,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) Asc With Distinct *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip 0xabc =~7.0e-0 =~4.9e12 Limit Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))),(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}) Where $`3esn`[..`1esn`][..$`7esn`] Union All Create ((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]})) Return Distinct *,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]},00[$`6esn`] As `6esn` Order By [`7esn` In .12e12[Count(*)..] Where \"d_str\" =~9e-12 =~`5esn`] Is Null Is Null Asc Limit 123456789[.1e1..][$`5esn`..] Union Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set All(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null).usn1! =.12e12[`7esn`][#usn8],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `2esn` Starts With $`7esn` Starts With _usn4).`1esn`?.#usn8?.@usn6! =All(`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])[None(`` In $_usn3 Is Not Null)..][All(`8esn` In 01234567[..0.0][..false] Where .12e-12[$@usn6..5.9e-12])..];"), + octest:ct_string("Return Distinct ({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)[{``:.1e-1 Ends With $`8esn` Ends With .9e0,`7esn`:.9e-12 Is Not Null Is Not Null}][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])],Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) Skip Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) =~Filter(`8esn` In 01234567[..0.0][..false] Where .9e12 =~`5esn` =~07) =~Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0|12[0xabc..][$0..]) Detach Delete ``(@usn6[..$`3esn`][..4.9e12],0x0 Contains $`1esn` Contains 0.0)[{`6esn`:999[...12e12][..0]}][[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)]|.9e1[Count(*)..$`3esn`]]],Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) In {`5esn`:$`` =~$_usn3,`4esn`:`7esn`} In `3esn`,Null In 0Xa In .9e-1 Union Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),(({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})<-[`4esn`:_usn4|`1esn` *123456789..0x0{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})-[_usn3 *..7]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})) Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),(usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}) Return Distinct 9e-12 In 5.9e-12 As ``,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0x0 Contains $`1esn` Contains 0.0) In None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0) As `5esn` Order By 0e0 Ends With 0X7 Ends With .1e1 Desc,(#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Asc,0x0 =~$7 =~Null Desc Union All With .0e0 Is Null Is Null As _usn4,`6esn`(usn1 Is Not Null,123456789 =~6.0e0)[Single(_usn3 In ``[$``..] Where Null[..07])..][{_usn3:010[9e0..9e1][$_usn4..$12],`3esn`:7.0e-0[$usn2..0.12][$``..0]}..] As usn1,#usn8 In $@usn6 Order By 8.1e1 Ends With $0 Ends With 6.0e0 Descending,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null Ascending,Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\") Ascending Skip $`2esn` In 0X7 In 3.9e-1 Limit 0x0[`5esn`][$`5esn`] Create ((#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}));"), + octest:ct_string("Create ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),`1esn`=(((`5esn` :#usn7:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(usn2 {@usn5:$usn2 Ends With `8esn` Ends With _usn3,@usn6:`7esn` Is Not Null}))) Union Unwind `2esn`(Distinct) Starts With Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]) Starts With (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}) As _usn4 With (:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] Where `7esn` Is Null Return *,`` Is Not Null Is Not Null As _usn4 Skip 123456789 =~2.9e1 =~@usn5 Limit (usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]}) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1) Ends With (@usn5 :`7esn`)<-[:`1esn`]->(:`1esn`{`8esn`:.1e1 Is Null Is Null}) Union All Return Distinct $0 =~01234567 As ``,Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])[All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654])][None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])] As usn2 Order By .0e-0 =~$`7esn` =~$0 Descending,01234567 Ends With 2.9e1 Ends With 9.1e-1 Asc,0x0 Contains $`1esn` Contains 0.0 Ascending Skip $`` In $@usn6 In 3.9e-1 Return .1e1 =~`1esn`,Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],$#usn7 Is Not Null Order By All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Desc,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] Ascending,.9e0 In 9.1e-1 In $123456789 Desc;"), + octest:ct_string("Detach Delete 7 Contains $#usn7 Remove Single(`5esn` In 12[0xabc..][$0..] Where 1000[$`6esn`..12.0]['s_str'..$`3esn`])._usn4?,(_usn4 :@usn5)<-[@usn5?:@usn5 *..01]-(`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}).`5esn`._usn3.#usn7? Union All Unwind {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) As `5esn` Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),(usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}) Return Distinct ({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)[{``:.1e-1 Ends With $`8esn` Ends With .9e0,`7esn`:.9e-12 Is Not Null Is Not Null}][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])],Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1);"), + octest:ct_string("Unwind 00 Is Not Null Is Not Null As `2esn` Return Distinct $123456789[#usn8][.9e-12],All(`` In 0.12[3.9e-1] Where `7esn`)[(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(`4esn` :_usn3:_usn3)<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999})][`8esn`(#usn7 Ends With $#usn7 Ends With #usn7,7.0e-0[`6esn`..])] As `2esn`,.9e12[$usn2..][7..] As `2esn` Order By #usn8[..#usn7][..@usn6] Ascending,{#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}[{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}..] Ascending,.9e-1[12.0] Desc Skip Extract(`` In 0.12[3.9e-1]|0X7 Starts With 1e1 Starts With $12)[`7esn`(9.1e-1 Contains 0xabc)..][Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3])..] Limit false[$1000..$@usn6][7..12] Optional Match (_usn4 :``:usn1) Union All Merge (usn2 :@usn5{`3esn`:$usn1 Is Null})-[_usn3:`2esn`|`7esn`*..{#usn8:`1esn` =~0 =~_usn4,`2esn`:0e-0 In $1000 In .9e1}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}) On Create Set @usn5 ={``:`1esn` In 12e-12 In 1e-1,usn2:_usn3[`2esn`..10.12e12][9e1..true]}[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )]..][Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`])..],`6esn` =usn2['s_str'...9e-1][$7..Count ( * )] On Create Set None(`8esn` In 01234567[..0.0][..false] Where $_usn3 Contains 1e1 Contains .12).``.`8esn`? =8.1e1[$`5esn`][0e0] Return Distinct @usn6[.9e12] As ``,01234567 Starts With `4esn` Starts With 10.12e12 Order By $`7esn` Is Null Is Null Descending,Any(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1) Asc,#usn8[usn1] Asc Remove {_usn3:true[9e-12...0e-0][`5esn`.._usn4]}.usn1.`6esn`?.`2esn`,[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010].`5esn`!.`1esn`?,`7esn`(Distinct $usn2[1e-1])._usn3!.@usn5 Union Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) Where _usn3 Starts With `2esn`;"), + octest:ct_string("Return *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip 0xabc =~7.0e-0 =~4.9e12 Limit Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Create @usn6=((`` :usn1)-[ *0..010]->(_usn4 :`5esn`)),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})) With Distinct All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) Is Null Is Null,0xabc =~7.0e-0 =~4.9e12,Single(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1)[Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-12 Is Not Null Is Not Null)][Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`])] Where 9e12 Is Null Is Null;"), + octest:ct_string("Remove #usn8(Distinct .0e0 Contains `4esn` Contains Null,_usn4 Is Not Null Is Not Null).`3esn`!.`1esn`,usn1($usn2[1e-1])._usn3?.`1esn`?.`8esn`? Union All Merge usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) On Create Set usn2 =[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]|12e12 Is Not Null][{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]}],`5esn`+=.9e1[..`5esn`] Union Create ((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})),#usn8=(#usn7 :usn2)<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}) Optional Match (_usn4 :`7esn`{@usn6:.12e-12[999...12]}) Where Null Starts With 9e1 Starts With ``;"), + octest:ct_string("Unwind $`1esn`[.9e0][$_usn3] As `4esn` Union Optional Match (((`7esn` {`3esn`:.9e-1 Is Null})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`))) Where .0e-0[0e0..00][.9e1..12];"), + octest:ct_string("Remove Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Starts With 9e1 Starts With $`4esn`).`7esn`?,[usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..]|$_usn4 Is Not Null]._usn3! Merge `3esn`=({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}) On Match Set `6esn`+=[usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null]][(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})..] On Match Set `7esn` =Filter(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) Starts With All(`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]) Starts With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`);"), + octest:ct_string("Delete .1e-1[$`2esn`..][$`1esn`..] Return Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,9e-1 Starts With 123.654 Starts With .9e1 As `6esn`,.9e0 Is Null Is Null Skip usn1(07 Ends With @usn6 Ends With _usn3,$`2esn` In 0X7 In 3.9e-1) Contains [`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|9e0 =~9e1 =~.12e12] Limit $7 Starts With Null Starts With `6esn`;"), + octest:ct_string("Detach Delete $123456789[$_usn3..][$usn2..],12e12 Ends With usn1,.9e1[11.12e-12] Union All Return Distinct Null[`2esn`..] Order By Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null Descending Limit {_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Merge #usn8=(`6esn` :``:usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[_usn4:`6esn`|#usn7]-(`8esn` $12) On Match Set _usn4:#usn7:_usn3,Extract(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0|`6esn` In 9e-12)._usn4? =0Xa Ends With #usn8 Ends With usn2 Remove {usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}._usn4!;"), + octest:ct_string("Return Distinct *,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"] Starts With ``(12.0[`8esn`],4.9e12 In 5.9e-12 In .9e0) Starts With Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]),$12 Contains $#usn8 Contains 01 Unwind 9e12[.0e0..] As `5esn` Match ``=((@usn6 :`5esn`{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *0x0..{`3esn`:12[0xabc..][$0..],@usn5:`6esn` Is Not Null Is Not Null}]->({#usn8:7.0e-0[3.9e-1..`1esn`],usn1:.0e0[..1e1][..$1000]})-[:`4esn`|:@usn5 *01234567$_usn4]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})),(((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))) Union Merge _usn4=((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Match Set Extract(`` In $_usn3 Is Not Null Where $_usn3 In 123.654 In $`8esn`|$`8esn`[$usn2..]).`6esn`!.``! =_usn4 In `3esn` In 7.0e-0;"), + octest:ct_string("With 00 Starts With Count(*) Starts With 12e12 As `4esn`,(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})<-[?:usn1|:#usn8{`8esn`:`2esn` Is Not Null Is Not Null}]-({#usn8:1e1[Null..][.12..]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null As `3esn` Order By $@usn5 In .9e1 In $`` Ascending,$_usn3[.1e1..][$`1esn`..] Ascending,.1e1 In 9e12 Asc Skip 01 Is Null Where $123456789[$_usn3..][$usn2..] Detach Delete [usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},{`4esn`:5.9e-12[9e0..]} =~None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12),10.12e12 Ends With _usn3 Ends With `4esn` Union All Return Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] As `7esn`,12e12 Starts With `6esn` Starts With true As #usn8,$_usn4[1e-1..8.1e1][`1esn`..1.9e0] As `` Order By 9e-1 Contains $@usn5 Contains Count(*) Asc,\"d_str\"[12e12..][4.9e12..] Descending,12e-12 Ends With @usn5 Ends With $`2esn` Desc Skip `4esn`[0.0..][.1e-1..] Remove Any(`` In $`5esn` Starts With 0X7 Starts With 1e1).#usn7!,Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\").#usn7!,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`8esn` Is Null|`2esn` Starts With $`7esn` Starts With _usn4].usn2?.@usn5! Remove Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7]).#usn8?.`3esn`?.@usn5;"), + octest:ct_string("Delete {`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Union All Create @usn5=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Unwind 1.9e0 =~0x0 As @usn5 Create @usn5=(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}),#usn8=({_usn3:$`8esn` Is Null});"), + octest:ct_string("Return Distinct *,$`6esn` In $`3esn` In 9e1,$7 Contains #usn8 Contains 0Xa As `6esn` Order By $999[.1e1..0.0] Desc,8.1e1 Starts With .9e12 Starts With `7esn` Asc Skip 0e-0 Contains _usn4 Contains 1e-1;"), + octest:ct_string("Merge (((`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0))) On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`3esn`? =0.12[3.9e-1],_usn4 =Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],[`` In $_usn3 Is Not Null Where 12 =~$@usn5|$`2esn` In 0X7 In 3.9e-1].`8esn`.`5esn`? =12e-12[9e0..1.9e0] With Distinct *,$`2esn`[$1000..][$@usn5..] As #usn8 Order By .9e0 Is Null Asc,0 Is Not Null Desc Skip #usn7[5.9e-12][00] Where 12e12[..$`8esn`][...0e-0];"), + octest:ct_string("Merge `1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) On Match Set #usn7 =[usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|9e0 =~9e1 =~.12e12] Is Null Is Null,`8esn`+=123.654 Is Not Null Is Not Null,`3esn`+=_usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null Delete `3esn`[.12e-12..];"), + octest:ct_string("Unwind #usn8[7..@usn5] As `` With 9e12[7.0e-0] As #usn7 Order By $_usn4 Contains .12e-12 Descending Where #usn7[..0X0123456789ABCDEF] Merge (((`5esn` :#usn8)<-[`4esn`?:_usn3|`2esn` *0..010]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]}))) On Create Set Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12|.1e-1).`1esn`? =0.12 Is Not Null Is Not Null,(`2esn` :``:usn1)-[?:``|:`3esn` *12..0Xa]-(@usn6 :`7esn`{`6esn`:``[$``..]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:@usn5)._usn4! =1000 Contains Null Contains 9e1 On Match Set `6esn`(010[@usn5..123.654],0X0123456789ABCDEF Contains $`6esn` Contains $123456789).usn1 =Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],`6esn` =Null[..07],Single(`5esn` In 12[0xabc..][$0..] Where .1e1 Starts With $7).@usn6?.`8esn` ={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) Union Remove count(.12e12[$0]).`4esn`!,`2esn`(Distinct 9e-12 In 0X0123456789ABCDEF In $999).`1esn`!,[_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12|@usn5[...9e12]]._usn3;"), + octest:ct_string("With _usn4 In `3esn` In 7.0e-0,`7esn` Is Not Null Is Not Null,`8esn` As usn2 Order By [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null Ascending,$usn1[$usn1..] Descending,9e-12 In 0X0123456789ABCDEF In $999 Descending Remove ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(usn1 :usn1)<-[@usn5?:`8esn`|:`2esn` *0..010]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}).`5esn`!.usn2!.`1esn`! Match (`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Union All With {usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])],@usn5 Ends With 's_str' Ends With 01 As `7esn` Limit 1000[_usn3..`8esn`] Remove [`` In 0.12[3.9e-1] Where 07 =~7.0e-0 =~`8esn`].`8esn`;"), + octest:ct_string("With *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By .12e-12 =~9e12 =~1e-1 Desc,11.12e-12 =~$`4esn` =~.12e12 Descending Limit [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null Where `2esn` =~usn1 With *,{`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As #usn7,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Limit [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]][{`2esn`:$`8esn` In 9e-12 In 3.9e-1}..{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}][Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..])..Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Union Return 123456789 Contains .1e-1 Contains .12e12 As usn1 Order By 4.9e12[1e1..'s_str'][Count(*)..0X7] Asc,9e12 Is Null Is Null Ascending Skip #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(`5esn` In 12[0xabc..][$0..] Where .0e0[1e1..][01234567..]) Limit 1e1 Union With Distinct *,9.1e-1 =~.12 =~0e-0 As `1esn` Order By 9e-1 Starts With 123.654 Starts With .9e1 Descending,$`8esn`[$``..$`1esn`][9e-12..$7] Descending Skip \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"] Limit $`5esn` Is Not Null Where .9e1[#usn7..] With *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5 Is Null With Distinct *,All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Starts With 10.12e12 Starts With #usn7(false =~4.9e12),0e0[`4esn`] Where 1e1 Ends With Null Ends With `7esn`;"), + octest:ct_string("Remove Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 01[..0Xa]).`1esn`!.`1esn`! Merge #usn8=(usn1 :_usn3:_usn3) Optional Match `5esn`=(:``:usn1{_usn3:00[$`6esn`]})-[?:_usn3|`2esn`]->(`1esn` :`7esn`),`7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) Where 1e-1 =~0.0 =~9.1e-1 Union All Merge ((:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[#usn8? *0x0..]->(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)) On Match Set `8esn` =#usn7 Ends With $#usn7 Ends With #usn7;"), + octest:ct_string("Return *,`3esn` Contains 01234567 Contains .9e-12 Skip Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]) In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )] In `8esn`(Distinct $_usn3 Contains 1e1 Contains .12) Limit $1000 Unwind $`6esn` In `2esn` As _usn4 Union All Delete (`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..],1e-1 =~0.0 =~9.1e-1,$`5esn`[7..] With Distinct [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Order By Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Desc Limit .0e0 Is Null Is Null Where 01[1e-1] Remove Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $@usn5 =~.12e-12).`4esn`?,Single(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]).`8esn`? Union All With $usn2 In usn1 In 1e-1 Skip .9e12 In 12e12 Limit Null[10.12e12..] Where 9e12[...12e12][..$`2esn`] Optional Match @usn5=(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}),#usn8=({_usn3:$`8esn` Is Null}) Detach Delete (:usn1{@usn5:Count(*)})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) In #usn8(Distinct 010[9e0..9e1][$_usn4..$12]) In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $`6esn`[$_usn4][01]),.1e1 Is Not Null Is Not Null;"), + octest:ct_string("With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],.1e-1 Is Null,.9e12[$usn2..][7..] As `2esn` Limit _usn4 Is Null Is Null Where .12e-12 Ends With $`7esn` Union Create ((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1))),_usn4=((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) With Distinct *,0Xa Ends With #usn8 Ends With usn2 As `6esn` Delete #usn8(Distinct false[$1000..$@usn6][7..12],123456789 In 9e-12 In false) Starts With `4esn`(Distinct 0e0 Is Null Is Null),.0;"), + octest:ct_string("Merge ((:`7esn`{`5esn`:0e0 Is Null Is Null})) On Match Set `1esn`+=0e-0 Starts With 9e-12 Starts With false On Create Set @usn6 =123.654 Ends With 0Xa Ends With .12e12,`` =.0e-0 Starts With $#usn7 Starts With _usn3 Merge @usn6=(@usn5 {_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) On Create Set `2esn`+=Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],#usn8 =.9e-12[0e0...9e-1] On Match Set `6esn` ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])],All(`5esn` In 12[0xabc..][$0..] Where _usn3 Ends With 01 Ends With .1e-1).`6esn`? =12.0[..Count(*)][..5.9e-12] Unwind 5.9e-12 Ends With 1e1 Ends With false As _usn3;"), + octest:ct_string("With *,.9e-12[9e1..6.0e0][`1esn`..9e0] As @usn6,$`6esn` In $`3esn` In 9e1 Order By 5.9e-12 Ends With 1e1 Ends With false Descending,$`2esn` Starts With .12e12 Starts With 3.9e-1 Ascending,`6esn`[`6esn`..] Descending Skip $_usn4 =~$_usn4 =~2.9e1 Where $`4esn` In 123456789 In `5esn` Union Match (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))),(`8esn` {`3esn`:#usn8[`2esn`]});"), + octest:ct_string("Remove _usn3:#usn7:_usn3,Single(`8esn` In 01234567[..0.0][..false] Where 0e0 Starts With $1000 Starts With `2esn`).usn1?,Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 7.0e-0 =~$123456789 =~`8esn`).#usn8? Union All Unwind 01234567 Is Not Null As `` Union All Merge ``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010});"), + octest:ct_string("With [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..] Delete Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null,0X0123456789ABCDEF Is Not Null Is Not Null Union All Match (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Create #usn8=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Return 0 Contains $`6esn` Contains #usn7 Limit usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) Union Create `5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)),``=(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`` :@usn6:_usn4)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]});"), + octest:ct_string("With *,07 =~7.0e-0 =~`8esn` Order By 9e12[...12e12][..$`2esn`] Ascending Limit Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) Where @usn5 Ends With 's_str' Ends With 01 Return 00[$`6esn`] As `6esn`,Count ( * )[12e-12] As #usn7,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] Order By .9e1[Count(*)..$`3esn`] Asc With *,7.0e-0 Contains Count ( * ) Contains 0Xa As `7esn` Order By [_usn4 In Count(*)[9e1..][12e-12..] Where $_usn3[1e-1..]][[`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0]][None(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)] Ascending,9e0[$usn2][0] Ascending Skip 3.9e-1[010..][9e1..] Limit (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null Where $_usn4[Null] Union All With Distinct ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]) Skip 9e1 Contains 4.9e12 Contains 123456789 With *,12.0[..123456789][..01] Limit $usn1 Starts With usn1 Starts With 1e-1 Merge `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2});"), + octest:ct_string("Match (:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}),(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}) Where .9e-1[3.9e-1]['s_str'] Merge usn1=(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ) Optional Match `2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null})));"), + octest:ct_string("Match ((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`2esn`=((`7esn` :usn1)<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3)) Where $`8esn` =~.9e12 =~010 Return Distinct 07[.0e0][3.9e-1] As #usn8,0X7 As _usn4 Skip $12 Is Null Is Null Remove Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|$_usn3 Is Not Null).`5esn`!,count(Distinct $`3esn` Starts With 0Xa).#usn7;"), + octest:ct_string("Create ((:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})<-[_usn4:`6esn`|#usn7]-(`8esn` $12)) Union All Return Distinct *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Order By .9e-12[12e12][.0e0] Asc,0.0[4.9e12..][00..] Ascending,$`1esn` Starts With Count(*) Starts With $`8esn` Ascending Skip {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Count(*)[9e-12..0Xa][$123456789..0.0])..Any(`2esn` In .9e-12[0e0...9e-1] Where `3esn` Contains 01234567 Contains .9e-12)][All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e0 In 9.1e-1 In $123456789)..Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)] Unwind Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) As `6esn` Match `5esn`=(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}),((`6esn` :_usn4)<-[`7esn`*..]->(`` :@usn6:_usn4)-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Union All Remove (`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``!,usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4!;"), + octest:ct_string("Merge `8esn`=(@usn6 :`5esn`{@usn5:$`4esn` Ends With 0e-0})-[usn2?:@usn5*{`6esn`:.9e0 In 9.1e-1 In $123456789,`6esn`:.12[$`2esn`..usn2][.9e-1.._usn3]}]->($`2esn`) On Create Set [`5esn` In 12[0xabc..][$0..] Where 12 Is Null Is Null].``? =.9e0 Is Null Is Null On Match Set `7esn`+=$`` In $7 In 9e-1,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`].``? =Count(*) Starts With $_usn4,`1esn` =0xabc Contains 9e1 Contains 0x0;"), + octest:ct_string("Create ((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})) Create (({@usn6:0Xa[9e0]})) Unwind usn1[12e-12] As `2esn` Union All Unwind {@usn5:true Contains 0x0} In Extract(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$1000[..01234567][..0X0123456789ABCDEF]) As @usn5 With Distinct *,_usn3[`2esn`..10.12e12][9e1..true] Where .9e1[#usn7..] Union All Optional Match (((usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}))),`5esn`=(`5esn` :`1esn`) Return *,.12e-12 In 9e12 In 9e-12 As `5esn`,1e-1 Starts With usn2 Starts With 12e-12 As `` Order By 0[true..$7] Descending Skip (_usn4 :`2esn`:`8esn`)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})<-[`2esn`?:@usn5]-(`7esn` :usn1$`6esn`) =~(#usn8 {`3esn`:123456789 Contains .1e-1 Contains .12e12,`1esn`:$`3esn` =~4.9e12 =~$7})-[#usn7? *00..123456789]->(`8esn` :@usn5)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Create `1esn`=(_usn3 )-[?:`6esn`|#usn7{_usn4:8.1e1 Is Null,#usn7:$_usn3 =~$usn1 =~_usn4}]-(usn2 :@usn5{`8esn`:00[$`6esn`]})-[?:usn2|:``]-(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}),usn1=((`8esn` :_usn3:_usn3)<-[_usn4? *..7{#usn7:Count ( * )[7]}]->(`6esn` :`7esn`)<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`));"), + octest:ct_string("Return 0.0[..Null][..9e-12] As `1esn`,$0 =~01234567 As `2esn` Order By All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Asc,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Skip (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null) Remove _usn3:`1esn`,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']).`2esn`!;"), + octest:ct_string("Remove None(`5esn` In 12[0xabc..][$0..] Where .9e0 Is Null Is Null).`4esn`?.`7esn`!,{`4esn`:9.1e-1 Is Null}.`` Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})) Unwind $`6esn`[$`8esn`..][false..] As usn2 Union All Merge `7esn`=(((`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`))) On Match Set [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]|0x0 Contains $`1esn` Contains 0.0].@usn5.``?.`8esn` =All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] Create `5esn`=(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null});"), + octest:ct_string("With Distinct `5esn`[$`4esn`] As @usn6,.0e0 Is Null Is Null As _usn4,1.9e0 Starts With .9e0 Order By @usn5 Contains _usn3 Contains 00 Descending,$`6esn` Ends With 12 Ascending Union Return $`4esn` Contains $12 Contains .9e-1,.1e-1[@usn6..] As `4esn`,`2esn` =~usn1 As `6esn` Skip 0xabc[7.0e-0..][12e12..] Limit .12e12 =~$#usn7 Remove {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}.`7esn`,(`5esn` :`2esn`:`8esn`)-[`6esn`:`6esn`|#usn7*]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})._usn4 Remove `2esn`(Distinct 12 Is Null Is Null)._usn3! Union With Distinct 12.0 Starts With 07 Starts With $`3esn` As `8esn`,(`3esn` :#usn7:_usn3)<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) Ends With [_usn3 In ``[$``..] Where @usn5 Ends With 0] As usn1,(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) Starts With count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) Skip [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1|.9e1[12]] Is Null Is Null Create _usn4=(({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[_usn3:usn1|:#usn8 *07..]-(usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})) Create (({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)),((`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}));"), + octest:ct_string("Return Distinct Null[`2esn`..] Order By Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null Descending Limit {_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Merge #usn8=(`6esn` :``:usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[_usn4:`6esn`|#usn7]-(`8esn` $12) On Match Set _usn4:#usn7:_usn3,Extract(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0|`6esn` In 9e-12)._usn4? =0Xa Ends With #usn8 Ends With usn2 Remove {usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}._usn4! Union Return *,#usn8 In $#usn8 In \"d_str\",`` Is Not Null Is Not Null Order By `3esn`[`4esn`..Null][$usn1..`5esn`] Desc,`5esn` Contains `6esn` Asc,9e-12 In 5.9e-12 Asc Limit .1e1 Starts With 9e0 Unwind `4esn`(Distinct `1esn`[..0x0][..\"d_str\"],false[..12e-12][...9e1]) Is Null Is Null As `3esn` Merge #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})) On Match Set All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 999 =~0Xa =~9e0).`1esn`?.`2esn`? =()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] On Create Set Any(`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]).usn1!.``?.``? =false =~4.9e12,usn1 =7.0e-0[3.9e-1..`1esn`] Union All Detach Delete Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null)[[`2esn` In .12e-12[$@usn6..5.9e-12] Where 00]][Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12])] Delete Null Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null),None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4),$usn1 Starts With 00 With Distinct *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Order By .9e-12[12e12][.0e0] Asc,0.0[4.9e12..][00..] Ascending,$`1esn` Starts With Count(*) Starts With $`8esn` Ascending Skip {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Count(*)[9e-12..0Xa][$123456789..0.0])..Any(`2esn` In .9e-12[0e0...9e-1] Where `3esn` Contains 01234567 Contains .9e-12)][All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e0 In 9.1e-1 In $123456789)..Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)] Where .0 Is Null Is Null;"), + octest:ct_string("With Distinct Null[...9e1] As usn2 Union All Optional Match ((`7esn` :usn1$`6esn`)-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(`7esn` :`2esn`:`8esn`)-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1)),usn2=(`2esn` )-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}) Where 0[$999..] Optional Match (({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})) Where 5.9e-12 =~$@usn6 Remove [`` In $`5esn` Starts With 0X7 Starts With 1e1]._usn4?,[_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]].usn2;"), + octest:ct_string("Remove {`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null}.@usn5?.#usn8!.`8esn`?,_usn4:_usn4,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]|Count(*) Starts With $_usn4).`8esn`! Unwind {usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) As usn2 Union All Return *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip usn2 Starts With $_usn3 Union All Remove _usn3:`1esn`,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']).`2esn`! Match ((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Where 0[$`1esn`..][9e12..] Delete 12 Is Null Is Null,[usn1 In 7.0e-0[.._usn4][..0X7]|7.0e-0 Is Null Is Null] =~#usn7 =~`4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`),$`2esn` In 0X7 In 3.9e-1;"), + octest:ct_string("Remove ({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[ *07..{#usn8:`1esn`[1000][Null]}]-(usn1 :`2esn`:`8esn`).`5esn`?,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"]._usn4,(:`7esn`{`8esn`:$usn2[0e0][$7],_usn3:.9e-12[0e0...9e-1]})-[_usn4?:``|:`3esn`]-(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn1? *0X0123456789ABCDEF..0{_usn4:00[0e-0...9e-1][1e-1..``]}]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6!;"), + octest:ct_string("Merge (((_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`1esn`{`7esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]}))) On Create Set @usn5+=_usn4 Ends With .0 Ends With 7,None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0e-0 Contains _usn4 Contains 1e-1).`6esn`! =Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) Detach Delete $`6esn` Starts With `4esn` Remove ({`1esn`:0X0123456789ABCDEF Contains 8.1e1})<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}).``!,`8esn`(07 Is Null Is Null).`7esn`!,Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]).``!.@usn6?;"), + octest:ct_string("Unwind 7 Starts With 0X7 As _usn3 With Distinct All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7])[..Extract(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..])],Count(*) Is Not Null Is Not Null As `4esn`,9e12 Ends With 07 Order By $`2esn`[$1000][2.9e1] Desc,9e1 Ends With .9e0 Descending,@usn5 Is Null Is Null Desc Merge ``=((@usn6 :`5esn`)<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})) Union All Optional Match (#usn8 {_usn3:$_usn4 Contains .12e-12}) Return Distinct *,`4esn`(Distinct 01[..0.12],$`8esn` Is Null) Contains All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]),Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} As `3esn` Limit Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null Merge `1esn`=(`3esn` :_usn3:_usn3)-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]}) On Match Set `8esn` =.9e1[Count(*)..$`3esn`] On Create Set usn1+=$`3esn` In 's_str' In $#usn7 Union All With Distinct Null =~9e12 As #usn7,.0[usn2.._usn4] As `8esn` Order By [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]][{`2esn`:$`8esn` In 9e-12 In 3.9e-1}..{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}][Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..])..Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Descending,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]) Descending,5.9e-12 Contains $`` Contains $`5esn` Descending Skip .9e0[.1e-1][Count(*)] Where 9e1 Is Not Null Merge #usn7=(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[?{#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0}]-({`6esn`:07 Ends With @usn6 Ends With _usn3}) On Match Set `4esn`+=$`2esn`[$1000][2.9e1],{usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}._usn3 =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1} On Match Set {@usn5:12e-12 Starts With .9e12 Starts With 0.12}.`1esn`? =`3esn`[$0..][.9e1..];"), + octest:ct_string("Return Distinct $12[.9e-1] As `4esn`,.12e12 =~$#usn7,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) As `8esn` Order By 5.9e-12[2.9e1][9e0] Desc Skip 1e-1[...0e-0][...0] Union All Create `1esn`=((`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[?{_usn3:Null Starts With 9e1 Starts With ``}]->({`1esn`:0X0123456789ABCDEF Contains 8.1e1})-[_usn3:_usn4|`1esn`{`2esn`:123456789 In 9e-12 In false}]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]})),((@usn5 {_usn4:$usn1[$7..][$0..],#usn8:9e0[..1e1]})-[:usn2|:``]-(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})) Return Distinct Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Limit ()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] Merge `7esn`=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) On Create Set {@usn5:12e-12 Starts With .9e12 Starts With 0.12}.`1esn`? =`3esn`[$0..][.9e1..] Union All Merge (`8esn` {``:$123456789[$_usn3..][$usn2..]}) On Create Set None(usn1 In 7.0e-0[.._usn4][..0X7] Where 9.1e-1 Contains 0xabc).@usn6.#usn7!.@usn5 =01234567[..Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null)][..999] Unwind .1e1[1e-1..][1.9e0..] As _usn3 Create ({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})-[`4esn`?:`6esn`|#usn7]->($@usn6),(((@usn6 {`8esn`:999[..@usn5][..`1esn`]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]})));"), + octest:ct_string("Create _usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))),@usn6=(@usn5 {_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) Union All Detach Delete _usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null Union All Merge ((usn1 )-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0}));"), + octest:ct_string("Remove `4esn`:_usn4,(`5esn` {usn1:true Contains 0x0})<-[?:usn2|:``]->(@usn5 :usn1{usn1:.9e1[12]})-[`2esn`?:#usn8|:`4esn`]-(:@usn6:_usn4{`2esn`:$usn1[$7..][$0..]}).@usn5!.#usn8!.`2esn`,{`7esn`:7.0e-0[.._usn4][..0X7],usn1:8.1e1 Is Null Is Null}.`5esn`? Unwind $`2esn` Contains false Contains 123456789 As `8esn` Merge `8esn`=(`3esn` :#usn7:_usn3)<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(`2esn` :usn2)<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}) Union All Optional Match (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Where 999[0.12..8.1e1];"), + octest:ct_string("Return Distinct *,0e0[`4esn`] As `6esn`,9.1e-1[.1e-1] Create _usn4=(`` :usn1)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`) Return Distinct *,All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1) =~_usn3(Distinct 5.9e-12[9e0..],$@usn5 Is Null),{_usn4:1.9e0 =~$`8esn` =~01234567}[All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Ends With [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|$999 Ends With .9e-12] Ends With [usn2 In .0e0[$`6esn`..] Where usn2 Ends With .0] Desc Skip $_usn3 Ends With Count(*) Ends With $`` Limit All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0)[..[@usn6 In 00 =~.9e-12 =~usn1 Where 0.0[$1000][3.9e-1]|$usn2 =~$`2esn` =~\"d_str\"]];"), + octest:ct_string("Remove count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0]).#usn8?.#usn8.`` Delete 10.12e12[..1.9e0][..Null] Remove [`2esn` In .9e-12[0e0...9e-1] Where $usn1 =~$999 =~$7].@usn5.``!.`6esn`!;"), + octest:ct_string("Create (((`3esn` :@usn6:_usn4)<-[_usn4?:#usn8|:`4esn` *123456789..0x0]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12})-[?:_usn3|`2esn`]->(`1esn` :`7esn`))),(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567}) Return $0[..0x0][..01234567] As #usn7,\"d_str\" Starts With `6esn` Starts With 1.9e0 As _usn3 Order By 01[7][`1esn`] Asc,Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,#usn7[12e-12..][$`2esn`..] Asc Skip $7 =~0 =~.1e-1;"), + octest:ct_string("Delete $12 Is Null Is Null,3.9e-1 Contains 9.1e-1 Contains `8esn` Union All With 0X0123456789ABCDEF Contains 8.1e1 As `6esn`,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,.9e0 Is Not Null Is Not Null As `5esn` Skip .1e-1 Where .0e0[$`1esn`][.9e-12] Remove `5esn`:``:usn1,{#usn7:.9e1[Count(*)..$`3esn`]}.#usn8?.usn1?.`2esn`?,{`5esn`:.1e-1 Starts With 1000 Starts With $`1esn`,`5esn`:Count(*)}.``? Merge ((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`3esn`? =0.12[3.9e-1],_usn4 =Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],[`` In $_usn3 Is Not Null Where 12 =~$@usn5|$`2esn` In 0X7 In 3.9e-1].`8esn`.`5esn`? =12e-12[9e0..1.9e0] On Create Set `1esn` =.1e-1[..12][.._usn4],_usn4 =usn2[..7.0e-0],`5esn` =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1};"), + octest:ct_string("With Distinct $12[.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As #usn8,{#usn7:01 Ends With \"d_str\",_usn4:`3esn` In 0X7}[All(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12])..Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]|999[..@usn5][..`1esn`])][Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1)..Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)] Order By $`3esn`[010..][9e-1..] Ascending Optional Match ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) Union All Unwind _usn4 Ends With .0 Ends With 7 As `7esn` Union All With Distinct 0X0123456789ABCDEF Contains 8.1e1 As `6esn`,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,.9e0 Is Not Null Is Not Null As `5esn` Skip .1e-1 Delete \"d_str\"[12e12..][4.9e12..];"), + octest:ct_string("Merge `8esn`=((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) On Match Set _usn3+=$usn2[12.0..],`7esn`+=false[..12e-12][...9e1];"), + octest:ct_string("Create @usn5=(({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) Unwind .0[01234567][$#usn8] As `2esn` Union Merge (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))) On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12;"), + octest:ct_string("Merge ``=((({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})<-[@usn6:#usn7|:`8esn` *0Xa..7]->(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})<-[@usn6:#usn7|:`8esn` *0Xa..7]->(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`}))) Merge (((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))) On Create Set `7esn` =$`7esn` Is Null Is Null,Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1]|12 Contains usn2 Contains $usn2).usn2? =`1esn` Ends With 7.0e-0 Ends With $usn1,None(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12)._usn4 =.1e-1[@usn6..] Union All Merge `3esn`=((`1esn` :_usn3:_usn3$0)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})) On Match Set #usn7:usn2,({usn1:usn2 Ends With 10.12e12})<-[`8esn` *1000]->(#usn8 ).usn2! =$`` In `2esn` In 07,`5esn` =`8esn`[6.0e0..][$`1esn`..] Create _usn3=((:`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[`3esn`:`5esn` *123456789..0x0{`6esn`:.9e-12[12e12][.0e0]}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}));"), + octest:ct_string("Unwind $`8esn`[.._usn4(Null[..07],123.654)] As _usn4 Remove (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[``? *07..{`8esn`:$usn2[0e0][$7],_usn3:.9e-12[0e0...9e-1]}]-(`1esn` :`5esn`)<-[? *0X0123456789ABCDEF..0{`1esn`:$`2esn` Ends With $`8esn`}]-(`4esn` {@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}).@usn6? Remove Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).`5esn`?,None(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).@usn5? Union Unwind $usn1[$12..] As `` Unwind All(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]) Starts With Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) As `3esn` Merge ``=((@usn6 :`5esn`)<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}));"), + octest:ct_string("Delete Extract(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|Count(*) Is Not Null Is Not Null)[(_usn4 {#usn7:$`5esn` Is Null Is Null})-[_usn3:usn1|:#usn8 *07..]->(`4esn` :#usn8{#usn8:_usn4[7][8.1e1],#usn7:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})][Filter(`5esn` In 12[0xabc..][$0..] Where .12e-12[$@usn6..5.9e-12])],123.654 Merge (`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[_usn3:usn1|:#usn8 *07..]-({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}) On Match Set `6esn`:`6esn`:`3esn`,`8esn`:`7esn` On Match Set {#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}.`6esn`!.`3esn`! =5.9e-12[$`4esn`],_usn3:`2esn`:`8esn`,#usn7(0e0 Starts With $1000 Starts With `2esn`,Count ( * )[..`8esn`]).@usn5? =.0e0 =~5.9e-12 =~`7esn` With Distinct 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] Ascending,1e-1[..$`6esn`] Ascending Skip (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Where #usn7 Ends With $#usn7 Ends With #usn7 Union All Remove `5esn`(123456789 =~$`1esn` =~#usn7,$0[$`7esn`..$`3esn`]['s_str'...0]).#usn7?;"), + octest:ct_string("Remove ({``:@usn5[$_usn3..],`5esn`:`` Contains 12.0})<-[``?:#usn8|:`4esn`]-(:usn1{@usn5:Count(*)}).usn2?.`3esn` Union Return $_usn3 In 123.654 In $`8esn` As `2esn`,@usn5[$_usn3..],.1e-1 Contains 1e1 Contains $`6esn` As `5esn` Order By $usn1 Contains `7esn` Contains .9e12 Ascending,8.1e1 Ends With $0 Ends With 6.0e0 Descending,9e12[...12e12][..$`2esn`] Descending Limit `3esn`[`4esn`..Null][$usn1..`5esn`] Match (`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1}),({@usn5:$12 Contains $`7esn` Contains .0})<-[usn2 *..0xabc]->(:@usn5{`7esn`:7.0e-0[`6esn`..]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1}) Where $`6esn` Starts With `4esn` Create (:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567}),`4esn`=((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) Union All Merge (({`8esn`:$`` Is Null Is Null})) On Match Set usn1 =$0[$`7esn`..$`3esn`]['s_str'...0],[@usn6 In 00 =~.9e-12 =~usn1 Where $123456789 Starts With Count ( * )].`1esn`? =usn2 Ends With .0,`8esn` =010[..@usn5][.._usn4];"), + octest:ct_string("With Distinct _usn3[`2esn`..][0x0..] As usn1 Order By 01234567 Starts With `4esn` Starts With 10.12e12 Ascending,0Xa In 0.12 In $#usn7 Descending,$999 Is Not Null Desc Skip $@usn5 Ends With $@usn6 Ends With \"d_str\" Limit (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Union All Return Distinct *,Null[12e-12..] As _usn4,$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Create #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]})-[`3esn`? *..0xabc{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`}) Remove #usn7:`4esn`:`7esn` Union All Unwind `1esn`[9.1e-1] As #usn8;"), + octest:ct_string("Create _usn4=(`` :usn1)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`);"), + octest:ct_string("Merge _usn3=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) On Create Set `7esn` =$`7esn` Is Null Is Null,Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1]|12 Contains usn2 Contains $usn2).usn2? =`1esn` Ends With 7.0e-0 Ends With $usn1,None(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12)._usn4 =.1e-1[@usn6..] Union All With Distinct $usn2 In usn1 In 1e-1 Limit 0.12[07..3.9e-1] Where 0[$`1esn`..`8esn`] Detach Delete {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} Is Not Null Is Not Null,`6esn`[`5esn`..][0.12..] Match ({`4esn`:7 Is Null Is Null})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]});"), + octest:ct_string("Create ((@usn5 :usn1)-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})),(:_usn4) Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)],Null[...9e1] Union All Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) Union Merge `6esn`=(({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Create Set All(usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]).`2esn`? =0Xa[$usn2..],`3esn`:usn1,`1esn` =$``[`6esn`][00] Unwind [`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] In Any(`7esn` In .12e12[Count(*)..] Where 0Xa[9e0]) In [usn2 In .0e0[$`6esn`..] Where .12e12[`7esn`][#usn8]|7 Is Null Is Null] As @usn6 Delete $12[$12..],usn2 Ends With 10.12e12,1.9e0[$12][``];"), + octest:ct_string("Create @usn5=({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Detach Delete {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null,$`4esn` =~0e0 Delete 10.12e12[0Xa..999][1000..Count(*)],2.9e1 Union Detach Delete `8esn`[..7.0e-0][..0xabc],{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)],[_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null With Distinct 0x0 Starts With $`5esn` Starts With 9e-12 Order By Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7) Descending Skip [@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null][..`1esn`(Distinct `5esn` Contains `6esn`,`3esn` Contains $`8esn` Contains 0e0)][..Single(`5esn` In 12[0xabc..][$0..] Where 1000[_usn3..`8esn`])] Limit false[..12e-12][...9e1] Where 00 Is Not Null Is Not Null;"), + octest:ct_string("Remove Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1).`1esn`?.``.usn1,Single(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1])._usn3.`2esn`,_usn3(.12[.0e-0..],1000[Null..]).#usn7 Delete {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) Union Detach Delete $1000 Ends With 3.9e-1,Count ( * )[7],1.9e0 In $0;"), + octest:ct_string("Return Distinct 123.654 Is Not Null Is Not Null As `1esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Ascending Skip 0.0[0x0..0.12]['s_str'..false] Limit $`7esn`[..12.0][..0e0] Create (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=(((_usn3 )-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3}))) Union With Distinct $`4esn` In 123456789 In `5esn` As @usn5,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12) Skip 1.9e0 =~0x0 Limit 01234567[$#usn7][.0] Remove `6esn`($12 Contains $#usn8 Contains 01).`3esn`?.@usn6?,Single(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1).#usn8!,{@usn5:$`5esn` Is Null Is Null,#usn8:$@usn5[..1e-1]}.`5esn`!.usn1 Merge `3esn`=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) On Match Set #usn7 =[usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|9e0 =~9e1 =~.12e12] Is Null Is Null,`8esn`+=123.654 Is Not Null Is Not Null,`3esn`+=_usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null Union Remove Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`).`1esn`!._usn4!.#usn8?;"), + octest:ct_string("With Distinct *,`2esn` Is Not Null Is Not Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Order By {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} Desc,{`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]] Ascending Detach Delete (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)] Detach Delete None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1) Ends With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1),1e-1 Starts With usn2 Starts With 12e-12 Union Return Distinct *,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,false[12e-12..][usn1..] Order By Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]) Desc Limit $`1esn`[`3esn`..];"), + octest:ct_string("Unwind `1esn`[9.1e-1] As #usn8 Union All Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})) Merge `6esn`=(usn2 {_usn4:$999 Ends With .9e-12})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``}) On Create Set Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3|`4esn` Starts With .0e0 Starts With usn2).`3esn`?.`4esn`!.`8esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct),_usn4+=0X7[$999...12e12][12..`2esn`],`7esn` =6.0e0 In 12 On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} Optional Match (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),`1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) Where `1esn` Starts With 999 Starts With 3.9e-1 Union All With Distinct $_usn3 Contains usn2 Contains 0xabc Order By $`` =~$_usn3 Desc,$0 Contains .12e-12 Descending;"), + octest:ct_string("Match ((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`2esn`=((`7esn` :usn1)<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3)) Remove [`4esn` In 01234567 Ends With $1000 Ends With $#usn7]._usn3.`4esn`!,Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0).`6esn`?,{`3esn`:1.9e0 Is Null Is Null,``:$usn2 Ends With `8esn` Ends With _usn3}.`3esn`? Delete 123.654 =~1e-1 =~.9e-1,4.9e12 =~8.1e1 =~$`8esn` Union All Optional Match (`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]}),(#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`}) Where $`3esn` In 's_str' In $#usn7;"), + octest:ct_string("Unwind {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} As `2esn` Remove None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`8esn`?.`3esn`?.@usn6?,Extract(`5esn` In 12[0xabc..][$0..] Where `7esn` Ends With 9e12).`8esn` Remove All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9e12[$#usn8..9e-1][$999..$`4esn`]).``?.`8esn`!,{`8esn`:9e-1 Starts With 123.654 Starts With .9e1}._usn3!._usn3?.#usn8,(`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``! Union All Match ((`` :``:usn1)),`8esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where 999[..@usn5][..`1esn`];"), + octest:ct_string("With *,Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]),0x0 Starts With $`5esn` Starts With 9e-12 Order By 0.0[4.9e12..][00..] Ascending,Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07) Desc Where $`8esn` In 9e-12 In 3.9e-1 Union All Match ((#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[`3esn`?:`5esn`]->(`2esn` )) Where 12e12[true..][$`2esn`..];"), + octest:ct_string("Match ((:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[? *12..0Xa]-(`2esn` :#usn7:_usn3)<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})),((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`5esn`]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)) Remove Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]).`3esn`.`1esn`!.`6esn`!,(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})-[``?:@usn5]->(usn1 :#usn8).`7esn`?.`1esn`?,`8esn`:_usn3:_usn3 Create `6esn`=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Union All Return Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] As `5esn` Order By 0 Starts With 0Xa Starts With $0 Ascending,$`2esn`[$usn1..] Asc,Count(*) Starts With $_usn4 Descending Limit All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..] Remove `6esn`:`3esn`,({`6esn`:$`3esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}).``?.`5esn`!.@usn6? With Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `5esn`,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null) Starts With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * )) Starts With (_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) As usn1 Order By 0e0[.12..][3.9e-1..] Descending,Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Asc Limit {#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]) Where true Starts With 2.9e1 Starts With 9e1 Union Match (((@usn6 {`8esn`:999[..@usn5][..`1esn`]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]}))),({`4esn`:$@usn5[$#usn8..][_usn3..]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]}) Delete Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]),11.12e-12 Contains 9e-12 Return Distinct ``[..$#usn7],$`6esn`[$`8esn`..][false..] As _usn3 Order By (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})[Extract(`` In $_usn3 Is Not Null Where _usn4[7][8.1e1])..None(usn1 In 7.0e-0[.._usn4][..0X7] Where .9e-1 =~.9e-1)] Desc Limit $0 In Count ( * ) In .1e1;"), + octest:ct_string("Remove Any(usn2 In .0e0[$`6esn`..] Where .0e0 In 10.12e12 In $`5esn`).#usn7,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`].``?,Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 01[Count(*)..0e-0][7..$`2esn`]).`4esn`? Merge (((`7esn` {`3esn`:.9e-1 Is Null})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`))) On Create Set `1esn`(Count(*) Starts With $_usn4).`8esn`! =`7esn`(7.0e-0[.._usn4][..0X7],$`5esn`[7..]) Contains [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]],`8esn` =.9e1[Count(*)..$`3esn`],#usn7 =12[0..usn2];"), + octest:ct_string("With Distinct {`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]],_usn4[.0e-0][010],Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]] As `3esn` Limit 12.0[$1000..][123456789..] With 3.9e-1[0.12..] Order By 123456789 =~6.0e0 Ascending,Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Ascending,1.9e0 Starts With 's_str' Starts With 9.1e-1 Descending Where $123456789 Starts With Count ( * );"), + octest:ct_string("Merge usn2=((#usn8 {_usn3:$_usn4 Contains .12e-12})) On Create Set @usn5 ={``:`1esn` In 12e-12 In 1e-1,usn2:_usn3[`2esn`..10.12e12][9e1..true]}[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )]..][Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`])..],`6esn` =usn2['s_str'...9e-1][$7..Count ( * )] Union All Detach Delete .0[usn2.._usn4],.12[.0e-0..] Remove .9e-12.usn2;"), + octest:ct_string("Unwind 9e-1 Starts With 123.654 Starts With .9e1 As `6esn` Create ``=((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),(((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}))) Union All Detach Delete Extract(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]|1000[..0e0][..$`6esn`])[{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}][Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 8.1e1 Ends With $0 Ends With 6.0e0)],.9e1[All(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)..][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])..] Union Optional Match `1esn`=(((@usn5 :usn2)-[`4esn`?:_usn3|`2esn`]-(:#usn7:_usn3)<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}))),`1esn`=({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(_usn3 :`6esn`:`3esn`);"), + octest:ct_string("Match (usn1 :usn2),usn2=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Where @usn6[.9e12..0e0] Unwind 0e0 Ends With 0X7 Ends With .1e1 As _usn4;"), + octest:ct_string("Optional Match _usn4=(({_usn3:$`5esn`[7..]})),`5esn`=(:``:usn1{_usn3:00[$`6esn`]})-[?:_usn3|`2esn`]->(`1esn` :`7esn`) Where $@usn6 =~$`2esn` =~9e1 Optional Match ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})) With 0X0123456789ABCDEF Contains 8.1e1 As `6esn`,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,.9e0 Is Not Null Is Not Null As `5esn` Skip .1e-1 Where .0e0[$`1esn`][.9e-12] Union All Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set `6esn` =.1e1 =~10.12e12 On Match Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] Create (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}) Unwind _usn4['s_str'..] As `6esn`;"), + octest:ct_string("Unwind Filter(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..])[(@usn6 :#usn8)-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]})<-[:@usn6|:_usn3{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`` :`3esn`)][Single(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])] As #usn7;"), + octest:ct_string("Return Distinct 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By $7 In .9e1 In $`` Desc,$`6esn` Starts With `4esn` Descending,8.1e1 Starts With .9e12 Starts With `7esn` Desc Skip 12.0 Is Null Is Null Optional Match #usn8=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`3esn`=({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})<-[?{_usn3:00[$`6esn`]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}) Where $``[`6esn`][00] Union With Distinct *,$`` Is Not Null Is Not Null,12e12[..123456789][..false] Skip 12e-12 Ends With @usn5 Ends With $`2esn` Limit .9e-12[..$`7esn`][...9e-1] Union All Create (((`6esn` :`5esn`{usn2:`8esn` Is Null})-[usn1?]-({@usn6:``[$``..]})<-[ *0x0..{`3esn`:$@usn6 Is Not Null Is Not Null}]-({``:_usn3[$_usn3][usn1]}))) Create ({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]});"), + octest:ct_string("Match `3esn`=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) Where $usn1 Starts With 12 Starts With 12e12 Unwind $#usn8[...9e1] As `7esn` Optional Match `5esn`=(({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})-[:``|:`3esn` *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})),``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Where .9e-1 Contains .0e0 Contains usn1 Union All Unwind 9e-1 =~6.0e0 =~`` As _usn4 Merge `8esn`=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2})) On Match Set ``+=0.12['s_str'] With All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Union All Return 00[$`6esn`] As `6esn` Order By 10.12e12[Count(*)..] Descending,01[Count(*)..0e-0][7..$`2esn`] Desc,Count ( * ) Ends With `6esn` Ends With .12e12 Ascending Limit `3esn` In 0X7 With Distinct *,true Is Null Is Null As _usn3,All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn` Skip All(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Starts With Filter(_usn3 In ``[$``..] Where .0e0[1e1..][01234567..]) Starts With `3esn`(Distinct) Limit Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Where 123456789 Ends With _usn4;"), + octest:ct_string("Optional Match _usn3=(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Where .9e-12[1000..$`3esn`] With Distinct *,`8esn` Is Null As `6esn` Order By [usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc,0x0 =~$7 =~Null Desc,12e-12[9e0..1.9e0] Asc Where `` =~$`5esn` Create ((`6esn` :usn1));"), + octest:ct_string("Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Where $`6esn` Starts With `4esn` Union All Detach Delete None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),12e12[07..];"), + octest:ct_string("Merge (`5esn` :`5esn`) On Match Set #usn8+=All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)];"), + octest:ct_string("Unwind 999 =~0Xa =~9e0 As `` Remove {`8esn`:Null[..07]}._usn4?.`8esn`?,{`4esn`:$123456789[$_usn3..][$usn2..]}.usn1,[`8esn` In 01234567[..0.0][..false] Where 01[..0Xa]].``.@usn5?.`2esn`! Union Delete $usn2[12.0..];"), + octest:ct_string("Optional Match ((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})),(((`2esn` :`6esn`:`3esn`{@usn5:Count(*)[.0e0]})-[usn1?:usn1|:#usn8*..]-(`7esn` {`3esn`:.9e-1 Is Null})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))) Where 0x0 =~$7 =~Null Merge `1esn`=(((`8esn` {@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})-[`3esn`?:`2esn`|`7esn`*..]-(:_usn4)<-[``?:#usn8|:`4esn`]-(:usn1{@usn5:Count(*)}))) On Create Set All(_usn4 In Count(*)[9e1..][12e-12..] Where #usn8[7..@usn5]).`2esn`?.#usn7!.#usn7 =_usn4 Ends With .0 Ends With 7 On Match Set _usn3+=`1esn` =~0 =~_usn4,`3esn` =`5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]] Remove {_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}.`1esn` Union Remove @usn5:`5esn`,{`2esn`:.0,`5esn`:$`3esn` =~4.9e12 =~$7}.usn2.`4esn`? Optional Match `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Where 0e0 Starts With $1000 Starts With `2esn` Union Unwind Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])] As _usn4;"), + octest:ct_string("Unwind $usn1 Is Not Null Is Not Null As `5esn` Union All Return 6.0e0 In 12 As usn1 Limit $#usn7 Starts With 10.12e12 Match (((:#usn8{`8esn`:usn1[12e-12],@usn6:Count ( * ) In 999})<-[`8esn`? *0x0..]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})<-[@usn6?:`5esn`]->(`8esn` {`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}))) Where 0[$999..] Return 12e12 =~#usn7 =~.9e-1,.1e1 Starts With 9e0 Order By None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) In (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]}) In [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] Ascending,.9e0 Is Null Asc,.12[$`2esn`..usn2][.9e-1.._usn3] Ascending Limit 2.9e1 Starts With 12e-12 Starts With 0.0;"), + octest:ct_string("Optional Match ((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})),`4esn`=(((`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})-[``]-(`7esn` :``:usn1{`1esn`:0e0 Starts With $1000 Starts With `2esn`,@usn6:@usn6 In 3.9e-1 In 9e-12})-[@usn5*{`7esn`:`3esn` Starts With _usn4}]->(#usn8 :_usn4{_usn3:.0 Is Null Is Null}))) Optional Match (((`5esn` :#usn7:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(usn2 {@usn5:$usn2 Ends With `8esn` Ends With _usn3,@usn6:`7esn` Is Not Null}))) Detach Delete 9e1 Ends With 123456789,usn1 Ends With .9e-12,9e-12[$0][$`4esn`];"), + octest:ct_string("With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Order By 12.0[.._usn4][..0X7] Descending,`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Ascending Skip 's_str' Ends With 0.0 Ends With .12e12 With *,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2 Order By .1e-1 Contains 1e1 Contains $`6esn` Asc,(_usn4 {`3esn`:1.9e0 Ends With 0Xa Ends With $12,@usn5:.9e12 Is Not Null Is Not Null})<-[`2esn`{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-(`3esn` {`7esn`:9.1e-1 =~@usn5 =~Count ( * )})<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) In None(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]) In `7esn`(12 Ends With $7 Ends With $#usn8) Desc Skip \"d_str\" =~`5esn` =~.12e-12 Limit .9e12[..$usn1][..10.12e12] Where $`6esn`[$_usn4][01] Unwind .9e1 Contains Null As _usn3;"), + octest:ct_string("Delete usn2[Count ( * )..07],None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn`[..0x0][..\"d_str\"])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1])..Single(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])] Match (((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Where 5.9e-12 =~$@usn6 Detach Delete {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]});"), + octest:ct_string("Unwind $`` =~$_usn3 As @usn5 Union All Unwind .9e1 Contains `8esn` As `1esn` Union All Create ((usn1 :usn2{``:$`` Is Not Null})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})),((`7esn` {usn2:12.0[..123456789][..01]})-[_usn3{#usn7:Count(*)}]->(`2esn` :_usn3:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``}));"), + octest:ct_string("Delete `6esn`[..01][..`8esn`],$12[`1esn`..] Detach Delete 1.9e0 Ends With 0Xa Ends With $12,.9e-12[9e1..8.1e1] Return Distinct *,5.9e-12 =~$@usn6 As `7esn` Skip .9e1[All(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)..][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])..] Union All Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set `6esn` =.1e1 =~10.12e12 On Match Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] Create (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}) Unwind _usn4['s_str'..] As `6esn`;"), + octest:ct_string("With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2 In usn1 In 1e-1) =~{#usn8:00[0e-0...9e-1][1e-1..``]} As #usn8,$@usn5[$#usn8..][_usn3..] As `8esn`,1.9e0 Starts With 's_str' Starts With 9.1e-1 As _usn4 Where 's_str' Is Null Delete {@usn6:\"d_str\" =~9e-12 =~`5esn`}[#usn8(Distinct 999 Starts With .9e12 Starts With 3.9e-1,true Contains 0x0)..[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010]][All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)..{`4esn`:0 Starts With 0Xa Starts With $0}] Unwind $12[.9e-1] As @usn5 Union All Optional Match `2esn`=(((usn2 {_usn4:$999 Ends With .9e-12})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]}))),(((`5esn` :`2esn`:`8esn`)-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(`3esn` {_usn4:$`2esn` Starts With 0x0}))) Where _usn4 Ends With .0 Ends With 7 Remove Any(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`).`2esn`?.`6esn`,All(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count ( * ) Ends With `6esn` Ends With .12e12).@usn5.#usn7!.@usn6! Unwind All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) As `1esn`;"), + octest:ct_string("Merge usn1=((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})) Remove {usn1:usn2[..7.0e-0]}.`2esn`.`2esn`?.usn1,(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6?,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e12 Is Not Null Is Not Null).#usn8? Union All Optional Match `7esn`=(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}),(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Where 01234567[...0e-0][..12] Merge (_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ) Union Optional Match usn1=(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ),((_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0)-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]})) Where $`2esn` In 0 In 0Xa Remove {`1esn`:0.12[07..3.9e-1]}.usn1.usn1!,(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})._usn4._usn3?,Extract(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`]|$`3esn`[..`1esn`][..$`7esn`]).@usn6! Unwind .12[.0e-0..] As `3esn`;"), + octest:ct_string("With *,`5esn`[$`4esn`],#usn8[7..@usn5] As `4esn` Order By 9e0[.0e-0] Asc Limit `8esn` Is Not Null Is Not Null Optional Match ((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})),``=((({`4esn`:$`2esn` Ends With $`8esn`})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})-[``]-(:_usn4{#usn8:.0e0[1e1..][01234567..],#usn7:1e-1[..2.9e1]}))) Detach Delete `3esn`[.12e-12..],Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Union All Merge `1esn`=((:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[usn1 *12..0Xa]->({`5esn`:07 Starts With usn1 Starts With 010})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})) On Create Set #usn7 =Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Null Is Null,`4esn`+=$_usn4 =~$_usn4 =~2.9e1 Union All Remove `2esn`($_usn3[1e-1..],07 =~7.0e-0 =~`8esn`).@usn6!;"), + octest:ct_string("Return *,All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Starts With 10.12e12 Starts With #usn7(false =~4.9e12),0e0[`4esn`] Create `7esn`=(#usn8 :#usn8)<-[`5esn`?:``|:`3esn` *..0xabc]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[{#usn8:.0e0[1e1..][01234567..],`6esn`:123.654 Ends With 0Xa Ends With .12e12}]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12}),_usn4=((`5esn` {`2esn`:`1esn` =~0 =~_usn4})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[usn2?{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3}]-(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})) Union All Remove {`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]}.#usn7!,{usn2:12.0[..123456789][..01]}.#usn8! Create (:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[`7esn`*..]->({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[`8esn`:`3esn`|:_usn3 *123456789..0x0{`8esn`:$`3esn` Ends With 010 Ends With $`7esn`,usn2:7.0e-0[$usn2..0.12][$``..0]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010}) Merge ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`5esn` *01234567]->(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) On Create Set None(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).`5esn`?.`3esn`! =[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]},`8esn` =Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]],None(`` In $_usn3 Is Not Null Where 7.0e-0 =~$123456789 =~`8esn`).`3esn` =Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1]) On Match Set `8esn` =[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]).#usn7!.usn1?.usn1? =$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 9e0 =~9e1 =~.12e12|$@usn5 =~.12e-12).`2esn`?.`1esn`! =0e-0[...9e12];"), + octest:ct_string("Merge `8esn`=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2})) On Create Set `3esn` =.9e-12[9e1..8.1e1],Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]).#usn7.@usn6._usn3! =$`8esn`[.9e-1][_usn3] On Create Set [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]].`8esn`.@usn6? =07[..@usn6][..$`4esn`],Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]).`3esn` =Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07),usn1:`8esn`:#usn7 Merge #usn7=((:`4esn`:`7esn`{`7esn`:9e-12 In usn2,usn2:0x0[`5esn`][$`5esn`]})) On Create Set `2esn` =(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)],`3esn` =9e1 Contains 4.9e12 Contains 123456789 On Create Set `6esn` =.1e1 =~10.12e12 Union All Create (`1esn` :`6esn`:`3esn`) Detach Delete 0Xa Starts With .0,$`1esn`[.9e0][$_usn3],$`2esn`[8.1e1] Remove [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]].usn2,Extract(usn2 In .0e0[$`6esn`..] Where $123456789 =~12 =~7).`4esn`.`2esn`!.@usn6!;"), + octest:ct_string("Unwind #usn8[3.9e-1.._usn3] As usn2 Return Distinct (`2esn` :`6esn`:`3esn`)<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789)..Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1])][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]]..Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 9.1e-1 Is Null|9e1 Contains 4.9e12 Contains .9e0)],00 As `8esn`,_usn3 Ends With .12 Ends With `6esn` Order By Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2|0e-0[...9e12])[All(`2esn` In .9e-12[0e0...9e-1] Where .9e-1 Is Not Null Is Not Null)] Descending Limit `4esn` Starts With $_usn3 Starts With .9e-12 Union All Optional Match `3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})),usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})) Where $0 Starts With 010 Optional Match _usn4=((`4esn` {usn2:$`7esn`[..12.0][..0e0]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}));"), + octest:ct_string("Merge (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))) On Match Set `4esn`+=.9e0 =~`6esn` =~2.9e1,`` =_usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null With 3.9e-1 Is Null As usn1 Unwind ``[..$#usn7] As @usn5 Union Create _usn3=(((:``:usn1{_usn3:00[$`6esn`]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :``:usn1{usn2:12.0[..123456789][..01]})<-[`7esn`:`8esn`|:`2esn`]-(:``:usn1{_usn3:00[$`6esn`]}))) With *,$`5esn`[true],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Skip $`1esn` =~0.0 Where 07[.0e0][3.9e-1] With Distinct All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,usn2[..7.0e-0] As `1esn` Order By $_usn3 Contains 1e1 Contains .12 Ascending,.0e0 Is Null Is Null Descending,.0e0 Starts With $@usn6 Starts With Null Descending Limit 's_str' Ends With 0.0 Ends With .12e12 Union With Distinct *,9.1e-1 =~.12 =~0e-0 As `1esn` Order By 9e-1 Starts With 123.654 Starts With .9e1 Descending,$`8esn`[$``..$`1esn`][9e-12..$7] Descending Skip \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"] Limit $`5esn` Is Not Null Where .9e1[#usn7..] With *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5 Is Null With Distinct *,All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Starts With 10.12e12 Starts With #usn7(false =~4.9e12),0e0[`4esn`] Where 1e1 Ends With Null Ends With `7esn`;"), + octest:ct_string("Merge (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))) Union With Distinct {usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0xabc In 10.12e12)..][0X7..],.9e1 Starts With `4esn` As `5esn` Order By [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) Descending,0e0[.12..][3.9e-1..] Asc Limit [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12] Ends With (usn1 {`6esn`:$`5esn`[true],usn2:1e1 Is Not Null Is Not Null})-[?:`4esn`|:@usn5 *..0xabc]-(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(usn2 {_usn4:$999 Ends With .9e-12}) Where 0e0[..'s_str'];"), + octest:ct_string("Match #usn7=(`` :_usn4) Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null})));"), + octest:ct_string("Merge usn2=(usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})<-[:`4esn`|:@usn5 *00..123456789]-(`1esn` :`5esn`)-[``?:``|:`3esn` *01234567]->(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]}) On Match Set usn1 ={usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])] On Create Set ``+=$`8esn` In .1e1 In 010,Single(`8esn` In 01234567[..0.0][..false] Where .9e12 =~`5esn` =~07).@usn5! =9e-1 Starts With 123.654 Starts With .9e1 Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set `6esn` =.1e1 =~10.12e12 On Match Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] Union All Unwind `2esn` Is Not Null Is Not Null As #usn7 Create #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}),`1esn`=(:usn1{usn1:Count(*)[0.12..2.9e1]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}) Delete (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Starts With `7esn`(Distinct $`5esn` Is Null Is Null,$`4esn` Ends With 0e-0) Starts With Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 5.9e-12 Ends With 1e1 Ends With false),None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),4.9e12 =~8.1e1 =~$`8esn`;"), + octest:ct_string("Remove All(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null).`3esn`!.`4esn`? Remove None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).``.`3esn`? Union Remove count().`1esn`!._usn4?.`7esn`!,None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12).@usn5!.`2esn`!,[`5esn` In 12[0xabc..][$0..] Where $usn2[0e0][$7]|Count ( * )[`7esn`..]].``._usn4!.`5esn`;"), + octest:ct_string("Merge ((#usn7 :usn2{@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-({`6esn`:07 Ends With @usn6 Ends With _usn3})) On Match Set Any(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..])._usn3?._usn3!.#usn7! =$`8esn` =~$0 =~`` On Create Set `6esn`+=$#usn7[..$`8esn`][..2.9e1],[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0X7[Count(*)][.9e0]|$`8esn`[$``..$`1esn`][9e-12..$7]].`7esn` =(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )[{usn2:7.0e-0 =~$12 =~5.9e-12}..][Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)..],`6esn` =Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null Union Create #usn7=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Union Match ``=((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),(((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})));"), + octest:ct_string("Remove [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null].usn2?,Any(`8esn` In 01234567[..0.0][..false] Where $@usn5[$#usn8..][_usn3..]).`8esn`!,(:usn1{usn1:Count(*)[0.12..2.9e1]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]}).#usn8 Detach Delete `` =~$`5esn`,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12)[{_usn4:@usn6 In 3.9e-1 In 9e-12}][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]|10.12e12[12e12..0X7])],`` Ends With .9e-1 Ends With 9e-12 Union Return Distinct 10.12e12[..10.12e12][..`6esn`] As `1esn`,Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]] As `3esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0x0 Contains $`1esn` Contains 0.0) In None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0) As `5esn` Skip `6esn`[..$``][..4.9e12] Limit _usn4 Is Null Is Null Merge (usn2 :@usn5{`3esn`:$usn1 Is Null})-[_usn3:`2esn`|`7esn`*..{#usn8:`1esn` =~0 =~_usn4,`2esn`:0e-0 In $1000 In .9e1}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}) On Match Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Optional Match (((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999}))),(`` :``:usn1{usn2:12.0[..123456789][..01]}) Where 12e-12[9e0..1.9e0];"), + octest:ct_string("Detach Delete (`3esn` :#usn7:_usn3)<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) Ends With [_usn3 In ``[$``..] Where @usn5 Ends With 0],Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1])[[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null|`3esn`[3.9e-1..$`5esn`]]..][All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `8esn` Is Null)..],$1000 Contains 01234567 Contains 0X7 Merge `1esn`=((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) On Create Set `6esn`+=$#usn7[..$`8esn`][..2.9e1],[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0X7[Count(*)][.9e0]|$`8esn`[$``..$`1esn`][9e-12..$7]].`7esn` =(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )[{usn2:7.0e-0 =~$12 =~5.9e-12}..][Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)..],`6esn` =Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null Union All Return Distinct *,.9e0 Is Null As _usn4 Skip 's_str' Ends With $usn1 Limit 123456789 Ends With 8.1e1 Remove (`1esn` )-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :``:usn1{usn2:12.0[..123456789][..01]})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}).@usn6!,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .12[$`2esn`..usn2][.9e-1.._usn3]).`3esn`,[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]|$@usn5 In .9e1 In $``].@usn6;"), + octest:ct_string("Merge ((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) On Create Set #usn7+=$#usn7 Starts With #usn7,_usn3 =`5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]],`8esn` =07 Ends With @usn6 Ends With _usn3 On Match Set #usn7+=10.12e12[Count(*)..],#usn8 =@usn6[.9e12..0e0] Optional Match @usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),`3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})) Union Delete $12[01],.9e-12 =~$`2esn` =~`4esn` Remove {#usn7:.0e0[1e1..][01234567..],@usn5:`2esn` Is Not Null Is Not Null}.#usn8?.`7esn`?,`1esn`:``:usn1,$12.`8esn`!.usn2!._usn4;"), + octest:ct_string("Delete .9e1 Contains `8esn`,None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null) Create @usn5=({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Union Match usn2=(((_usn4 :`7esn`{@usn6:.12e-12[999...12]})-[#usn7? *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null}))),#usn8=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Create `7esn`=((#usn7 )) Union All Detach Delete 12e12 Starts With 9e1 Starts With $`4esn`,.9e1[#usn7..] Create (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`2esn`=(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]})-[`3esn`? *..0xabc{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`});"), + octest:ct_string("Merge _usn4=(((`2esn` {`7esn`:Count(*)[.0e0..][#usn7..]})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)-[:#usn8|:`4esn` *12..0Xa]->(`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]}))) On Match Set _usn4 =$`6esn` In .9e12 In $#usn7,@usn5 =12 Contains _usn3,None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null).`8esn`? =11.12e-12 Contains 9e-12 On Match Set `2esn` =$`3esn`[010..][9e-1..],[`8esn` In 01234567[..0.0][..false] Where 5.9e-12[.1e1][$#usn8]|12 Contains usn2 Contains $usn2].#usn7 =01234567[..0.0][..false],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789).usn1!.``! =010 Starts With 0.0 Starts With .0e0 Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As `8esn`;"), + octest:ct_string("Delete `7esn`[.1e1..][`8esn`..],9e12 Ends With 07,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..])[..{`4esn`:0 Starts With 0Xa Starts With $0}][..Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``)];"), + octest:ct_string("With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Skip usn2 Starts With $_usn3 Where 10.12e12[12e12..0X7] Unwind Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) As usn2 Unwind Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) As #usn8 Union All Delete Extract(usn2 In .0e0[$`6esn`..]|$@usn6 Contains Count ( * ))[`2esn`(usn1[12e-12])..][(`8esn` :usn2)<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})..],8.1e1 Is Null Optional Match @usn5=((@usn6 :`6esn`:`3esn`)<-[`6esn`? *..0xabc{``:$_usn4[Null]}]->(:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Where .12e12[`7esn`][#usn8] Optional Match `7esn`=(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]}) Where #usn8[7..@usn5] Union All Create usn2=(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null}) Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Unwind 1e1 Is Not Null As `4esn`;"), + octest:ct_string("Create (`1esn` :``:usn1{usn1:123.654 Ends With 0Xa Ends With .12e12})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``}) Union All Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct),Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..],Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) Unwind 0e0 Ends With `7esn` Ends With usn1 As _usn3 Union All Merge ({_usn4:$`3esn` In 's_str' In $#usn7}) On Match Set Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 999 Starts With .9e12 Starts With 3.9e-1).`6esn`.@usn6!._usn4? =`4esn`[0.0..][.1e-1..],Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).@usn5! =9e1 Contains 4.9e12 Contains .9e0,`1esn`+=00[0e-0...9e-1][1e-1..``] On Match Set Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1)._usn4 =$7 Contains _usn4 Contains $`1esn` Remove All(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).``!,{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null}.usn2? Optional Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),(({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})<-[`4esn`:_usn4|`1esn` *123456789..0x0{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})-[_usn3 *..7]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]}));"), + octest:ct_string("Detach Delete 5.9e-12 Contains $`` Contains $`5esn`,#usn7 =~0.0 =~usn2,10.12e12[..10.12e12][..`6esn`] With 8.1e1 Is Null Is Null,Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` Is Null Is Null) Is Not Null Is Not Null As _usn4 Order By (`6esn` $@usn6)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]}) =~All(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~{``:7.0e-0 Is Null Is Null,@usn5:9e-12[$0][$`4esn`]} Asc,999 =~0Xa =~9e0 Asc Skip All(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])[..(:_usn4{`4esn`:9e1 Contains 4.9e12 Contains .9e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})][..(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)<-[?{_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})] Where 9e1 Ends With .9e0 Return Distinct *,@usn5 In $1000 In 07 Order By `5esn`[0X7..][12..] Asc Union All Return *,.12e-12 In 9e12 In 9e-12 As `5esn`,1e-1 Starts With usn2 Starts With 12e-12 As `` Order By 0[true..$7] Descending Skip (_usn4 :`2esn`:`8esn`)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})<-[`2esn`?:@usn5]-(`7esn` :usn1$`6esn`) =~(#usn8 {`3esn`:123456789 Contains .1e-1 Contains .12e12,`1esn`:$`3esn` =~4.9e12 =~$7})-[#usn7? *00..123456789]->(`8esn` :@usn5)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Union All Remove Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]).#usn8?;"), + octest:ct_string("Create (usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]-(:_usn4{_usn3:010 Starts With 0.0 Starts With .0e0})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}) Merge ((#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[`3esn`?:`5esn`]->(`2esn` )) On Match Set `7esn`+=$`` In $7 In 9e-1,usn1+=$12 Starts With 1e-1 Starts With $@usn5,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).`2esn`?.#usn8! =Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null With .0e0[$`1esn`][.9e-12] As `6esn`,\"d_str\"[$123456789..][0X7..] Order By All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Asc,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Limit (usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})-[`4esn`?:`6esn`|#usn7]->(`1esn` )[[`2esn` In .12e-12[$@usn6..5.9e-12]|$#usn7 Starts With 10.12e12]..] Union All Merge ((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Remove @usn5(Distinct Null =~true =~.1e-1,12e12[..123456789][..false])._usn4!,All(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]).`4esn`? Merge (@usn6 :_usn4) Union All Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where `1esn`[9.1e-1]|$`8esn` Starts With `2esn`).``!.`5esn`.``!;"), + octest:ct_string("Return Distinct ``[..$#usn7],$`6esn`[$`8esn`..][false..] As _usn3 Order By (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})[Extract(`` In $_usn3 Is Not Null Where _usn4[7][8.1e1])..None(usn1 In 7.0e-0[.._usn4][..0X7] Where .9e-1 =~.9e-1)] Desc Limit $0 In Count ( * ) In .1e1 Delete Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12),$usn2[4.9e12..false][.0e-0..00],usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) With *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Where Null[`2esn`..] Union All Merge ((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`3esn`? =0.12[3.9e-1],_usn4 =Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],[`` In $_usn3 Is Not Null Where 12 =~$@usn5|$`2esn` In 0X7 In 3.9e-1].`8esn`.`5esn`? =12e-12[9e0..1.9e0] On Create Set `1esn` =.1e-1[..12][.._usn4],_usn4 =usn2[..7.0e-0],`5esn` =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1} Unwind `2esn` Starts With 12 Starts With 10.12e12 As `5esn` Optional Match (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[:usn1|:#usn8]-(:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`}) Where 123456789 Contains .1e-1 Contains .12e12 Union Merge ((_usn4 )-[usn2?:@usn6|:_usn3]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`4esn`?:_usn3|`2esn`]-(`8esn` {``:$123456789[$_usn3..][$usn2..]})) On Create Set None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null).``.`1esn` ={@usn6:8.1e1[$`5esn`][0e0],`5esn`:$`8esn` Starts With `2esn`}[[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]],_usn3 =5.9e-12[9e0..];"), + octest:ct_string("Return Distinct *,true Is Null Is Null As _usn3 Order By 12e12 Is Not Null Desc,0.0[$1000][3.9e-1] Ascending Skip {`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]} =~[usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|.9e1[..`5esn`]] Limit .0e0 =~5.9e-12 =~`7esn` Return Distinct *,Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),3.9e-1[.0e0..][07..] Order By 2.9e1 Starts With 12e-12 Starts With 0.0 Asc,.0e0 Starts With $@usn6 Starts With Null Descending Remove (`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``!,usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4! Union All Merge `1esn`=(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))) On Create Set `8esn`+=Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),`8esn`+=0.0 Is Not Null Is Not Null On Create Set `2esn` =$999[$usn1...0e0] Remove Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1).``;"), + octest:ct_string("Detach Delete [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]|12e12 Is Not Null][{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]}],$`6esn` Is Null Is Null,(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null}) Is Null Return `5esn`[$`4esn`] As @usn6,count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) =~Filter(_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789) =~[`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]|.9e12 Starts With #usn8 Starts With 00],[_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] As usn2 Limit All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6);"), + octest:ct_string("Detach Delete (`1esn` :``:usn1{_usn4:.1e1 Is Null Is Null})<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]})[Single(`` In $_usn3 Is Not Null Where 12 =~$@usn5)..],01 Contains 12.0 With Distinct 010[11.12e-12..],Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) As `2esn`,.9e1[#usn7..] Where \"d_str\" =~9e-12 =~`5esn` Unwind 0[..$@usn5] As @usn5;"), + octest:ct_string("Unwind \"d_str\"[12e12..][4.9e12..] As `2esn` Remove Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7).``?,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null).@usn5?,[`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|`1esn`[Count ( * )][5.9e-12]].@usn5 Union Return Distinct count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0])[_usn3(8.1e1[usn2..$1000][$7..0x0],false[..12e-12][...9e1])..] As @usn6,.0e-0[0e0..00][.9e1..12] As `1esn`,Count ( * ) Starts With 10.12e12 Starts With `` As `5esn` Order By 5.9e-12[9e0..] Ascending,0x0 Asc Skip 0Xa[$usn2..] With {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[..`8esn`(010[@usn5..123.654],8.1e1[usn2..$1000][$7..0x0])][..{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1}] As _usn3,@usn6[..$`3esn`][..4.9e12] As #usn8,0e-0[...9e12] As @usn5 Where $`4esn` In 123456789 In `5esn` Union All Detach Delete (:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]),Count(*) Starts With $_usn4 Merge `2esn`=((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)];"), + octest:ct_string("Unwind .9e12 Is Not Null Is Not Null As usn2 With *,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e1[..Count(*)][..7.0e-0]) =~[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 01[Count(*)..0e-0][7..$`2esn`]] =~Single(usn2 In .0e0[$`6esn`..] Where 01[1e-1]),usn1 Ends With 12 As `` Limit `7esn` Ends With `7esn` Ends With $`3esn` Union Unwind 0e-0 Starts With 9e-12 Starts With false As `6esn` Merge ((usn1 )-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0}));"), + octest:ct_string("Detach Delete {#usn7:$usn2[1e-1]}[(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)..][(usn1 :`2esn`:`8esn`)<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]})..] Unwind Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] As `` Remove [`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]].`8esn`? Union All Unwind 5.9e-12[$`4esn`] As usn1 Create `5esn`=(((@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-(`6esn` :`8esn`:#usn7{`1esn`:.9e-1 Contains .0e0 Contains usn1})<-[`3esn`?:@usn5{@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7}]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]}))),usn2=(`2esn` :`6esn`:`3esn`)-[`5esn`:usn2|:``]->(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12});"), + octest:ct_string("Unwind $999 Ends With .9e-12 As usn2 Remove count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0]).#usn8?.#usn8.`` Merge _usn4=(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0}) On Match Set `8esn` =01[.9e-12..],usn2 =.9e-1 =~.9e-1,`2esn`+=$999 On Create Set `6esn`(Distinct .9e-1[3.9e-1]['s_str'],9e0 =~9e1 =~.12e12).@usn5?.`1esn` =123456789 Ends With $@usn6 Ends With 0.12 Union All Detach Delete (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1) Ends With Filter(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7]) Optional Match ((#usn8 {_usn3:$usn2 In usn1 In 1e-1})),usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union All Unwind 0xabc In 10.12e12 As usn2 Return *,$_usn3 Contains usn2 Contains 0xabc,(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`)<-[usn2 *1000{usn1:Null Starts With $`4esn` Starts With $#usn7}]->(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})[{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}][{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}] As @usn5 Skip `7esn` Ends With _usn4 Remove {`4esn`:01[..01]}.`8esn`?.`8esn`?.usn1?,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`2esn`[010..`5esn`][``..0.12]).`4esn`;"), + octest:ct_string("Detach Delete $usn2[0e0][$7],$`` In $@usn6 In 3.9e-1 Optional Match `3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where .12e-12[$@usn6..5.9e-12] Merge ((`` :``:usn1)) Union All Merge `5esn`=(`7esn` :`8esn`:#usn7{`4esn`:`8esn` =~.1e1 =~.0}) On Match Set #usn8:`5esn` Delete Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]),.9e1[Count(*)..$`3esn`] Delete {@usn5:$`2esn`[8.1e1]}[None(`7esn` In .12e12[Count(*)..] Where .9e1[12])..Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1)][`6esn`(Distinct 0e0 In $_usn4 In `2esn`)..{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]}] Union All Unwind #usn8[`2esn`] As _usn3 Merge (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}) On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1];"), + octest:ct_string("Unwind Single(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]) In All(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1]) In (`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}) As `8esn` Unwind None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] As `3esn` Union Remove Filter(`7esn` In .12e12[Count(*)..] Where @usn5[$_usn3..]).usn2?,[`5esn` In 12[0xabc..][$0..] Where .12e12[$12..4.9e12][11.12e-12..9e12]|Count(*)[9e-12..0Xa][$123456789..0.0]].@usn5,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where #usn8[7..@usn5]).usn2? Merge `8esn`=((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) On Match Set _usn3+=$usn2[12.0..],`7esn`+=false[..12e-12][...9e1] Remove Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).`5esn`!.`3esn`.usn2!,Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])._usn3!.`7esn`.`4esn`!,Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]).@usn5.usn2 Union Return $`4esn` Contains $12 Contains .9e-1,.1e-1[@usn6..] As `4esn`,`2esn` =~usn1 As `6esn` Skip 0xabc[7.0e-0..][12e12..] Limit .12e12 =~$#usn7 Remove {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}.`7esn`,(`5esn` :`2esn`:`8esn`)-[`6esn`:`6esn`|#usn7*]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})._usn4 Remove `2esn`(Distinct 12 Is Null Is Null)._usn3!;"), + octest:ct_string("Delete All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null,({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`3esn`?:`1esn`]-(:`8esn`:#usn7{@usn5:$12 Contains $`7esn` Contains .0})<-[@usn6?:@usn5]->(:usn1{usn1:Count(*)[0.12..2.9e1]}) Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2|9e0[..1e1]) Ends With {`1esn`:7.0e-0[3.9e-1..`1esn`]},All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..])[`8esn`()] Return Distinct *,None(`7esn` In .12e12[Count(*)..] Where Count(*)[..Count(*)][..9e0])[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1]|.0)..] Skip Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) Limit {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} =~Filter(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]) Union With Distinct Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null Union Delete (:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) Starts With count(Distinct 9.1e-1 =~@usn5 =~Count ( * )),true Starts With 2.9e1 Starts With 9e1,.1e1 Starts With $`7esn` Unwind 12e12 Is Null Is Null As usn2;"), + octest:ct_string("Return *,$12[.9e-1] As `6esn`,`6esn`[010...9e-12] As `5esn` Order By 123456789[\"d_str\"..] Descending,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending,12e-12[`7esn`..][5.9e-12..] Asc Create ((`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})<-[`8esn`?:`3esn`|:_usn3*..{@usn5:$0 Starts With 010}]-(`3esn` :@usn5)<-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(`1esn` )) Remove Filter(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]).``,{@usn5:6.0e0 Is Not Null}.usn1;"), + octest:ct_string("Return `1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `4esn` Unwind $usn1[$12..] As `7esn` Merge ((:`2esn`:`8esn`{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})) Union Merge `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})) On Match Set `8esn`+=Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\"),`1esn`+=4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12),(`` {_usn4:9e0[..1e1]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(@usn5 :@usn6:_usn4).#usn8.`1esn`.usn1! =00[0e-0...9e-1][1e-1..``] With Distinct *,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As `5esn`,0X0123456789ABCDEF Contains 8.1e1 Skip false Is Not Null Is Not Null Where 999[...12e12][..0];"), + octest:ct_string("Remove All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0)._usn3? Unwind $@usn5[..1e-1] As _usn4 With 1000[Null..] As `1esn`,.1e1 Starts With $7 Order By Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Ascending,$`7esn` Contains 0X7 Asc,$_usn4 Is Not Null Ascending Limit .0e0[$`1esn`][.9e-12] Union Return $@usn6 =~$`2esn` =~9e1 As `1esn` Order By 4.9e12 In 5.9e-12 In .9e0 Desc With *,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] As usn1 Limit `3esn`[$0..][.9e1..] Union All Return 1.9e0 Ends With Count ( * ) Ends With .12 As `4esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12),9e1 Is Not Null As #usn8 Order By $`4esn` Ends With 0e-0 Ascending,.9e-1 Contains .0e0 Contains usn1 Asc Skip None(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8) Is Null Is Null;"), + octest:ct_string("Remove 9e-12._usn4 With (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7),Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),12.0 =~$@usn5 =~8.1e1 Order By Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] Ascending Limit $@usn6 Contains Count ( * ) Union All Remove Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7).#usn7!,(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12}).``!.`` Detach Delete {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} =~Filter(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]),2.9e1[0..$@usn5][`7esn`..$`1esn`],All(usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null])[``($_usn3[1e-1..],.12e12[Count(*)..])][None(_usn4 In Count(*)[9e1..][12e-12..] Where 123456789 Ends With _usn4)];"), + octest:ct_string("Merge `4esn`=(((`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})-[``]-(`7esn` :``:usn1{`1esn`:0e0 Starts With $1000 Starts With `2esn`,@usn6:@usn6 In 3.9e-1 In 9e-12})-[@usn5*{`7esn`:`3esn` Starts With _usn4}]->(#usn8 :_usn4{_usn3:.0 Is Null Is Null})));"), + octest:ct_string("Return Distinct *,(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})<-[?:usn1|:#usn8{`8esn`:`2esn` Is Not Null Is Not Null}]-({#usn8:1e1[Null..][.12..]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null,8.1e1 Is Not Null As usn2 Order By .1e1[$usn2..9e1][9e-1...9e-1] Desc Skip Null In 0Xa In .9e-1 Union All With Distinct *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5[..1e-1] Union All Delete ``(0X0123456789ABCDEF Contains 8.1e1,Count ( * )[..123456789][...0e0])[..All(usn2 In .0e0[$`6esn`..] Where .0e0 In 10.12e12 In $`5esn`)][..(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})],All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)],`2esn` Starts With $`7esn` Starts With _usn4;"), + octest:ct_string("Create (@usn6 :_usn4) Remove Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..]).`1esn`.`8esn`?.`2esn`!,@usn5(Distinct 1e-1[..$@usn5][..0xabc]).`3esn`!,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12e12 Starts With 4.9e12 Starts With 0e0).@usn6!.`8esn`?;"), + octest:ct_string("With Distinct None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]) Is Null Is Null,Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()] As #usn7 Skip Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]);"), + octest:ct_string("Detach Delete 9e1 Ends With 123456789,usn1 Ends With .9e-12,9e-12[$0][$`4esn`];"), + octest:ct_string("Return Distinct *,@usn5 In $1000 In 07 Union Merge (`2esn` :`6esn`:`3esn`)-[`5esn`:usn2|:``]->(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}) Union Unwind 0e0 In 1e1 In 8.1e1 As #usn8 Optional Match `3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where .12e-12[$@usn6..5.9e-12];"), + octest:ct_string("Match (_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[@usn6?:`5esn`]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) Where `4esn`[..$#usn7][..0X7] With {@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2} Is Not Null Where `1esn`[11.12e-12..] Detach Delete 123456789 Contains .1e-1 Contains .12e12 Union Merge @usn6=(((@usn6 {`8esn`:999[..@usn5][..`1esn`]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]}))) On Match Set Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 999 Starts With .9e12 Starts With 3.9e-1).`6esn`.@usn6!._usn4? =`4esn`[0.0..][.1e-1..],Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).@usn5! =9e1 Contains 4.9e12 Contains .9e0,`1esn`+=00[0e-0...9e-1][1e-1..``] On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1] Merge ((`5esn` :`2esn`:`8esn`)<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})) On Match Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Where 4.9e12 In 5.9e-12 In .9e0 Union All Unwind $`6esn`[$`8esn`..][false..] As `6esn` Merge (#usn8 {_usn3:$_usn4 Contains .12e-12}) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null;"), + octest:ct_string("Remove Single(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]).`3esn`.`7esn`,_usn3:`1esn`,Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1).`4esn`! Merge @usn5=(({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) On Create Set {@usn6:$_usn3 Is Not Null Is Not Null}.usn2! =.9e-12[0e0...9e-1],usn2 =12e12[07..] Union With Distinct 9e12 Starts With `4esn` Starts With .9e-1 As @usn6 Order By {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} Ascending,01 Ends With \"d_str\" Asc,1000 Is Null Is Null Ascending Limit 0e0 Starts With $1000 Starts With `2esn` With Distinct .9e0 Is Null Is Null As #usn7,All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Where 5.9e-12[$`4esn`] Union Create (:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}),(({#usn8:1e1[Null..][.12..]})<-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]->(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}));"), + octest:ct_string("Create `6esn`=((_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})) Remove All(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count ( * ) Ends With `6esn` Ends With .12e12).`7esn`? Union All Unwind Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0|12[0xabc..][$0..]) Contains [`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .12[$`2esn`..usn2][.9e-1.._usn3]] Contains Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]) As #usn8;"), + octest:ct_string("Create usn1=({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}),_usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))) Union Return *,0xabc[7.0e-0..][12e12..] Skip Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Return Distinct 00[$`6esn`] As `6esn`,Count ( * )[12e-12] As #usn7,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] Order By .9e1[Count(*)..$`3esn`] Asc Create ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),`1esn`=(((`5esn` :#usn7:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(usn2 {@usn5:$usn2 Ends With `8esn` Ends With _usn3,@usn6:`7esn` Is Not Null})));"), + octest:ct_string("Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``]|`4esn` Starts With $_usn3 Starts With .9e-12].@usn5!._usn4?.`1esn`? Remove (`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1})<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}).@usn6.#usn8? Remove {usn1:0Xa[9e0]}._usn3?._usn4.``?;"), + octest:ct_string("Create @usn5=(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}),(((_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`1esn`{`7esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]}))) Merge usn1=(`5esn` :`1esn`);"), + octest:ct_string("With .12e12[`7esn`][#usn8],0e-0 In $1000 In .9e1 As _usn3,@usn5[6.0e0][Count ( * )] As `1esn` Order By #usn8 =~.9e-12 =~$usn1 Asc,Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Asc,Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Descending Skip [_usn4 In Count(*)[9e1..][12e-12..] Where 01[Count(*)..0e-0][7..$`2esn`]|`` Contains 12.0] In None(`2esn` In .12e-12[$@usn6..5.9e-12] Where `1esn`[9.1e-1]) Return Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] As `7esn`,12e12 Starts With `6esn` Starts With true As #usn8,$_usn4[1e-1..8.1e1][`1esn`..1.9e0] As `` With $`6esn`[..12e12][.._usn3] As `5esn`,($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]) As _usn4 Where $#usn7 In .12e-12;"), + octest:ct_string("Return Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As #usn7;"), + octest:ct_string("Merge `7esn`=(`7esn` :usn1)-[`6esn`? *0Xa..7{`4esn`:$`2esn` Ends With $`8esn`}]->({usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]-(`1esn` :``:usn1{_usn4:.1e1 Is Null Is Null}) On Match Set `6esn`+=$`2esn` Starts With .12e-12 Starts With .0e-0,_usn4+='s_str' Ends With $usn1,#usn8:_usn4 On Match Set Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 999 Starts With .9e12 Starts With 3.9e-1).`6esn`.@usn6!._usn4? =`4esn`[0.0..][.1e-1..],Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).@usn5! =9e1 Contains 4.9e12 Contains .9e0,`1esn`+=00[0e-0...9e-1][1e-1..``] Union Return *,Extract(`5esn` In 12[0xabc..][$0..] Where 9e-1[0X0123456789ABCDEF][0]|.9e1[..Count(*)][..7.0e-0]) Is Null Is Null As _usn3 Order By {`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] Ascending Limit 123.654 In $`5esn` In 9e-1 Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Where 0X7[$999...12e12][12..`2esn`] With All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Where .9e1 Contains Null Union All Detach Delete `` =~$`5esn`,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12)[{_usn4:@usn6 In 3.9e-1 In 9e-12}][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]|10.12e12[12e12..0X7])],`` Ends With .9e-1 Ends With 9e-12;"), + octest:ct_string("Detach Delete Count(*)[0.12..2.9e1] Unwind @usn5 In $1000 In 07 As #usn7 Return [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..] Union All Merge @usn5=((:`7esn`{usn1:123.654 Ends With 0Xa Ends With .12e12})-[ *0..010]->(_usn4 :`5esn`)) On Match Set ``+=0.12[07..3.9e-1] On Create Set @usn6(9.1e-1[$`4esn`..][$`4esn`..]).@usn5?.#usn8!.`2esn` =usn1[12e-12],`4esn` =$`6esn`[..12e12][.._usn3] Create @usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0});"), + octest:ct_string("With Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) As `1esn`,Count(*) Is Not Null As `4esn`,(usn1 {`6esn`:$`5esn`[true],usn2:1e1 Is Not Null Is Not Null})-[`3esn`?:`5esn` *07..{#usn7:9e-1 =~6.0e0 =~``}]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}) Is Not Null Is Not Null As `7esn` Order By 0e-0 Contains 11.12e-12 Contains $`4esn` Asc Skip `6esn`[..01][..`8esn`] Where $@usn5[..1e-1] With Distinct *,`2esn` Is Not Null Is Not Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Order By {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} Desc,{`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]] Ascending;"), + octest:ct_string("Match (:#usn8{`7esn`:0[$`1esn`..`8esn`]})-[`4esn`?:`6esn`|#usn7]->(`1esn` ),((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})) Match _usn3=((@usn5 :usn1)-[? *123456789..0x0{`8esn`:`2esn` Is Not Null Is Not Null}]->(`` :usn1)),({_usn4:$`3esn` In 's_str' In $#usn7});"), + octest:ct_string("Optional Match `1esn`=(((@usn5 :usn2)-[`4esn`?:_usn3|`2esn`]-(:#usn7:_usn3)<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}))) Match (`5esn` :`7esn`{`7esn`:$_usn3[.1e1..][$`1esn`..],`5esn`:.12e-12 =~9e12 =~1e-1})<-[#usn8{`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5}]->(:_usn4{_usn3:010 Starts With 0.0 Starts With .0e0}) Merge ``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Union All Merge `2esn`=(({_usn4:01234567[6.0e0][$usn2]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})) Unwind `7esn` Is Not Null Is Not Null As `1esn` Merge `6esn`=(((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-({@usn6:``[$``..]})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]->(@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]}))) On Match Set `3esn`+=(:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])],`5esn`+=Null =~true =~.1e-1,`3esn`:`6esn`:`3esn` On Create Set `8esn` =$12[01] Union Delete (:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) Starts With count(Distinct 9.1e-1 =~@usn5 =~Count ( * )),true Starts With 2.9e1 Starts With 9e1,.1e1 Starts With $`7esn` Unwind 12e12 Is Null Is Null As usn2;"), + octest:ct_string("Merge ((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Union Create `5esn`=(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}),((@usn5 :usn1)-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})) Unwind $``[`5esn`..][`2esn`..] As `8esn`;"), + octest:ct_string("Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As `8esn` Match `7esn`=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))),@usn5=(({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})-[:``|:`3esn` *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})) Detach Delete 12e12 Starts With 9e1 Starts With $`4esn`,.9e1[#usn7..] Union Remove {usn1:usn2[..7.0e-0]}.`2esn`.`2esn`?.usn1 With *,$12 Contains $#usn8 Contains 01 As usn1 Order By 0X7[`4esn`..][`3esn`..] Ascending,$#usn7 In .12e-12 Ascending,$`6esn` In `2esn` Ascending Where $0 =~01234567 Return *,`6esn`[010...9e-12] As `5esn` Union All Return .9e1[#usn7..] Order By 00 Ascending Unwind 123.654 =~1e-1 =~.9e-1 As `8esn` Remove All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]).@usn5!._usn4!.#usn8?;"), + octest:ct_string("Delete \"d_str\" Contains 4.9e12 Contains 7.0e-0,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])];"), + octest:ct_string("Unwind 0[$999..] As `3esn` Union Return Distinct *,{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1} In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) As _usn4,$#usn7 Is Not Null As `7esn` Order By 9e-1 Starts With 123.654 Starts With .9e1 Asc Skip {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Count(*)[9e-12..0Xa][$123456789..0.0])..Any(`2esn` In .9e-12[0e0...9e-1] Where `3esn` Contains 01234567 Contains .9e-12)][All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e0 In 9.1e-1 In $123456789)..Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)] Remove (usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2})-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12}).@usn5,count(Distinct $`6esn` In $`3esn` In 9e1,.9e1[12]).`4esn` Optional Match `3esn`=((#usn7 :usn2{@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-({`6esn`:07 Ends With @usn6 Ends With _usn3})),`3esn`=({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}) Where $`1esn`[`3esn`..] Union Optional Match @usn5=((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})-[`6esn`? *..0xabc{``:$_usn4[Null]}]->({usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`6esn` {_usn3:$_usn4 Contains .12e-12})) Unwind All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] As #usn8 Unwind 0x0[01234567..'s_str'] As ``;"), + octest:ct_string("Create (({`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]})-[#usn8:`2esn`|`7esn`{`5esn`:07 Starts With usn1 Starts With 010}]-(`5esn` :`4esn`:`7esn`)),`8esn`=((`` )<-[?]->(_usn4 :@usn5)) Remove [usn1 In 7.0e-0[.._usn4][..0X7] Where .9e12[$usn2..][7..]|$_usn3 In 123.654 In $`8esn`].`8esn`!,{`8esn`:1.9e0 =~$`8esn` =~01234567,usn1:.0e-0[3.9e-1][.12e12]}.`3esn`? Union Merge `3esn`=(@usn5 :`7esn`) Remove `6esn`(1e1 Is Not Null Is Not Null,$`1esn` Starts With Count(*) Starts With $`8esn`).`7esn`,{`3esn`:.0,`5esn`:Count ( * )[..`8esn`]}.``?.`6esn`.@usn5?,Any(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`).#usn7?.usn2._usn4? With *,None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]) Is Null Is Null,$`3esn` =~00 =~9.1e-1 Skip `2esn` Starts With 12 Starts With 10.12e12 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1;"), + octest:ct_string("Detach Delete $`8esn`[$``..$`1esn`][9e-12..$7],Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]),.9e-1 Ends With `8esn` Delete `1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)],_usn4 In `3esn` In 7.0e-0,'s_str' =~.9e1 =~3.9e-1 Merge ((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2)) Union Merge @usn6=(((@usn6 {`8esn`:999[..@usn5][..`1esn`]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]}))) On Match Set Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 999 Starts With .9e12 Starts With 3.9e-1).`6esn`.@usn6!._usn4? =`4esn`[0.0..][.1e-1..],Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).@usn5! =9e1 Contains 4.9e12 Contains .9e0,`1esn`+=00[0e-0...9e-1][1e-1..``] On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1] Merge ((`5esn` :`2esn`:`8esn`)<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})) On Match Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Where 4.9e12 In 5.9e-12 In .9e0;"), + octest:ct_string("Match `3esn`=((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})),_usn4=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[@usn6?:`5esn`]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) Union With *,.9e-12[9e1..6.0e0][`1esn`..9e0] As @usn6,$`6esn` In $`3esn` In 9e1 Order By 5.9e-12 Ends With 1e1 Ends With false Descending,$`2esn` Starts With .12e12 Starts With 3.9e-1 Ascending,`6esn`[`6esn`..] Descending Skip $_usn4 =~$_usn4 =~2.9e1 Where $`4esn` In 123456789 In `5esn`;"), + octest:ct_string("Remove {_usn3:@usn6 In 3.9e-1 In 9e-12}.`3esn`!,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`8esn` Is Null|.0[usn2.._usn4]).usn2!,(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]}).#usn7! Unwind `2esn` Starts With 12 Starts With 10.12e12 As @usn6 Union Unwind `8esn`[6.0e0..][$`1esn`..] As `6esn` Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By $7 In .9e1 In $`` Desc,$`6esn` Starts With `4esn` Descending,8.1e1 Starts With .9e12 Starts With `7esn` Desc Skip 12.0 Is Null Is Null;"), + octest:ct_string("Remove (`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1})<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}).@usn6.#usn8?,[_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]].`1esn` Union Create `3esn`=((:`2esn`:`8esn`)<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}))) Optional Match (@usn5 {_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2)-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]-(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12}),((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})) Where 12.0 Contains $_usn4 Contains $usn2 Union Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where $usn1 =~$999 =~$7|$_usn3 Is Not Null Is Not Null).`4esn`!.#usn8,Filter(`` In 0.12[3.9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4).usn1 Merge (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))) On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 Create ((`5esn` :`2esn`:`8esn`));"), + octest:ct_string("Remove _usn3:#usn8,`5esn`(Distinct $`8esn` =~.9e12 =~010,$#usn8[$1000..]).`3esn`?,Extract(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`]|$`3esn`[..`1esn`][..$`7esn`]).@usn6!;"), + octest:ct_string("Delete 0e0 Ends With `7esn` Ends With usn1,`4esn`[0.0..][.1e-1..] Create `7esn`=(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]}) Union All With Distinct *,#usn8 In $@usn6 As `8esn` Skip `1esn`[..0x0][..\"d_str\"] Match @usn6=((usn1 )-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})) Union Match ``=((:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})-[:_usn4|`1esn` *00..123456789]->({_usn3:00[$`6esn`]})),(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))) Where 7.0e-0[0X7..$`2esn`][`4esn`..`7esn`];"), + octest:ct_string("Unwind All(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12) In All(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`]) In {usn1:`3esn` Ends With `6esn`} As usn2;"), + octest:ct_string("Return Distinct usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]) As usn1 Order By .9e-12 Starts With .0e-0 Starts With usn2 Ascending Skip `4esn`[..$#usn7][..0X7];"), + octest:ct_string("Merge `6esn`=(usn2 {_usn4:$999 Ends With .9e-12})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``}) On Match Set `4esn`+=0Xa Starts With .0,`1esn` =12 Ends With $7 Ends With $#usn8,(`1esn` :_usn3:_usn3$0)<-[``:`8esn`|:`2esn` *12..0Xa]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})<-[?*{`6esn`:.1e-1[..12e12]}]->(:`3esn`{_usn4:7.0e-0 =~$12 =~5.9e-12}).`4esn`.`7esn`! =``(Distinct `4esn`[$1000..$``][$_usn4..$_usn4],.1e-1 Starts With 1000 Starts With $`1esn`) In [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|`4esn` Starts With $_usn3 Starts With .9e-12] In {`6esn`:``[$``..]} Unwind [usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null]][(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})..] As usn2;"), + octest:ct_string("Remove None(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]).``?,{`8esn`:usn1 Ends With 12}.`8esn`!.@usn5.usn2!,{`7esn`:.0[usn2.._usn4],`5esn`:9.1e-1 Is Null}.@usn6? Detach Delete Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Union Detach Delete .1e-1[$`2esn`..][$`1esn`..] Match ((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2})),@usn5=({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3}) Where $usn2 =~$`2esn` =~\"d_str\" With Distinct *,`2esn` Is Not Null Is Not Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Order By {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} Desc,{`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]] Ascending Where $``[4.9e12..2.9e1];"), + octest:ct_string("With Distinct *,`2esn` Is Not Null Is Not Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Order By {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} Desc,{`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]] Ascending Where $``[4.9e12..2.9e1] Merge ((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}))) On Match Set {`1esn`:9e-12[$0][$`4esn`]}._usn3! =12e-12[..$7][..$0],All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`4esn`?.#usn7! =Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]];"), + octest:ct_string("Unwind .1e-1 Contains 1e1 Contains $`6esn` As `2esn` Return *,$#usn7 Is Not Null Is Not Null As `1esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4 Order By 9e12 Ends With 07 Ascending,\"d_str\" =~9e-12 =~`5esn` Desc,Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999)[Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])][[_usn3 In ``[$``..] Where @usn5 Ends With 0]] Descending Skip `` =~$`5esn`;"), + octest:ct_string("With Distinct *,$0[$`7esn`..$`3esn`]['s_str'...0],usn1 Ends With 12 Order By Count ( * )[0..][010..] Desc Limit 12.0 Starts With 07 Starts With $`3esn` Where @usn6[usn1..][`1esn`..] Match `3esn`=(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}),usn2=((:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]})) Union All With 010 Starts With 0.0 Starts With .0e0 As _usn4 Order By 123456789 =~$`1esn` =~#usn7 Ascending,.1e1 =~010 =~0.12 Descending Skip Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..])[..Extract(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]|$`6esn` Starts With `4esn`)] Limit Extract(`5esn` In 12[0xabc..][$0..] Where 9e-1[0X0123456789ABCDEF][0]|.9e1[..Count(*)][..7.0e-0]) Is Null Is Null Where `6esn`[010...9e-12] With Distinct *,Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As `5esn`,0xabc =~7.0e-0 =~4.9e12 Order By (#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Desc Where @usn6[.9e12..0e0] Unwind .0e-0 =~$`7esn` =~$0 As `` Union Delete usn1(Distinct true Starts With 2.9e1 Starts With 9e1)[Extract(usn2 In .0e0[$`6esn`..] Where 9.1e-1[Count(*)..][5.9e-12..]|.0e0[$`1esn`][.9e-12])..][Extract(`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6|$_usn4 Contains 123456789)..];"), + octest:ct_string("Detach Delete $`1esn` Starts With Count(*) Starts With $`8esn`,$12[.9e-1],Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1]) With Distinct *,8.1e1 Ends With .1e-1,$#usn7 =~8.1e1 As #usn7 Order By false =~4.9e12 Asc Skip 0x0 =~0x0 Limit $_usn4[1e-1..8.1e1][`1esn`..1.9e0] Where 5.9e-12[.1e1][$#usn8] Create `1esn`=((:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[usn1 *12..0Xa]->({`5esn`:07 Starts With usn1 Starts With 010})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})) Union Delete .1e-1[..12][.._usn4],[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]};"), + octest:ct_string("With *,7.0e-0 Contains Count ( * ) Contains 0Xa As `7esn` Order By [_usn4 In Count(*)[9e1..][12e-12..] Where $_usn3[1e-1..]][[`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0]][None(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)] Ascending,9e0[$usn2][0] Ascending Skip 3.9e-1[010..][9e1..] Limit (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null Where $_usn4[Null];"), + octest:ct_string("With Distinct {usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])],@usn5 Ends With 's_str' Ends With 01 As `7esn` Order By `3esn`[`4esn`..Null][$usn1..`5esn`] Desc,`5esn` Contains `6esn` Asc,9e-12 In 5.9e-12 Asc Union All Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]|$_usn3 Is Not Null).usn2!.#usn7!.`8esn`! Union All Delete All(_usn4 In Count(*)[9e1..][12e-12..] Where 7 Contains $#usn7) In (`` :`7esn`{`3esn`:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7],@usn6:01[..0.12]})<-[ *0x0..{`3esn`:$@usn6 Is Not Null Is Not Null}]-({``:_usn3[$_usn3][usn1]}),None(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12)[{`8esn`:$`3esn` Ends With 010 Ends With $`7esn`,usn2:7.0e-0[$usn2..0.12][$``..0]}][[usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|$12[01]]];"), + octest:ct_string("Return #usn8[`2esn`] As `5esn`,Count ( * ) Ends With $`4esn` Ends With 123456789 As #usn8 Order By {`4esn`:5.9e-12[9e0..]} =~None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12) Desc,Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]) Desc Skip $`1esn`[.9e0][$_usn3] Limit 0.12[3.9e-1] Remove Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 01[..0Xa]).`1esn`!.`1esn`!;"), + octest:ct_string("Unwind 3.9e-1 Is Null Is Null As `7esn` Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Union Create `3esn`=((`2esn` {``:.0e0[$`6esn`..]})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(`6esn` :`3esn`)<-[`7esn`?:`3esn`|:_usn3 *..0xabc]->(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null})),(usn2 :`6esn`:`3esn`)<-[``? *07..{`8esn`:$usn2[0e0][$7],_usn3:.9e-12[0e0...9e-1]}]-(:`2esn`:`8esn`{`6esn`:7.0e-0 Is Null Is Null,`6esn`:999[0.12..8.1e1]}) Union All Return None(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Is Not Null As `6esn`,.9e-1[12.0] As @usn6,.12 Ends With .0e-0 Ends With $7 Order By (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7) Ascending Limit 1e-1 =~0.0 =~9.1e-1 Merge ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})) On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1];"), + octest:ct_string("Unwind $`2esn`[$1000][2.9e1] As usn2;"), + octest:ct_string("Detach Delete $`3esn` Is Null Is Null With *,1000 Is Not Null Is Not Null As #usn7,.1e-1 Ends With @usn6 As @usn6 Skip 9.1e-1 =~@usn5 =~Count ( * ) Limit _usn4 In `3esn` In 7.0e-0 Where 1.9e0 Is Null Is Null Optional Match `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),_usn4=((`6esn` :#usn7:_usn3)<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union All Remove [`2esn` In .12e-12[$@usn6..5.9e-12] Where 1000[..0e0][..$`6esn`]|Count(*)[12..][0X0123456789ABCDEF..]].@usn6!,`8esn`:_usn3:_usn3 Return *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip usn2 Starts With $_usn3 Merge ``=(usn2 :@usn6:_usn4{usn1:9e12 Contains $@usn6 Contains Count(*)})<-[`1esn`?:`6esn`|#usn7 *0x0..{`5esn`:`8esn` =~.1e1 =~.0}]->(#usn7 {`5esn`:.12e12[$0]})<-[`8esn`? *0x0..]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``}) On Create Set (`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8,_usn3+=Null[..07] Union All Merge (`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1}) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7];"), + octest:ct_string("Create (($@usn6)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[#usn8?:#usn7|:`8esn` *..0X7]->(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999})),usn2=((@usn6 :`5esn`{@usn5:$`4esn` Ends With 0e-0})<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(:_usn4{``:$_usn3[1e-1..]})<-[``?:@usn5]->(_usn3 :#usn8)) Create `3esn`=(`` :`3esn`) Create (`` :`3esn`)-[@usn6:#usn7|:`8esn` *0Xa..7]-(:`2esn`:`8esn`{`6esn`:7.0e-0 Is Null Is Null,`6esn`:999[0.12..8.1e1]})<-[`8esn` *1000]->(#usn8 ),`1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) Union With 12e12 =~#usn7 =~.9e-1,All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null As @usn6 Order By 12e12 Starts With 9e1 Starts With $`4esn` Desc,$`5esn`[true] Descending Skip {usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])] Limit {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null Where $#usn7[$_usn4..][.12e-12..] Union Create (({`5esn`:8.1e1 Ends With $0 Ends With 6.0e0,@usn5:9e0[..1e1]})-[`5esn`?:`3esn`|:_usn3{`3esn`:1.9e0 Is Null Is Null,``:$usn2 Ends With `8esn` Ends With _usn3}]-(:``:usn1{_usn3:$#usn7[$_usn4..][.12e-12..],`1esn`:false})<-[`2esn`:`5esn`{usn2:Count(*)[12..][0X0123456789ABCDEF..]}]->(`1esn` {`5esn`:0X7[_usn4..1.9e0][Count ( * )..false],@usn5:123456789 Ends With _usn4})),`1esn`=(:`3esn`{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1});"), + octest:ct_string("Detach Delete 1e1 Starts With `8esn` Starts With .9e0 Merge usn1=(:#usn7:_usn3{#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) On Match Set `7esn`+=$`` In $7 In 9e-1,usn1+=$12 Starts With 1e-1 Starts With $@usn5,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).`2esn`?.#usn8! =Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null;"), + octest:ct_string("Optional Match `3esn`=((#usn7 :usn2{@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-({`6esn`:07 Ends With @usn6 Ends With _usn3})),`3esn`=({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}) Union All Optional Match `1esn`=(((@usn5 :usn2)-[`4esn`?:_usn3|`2esn`]-(:#usn7:_usn3)<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) Union All Create #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]})-[`3esn`? *..0xabc{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`}) Create `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`}));"), + octest:ct_string("Remove (`6esn` {`4esn`:$@usn5[$#usn8..][_usn3..]})<-[? *..0X7{`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12}]->(`6esn` :`5esn`{usn2:`8esn` Is Null}).`7esn`!,{#usn7:9e-1 =~6.0e0 =~``}.usn1? Create `6esn`=((#usn7 :_usn3:_usn3)<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Union All Merge usn1=(:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}) On Create Set None(`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0).`8esn`? =[`5esn` In 12[0xabc..][$0..] Where $123456789 Is Not Null] Starts With Any(`7esn` In .12e12[Count(*)..] Where 's_str' Ends With 0.0 Ends With .12e12),``+={`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])] On Create Set #usn7:`4esn`:`7esn`,{`7esn`:$`5esn`[7..],`5esn`:`5esn` Contains `6esn`}.#usn8?.usn2.@usn5! =usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]],@usn6 =\"d_str\" =~9e-12 =~`5esn` Merge usn1=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})) On Match Set `4esn` =$`` =~$_usn3,`7esn` =\"d_str\" Ends With `5esn` Ends With 7;"), + octest:ct_string("Delete `6esn`[..$``][..4.9e12],(`8esn` {`3esn`:#usn8[`2esn`]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null,{#usn8:8.1e1 Ends With $0 Ends With 6.0e0,#usn8:Null =~true =~.1e-1} Contains {usn1:Count ( * )[..2.9e1],_usn3:07 Starts With usn1 Starts With 010} Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where `1esn`[9.1e-1]|$`8esn` Starts With `2esn`).``!.`5esn`.``!;"), + octest:ct_string("Return $`2esn`[$1000..][$@usn5..],`7esn` Ends With `7esn` Ends With $`3esn` Limit $0 =~01234567 Remove #usn7:`3esn`,Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]).usn2!.@usn6!.`1esn`?,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1].`6esn`._usn4?._usn4! Detach Delete 01[$`4esn`..$_usn4][0e-0..$@usn6],Extract(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|Count(*) Is Not Null Is Not Null)[(_usn4 {#usn7:$`5esn` Is Null Is Null})-[_usn3:usn1|:#usn8 *07..]->(`4esn` :#usn8{#usn8:_usn4[7][8.1e1],#usn7:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})][Filter(`5esn` In 12[0xabc..][$0..] Where .12e-12[$@usn6..5.9e-12])],.9e-1 =~.9e-1;"), + octest:ct_string("Remove `1esn`.#usn8 Union Match (`1esn` :_usn3:_usn3$0)-[`7esn`?:`5esn`]->(`1esn` :`6esn`:`3esn`)-[ *0x0..{`3esn`:$@usn6 Is Not Null Is Not Null}]-(usn1 :@usn6:_usn4),`6esn`=(:`1esn`)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`) Where `8esn` =~.1e1 =~.0 Match (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Merge usn2=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}) Union Return *,$12[.9e-1] As `6esn`,`6esn`[010...9e-12] As `5esn` Order By 123456789[\"d_str\"..] Descending,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending,12e-12[`7esn`..][5.9e-12..] Asc Create ((`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})<-[`8esn`?:`3esn`|:_usn3*..{@usn5:$0 Starts With 010}]-(`3esn` :@usn5)<-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(`1esn` )) Remove Filter(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]).``,{@usn5:6.0e0 Is Not Null}.usn1;"), + octest:ct_string("With $0 =~01234567 As ``,Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])[All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654])][None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])] As usn2 Order By 12e12 Starts With 9e1 Starts With $`4esn` Desc,$`5esn`[true] Descending Limit 123.654 With *,`5esn`[$`4esn`],#usn8[7..@usn5] As `4esn` Order By 9e0[.0e-0] Asc Limit `8esn` Is Not Null Is Not Null;"), + octest:ct_string("Detach Delete 0Xa[$usn2..],$@usn5[...9e-1][..$usn1],12e12[..123456789][..false] Remove Filter(`7esn` In .12e12[Count(*)..] Where @usn5[$_usn3..]).usn2?,[`5esn` In 12[0xabc..][$0..] Where .12e12[$12..4.9e12][11.12e-12..9e12]|Count(*)[9e-12..0Xa][$123456789..0.0]].@usn5,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where #usn8[7..@usn5]).usn2? Union All Merge (_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ) Remove {#usn8:0xabc[7.0e-0..][12e12..],_usn3:#usn8 Starts With 11.12e-12 Starts With $`3esn`}.`4esn`!,{`3esn`:$@usn6 Is Not Null Is Not Null,@usn5:0X7[Count(*)][.9e0]}.`5esn`!.`3esn`!,All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]).@usn5!._usn4!.#usn8? Unwind false[12e-12..][usn1..] As `6esn` Union Create ((`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})<-[`8esn`?:`3esn`|:_usn3*..{@usn5:$0 Starts With 010}]-(`3esn` :@usn5)<-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(`1esn` )),(({`3esn`:.0e-0 Starts With $#usn7 Starts With _usn3,usn2:`6esn` In 9e-12})-[ *0..010]->(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})-[`5esn`:`2esn`|`7esn` *..0X7]-(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12}));"), + octest:ct_string("Unwind `6esn`[`5esn`] As @usn6 Optional Match `2esn`=(_usn3 :_usn3:_usn3{@usn6:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where `2esn` Is Not Null Is Not Null Remove `1esn`:usn2,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where false[$1000..$@usn6][7..12]].`5esn`?;"), + octest:ct_string("Return 12 Contains usn2 Contains $usn2 As ``,Count ( * )[12e-12] As #usn7 Skip .0 With Distinct *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Order By .9e-12[12e12][.0e0] Asc,0.0[4.9e12..][00..] Ascending,$`1esn` Starts With Count(*) Starts With $`8esn` Ascending Skip {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Count(*)[9e-12..0Xa][$123456789..0.0])..Any(`2esn` In .9e-12[0e0...9e-1] Where `3esn` Contains 01234567 Contains .9e-12)][All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e0 In 9.1e-1 In $123456789)..Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)] Where 1.9e0[$12][``];"), + octest:ct_string("Return ``[..$#usn7],$`6esn`[$`8esn`..][false..] As _usn3 Create `7esn`=(((`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})-[``]-(`7esn` :``:usn1{`1esn`:0e0 Starts With $1000 Starts With `2esn`,@usn6:@usn6 In 3.9e-1 In 9e-12})-[@usn5*{`7esn`:`3esn` Starts With _usn4}]->(#usn8 :_usn4{_usn3:.0 Is Null Is Null}))),#usn8=(`6esn` :#usn7:_usn3);"), + octest:ct_string("Create #usn7=((`4esn` {_usn3:@usn6 In 3.9e-1 In 9e-12})<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4)) Optional Match #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),`8esn`=(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})));"), + octest:ct_string("Merge ({_usn4:$`3esn` In 's_str' In $#usn7}) Create `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Union All Return Distinct *,0e0 Starts With $1000 Starts With `2esn` As #usn7 Skip .9e1[..Count(*)][..7.0e-0] Limit $_usn4 =~`7esn`;"), + octest:ct_string("Return *,$999 Order By _usn3[`2esn`..10.12e12][9e1..true] Descending Skip $`2esn` Ends With $`8esn` Limit All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],.1e-1 Is Null,.9e12[$usn2..][7..] As `2esn` Limit _usn4 Is Null Is Null Where .12e-12 Ends With $`7esn` Merge ``=(({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})) On Create Set usn2:usn2,usn1+=0xabc[$`4esn`..][`8esn`..],#usn7+=Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12])[..None(_usn3 In ``[$``..] Where Null[`2esn`..])][..{`3esn`:.0e-0 Starts With $#usn7 Starts With _usn3,usn2:`6esn` In 9e-12}] On Match Set #usn7 =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct) Union All With 6.0e0 Is Null Is Null As @usn6 Limit Count ( * ) Starts With 10.12e12 Starts With `` Where `3esn`[3.9e-1..$`5esn`] Unwind Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 's_str'[12][00])[`1esn`(Distinct $0[$`7esn`..$`3esn`]['s_str'...0])..] As @usn6 Create ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}));"), + octest:ct_string("Unwind $7 Is Null Is Null As `` Detach Delete 's_str' =~.9e1 =~3.9e-1 Unwind 010 Starts With 0.0 Starts With .0e0 As `3esn` Union All Remove None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])._usn4._usn4,Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where usn1[..10.12e12][..7]).``? Union All Merge `4esn`=((@usn5 :usn1{usn1:.9e1[12]})) On Match Set _usn3 =12e-12[.0..],_usn4+=.0e0[..12.0][...1e-1],usn1 =({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null} On Match Set `8esn`+=Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\"),`1esn`+=4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12),(`` {_usn4:9e0[..1e1]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(@usn5 :@usn6:_usn4).#usn8.`1esn`.usn1! =00[0e-0...9e-1][1e-1..``];"), + octest:ct_string("With Distinct *,123.654,9e-1 Starts With 123.654 Starts With .9e1 As `6esn` Order By $`8esn`[.._usn4(Null[..07],123.654)] Desc Skip 123456789[\"d_str\"..] Where $`2esn` Contains false Contains 123456789 Match `3esn`=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) Where $usn1 Starts With 12 Starts With 12e12 Union Merge ((`6esn` :`7esn`)-[`7esn`?:`5esn`]->(#usn8 )<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})) On Match Set #usn8 =_usn4['s_str'..],`7esn` =$usn1[$12..] On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 Return Distinct $usn1 Is Not Null Is Not Null As `5esn`,#usn7 =~0.0 =~usn2 As _usn4 Skip _usn4 In `3esn` In 7.0e-0 Return Distinct *,true Is Null Is Null As _usn3 Order By 12e12 Is Not Null Desc,0.0[$1000][3.9e-1] Ascending Skip {`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]} =~[usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|.9e1[..`5esn`]] Limit .0e0 =~5.9e-12 =~`7esn` Union All Create `6esn`=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Create (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),`1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) Unwind {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null As ``;"), + octest:ct_string("Optional Match #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Where 0x0 Starts With $`5esn` Starts With 9e-12 Union Create usn2=(((`7esn` :``:usn1)<-[:`4esn`|:@usn5]-(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[?]->(_usn4 :@usn5))) Optional Match `4esn`=(((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})<-[`8esn`?:usn2|:``]->(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})-[`3esn`?:`5esn` *07..{#usn7:9e-1 =~6.0e0 =~``}]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))),((@usn6 )<-[`2esn`{`4esn`:.0e0[$`6esn`..]}]->({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})-[`6esn`:#usn7|:`8esn` *01234567]-(`5esn` :`2esn`:`8esn`)) Where 0xabc Is Not Null;"), + octest:ct_string("Return Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]) Limit $#usn7 Starts With 10.12e12 Union Unwind #usn8[3.9e-1.._usn3] As usn2 Return Distinct (`2esn` :`6esn`:`3esn`)<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789)..Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1])][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]]..Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 9.1e-1 Is Null|9e1 Contains 4.9e12 Contains .9e0)],00 As `8esn`,_usn3 Ends With .12 Ends With `6esn` Order By Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2|0e-0[...9e12])[All(`2esn` In .9e-12[0e0...9e-1] Where .9e-1 Is Not Null Is Not Null)] Descending Limit `4esn` Starts With $_usn3 Starts With .9e-12 Union Unwind Count ( * )[0e-0..01] As `3esn` Unwind .12e-12 Starts With 's_str' Starts With 123.654 As `2esn` Unwind $usn1[$12..] As ``;"), + octest:ct_string("Remove Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567).`4esn`!.`8esn`!.`4esn`,(:`1esn`{`7esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[`7esn`*..]-(`7esn` :usn1).`6esn` Remove (:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}).`3esn`?,Extract(usn2 In .0e0[$`6esn`..] Where usn2 Ends With .0)._usn4?.@usn5._usn3,{usn2:.9e-1 Is Not Null Is Not Null}.@usn6!;"), + octest:ct_string("Create ``=((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})),#usn8=((`3esn` {#usn8:`7esn` Is Null})-[_usn4 *999..]->(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]})) Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where $usn1 =~$999 =~$7|$_usn3 Is Not Null Is Not Null).`4esn`!.#usn8,Filter(`` In 0.12[3.9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4).usn1 Union All Remove {`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null}.@usn5?.#usn8!.`8esn`?,_usn4:_usn4,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]|Count(*) Starts With $_usn4).`8esn`! Unwind {usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) As usn2;"), + octest:ct_string("Merge _usn4=(((`2esn` {`7esn`:Count(*)[.0e0..][#usn7..]})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)-[:#usn8|:`4esn` *12..0Xa]->(`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]}))) Remove [usn2 In $_usn3 =~$usn1 =~_usn4 Where 0xabc In 10.12e12|9e-1 Starts With 123.654 Starts With .9e1].`2esn`?.`5esn` Union All Unwind $@usn5[usn1..3.9e-1] As `8esn` Merge ``=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}) Remove {`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null}.@usn5?.#usn8!.`8esn`?,_usn4:_usn4,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]|Count(*) Starts With $_usn4).`8esn`!;"), + octest:ct_string("Optional Match ((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Where 1e1[Null..][.12..] Union With Distinct _usn3[`2esn`..][0x0..] As usn1 Order By 01234567 Starts With `4esn` Starts With 10.12e12 Ascending,0Xa In 0.12 In $#usn7 Descending,$999 Is Not Null Desc Skip $@usn5 Ends With $@usn6 Ends With \"d_str\" Limit (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Union Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) Where _usn3 Starts With `2esn`;"), + octest:ct_string("Remove usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4!,@usn6($`3esn`,$`1esn`[`3esn`..]).``?,`7esn`($`3esn` Ends With 010 Ends With $`7esn`,01234567[6.0e0][$usn2])._usn3!.@usn5.`5esn`? Unwind Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null As @usn5;"), + octest:ct_string("Detach Delete 3.9e-1[..$`4esn`][..\"d_str\"],$`` In $usn2 Remove `5esn`().`7esn`.`7esn`.usn2,{`5esn`:$#usn8[$1000..],#usn7:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]}.`4esn` Union All Unwind Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Detach Delete (`2esn` :_usn3:_usn3)<-[:_usn3|`2esn` *..0X7{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[_usn3:_usn4|`1esn`{`2esn`:123456789 In 9e-12 In false}]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) =~Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 0e-0 Contains _usn4 Contains 1e-1) =~[usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]],.12e-12 Ends With $`7esn`,`3esn` Union Create ((:`7esn`)),((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2)) Remove All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`).`3esn`?._usn4!._usn4,Filter(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])._usn4? Create `2esn`=((:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]}));"), + octest:ct_string("Remove @usn5:`5esn`,{`2esn`:.0,`5esn`:$`3esn` =~4.9e12 =~$7}.usn2.`4esn`? Optional Match `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Where 0e0 Starts With $1000 Starts With `2esn` Union All Optional Match (#usn8 {_usn3:$_usn4 Contains .12e-12}) Return Distinct *,`4esn`(Distinct 01[..0.12],$`8esn` Is Null) Contains All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]),Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} As `3esn` Limit Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null Merge `1esn`=(`3esn` :_usn3:_usn3)-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]}) On Match Set `8esn` =.9e1[Count(*)..$`3esn`] On Create Set usn1+=$`3esn` In 's_str' In $#usn7;"), + octest:ct_string("Return Distinct 00[$`6esn`] As `6esn`,Count ( * )[12e-12] As #usn7,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] Order By .9e1[Count(*)..$`3esn`] Asc Detach Delete 7.0e-0 Is Null Is Null;"), + octest:ct_string("Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``]|`4esn` Starts With $_usn3 Starts With .9e-12].@usn5!._usn4?.`1esn`?,All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where true In $0 In @usn5).`3esn` Union Remove Single(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1).`2esn`?,`1esn`:_usn4,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where usn1 Is Not Null).#usn8? Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where $`1esn` Starts With Count(*) Starts With $`8esn` Return Distinct Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] Order By 01[..0.12] Asc,6.0e0 Ends With .12e-12 Ends With 999 Ascending,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `2esn` Starts With $`7esn` Starts With _usn4|`1esn`[1000][Null]) Contains Single(`8esn` In 01234567[..0.0][..false] Where Count(*)[9e1..][12e-12..]) Desc Skip (`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})-[`6esn`? *123456789..0x0]->({`6esn`:$usn1 Starts With usn1 Starts With 1e-1,#usn8:$#usn7 Starts With 10.12e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}) Is Null;"), + octest:ct_string("Detach Delete 12e12[$@usn5..][.0e-0..] Unwind {#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]) As `1esn`;"), + octest:ct_string("Unwind .1e1 Starts With $`7esn` As `` Union With Distinct *,(`2esn` :`6esn`:`3esn`)<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789)..Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1])][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]]..Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 9.1e-1 Is Null|9e1 Contains 4.9e12 Contains .9e0)] Skip $#usn7[..$`8esn`][..2.9e1] Limit Extract(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..]|.9e12[..$usn1][..10.12e12]) Starts With Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]);"), + octest:ct_string("Remove `2esn`(Distinct .9e-12 Ends With `1esn` Ends With 123.654).`7esn` Unwind .9e-12[_usn4..#usn8][9.1e-1..0.12] As #usn8 Union Optional Match @usn6=(((@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[#usn7? *00..123456789]->(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}))),`3esn`=((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Where .9e12 =~`5esn` =~07 Return ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]) Order By `2esn` Starts With 12 Starts With 10.12e12 Desc,0e0[..'s_str'] Descending Skip $`1esn` Starts With Count(*) Starts With $`8esn` Unwind 9e1 Is Not Null As #usn8;"), + octest:ct_string("Optional Match ((#usn7 :_usn4{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})) Where 0[true..$7] Optional Match ((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})),`5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Union All With Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `5esn`,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null) Starts With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * )) Starts With (_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) As usn1 Order By 0e0[.12..][3.9e-1..] Descending,Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Asc Limit {#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]) Where true Starts With 2.9e1 Starts With 9e1;"), + octest:ct_string("Delete 's_str' In `7esn` In .9e-12 Union All Merge `5esn`=(((`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`))) On Create Set @usn6(9.1e-1[$`4esn`..][$`4esn`..]).@usn5?.#usn8!.`2esn` =usn1[12e-12],`4esn` =$`6esn`[..12e12][.._usn3] On Match Set #usn8 =8.1e1[$`5esn`][0e0],@usn5 ={`3esn`:`1esn`[9.1e-1]} Ends With {`2esn`:7.0e-0[3.9e-1..`1esn`],`7esn`:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]} Ends With None(`5esn` In 12[0xabc..][$0..] Where 1e1 Starts With `8esn` Starts With .9e0),None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1).`8esn`!.`2esn`!.``? =$1000 Union Delete {_usn4:1.9e0 =~$`8esn` =~01234567}[All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)],Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Unwind {@usn5:.0 Is Null Is Null}[Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0|01 Ends With \"d_str\")][[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|0X0123456789ABCDEF[1.9e0]]] As _usn3 Merge usn1=(`5esn` :`1esn`);"), + octest:ct_string("Return $0[..0x0][..01234567] As #usn7,\"d_str\" Starts With `6esn` Starts With 1.9e0 As _usn3 Order By 01[7][`1esn`] Asc,Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,#usn7[12e-12..][$`2esn`..] Asc Skip $7 =~0 =~.1e-1 Remove None(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).``?.@usn5?,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).`2esn`;"), + octest:ct_string("Remove `7esn`:#usn7:_usn3 Create `5esn`=(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[:#usn8|:`4esn`{_usn3:'s_str' Is Null,#usn7:#usn7[..0X0123456789ABCDEF]}]->(`` {`2esn`:.1e-1[2.9e1..][12..]}),((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})));"), + octest:ct_string("Merge `1esn`=(`4esn` :`5esn`) On Match Set `8esn`+=[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1) Ends With Filter(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7]),usn2+=(:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] Union All Unwind 123456789 Ends With _usn4 As `8esn` Remove [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )].`5esn`.`7esn`? Union Return {`8esn`:$`` Is Null Is Null}[Extract(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..])..][Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)])..] Unwind $`6esn`[$`8esn`..][false..] As usn2;"), + octest:ct_string("Create `5esn`=((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})),``=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}) Return Distinct [`` In 0.12[3.9e-1] Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`|Null[10.12e12..]] In {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] As `7esn` Order By 00 Ascending Skip 12.0 Contains $_usn4 Contains $usn2 Limit .9e1 Starts With `4esn` Union Remove @usn5:@usn5,Extract(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null]|true Is Null Is Null)._usn4?.#usn7?,All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e0 In 9.1e-1 In $123456789).#usn7 Delete Null Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null),None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4),$usn1 Starts With 00 Unwind Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] As #usn7;"), + octest:ct_string("Return 6.0e0 In 12 As usn1 Limit $#usn7 Starts With 10.12e12 Match (((:#usn8{`8esn`:usn1[12e-12],@usn6:Count ( * ) In 999})<-[`8esn`? *0x0..]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})<-[@usn6?:`5esn`]->(`8esn` {`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}))) Where 0[$999..] Return 12e12 =~#usn7 =~.9e-1,.1e1 Starts With 9e0 Order By None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) In (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]}) In [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] Ascending,.9e0 Is Null Asc,.12[$`2esn`..usn2][.9e-1.._usn3] Ascending Limit 2.9e1 Starts With 12e-12 Starts With 0.0;"), + octest:ct_string("Optional Match `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),_usn4=((`6esn` :#usn7:_usn3)<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union All Remove @usn5(Distinct Null =~true =~.1e-1,12e12[..123456789][..false])._usn4!,All(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]).`4esn`? Optional Match `5esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}),``=((`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]})-[?:@usn6|:_usn3 *999..]->(`1esn` :`1esn`{`5esn`:$`4esn`[..2.9e1][..07]})<-[`5esn`?:#usn7|:`8esn` *010..]->(:@usn5{usn2:$usn1[$12..]})) Where true Starts With 2.9e1 Starts With 9e1 With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) Starts With count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) Where $`3esn`[..`1esn`][..$`7esn`] Union Remove Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12).`5esn`? Merge usn2=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}) Merge _usn4=(({_usn3:$`5esn`[7..]}));"), + octest:ct_string("Merge `3esn`=((`7esn` :usn1)-[? *0X0123456789ABCDEF..0]-(:`8esn`:#usn7)<-[?:@usn6|:_usn3 *07..]-({_usn4:01234567[6.0e0][$usn2]})) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Union Return *,`2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,Null =~9e12 As #usn7 Order By .0e0[..12.0][...1e-1] Descending,5.9e-12 =~$@usn6 Asc;"), + octest:ct_string("Delete $`2esn` Starts With .12e-12 Starts With .0e-0 With *,$@usn5[..1e-1] As @usn5,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As `1esn` Order By \"d_str\"[12e12..][4.9e12..] Asc Where 7.0e-0 =~$12 =~5.9e-12 Match (_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}),((`6esn` :usn1)) Where 9.1e-1 In #usn8 Union All Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct),Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..],Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) Unwind 0e0 Ends With `7esn` Ends With usn1 As _usn3;"), + octest:ct_string("Create @usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))) Remove Any(_usn4 In Count(*)[9e1..][12e-12..] Where .9e1[#usn7..]).`8esn`,Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``|$7 Contains 0e-0 Contains .0e-0).`3esn`?;"), + octest:ct_string("Return Distinct *,_usn3[`2esn`..10.12e12][9e1..true] Detach Delete 0X7[$7..],$usn1 Contains `7esn` Contains .9e12,(:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Remove {`3esn`:`7esn` Is Not Null}.`7esn`?;"), + octest:ct_string("Unwind .0 Is Null Is Null As _usn4 Remove usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4!,@usn6($`3esn`,$`1esn`[`3esn`..]).``?,`7esn`($`3esn` Ends With 010 Ends With $`7esn`,01234567[6.0e0][$usn2])._usn3!.@usn5.`5esn`? Match (:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]});"), + octest:ct_string("Unwind Count(*) In .9e-12 In $usn1 As `5esn` Detach Delete .12e12 =~$#usn7,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] With *,Null[...9e1] As `2esn` Order By 10.12e12 =~12e-12 =~0X0123456789ABCDEF Descending,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) Asc,8.1e1 Starts With .9e12 Starts With `7esn` Desc Union Optional Match _usn4=(:_usn4),`3esn`=(({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[``?:``|:`3esn` *01234567]->(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})) Where $12[01] Detach Delete All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Delete ``(Distinct #usn7 =~`5esn` =~``)[Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..])..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)],4.9e12[1e1..'s_str'][Count(*)..0X7] Union All Merge (((_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})<-[`4esn`?:_usn3|`2esn` *0..010]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`}))) On Create Set `6esn` =.1e1 =~10.12e12 Remove _usn3:#usn8,`5esn`(Distinct $`8esn` =~.9e12 =~010,$#usn8[$1000..]).`3esn`?,Extract(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`]|$`3esn`[..`1esn`][..$`7esn`]).@usn6!;"), + octest:ct_string("Optional Match `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})),(:#usn8{usn2:07 Starts With usn1 Starts With 010})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2});"), + octest:ct_string("Merge #usn7=(`8esn` {``:$123456789[$_usn3..][$usn2..]}) On Match Set `7esn` =$`6esn` Is Null Is Null On Match Set `7esn` =$`7esn` Is Null Is Null,`8esn`+=`6esn`[..$@usn6][..$`1esn`],`3esn`+=3.9e-1 Contains 9.1e-1 Contains `8esn` Union With 12e12 Starts With `6esn` Starts With true,#usn7[12e-12..][$`2esn`..] As @usn6,`` Is Not Null Is Not Null As _usn4 Order By #usn7 Ends With Count ( * ) Ends With @usn6 Ascending,usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) In {`2esn`:$`2esn` Contains $1000} In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $@usn6 Contains Count ( * )|11.12e-12 Contains 9e-12] Descending,Extract(usn2 In .0e0[$`6esn`..] Where 9.1e-1[Count(*)..][5.9e-12..]) =~#usn8(5.9e-12 Contains $`` Contains $`5esn`) Descending Limit #usn8[7..@usn5] Union All With Distinct All(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[..Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`])] As `6esn`,11.12e-12[010..11.12e-12] As `2esn`,`8esn`[Null...12e12][0..11.12e-12] Order By $_usn3 Contains 1e1 Contains .12 Asc,9e12 Asc,0e0[`3esn`..][.9e-1..] Descending Limit $12[01];"), + octest:ct_string("Match `1esn`=(((@usn5 :usn2)-[`4esn`?:_usn3|`2esn`]-(:#usn7:_usn3)<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}))) Create `3esn`=((:`2esn`:`8esn`)<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}))) Delete Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null)[#usn7(`4esn`[0.0..][.1e-1..])..@usn6(_usn4 Is Not Null Is Not Null)],[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12]][None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null)..[`5esn` In 12[0xabc..][$0..] Where .12e12[$12..4.9e12][11.12e-12..9e12]]] Union Remove None(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999).`3esn`?.#usn7?.`1esn`,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']).`2esn`!,{`2esn`:$`8esn` In 9e-12 In 3.9e-1}.`6esn`? Remove All(`8esn` In 01234567[..0.0][..false] Where $@usn5[$#usn8..][_usn3..]).`8esn`!.`6esn`! Create _usn3=((usn2 {`4esn`:12e12 Is Not Null})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}));"), + octest:ct_string("Unwind Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null As `7esn` Return Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]),$`6esn`[$`8esn`..][false..] As _usn3,$`6esn`[..12e12][.._usn3] As `5esn` Order By $@usn6 =~$`2esn` =~9e1 Desc,$`2esn`[$usn1..] Desc,@usn6[01][.9e0] Ascending Skip All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Limit `1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Merge `3esn`=((`1esn` :_usn3:_usn3$0)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})) On Match Set #usn7:usn2,({usn1:usn2 Ends With 10.12e12})<-[`8esn` *1000]->(#usn8 ).usn2! =$`` In `2esn` In 07,`5esn` =`8esn`[6.0e0..][$`1esn`..] Union Delete $usn2[1e-1];"), + octest:ct_string("Return Distinct Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As #usn7 Order By $_usn4 Contains .12e-12 Desc Skip Extract(`8esn` In 01234567[..0.0][..false] Where .9e12 =~`5esn` =~07|07[.0e0][3.9e-1]) Is Not Null Is Not Null Limit `7esn` Is Null Delete 0Xa Ends With #usn8 Ends With usn2 Union All Detach Delete None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) Contains [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0],{usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) Union Create `4esn`=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6),`3esn`=((`6esn` {`4esn`:$@usn5[$#usn8..][_usn3..]})<-[`8esn`?:`7esn`|@usn6 *..7]->(`5esn` {`2esn`:`1esn` =~0 =~_usn4}));"), + octest:ct_string("With *,0e0[`4esn`] As `6esn`,9.1e-1[.1e-1] Limit $0[..0x0][..01234567] Where $#usn7[$_usn4..][.12e-12..] Delete usn2[Count ( * )..07],None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn`[..0x0][..\"d_str\"])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1])..Single(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])] Union All Remove All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`4esn`?.#usn7!,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|$_usn3 Is Not Null).`5esn`! Create usn2=(`1esn` :`6esn`:`3esn`)-[#usn7?:`2esn`|`7esn` *..7]-(`3esn` {`6esn`:$`8esn`[..1e1][..``],`8esn`:$usn2 In usn1 In 1e-1}) Detach Delete 010 Is Not Null Is Not Null,None(`8esn` In 01234567[..0.0][..false] Where `7esn`) Is Not Null Is Not Null,07[.0e0][3.9e-1];"), + octest:ct_string("Remove Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12 Contains 0e-0 Contains .0).`8esn`,All(`7esn` In .12e12[Count(*)..] Where 's_str' Ends With 0.0 Ends With .12e12).#usn8? Merge (({`8esn`:$`` Is Null Is Null})) On Match Set usn1 =$0[$`7esn`..$`3esn`]['s_str'...0],[@usn6 In 00 =~.9e-12 =~usn1 Where $123456789 Starts With Count ( * )].`1esn`? =usn2 Ends With .0,`8esn` =010[..@usn5][.._usn4] Return *,`3esn`[.12e-12..] As `7esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4 Union Merge `7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) On Match Set (`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8,_usn3+=Null[..07] Unwind 5.9e-12 =~$@usn6 As `2esn` Return 1.9e0 Starts With 's_str' Starts With 9.1e-1,8.1e1 Is Null,.1e1 Starts With .1e-1 Order By 1.9e0 In $0 Desc,7.0e-0 =~$123456789 =~`8esn` Asc,#usn7[10.12e12..][\"d_str\"..] Desc;"), + octest:ct_string("Merge (:`6esn`:`3esn`) On Create Set usn2+=Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) With *,Null[...9e1],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Where `2esn` Starts With $`7esn` Starts With _usn4 Union Unwind 123.654 Is Not Null Is Not Null As `6esn` Unwind $`` Is Not Null As _usn3;"), + octest:ct_string("With Distinct #usn7[`5esn`..`2esn`][$`4esn`...1e1] As _usn4,8.1e1 Is Not Null,$_usn3 Is Not Null Order By $`6esn`[.9e1..][`5esn`..] Ascending,#usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Desc,Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Ascending Where 0xabc[$`4esn`..][`8esn`..] Detach Delete {#usn7:$usn2[1e-1]}[(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)..][(usn1 :`2esn`:`8esn`)<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]})..] Return 1.9e0 Ends With Count ( * ) Ends With .12 As `4esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12),9e1 Is Not Null As #usn8 Order By $`4esn` Ends With 0e-0 Ascending,.9e-1 Contains .0e0 Contains usn1 Asc Skip None(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8) Is Null Is Null Union All Create `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Optional Match `8esn`=(`6esn` :``:usn1),((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}))) Union All With Distinct Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn` Order By (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] Ascending,12 Contains $usn1 Contains 0 Ascending Skip Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null)[[`2esn` In .12e-12[$@usn6..5.9e-12] Where 00]][Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12])] Limit .9e0 Is Null Is Null Where $1000 Contains 01234567 Contains 0X7;"), + octest:ct_string("Unwind Filter(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) Starts With All(`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]) Starts With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`) As `` Merge ``=(((_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`7esn`:`8esn`|:`2esn`]->({`4esn`:$`2esn` Ends With $`8esn`})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0))) On Match Set `1esn`+=Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Starts With `1esn`(Distinct @usn6[.9e12..0e0],999 =~0Xa =~9e0) Starts With usn1($@usn5[...9e-1][..$usn1],$`3esn` Ends With 010 Ends With $`7esn`),`7esn` =10.12e12 Ends With _usn3 Ends With `4esn`,@usn6+=Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] Union Return Distinct 8.1e1 Is Null Is Null,5.9e-12[$`4esn`] Order By `6esn` Is Not Null Ascending,`6esn` Is Not Null Desc,(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})[{`5esn`:8.1e1 Ends With $0 Ends With 6.0e0,@usn5:9e0[..1e1]}..None(`` In $_usn3 Is Not Null Where $@usn6 =~$`2esn` =~9e1)] Descending Skip Null In 0Xa In .9e-1 Unwind $usn1 Is Not Null Is Not Null As `5esn` Delete true Is Null Is Null Union Remove Any(`` In $`5esn` Starts With 0X7 Starts With 1e1).#usn7!,Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\").#usn7!,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`8esn` Is Null|`2esn` Starts With $`7esn` Starts With _usn4].usn2?.@usn5!;"), + octest:ct_string("Create `5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})),(`1esn` :``:usn1{_usn4:.1e1 Is Null Is Null})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}) Union All With (:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] Where `7esn` Is Null Return *,(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})<-[?:usn1|:#usn8{`8esn`:`2esn` Is Not Null Is Not Null}]-({#usn8:1e1[Null..][.12..]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null,8.1e1 Is Not Null As usn2 Order By .1e1[$usn2..9e1][9e-1...9e-1] Desc Skip Null In 0Xa In .9e-1 Unwind .9e-12[12e12][.0e0] As `3esn` Union All Optional Match @usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))),(({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)) Where $@usn5 Starts With 0Xa Detach Delete $0[9e1],Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] Optional Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),(({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})<-[`4esn`:_usn4|`1esn` *123456789..0x0{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})-[_usn3 *..7]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]}));"), + octest:ct_string("Remove 12.0.`8esn`?.@usn5?.`8esn`!,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12 Contains 0e-0 Contains .0).`8esn` Detach Delete (`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :``:usn1{usn2:12.0[..123456789][..01]}) Contains {`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12} Contains {`7esn`:`3esn` Starts With _usn4} Merge usn1=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) On Match Set (#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`3esn`?:usn1|:#usn8*..{usn1:.12e-12[999...12]}]->(#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]}).`7esn`? =12 Ends With $7 Ends With $#usn8 Union All Create `7esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}),({@usn5:$12 Contains $`7esn` Contains .0})<-[usn2 *..0xabc]->(:@usn5{`7esn`:7.0e-0[`6esn`..]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1}) Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``]|`4esn` Starts With $_usn3 Starts With .9e-12].@usn5!._usn4?.`1esn`?,All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where true In $0 In @usn5).`3esn` Remove [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where true Contains 0x0|$@usn6 Is Not Null Is Not Null].`8esn`,`2esn`:`3esn`,[`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1|`6esn`[..$@usn6][..$`1esn`]].`8esn`?;"), + octest:ct_string("Unwind .9e-12[_usn4..#usn8][9.1e-1..0.12] As #usn8 Union Unwind Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] As usn2 Merge ((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3));"), + octest:ct_string("Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]|$`2esn` Starts With .12e12 Starts With 3.9e-1]._usn3?._usn3!.`6esn`,[`2esn` In .9e-12[0e0...9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4].`6esn`?,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$123456789[$_usn3..][$usn2..]).`7esn` Create ((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Create `6esn`=((#usn7 :_usn3:_usn3)<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null});"), + octest:ct_string("Remove {`3esn`:1.9e0 Is Null Is Null,``:$usn2 Ends With `8esn` Ends With _usn3}.`3esn`?,({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})<-[``?:_usn3|`2esn` *0X0123456789ABCDEF..0{`5esn`:`4esn`[0.0..][.1e-1..]}]->(:@usn6:_usn4{`2esn`:$usn1[$7..][$0..]}).`8esn` Create (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),_usn3=((usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1})) Detach Delete 5.9e-12 =~$@usn6,10.12e12[..1.9e0][..Null] Union All Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12|$usn2[1e-1]).`5esn`,`5esn`(.9e-12[..$`7esn`][...9e-1],`` =~123456789).`4esn`!.usn1!;"), + octest:ct_string("Merge `5esn`=((({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))) On Match Set Extract(`` In $_usn3 Is Not Null Where $_usn3 In 123.654 In $`8esn`|$`8esn`[$usn2..]).`6esn`!.``! =_usn4 In `3esn` In 7.0e-0 On Create Set {`1esn`:$`1esn`[.9e0][$_usn3]}.`8esn`? =`1esn`[Count ( * )][5.9e-12],`8esn`+=123.654 Ends With Count(*) Return All(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[..Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`])] As `7esn` Order By _usn4 Is Not Null Is Not Null Asc,All(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Starts With Filter(_usn3 In ``[$``..] Where .0e0[1e1..][01234567..]) Starts With `3esn`(Distinct) Descending Union Remove Any(`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6).`4esn`,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0e-0 Contains _usn4 Contains 1e-1].`2esn`,\"d_str\".`2esn`.`8esn`! Merge (({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) On Match Set .9e-12.`3esn`?.`3esn`.`7esn`? =Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).usn2!,{_usn4:$#usn7 Is Not Null Is Not Null,`3esn`:9.1e-1 In #usn8}._usn4?,6.0e0.`8esn`;"), + octest:ct_string("Optional Match usn2=(`4esn` :`6esn`:`3esn`) Where 999 =~0Xa =~9e0 Return *,Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07) Order By usn2[Count ( * )..07] Descending Limit .12e12 Ends With #usn7 Ends With 2.9e1 Optional Match `3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Union All Merge usn2=({``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[_usn3:_usn4|`1esn`{`2esn`:123456789 In 9e-12 In false}]-(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]}) On Match Set Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12).`4esn`!.#usn8?.`1esn` =1.9e0 =~$`8esn` =~01234567,`1esn` =1000[$`6esn`..12.0]['s_str'..$`3esn`],@usn5 =9e0[$usn2][0] Create (`1esn` :`6esn`:`3esn`) Union All Delete {`8esn`:$`` Is Null Is Null}[Extract(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..])..][Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)])..],$`6esn`[..12e12][.._usn3],$_usn4 Starts With 0e-0 Starts With 1e-1 With `2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,1e1 In .1e-1 In .0 Order By 1000 Contains Null Contains 9e1 Desc,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null Descending,$`7esn`[..12.0][..0e0] Asc Limit 11.12e-12 Is Null Where 's_str' Ends With 0.0 Ends With .12e12 Match `5esn`=((`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]})-[:`6esn`|#usn7{usn1:$`2esn` Contains $1000,`7esn`:`7esn`[.1e1..][`8esn`..]}]-(#usn8 {`2esn`:usn2 Ends With .0})) Where 999 Starts With .9e12 Starts With 3.9e-1;"), + octest:ct_string("Merge (`` :#usn8{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}) Create ``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Return Distinct Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,07 =~_usn4 =~.9e12 As `` Order By 5.9e-12[9e0..] Ascending,#usn8[`2esn`] Desc,`7esn` Ends With 9e-1 Ends With usn1 Ascending Skip $#usn7 Starts With #usn7 Limit $123456789[$_usn3..][$usn2..];"), + octest:ct_string("Remove Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2|0e-0[...9e12]).@usn5? Union Merge `6esn`=(({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Create Set All(usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]).`2esn`? =0Xa[$usn2..],`3esn`:usn1,`1esn` =$``[`6esn`][00] Unwind [`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] In Any(`7esn` In .12e12[Count(*)..] Where 0Xa[9e0]) In [usn2 In .0e0[$`6esn`..] Where .12e12[`7esn`][#usn8]|7 Is Null Is Null] As @usn6 Delete $12[$12..],usn2 Ends With 10.12e12,1.9e0[$12][``] Union All With *,All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,`1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `1esn` Limit {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[..`8esn`(010[@usn5..123.654],8.1e1[usn2..$1000][$7..0x0])][..{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1}] Where 12e12 Is Not Null;"), + octest:ct_string("Remove (:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}).`3esn`?,Extract(usn2 In .0e0[$`6esn`..] Where usn2 Ends With .0)._usn4?.@usn5._usn3,{usn2:.9e-1 Is Not Null Is Not Null}.@usn6! Remove Any(`` In $`5esn` Starts With 0X7 Starts With 1e1).usn2?,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5[$``]].`6esn`!,Single(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12).`7esn`! Delete [usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},`7esn` Contains $7 Contains 07 Union Create #usn8=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})),`3esn`=(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set usn1+=9e0[..1e1] On Match Set usn1+=Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],@usn6+={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) Union Unwind [`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] In Any(`7esn` In .12e12[Count(*)..] Where 0Xa[9e0]) In [usn2 In .0e0[$`6esn`..] Where .12e12[`7esn`][#usn8]|7 Is Null Is Null] As @usn6;"), + octest:ct_string("Optional Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Optional Match ``=((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})-[{usn2:$`8esn`[#usn7][.9e1],`7esn`:@usn5[$``]}]->(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})) Where .9e-1 Is Null;"), + octest:ct_string("With Distinct {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} As _usn3,Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])[All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654])][None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])] As usn2 Skip $`6esn` Starts With `4esn` Limit None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]) Is Null Is Null Where Count ( * ) Ends With `6esn` Ends With .12e12 Merge (((_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})<-[`4esn`?:_usn3|`2esn` *0..010]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`}))) On Create Set `6esn` =.1e1 =~10.12e12;"), + octest:ct_string("Create (#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`) Match `3esn`=(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))),_usn4=((`6esn` :#usn7:_usn3)<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Optional Match `7esn`=((`7esn` {`3esn`:.9e-1 Is Null})<-[`2esn`? *..7]->(#usn8 {_usn3:$_usn4 Contains .12e-12})) Union Merge @usn5=(({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})-[:``|:`3esn` *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})) On Match Set #usn7 ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0} =~Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]),`8esn` =`5esn`(Distinct 123456789 Ends With 8.1e1,01234567[6.0e0][$usn2])[{@usn5:usn1 Is Not Null,usn2:0xabc[7.0e-0..][12e12..]}..][(_usn3 :_usn3:_usn3)<-[`6esn`?:``|:`3esn`]-(:@usn6:_usn4$`6esn`)<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})..] On Create Set [usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]].`4esn`?.usn2?.usn2! =[@usn6 In .9e12 Starts With #usn8 Starts With 00|9e12 Contains $@usn6 Contains Count(*)][(`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]})][Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null)],Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654).`4esn`? =Count ( * )[0e-0..01],#usn7+={usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])];"), + octest:ct_string("Delete 0.0[0x0..0.12]['s_str'..false];"), + octest:ct_string("Optional Match `7esn`=({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}),`2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Delete 0X7 Starts With 1e1 Starts With $12,$#usn7 Is Not Null Is Not Null,{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null;"), + octest:ct_string("Optional Match `7esn`=((`7esn` {`3esn`:.9e-1 Is Null})<-[`2esn`? *..7]->(#usn8 {_usn3:$_usn4 Contains .12e-12})) Merge (usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2}) Delete $usn1[$7..][$0..];"), + octest:ct_string("Detach Delete 2.9e1[...9e-12][..0] Unwind {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null As `5esn` Match `7esn`=((`8esn` {@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})),({usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) Union With 9e-12 In 5.9e-12 As ``,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0x0 Contains $`1esn` Contains 0.0) In None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0) As `5esn` Order By 1000 Starts With 11.12e-12 Starts With 01234567 Descending,07[..@usn6][..$`4esn`] Ascending Skip .9e1[...12e12] Where ``[..$#usn7] Unwind 3.9e-1 Is Null As `4esn` Merge `5esn`=(((_usn3 )-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3}))) On Match Set `8esn` =[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]).#usn7!.usn1?.usn1? =$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 9e0 =~9e1 =~.12e12|$@usn5 =~.12e-12).`2esn`?.`1esn`! =0e-0[...9e12] On Match Set `2esn` =(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)],`3esn` =9e1 Contains 4.9e12 Contains 123456789 Union Return `6esn`[..$``][..4.9e12] Unwind .12[.0e-0..] As `3esn` Merge ((`3esn` {#usn8:`7esn` Is Null})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})) On Create Set {`1esn`:$`1esn`[.9e0][$_usn3]}.`8esn`? =`1esn`[Count ( * )][5.9e-12],`8esn`+=123.654 Ends With Count(*);"), + octest:ct_string("Remove All(`` In $_usn3 Is Not Null Where $123456789 =~12 =~7).``! Merge usn1=((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})) Delete 9e12[.0e-0];"), + octest:ct_string("Return *,$0[$`7esn`..$`3esn`]['s_str'...0],usn1 Ends With 12 Order By $#usn7 Starts With #usn7 Descending,9e12[.0e-0] Descending,01[..01] Descending Limit (usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})-[`4esn`?:`6esn`|#usn7]->(`1esn` )[[`2esn` In .12e-12[$@usn6..5.9e-12]|$#usn7 Starts With 10.12e12]..] Union All Match ((:`7esn`)) Detach Delete $@usn5 =~.12e-12,Null Is Not Null,`1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] Unwind 12e12 =~#usn7 =~.9e-1 As #usn8 Union Delete 12.0[$1000..][123456789..] Return `1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `4esn`;"), + octest:ct_string("Merge `2esn`=((@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]})) Detach Delete $`1esn`[.9e0][$_usn3],`4esn` Starts With .0e0 Starts With usn2 Union All Remove (:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null}).`8esn`?,Extract(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null).usn2 Remove [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null].usn2?,Any(`8esn` In 01234567[..0.0][..false] Where $@usn5[$#usn8..][_usn3..]).`8esn`!,(:usn1{usn1:Count(*)[0.12..2.9e1]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]}).#usn8 Union Return *,true Is Null Limit `6esn`[010...9e-12];"), + octest:ct_string("Remove None(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999).`3esn`?.#usn7?.`1esn`,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']).`2esn`!,{`2esn`:$`8esn` In 9e-12 In 3.9e-1}.`6esn`? Remove All(`8esn` In 01234567[..0.0][..false] Where $@usn5[$#usn8..][_usn3..]).`8esn`!.`6esn`! Create _usn3=((usn2 {`4esn`:12e12 Is Not Null})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4})) Union With Distinct *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Skip `` =~123456789 Limit Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Where 12 In 1000 In \"d_str\" Delete 10.12e12 In `3esn` In $usn2 Match ((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2})) Union Create _usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})));"), + octest:ct_string("Unwind $@usn6 Is Not Null Is Not Null As `3esn` Create ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})),_usn3=((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Merge `1esn`=((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null On Create Set #usn7+=(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] Union All Merge (`8esn` {`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) On Match Set (`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8,_usn3+=Null[..07] On Match Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] Union All Return 9e12[7.0e-0] As #usn7 Skip Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Limit $usn2[4.9e12..false][.0e-0..00];"), + octest:ct_string("Create @usn6=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})) Remove {usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}._usn4! Remove `3esn`.`2esn`?,(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6? Union Merge (#usn7 :usn2)<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}) Merge #usn7=(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[?{#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0}]-({`6esn`:07 Ends With @usn6 Ends With _usn3}) On Match Set `4esn`+=$`2esn`[$1000][2.9e1],{usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}._usn3 =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1} On Match Set {@usn5:12e-12 Starts With .9e12 Starts With 0.12}.`1esn`? =`3esn`[$0..][.9e1..];"), + octest:ct_string("Create `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set usn1+=9e0[..1e1] On Match Set usn1+=Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],@usn6+={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) Create (:_usn3:_usn3{`5esn`:`2esn` Is Not Null Is Not Null,`7esn`:2.9e1})<-[`7esn`*..]-(`7esn` :usn1),(`1esn` :``:usn1{usn1:123.654 Ends With 0Xa Ends With .12e12})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``}) Union All With Distinct `8esn`[6.0e0..][$`1esn`..],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Unwind (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)] As `` Union Unwind 2.9e1[...9e-12][..0] As usn2 Return Distinct *,`4esn`(Distinct 01[..0.12],$`8esn` Is Null) Contains All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]),Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} As `3esn` Limit Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null;"), + octest:ct_string("Optional Match (((_usn3 :_usn3:_usn3)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})-[#usn7? *00..123456789]->(usn1 :@usn6:_usn4))),`2esn`=((`5esn` :`1esn`)) With `8esn`[Null...12e12][0..11.12e-12] Order By `4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Ends With None(`` In $_usn3 Is Not Null Where .9e1[...12e12]) Descending,2.9e1 Starts With 12e-12 Starts With 0.0 Asc,.1e-1 Starts With 1000 Starts With $`1esn` Descending Limit usn2[..7.0e-0] Union All Optional Match `3esn`=(@usn5 :`7esn`),((#usn8 {_usn3:$usn2 In usn1 In 1e-1})) Where usn2[..10.12e12][..$`7esn`];"), + octest:ct_string("Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Unwind {@usn6:\"d_str\" =~9e-12 =~`5esn`}[#usn8(Distinct 999 Starts With .9e12 Starts With 3.9e-1,true Contains 0x0)..[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010]][All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)..{`4esn`:0 Starts With 0Xa Starts With $0}] As `8esn` Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Where $`6esn` Starts With `4esn`;"), + octest:ct_string("Unwind `1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `2esn` Union All Return Distinct *,All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,`1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `1esn` Limit {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[..`8esn`(010[@usn5..123.654],8.1e1[usn2..$1000][$7..0x0])][..{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1}];"), + octest:ct_string("Create (`1esn` :`6esn`:`3esn`),(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Union All With Distinct $#usn7 Is Not Null Skip 12e-12 Contains .9e-1 Contains 9e-1 Unwind .12e12[Count(*)..] As `5esn`;"), + octest:ct_string("Create _usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))) Union All Remove Single(_usn3 In ``[$``..] Where Null[..07]).`5esn`?.`6esn`!,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0).`7esn`?._usn4;"), + octest:ct_string("Create (:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}),`6esn`=(#usn7 {`4esn`:7.0e-0 =~$12 =~5.9e-12,_usn4:8.1e1 Contains 0e-0 Contains $_usn3})-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[$0]->(`7esn` :`2esn`:`8esn`) With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Order By 12.0[.._usn4][..0X7] Descending,`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Ascending Skip 's_str' Ends With 0.0 Ends With .12e12 Union Optional Match usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),`2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Unwind All(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12) In All(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`]) In {usn1:`3esn` Ends With `6esn`} As usn2 Union Create (:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[`6esn`?:`4esn`|:@usn5{usn1:00,`1esn`:.0e0[1e1..][01234567..]}]->(`3esn` ),usn1=((:_usn3:_usn3{usn1:.9e1[12]}));"), + octest:ct_string("Remove Any(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).`2esn`!,({``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-(:`3esn`{_usn4:Count(*) =~`5esn` =~$usn2,`7esn`:$123456789[$_usn3..][$usn2..]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`).@usn6.@usn5? Return Distinct *,'s_str' =~.9e1 =~3.9e-1 As usn2,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `6esn` Order By `3esn` Starts With 's_str' Asc,8.1e1[$`5esn`][0e0] Descending,$usn2 Contains $`4esn` Contains true Ascending Limit [`4esn` In 01234567 Ends With $1000 Ends With $#usn7] In (#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]}) In {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]} Union Return Distinct *,1000[Null..] As `1esn`,.9e1[#usn7..] As `7esn` Order By #usn8[`2esn`] Asc,.9e0 Is Null Asc,$`1esn` Starts With Count(*) Starts With $`8esn` Descending Limit 0.0[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])..] Return *,Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),3.9e-1[.0e0..][07..] Order By 2.9e1 Starts With 12e-12 Starts With 0.0 Asc,.0e0 Starts With $@usn6 Starts With Null Descending Create (usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}),`3esn`=((@usn6 :`6esn`:`3esn`)<-[`1esn`? *0X0123456789ABCDEF..0{`4esn`:9e1 Ends With .9e0}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}));"), + octest:ct_string("With Distinct *,_usn3[`2esn`..][0x0..] As usn1,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,usn1() In Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) In (`7esn` :usn1)-[usn2:`4esn`|:@usn5 *01234567]->(_usn4 )-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]}) Desc,``[..$#usn7] Asc Limit 07 Ends With @usn6 Ends With _usn3 Create ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6) With Distinct (#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Is Not Null As _usn4,.9e12[$usn2..][7..] As `2esn` Skip All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Union Create `8esn`=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Union Return *,Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567)..],Single(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1)[Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-12 Is Not Null Is Not Null)][Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`])] Limit (`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :``:usn1{usn2:12.0[..123456789][..01]}) Contains {`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12} Contains {`7esn`:`3esn` Starts With _usn4} Detach Delete {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})];"), + octest:ct_string("Delete .12e12[$0],$#usn8[$1000..] Match (((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) Match (`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Union Optional Match #usn7=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union All With Distinct *,(`6esn` $@usn6)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]}) =~All(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~{``:7.0e-0 Is Null Is Null,@usn5:9e-12[$0][$`4esn`]} As usn2 Where $_usn4 Is Not Null;"), + octest:ct_string("Merge (`5esn` :`5esn`) On Create Set _usn3 =5.9e-12 Contains `3esn` Contains Null Unwind Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3) Starts With `2esn`(Distinct) Starts With (`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}) As `6esn` Create `5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})),(`1esn` :``:usn1{_usn4:.1e1 Is Null Is Null})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}) Union Create (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[{#usn8:.0e0[1e1..][01234567..],`6esn`:123.654 Ends With 0Xa Ends With .12e12}]-(:`5esn`{`4esn`:0e-0 In $1000 In .9e1});"), + octest:ct_string("Unwind 0e0 In 1e1 In 8.1e1 As #usn8 Optional Match `3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where .12e-12[$@usn6..5.9e-12];"), + octest:ct_string("Create `3esn`=((@usn6 :`6esn`:`3esn`)<-[`1esn`? *0X0123456789ABCDEF..0{`4esn`:9e1 Ends With .9e0}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})),({usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) Unwind 5.9e-12[`1esn`][usn2] As #usn8;"), + octest:ct_string("Optional Match (`` :`3esn`)-[@usn6:#usn7|:`8esn` *0Xa..7]-(:`2esn`:`8esn`{`6esn`:7.0e-0 Is Null Is Null,`6esn`:999[0.12..8.1e1]})<-[`8esn` *1000]->(#usn8 ),`1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) Where 0Xa In 0.12 In $#usn7 Remove {#usn8:_usn4 Ends With .0 Ends With 7,`6esn`:0X7 Starts With 1e1 Starts With $12}.@usn5!,Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`).`6esn` Return *,`3esn` Contains 01234567 Contains .9e-12 Skip Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]) In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )] In `8esn`(Distinct $_usn3 Contains 1e1 Contains .12) Limit $1000 Union Merge ((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) On Create Set #usn7+=$#usn7 Starts With #usn7,_usn3 =`5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]],`8esn` =07 Ends With @usn6 Ends With _usn3 On Match Set #usn7+=10.12e12[Count(*)..],#usn8 =@usn6[.9e12..0e0] Optional Match @usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),`3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})) Union All Detach Delete {#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}[{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}..] Merge #usn7=((:`4esn`:`7esn`{`7esn`:9e-12 In usn2,usn2:0x0[`5esn`][$`5esn`]})) On Create Set _usn4+=\"d_str\"[$123456789..][0X7..],[`8esn` In 12.0 Contains $_usn4 Contains $usn2].`1esn`? =None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567) Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1) Starts With (:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Create Set _usn3:#usn7:_usn3 Optional Match usn1=(:`3esn`{_usn4:7.0e-0 =~$12 =~5.9e-12}) Where $12 Contains $`7esn` Contains .0;"), + octest:ct_string("Detach Delete .1e1[.0e0..],12 In Count(*) In 0e0 Create ((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1))),_usn4=((_usn3 {`5esn`:`8esn` =~.1e1 =~.0}));"), + octest:ct_string("With usn2 =~$`7esn` =~$`8esn` As _usn3 Order By $7 In .9e1 In $`` Desc,$`6esn` Starts With `4esn` Descending,8.1e1 Starts With .9e12 Starts With `7esn` Desc Skip Extract(_usn4 In Count(*)[9e1..][12e-12..] Where $_usn4[..usn2]|`1esn` Starts With 999 Starts With 3.9e-1) =~(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}) =~Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]) Limit [`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]|.1e-1 Ends With $`8esn` Ends With .9e0] Starts With {#usn7:1e-1[..2.9e1],`1esn`:.9e1[#usn7..]} Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Where 0X7[$999...12e12][12..`2esn`];"), + octest:ct_string("Return 07[.0e0][3.9e-1] As #usn8,0X7 As _usn4 Order By #usn8 In $@usn6 Ascending Union All Merge `4esn`=(`6esn` :usn1) On Create Set `8esn` =010[..@usn5][.._usn4],[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null].usn1?.``? ={`1esn`:07 Ends With @usn6 Ends With _usn3} =~Any(`7esn` In .12e12[Count(*)..] Where 01 Ends With \"d_str\") On Create Set `5esn`(Distinct $`2esn`[8.1e1],Count ( * ) Is Null Is Null).`7esn`!.`8esn`? =$``[7..] Return Distinct *,Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07) Order By usn2[Count ( * )..07] Descending Limit .12e12 Ends With #usn7 Ends With 2.9e1 Unwind $usn1[$12..] As ``;"), + octest:ct_string("With *,.9e0 Starts With @usn6 Where #usn7[5.9e-12][00] Merge usn1=(`` {_usn4:9e0[..1e1]})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}) On Create Set `5esn`(Distinct $`2esn`[8.1e1],Count ( * ) Is Null Is Null).`7esn`!.`8esn`? =$``[7..];"), + octest:ct_string("Unwind $`6esn` Ends With 12 As @usn6 Delete 01[7][`1esn`],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|$@usn5 In .9e1 In $``) Contains (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null}),07[$`1esn`..$999] Merge `7esn`=((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)) On Match Set Filter(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).``.`8esn` =Count ( * )[..`8esn`],usn1 =123456789 Contains .1e-1 Contains .12e12,`8esn`+=`7esn` Ends With _usn4 On Match Set `6esn` ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])],All(`5esn` In 12[0xabc..][$0..] Where _usn3 Ends With 01 Ends With .1e-1).`6esn`? =12.0[..Count(*)][..5.9e-12] Union All Create `7esn`=((:_usn4{#usn7:.0e0[1e1..][01234567..],@usn5:`2esn` Is Not Null Is Not Null})-[? *0X0123456789ABCDEF..0]-({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})),`8esn`=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2})) Create `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),((_usn3 {`5esn`:`8esn` =~.1e1 =~.0}));"), + octest:ct_string("With Distinct $``[7..] As #usn8 Order By All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Desc,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] Ascending,.9e0 In 9.1e-1 In $123456789 Desc Where $`1esn`[`3esn`..] With Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]) As #usn7,Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]) As usn2 Where #usn7[..0X0123456789ABCDEF] Union All With Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]) As #usn7,$@usn5[..1e-1] As @usn5 Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,12e12[..2.9e1][...12e12] Asc Skip $_usn4 Is Not Null Where `4esn`[$1000..$``][$_usn4..$_usn4];"), + octest:ct_string("Unwind `7esn`[.1e1..][`8esn`..] As `3esn` With Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],`2esn` Is Not Null Is Not Null Skip $123456789 Starts With Count ( * ) Limit Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..] Create @usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))),(({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)) Union Merge (`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6) On Match Set count(@usn6[..$`3esn`][..4.9e12]).`1esn`! =(`1esn` :`3esn`)-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}) In Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) In {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]} On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] Union All Merge (((`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0))) On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`3esn`? =0.12[3.9e-1],_usn4 =Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],[`` In $_usn3 Is Not Null Where 12 =~$@usn5|$`2esn` In 0X7 In 3.9e-1].`8esn`.`5esn`? =12e-12[9e0..1.9e0] With Distinct *,$`2esn`[$1000..][$@usn5..] As #usn8 Order By .9e0 Is Null Asc,0 Is Not Null Desc Skip #usn7[5.9e-12][00] Where 12e12[..$`8esn`][...0e-0];"), + octest:ct_string("With *,`` Is Not Null Is Not Null As usn1 Limit Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Where $1000[..01234567][..0X0123456789ABCDEF] Unwind 1.9e0 =~0x0 As @usn5 Union Return `1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `4esn` Unwind $usn1[$12..] As `7esn` Merge ((:`2esn`:`8esn`{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3}));"), + octest:ct_string("Remove `8esn`:`1esn` Detach Delete ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]),`2esn` Starts With 12 Starts With 10.12e12,.12e-12[07] Union Unwind .0[01234567][$#usn8] As `2esn` Merge `6esn`=(({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Create Set All(usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]).`2esn`? =0Xa[$usn2..],`3esn`:usn1,`1esn` =$``[`6esn`][00];"), + octest:ct_string("Merge (`6esn` :`8esn`:#usn7{`4esn`:00 Is Not Null Is Not Null,`4esn`:7 =~$`5esn`}) On Match Set `8esn`+=0x0 Starts With 01234567 On Match Set #usn8 =[`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7),`8esn`+=$999 =~`6esn`,@usn5 =Extract(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..]|.9e12[..$usn1][..10.12e12]) Starts With Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]) Union All Remove Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]).usn2.@usn5!;"), + octest:ct_string("Remove [`2esn` In .9e-12[0e0...9e-1]|$1000[$1000...9e0]].`1esn`._usn3!,{@usn5:`2esn` =~usn1,#usn8:$`` Is Not Null Is Not Null}.@usn5!,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0 Starts With 0Xa Starts With $0].`7esn`! Return Distinct 10.12e12[12e12..0X7],false Starts With 3.9e-1,$`4esn` In 123456789 In `5esn` As @usn5 Skip 123456789[Count(*)] Union Detach Delete {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})] Union Delete 9e12[.0e-0] Merge #usn7=((`7esn` {`3esn`:.9e-1 Is Null})<-[`2esn`? *..7]->(#usn8 {_usn3:$_usn4 Contains .12e-12})) On Create Set #usn7:usn2,({usn1:usn2 Ends With 10.12e12})<-[`8esn` *1000]->(#usn8 ).usn2! =$`` In `2esn` In 07,`5esn` =`8esn`[6.0e0..][$`1esn`..] On Create Set #usn7 =_usn4 In `3esn` In 7.0e-0,[_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8].`5esn`! ={_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12),usn1 =({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null};"), + octest:ct_string("Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}));"), + octest:ct_string("Merge ((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Remove @usn5(Distinct Null =~true =~.1e-1,12e12[..123456789][..false])._usn4!,All(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]).`4esn`? Merge (@usn6 :_usn4);"), + octest:ct_string("Merge ((`7esn` :usn1$`6esn`)-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(`7esn` :`2esn`:`8esn`)-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1)) Union All Create (:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[`6esn`?:`4esn`|:@usn5{usn1:00,`1esn`:.0e0[1e1..][01234567..]}]->(`3esn` ),`1esn`=((:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[usn1 *12..0Xa]->({`5esn`:07 Starts With usn1 Starts With 010})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})) With Distinct 9e12 Starts With `4esn` Starts With .9e-1 As @usn6 Order By {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} Ascending,01 Ends With \"d_str\" Asc,1000 Is Null Is Null Ascending Limit 0e0 Starts With $1000 Starts With `2esn`;"), + octest:ct_string("Create `8esn`=(({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),usn1=((@usn5 :usn1{usn1:.9e1[12]})) Delete Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null)[#usn7(`4esn`[0.0..][.1e-1..])..@usn6(_usn4 Is Not Null Is Not Null)],[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12]][None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null)..[`5esn` In 12[0xabc..][$0..] Where .12e12[$12..4.9e12][11.12e-12..9e12]]] Remove .12e-12.`2esn`;"), + octest:ct_string("Merge (:#usn8{_usn4:$999 Ends With .9e-12})<-[?{_usn4:$#usn7 Is Not Null Is Not Null,`3esn`:9.1e-1 In #usn8}]->(#usn8 {_usn3:$usn2 In usn1 In 1e-1}) On Match Set (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]->(:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}).`3esn`!.#usn7._usn3! =`5esn`[$`4esn`] On Create Set usn1+=9e0[..1e1] Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]|Count(*) Starts With $_usn4).`8esn`! Merge (((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Union Unwind `7esn` Ends With _usn4 As _usn3 Return Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] As `5esn` Order By 0 Starts With 0Xa Starts With $0 Ascending,$`2esn`[$usn1..] Asc,Count(*) Starts With $_usn4 Descending Limit All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..];"), + octest:ct_string("Merge ``=((#usn8 {_usn3:$_usn4 Contains .12e-12})) On Create Set #usn8 =usn2 Ends With 10.12e12 Union All Return 12e12 =~#usn7 =~.9e-1,All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null As @usn6 Skip 01 Contains 12.0 Remove .12e-12.`2esn` Create usn1=((_usn4 :`5esn`)-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]}));"), + octest:ct_string("Create _usn3=(((:``:usn1{_usn3:00[$`6esn`]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :``:usn1{usn2:12.0[..123456789][..01]})<-[`7esn`:`8esn`|:`2esn`]-(:``:usn1{_usn3:00[$`6esn`]}))) With *,$`5esn`[true],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Skip $`1esn` =~0.0 Where 07[.0e0][3.9e-1] With Distinct All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,usn2[..7.0e-0] As `1esn` Order By $_usn3 Contains 1e1 Contains .12 Ascending,.0e0 Is Null Is Null Descending,.0e0 Starts With $@usn6 Starts With Null Descending Limit 's_str' Ends With 0.0 Ends With .12e12;"), + octest:ct_string("Match (`5esn` :`7esn`{`7esn`:$_usn3[.1e1..][$`1esn`..],`5esn`:.12e-12 =~9e12 =~1e-1})<-[#usn8{`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5}]->(:_usn4{_usn3:010 Starts With 0.0 Starts With .0e0}) Where 12e12 Starts With 4.9e12 Starts With 0e0 Union Return Distinct Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` Is Null Is Null) Is Not Null Is Not Null As usn1,123.654 Is Not Null Is Not Null As `1esn`,0X0123456789ABCDEF Contains 8.1e1 As @usn5 Limit _usn4[7][8.1e1] Remove {usn2:$usn1[$12..]}._usn3,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0).@usn5! Optional Match #usn8=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`3esn`=({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})<-[?{_usn3:00[$`6esn`]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}) Where .9e1[12] Union Unwind .1e-1 Contains 1e1 Contains $`6esn` As @usn6;"), + octest:ct_string("Merge #usn8=(((_usn4 :`2esn`:`8esn`)-[ *07..{#usn8:`1esn`[1000][Null]}]-(usn1 :`2esn`:`8esn`)<-[?:`4esn`|:@usn5]-(`4esn` :`3esn`))) Return Distinct *,Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn` Order By _usn3[`2esn`..10.12e12][9e1..true] Descending Limit `6esn`[0x0..@usn5][$1000...9e-12] Union All Unwind All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0)[..[@usn6 In 00 =~.9e-12 =~usn1 Where 0.0[$1000][3.9e-1]|$usn2 =~$`2esn` =~\"d_str\"]] As `6esn` Merge ({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) On Create Set #usn7 =Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Null Is Null,`4esn`+=$_usn4 =~$_usn4 =~2.9e1 Union Delete {#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0} Is Null Is Null,`3esn` In 0X7 Return *,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] As `7esn` Skip Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12) In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null|.12e12[$12..4.9e12][11.12e-12..9e12]) In {`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``} Match ``=((@usn6 :`5esn`{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *0x0..{`3esn`:12[0xabc..][$0..],@usn5:`6esn` Is Not Null Is Not Null}]->({#usn8:7.0e-0[3.9e-1..`1esn`],usn1:.0e0[..1e1][..$1000]})-[:`4esn`|:@usn5 *01234567$_usn4]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})),(((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})));"), + octest:ct_string("With Distinct $`` In $@usn6 In 3.9e-1 As usn1 Order By (:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] Desc,[`2esn` In .12e-12[$@usn6..5.9e-12] Where $`6esn` Starts With `4esn`|@usn6 In 's_str'] Ends With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Asc,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]) Descending Skip Null[..123456789][..`8esn`] Where $`8esn`[$``..$`1esn`][9e-12..$7] With Distinct *,Count(*)[..Count(*)][..9e0] Order By 07 Starts With usn1 Starts With 010 Ascending,7.0e-0[..$`7esn`][..Null] Descending,$usn2[8.1e1...9e-1][.1e-1..11.12e-12] Desc Skip Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] Limit 999 Ends With $123456789 Ends With $_usn4 Where 10.12e12[Count(*)..] Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By $7 In .9e1 In $`` Desc,$`6esn` Starts With `4esn` Descending,8.1e1 Starts With .9e12 Starts With `7esn` Desc Skip 12.0 Is Null Is Null Union Optional Match (({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) Union Optional Match `2esn`=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))),((`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010})) Where `` Contains 12.0;"), + octest:ct_string("With Distinct *,.9e1 Starts With `4esn` As `5esn`,Count ( * )[`7esn`..] Order By $``[`4esn`..][0.0..] Desc,07 =~7.0e-0 =~`8esn` Descending Skip .9e-12[01][Count(*)] Where 1e-1 =~0.0 =~9.1e-1 Merge (`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6) On Match Set count(@usn6[..$`3esn`][..4.9e12]).`1esn`! =(`1esn` :`3esn`)-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}) In Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) In {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]} On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)];"), + octest:ct_string("Remove Filter(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`]).`8esn`.@usn5! Union All Optional Match (`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]}),(#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`}) Where $`3esn` In 's_str' In $#usn7;"), + octest:ct_string("Remove Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..]).`1esn`.`8esn`?.`2esn`!,@usn5(Distinct 1e-1[..$@usn5][..0xabc]).`3esn`!,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12e12 Starts With 4.9e12 Starts With 0e0).@usn6!.`8esn`? Remove {#usn7:11.12e-12 Contains 9e-12}.#usn8,(_usn4 :@usn5)<-[@usn5?:@usn5 *..01]-(`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}).`5esn`._usn3.#usn7? With Distinct count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0])[_usn3(8.1e1[usn2..$1000][$7..0x0],false[..12e-12][...9e1])..] As @usn6,.0e-0[0e0..00][.9e1..12] As `1esn`,Count ( * ) Starts With 10.12e12 Starts With `` As `5esn` Union All Merge (_usn4 :``:usn1) On Create Set All(`8esn` In 01234567[..0.0][..false] Where 12e-12 Contains .9e-1 Contains 9e-1).usn1.`8esn`!.@usn5 =.9e1[12],Single(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1])._usn3.`2esn` =.9e1[12],{usn2:false Starts With 3.9e-1}.#usn8?.``.`8esn`? =$0[9e1] Union Optional Match ((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})),`5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Where .9e-12 Is Not Null Is Not Null;"), + octest:ct_string("Return Distinct $usn1 Is Null As `5esn`,123.654 Starts With Count ( * ) As `4esn` Skip .9e-1 Ends With `8esn` Create ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),`1esn`=(((`5esn` :#usn7:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(usn2 {@usn5:$usn2 Ends With `8esn` Ends With _usn3,@usn6:`7esn` Is Not Null})));"), + octest:ct_string("Create (:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[`6esn`?:`4esn`|:@usn5{usn1:00,`1esn`:.0e0[1e1..][01234567..]}]->(`3esn` ),usn1=((:_usn3:_usn3{usn1:.9e1[12]}));"), + octest:ct_string("Return Distinct Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12])[..None(_usn3 In ``[$``..] Where Null[`2esn`..])][..{`3esn`:.0e-0 Starts With $#usn7 Starts With _usn3,usn2:`6esn` In 9e-12}] As #usn7,Null[...9e1],Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] As `5esn` Order By 999 Ends With $123456789 Ends With $_usn4 Descending;"), + octest:ct_string("Unwind {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null As `5esn` Union Create (`1esn` :`5esn`)-[:#usn8|:`4esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}]-(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}),_usn4=(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}) With Distinct *,.0e-0[0e0..00][.9e1..12] Order By 4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Ascending Skip 0x0 Starts With $`5esn` Starts With 9e-12 Detach Delete #usn7 Ends With Count ( * ) Ends With @usn6,Extract(usn2 In .0e0[$`6esn`..] Where 010|0e-0 Contains _usn4 Contains 1e-1)[{#usn7:_usn4 Ends With .0 Ends With 7,#usn8:`` Ends With .9e-1 Ends With 9e-12}],`5esn` Contains 1.9e0 Contains 9e0 Union With *,{`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As #usn7,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Limit [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]][{`2esn`:$`8esn` In 9e-12 In 3.9e-1}..{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}][Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..])..Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Merge (((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))) On Create Set `7esn` =$`7esn` Is Null Is Null,Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1]|12 Contains usn2 Contains $usn2).usn2? =`1esn` Ends With 7.0e-0 Ends With $usn1,None(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12)._usn4 =.1e-1[@usn6..];"), + octest:ct_string("Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) Union All Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] Ascending,1e-1[..$`6esn`] Ascending Skip (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Remove {usn2:`3esn` In 0X7,usn2:7 Is Null Is Null}.`4esn`.@usn6!,{@usn6:.9e-12[..$`7esn`][...9e-1]}.usn2 Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1;"), + octest:ct_string("Merge `8esn`=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) On Create Set ``:_usn4 On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null Remove (:@usn6:_usn4$`6esn`)<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)<-[`7esn`?]-({usn2:#usn7[10.12e12..][\"d_str\"..]}).`6esn`!.`3esn`.`1esn`!,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0 Starts With 0Xa Starts With $0|#usn8 =~.9e-12 =~$usn1].`4esn`,{#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}.`7esn` Match ((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`2esn`=((`7esn` :usn1)<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3)) Union Detach Delete .9e-12[12e12][.0e0],'s_str' Is Null,$`2esn` Ends With $`8esn` Union Remove All(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1).usn1!.`7esn`.`2esn`!,Filter(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8).@usn5?,(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})._usn3.@usn6!.@usn5 Match _usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))) Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As `8esn`;"), + octest:ct_string("Merge (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[@usn5?:usn1|:#usn8 *01234567{`1esn`:7.0e-0[3.9e-1..`1esn`]}]-(`4esn` :`3esn`)<-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2}) On Match Set _usn4+=10.12e12 Starts With $_usn3 Starts With 1000 Remove [`2esn` In .12e-12[$@usn6..5.9e-12] Where 1000[..0e0][..$`6esn`]|Count(*)[12..][0X0123456789ABCDEF..]].@usn6!,`8esn`:_usn3:_usn3 Union All Detach Delete None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),`2esn`(Distinct) Starts With Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]) Starts With (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0});"), + octest:ct_string("Delete $usn2 Contains $`4esn` Contains true,11.12e-12 Contains 9e-12 Detach Delete .12e12 Ends With #usn7 Ends With 2.9e1,Extract(`7esn` In .12e12[Count(*)..] Where true Starts With 2.9e1 Starts With 9e1|12[0xabc..][$0..]) Starts With Extract(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12|0.12[3.9e-1]) Starts With ``(12e12[true..][$`2esn`..]),Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * ))[{`4esn`:12e-12 Starts With .9e12 Starts With 0.12}..(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})] Create #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}),`8esn`=(`` :`7esn`{`3esn`:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7],@usn6:01[..0.12]}) Union Merge #usn8=(`6esn` :``:usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[_usn4:`6esn`|#usn7]-(`8esn` $12) On Match Set _usn4:#usn7:_usn3,Extract(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0|`6esn` In 9e-12)._usn4? =0Xa Ends With #usn8 Ends With usn2;"), + octest:ct_string("With Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) As `1esn`,0[..$@usn5] As `` Order By Extract(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]|$`5esn` Ends With 9e-1 Ends With $#usn8)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\")..[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0X7[Count(*)][.9e0]|$`8esn`[$``..$`1esn`][9e-12..$7]]][{usn1:`6esn` Is Not Null}..``(.9e-1 =~.9e-1,$_usn4 Starts With 0e-0 Starts With 1e-1)] Descending,12.0[..123456789][..01] Ascending,(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[`7esn`?]->(`5esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(#usn8 {_usn3:$_usn4 Contains .12e-12}) Ends With `4esn`($usn2 In usn1 In 1e-1,01[Count(*)..0e-0][7..$`2esn`]) Desc Limit Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null Where 5.9e-12 Contains $`` Contains $`5esn` Create (@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})) Union All Merge (#usn8 {`2esn`:usn2 Ends With .0})<-[#usn8? *0x0..]-(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})-[:`6esn`|#usn7{usn1:$`2esn` Contains $1000,`7esn`:`7esn`[.1e1..][`8esn`..]}]-(#usn8 {`2esn`:usn2 Ends With .0}) On Match Set `` =_usn3(Distinct $_usn4 Is Not Null,9e1 Ends With 123456789)[{`8esn`:$`` Is Null Is Null}] On Create Set usn1+=$`3esn` In 's_str' In $#usn7 Return Distinct All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7);"), + octest:ct_string("Merge `1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) On Create Set `6esn` =Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,_usn4+=8.1e1 Starts With .9e12 Starts With `7esn`,All(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null).usn1! =$`6esn`[.9e1..][`5esn`..] Merge (`2esn` :`6esn`:`3esn`)-[`5esn`:usn2|:``]->(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}) Create (usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]-(:_usn4{_usn3:010 Starts With 0.0 Starts With .0e0})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}) Union Detach Delete $`8esn` In .1e1 In 010 Union Merge #usn8=((usn2 {`4esn`:12e12 Is Not Null})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4})) On Match Set #usn7:usn2,({usn1:usn2 Ends With 10.12e12})<-[`8esn` *1000]->(#usn8 ).usn2! =$`` In `2esn` In 07,`5esn` =`8esn`[6.0e0..][$`1esn`..];"), + octest:ct_string("Detach Delete 0x0[#usn8...1e-1]['s_str'..$`6esn`] Create ({`4esn`:7 Is Null Is Null})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}) Detach Delete $@usn5 =~.12e-12,1e1[Null..][.12..],(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Starts With `7esn`(Distinct $`5esn` Is Null Is Null,$`4esn` Ends With 0e-0) Starts With Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 5.9e-12 Ends With 1e1 Ends With false) Union All Unwind Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7)[{usn2:`8esn` Is Null}..[@usn6 In .9e12 Starts With #usn8 Starts With 00]][(:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null})..{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}] As `1esn` Union All Optional Match _usn3=((@usn6 {`8esn`:1.9e0 Is Null Is Null})) With {`6esn`:.1e-1[..12e12]} As @usn5,Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]) In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $`6esn`[$_usn4][01]) As _usn3,$12[$12..] As `4esn` Skip 07 Ends With 0X7 Ends With 's_str' With _usn4(0[true..$7]) =~Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`) =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0) As _usn3,Null Is Not Null Is Not Null;"), + octest:ct_string("Detach Delete `3esn`[.12e-12..],Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Union All Merge ``=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}) Union All Delete _usn3 Starts With `2esn`,9e-1[0X0123456789ABCDEF][0],Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0[..$@usn5]|`1esn`[9.1e-1]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where Count(*) Ends With `3esn` Ends With `7esn`] =~Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null) Create `1esn`=((({``:_usn3[$_usn3][usn1]})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(#usn8 {_usn3:$usn2 In usn1 In 1e-1})<-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(_usn3 :#usn8)));"), + octest:ct_string("Match (:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Remove {usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}.`8esn`! Union Return Distinct *,$`3esn` Is Null Is Null,`3esn` Starts With _usn4 As @usn5 Skip $`5esn` In `5esn` Limit $0 Contains .12e-12 Union All Unwind _usn4 Ends With .0 Ends With 7 As `7esn`;"), + octest:ct_string("With *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5 Is Null Union Match `3esn`=(({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[``?:``|:`3esn` *01234567]->(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})),((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) Merge ((`` )<-[?]->(_usn4 :@usn5)) On Create Set @usn6 =123.654 Ends With 0Xa Ends With .12e12,`` =.0e-0 Starts With $#usn7 Starts With _usn3 Remove [`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12].`2esn`?.@usn6!,(:#usn8)<-[`3esn`?:`2esn`|`7esn`*..]-(usn2 :`1esn`{@usn5:Count(*)[.0e0]})<-[_usn4?:`4esn`|:@usn5 *1000]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})._usn4,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null).`2esn`! Union Detach Delete Count(*)[9e-12..0Xa][$123456789..0.0];"), + octest:ct_string("Return Distinct *,$`` Is Not Null Is Not Null As `5esn`,7.0e-0 Is Null Is Null As `4esn` Order By 123456789[Count ( * )..] Desc,``(Distinct `4esn`[$1000..$``][$_usn4..$_usn4],.1e-1 Starts With 1000 Starts With $`1esn`) In [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|`4esn` Starts With $_usn3 Starts With .9e-12] In {`6esn`:``[$``..]} Desc,[usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc Union All Detach Delete {`3esn`:`1esn`[9.1e-1]} Ends With {`2esn`:7.0e-0[3.9e-1..`1esn`],`7esn`:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]} Ends With None(`5esn` In 12[0xabc..][$0..] Where 1e1 Starts With `8esn` Starts With .9e0);"), + octest:ct_string("With Distinct 010[11.12e-12..],Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) As `2esn`,.9e1[#usn7..] Where $12[`1esn`..] Return Distinct *,9e1 Contains 4.9e12 Contains 123456789 Skip 00 Is Not Null Limit $`8esn`[12.0..][4.9e12..] Detach Delete _usn4 Ends With .0 Ends With 7,All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7])[..Extract(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..])];"), + octest:ct_string("Return $`6esn`[..12e12][.._usn3] As `5esn`,($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]) As _usn4 Unwind .12[.0e-0..] As `3esn` Union All With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Order By 12.0[.._usn4][..0X7] Descending,`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Ascending Skip 's_str' Ends With 0.0 Ends With .12e12 With *,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2 Order By .1e-1 Contains 1e1 Contains $`6esn` Asc,(_usn4 {`3esn`:1.9e0 Ends With 0Xa Ends With $12,@usn5:.9e12 Is Not Null Is Not Null})<-[`2esn`{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-(`3esn` {`7esn`:9.1e-1 =~@usn5 =~Count ( * )})<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) In None(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]) In `7esn`(12 Ends With $7 Ends With $#usn8) Desc Skip \"d_str\" =~`5esn` =~.12e-12 Limit .9e12[..$usn1][..10.12e12] Where $`6esn`[$_usn4][01] Unwind .9e1 Contains Null As _usn3;"), + octest:ct_string("Return Distinct *,5.9e-12[`1esn`][usn2],9e12[1e1..010] Skip 9e12[1e1...9e-12] Limit $`1esn`[`3esn`..] Unwind 5.9e-12[$`4esn`] As usn1 Merge usn1=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})) On Match Set `4esn` =$`` =~$_usn3,`7esn` =\"d_str\" Ends With `5esn` Ends With 7 Union All Return Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null As `6esn`,`` Contains 12.0 As usn1,.1e-1 Ends With $_usn3 As @usn6 Order By $@usn6 =~$`2esn` =~9e1 Ascending,0Xa[9e0] Desc Limit .0e0[$`1esn`][.9e-12] Delete $usn1[$7..][$0..] Union Remove Filter(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])._usn4?,Single(@usn6 In 00 =~.9e-12 =~usn1 Where 0x0 Contains $`1esn` Contains 0.0).`4esn`,@usn5:`4esn`:`7esn` Detach Delete false Is Not Null Is Not Null,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]),0e0[`3esn`..][.9e-1..];"), + octest:ct_string("Return Distinct *,9e1 Contains 4.9e12 Contains 123456789 As _usn4,01[..0Xa] Skip Count ( * )[12e12][$_usn4] Limit 999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] Create `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Create `7esn`=(`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Union With $`` In $7 In 9e-1,$@usn5[$#usn8..][_usn3..] As `8esn`,0xabc[7.0e-0..][12e12..] Limit Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 07[.0e0][3.9e-1]) Contains Extract(`` In $_usn3 Is Not Null) Return *,#usn8 In $#usn8 In \"d_str\",`` Is Not Null Is Not Null Order By `3esn`[`4esn`..Null][$usn1..`5esn`] Desc,`5esn` Contains `6esn` Asc,9e-12 In 5.9e-12 Asc Limit .1e1 Starts With 9e0 Union All Delete Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]),.9e1[Count(*)..$`3esn`] Return `5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]],Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null As usn2 Order By $@usn5[`8esn`..$#usn7] Asc Skip {`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])];"), + octest:ct_string("Unwind .12e-12[999...12] As `2esn` Detach Delete Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})],$`1esn` =~0.0,8.1e1 Is Not Null Union Unwind `5esn` Contains 1.9e0 Contains 9e0 As #usn7 Create ``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]}));"), + octest:ct_string("Optional Match (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[:usn1|:#usn8]-(:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`}) Where 123456789 Contains .1e-1 Contains .12e12 Remove ``:`3esn`;"), + octest:ct_string("With Distinct {usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0xabc In 10.12e12)..][0X7..],.9e1 Starts With `4esn` As `5esn` Order By [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) Descending,0e0[.12..][3.9e-1..] Asc Limit [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12] Ends With (usn1 {`6esn`:$`5esn`[true],usn2:1e1 Is Not Null Is Not Null})-[?:`4esn`|:@usn5 *..0xabc]-(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(usn2 {_usn4:$999 Ends With .9e-12}) Where 0e0[..'s_str'];"), + octest:ct_string("Optional Match ``=((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})),(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}) Where 0[true..$7] Delete \"d_str\" Contains 4.9e12 Contains 7.0e-0,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])];"), + octest:ct_string("Detach Delete 1e1[3.9e-1][.9e-1],$@usn6 Is Not Null Is Not Null,true[9e-12...0e-0][`5esn`.._usn4];"), + octest:ct_string("Delete {_usn4:1.9e0 =~$`8esn` =~01234567}[All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)],Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Unwind {@usn5:.0 Is Null Is Null}[Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0|01 Ends With \"d_str\")][[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|0X0123456789ABCDEF[1.9e0]]] As _usn3 Merge usn1=(`5esn` :`1esn`) Union All Create @usn6=((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`6esn`:`6esn`|#usn7*]->(`3esn` {_usn4:$`2esn` Starts With 0x0})-[#usn8 *010..{@usn5:6.0e0 Is Not Null}]->(@usn5 :`7esn`)) With Distinct 11.12e-12 =~{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]} =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|0[..$@usn5]),$123456789 Is Not Null,1000 Starts With 11.12e-12 Starts With 01234567 Skip 12 In 1000 In \"d_str\" Limit All(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])[..(:_usn4{`4esn`:9e1 Contains 4.9e12 Contains .9e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})][..(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)<-[?{_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})] Where 12.0 Contains $_usn4 Contains $usn2 Merge (((`4esn` {_usn3:@usn6 In 3.9e-1 In 9e-12})<-[`6esn`? *123456789..0x0]-(`7esn` :`8esn`:#usn7{`4esn`:`8esn` =~.1e1 =~.0})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`6esn` {_usn3:$_usn4 Contains .12e-12}))) On Match Set `4esn`+=$`2esn`[$1000][2.9e1],{usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}._usn3 =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1} On Create Set ``+=$`8esn` In .1e1 In 010,Single(`8esn` In 01234567[..0.0][..false] Where .9e12 =~`5esn` =~07).@usn5! =9e-1 Starts With 123.654 Starts With .9e1 Union Remove [#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1].`6esn`._usn4?._usn4!,{`3esn`:#usn8[..#usn7][..@usn6]}.#usn8? Create ((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),(((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]})));"), + octest:ct_string("Remove (:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})-[#usn8?*..]->(`` :#usn8{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})<-[usn2:`8esn`|:`2esn`]->(usn2 :`8esn`:#usn7).#usn8?,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]].#usn7 Match (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`));"), + octest:ct_string("Create @usn5=((usn1 )-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})),(`8esn` {`3esn`:#usn8[`2esn`]}) Return Distinct Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` Is Null Is Null) Is Not Null Is Not Null As usn1,123.654 Is Not Null Is Not Null As `1esn`,0X0123456789ABCDEF Contains 8.1e1 As @usn5 Limit _usn4[7][8.1e1] Union Return Distinct ({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)[{``:.1e-1 Ends With $`8esn` Ends With .9e0,`7esn`:.9e-12 Is Not Null Is Not Null}][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])],Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) Skip Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) =~Filter(`8esn` In 01234567[..0.0][..false] Where .9e12 =~`5esn` =~07) =~Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0|12[0xabc..][$0..]) Detach Delete ``(@usn6[..$`3esn`][..4.9e12],0x0 Contains $`1esn` Contains 0.0)[{`6esn`:999[...12e12][..0]}][[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)]|.9e1[Count(*)..$`3esn`]]],Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) In {`5esn`:$`` =~$_usn3,`4esn`:`7esn`} In `3esn`,Null In 0Xa In .9e-1;"), + octest:ct_string("With .0e0 Is Null Is Null As _usn4,`6esn`(usn1 Is Not Null,123456789 =~6.0e0)[Single(_usn3 In ``[$``..] Where Null[..07])..][{_usn3:010[9e0..9e1][$_usn4..$12],`3esn`:7.0e-0[$usn2..0.12][$``..0]}..] As usn1,#usn8 In $@usn6 Order By 8.1e1 Ends With $0 Ends With 6.0e0 Descending,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null Ascending,Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\") Ascending Skip $`2esn` In 0X7 In 3.9e-1 Limit 0x0[`5esn`][$`5esn`] Create ((#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})) Union Remove `8esn`:`4esn`:`7esn`,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1])._usn4?.`8esn`,(`6esn` :`2esn`:`8esn`{`6esn`:.1e-1[..12e12]})<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}).@usn5? Create usn1=({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}),#usn8=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Optional Match ((#usn8 {_usn3:$usn2 In usn1 In 1e-1})),usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union Create (({@usn6:0Xa[9e0]})) Merge (((`` :`5esn`)-[?:@usn6|:_usn3 *999..]->(:`5esn`{`1esn`:.1e1 Starts With `1esn` Starts With 6.0e0})-[_usn3:_usn4|`1esn`{`2esn`:123456789 In 9e-12 In false}]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}))) On Match Set `8esn`:#usn8,Filter(`` In $_usn3 Is Not Null Where 7 Is Null Is Null).#usn7! ={`5esn`:false,_usn3:.9e-12 Starts With .0e-0 Starts With usn2} Is Null On Match Set (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]->(:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}).`3esn`!.#usn7._usn3! =`5esn`[$`4esn`] With Distinct 5.9e-12[.1e1][$#usn8] As `5esn`,`4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Ends With None(`` In $_usn3 Is Not Null Where .9e1[...12e12]) As _usn4,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) Limit 1e1 Ends With Null Ends With `7esn` Where $0 Contains .12e-12;"), + octest:ct_string("Detach Delete 10.12e12 =~12e-12 =~0X0123456789ABCDEF,1e1 Is Not Null Is Not Null Optional Match ((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Union Remove `5esn`().`7esn`.`7esn`.usn2,{`5esn`:$#usn8[$1000..],#usn7:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]}.`4esn` With *,{`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As #usn7,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Limit [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]][{`2esn`:$`8esn` In 9e-12 In 3.9e-1}..{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}][Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..])..Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Optional Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Where .0e0[1e1..][01234567..] Union All Merge _usn4=((`6esn` :#usn7:_usn3)<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) On Create Set @usn5 =9e-12 Ends With `7esn` Remove (`` :`3esn`{`5esn`:``[$``..]})-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}).`7esn`,(`8esn` {#usn8:1e1[Null..][.12..]})-[`2esn`?{@usn5:`6esn` Is Not Null Is Not Null,_usn4:9e12 Contains $@usn6 Contains Count(*)}]->({usn1:`6esn`[0x0..@usn5][$1000...9e-12]}).``?.``!.`8esn`!,{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}.@usn5? Remove All(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).``!,{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null}.usn2?;"), + octest:ct_string("With Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)[{_usn3:$0 Starts With 010}] Order By 12e12 Is Not Null Desc,0.0[$1000][3.9e-1] Ascending Skip 's_str'[1e-1] Limit 1e1 In .1e-1 In .0 Where $@usn5 In .9e1 In $``;"), + octest:ct_string("Match ((:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[? *12..0Xa]-(`2esn` :#usn7:_usn3)<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})) Remove [#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1].`6esn`._usn4?._usn4!,{`3esn`:#usn8[..#usn7][..@usn6]}.#usn8? Union All Unwind Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) As `5esn` Optional Match (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}),`1esn`=(((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[:_usn3|`2esn` *010..]-(`` :usn1)<-[@usn5?:@usn6|:_usn3 *07..{_usn3:$`3esn` Is Not Null Is Not Null,#usn8:usn1[0.12..1000]}]->(`3esn` {usn2:$`7esn`[..12.0][..0e0]}))) Where .0e0[$`1esn`][.9e-12] Union With Distinct *,Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As `5esn`,0xabc =~7.0e-0 =~4.9e12 Order By (#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Desc Where @usn6[.9e12..0e0] Unwind $_usn3 Is Not Null As `5esn`;"), + octest:ct_string("Unwind ``(Distinct `4esn`[$1000..$``][$_usn4..$_usn4],.1e-1 Starts With 1000 Starts With $`1esn`) In [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|`4esn` Starts With $_usn3 Starts With .9e-12] In {`6esn`:``[$``..]} As `6esn` Create usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})),_usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Union All Unwind $`2esn`[$usn1..] As `3esn`;"), + octest:ct_string("Create #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]})-[`3esn`? *..0xabc{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`}) Create `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Union Unwind 12e12 Is Null Is Null As usn2 Union All Merge (((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999})));"), + octest:ct_string("Remove All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where true In $0 In @usn5).`4esn`.`4esn`?.`3esn`,Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where #usn7[10.12e12..][\"d_str\"..]).@usn6.`7esn`!,Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567).`4esn`!.`8esn`!.`4esn` Optional Match `4esn`=(((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})<-[`8esn`?:usn2|:``]->(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})-[`3esn`?:`5esn` *07..{#usn7:9e-1 =~6.0e0 =~``}]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))),((@usn6 )<-[`2esn`{`4esn`:.0e0[$`6esn`..]}]->({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})-[`6esn`:#usn7|:`8esn` *01234567]-(`5esn` :`2esn`:`8esn`)) Where 0xabc Is Not Null Create `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Union All Delete \"d_str\" Contains 4.9e12 Contains 7.0e-0,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])];"), + octest:ct_string("Return *,_usn4(Distinct 1e-1 =~0.0 =~9.1e-1) =~None(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~(`2esn` {usn2:7.0e-0 Starts With $7 Starts With true})-[`2esn`:`5esn`{usn2:Count(*)[12..][0X0123456789ABCDEF..]}]-({_usn4:$`3esn` In 's_str' In $#usn7})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12}) As ``,`3esn` Ends With true Limit {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) Unwind .9e12 Starts With .9e12 Starts With `7esn` As usn2 Remove All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `8esn` Is Null).`4esn`,`2esn`:_usn4 Union Merge `7esn`=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}) With Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1] Optional Match _usn3=((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]})) Union Optional Match @usn5=({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3}) Unwind .9e12 Starts With .9e12 Starts With `7esn` As _usn4 Return Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..] Limit .9e12 Starts With .9e12 Starts With `7esn`;"), + octest:ct_string("Return *,.12e-12 In 9e12 In 9e-12 As `5esn`,1e-1 Starts With usn2 Starts With 12e-12 As `` Order By 0[true..$7] Descending Skip (_usn4 :`2esn`:`8esn`)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})<-[`2esn`?:@usn5]-(`7esn` :usn1$`6esn`) =~(#usn8 {`3esn`:123456789 Contains .1e-1 Contains .12e12,`1esn`:$`3esn` =~4.9e12 =~$7})-[#usn7? *00..123456789]->(`8esn` :@usn5)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Union Optional Match (`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[_usn3:usn1|:#usn8 *07..]-({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}),`7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) Union All Delete Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]),.9e1[Count(*)..$`3esn`] Return `5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]],Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null As usn2 Order By $@usn5[`8esn`..$#usn7] Asc Skip {`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])];"), + octest:ct_string("Create #usn7=(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[?{#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0}]-({`6esn`:07 Ends With @usn6 Ends With _usn3}) With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Order By 12.0[.._usn4][..0X7] Descending,`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Ascending Skip 's_str' Ends With 0.0 Ends With .12e12 Remove All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5[$``]).`4esn`,Extract(`8esn` In 01234567[..0.0][..false]).``._usn4,{`2esn`:usn2 Ends With .0}.#usn8!.`3esn` Union Remove ``(usn2 Ends With 10.12e12,$`1esn`[.9e0][$_usn3]).`7esn`?._usn4!.`5esn`?,[`2esn` In .9e-12[0e0...9e-1]].`8esn` Detach Delete .1e1[..0][..010],Extract(usn2 In .0e0[$`6esn`..]|$@usn6 Contains Count ( * ))[`2esn`(usn1[12e-12])..][(`8esn` :usn2)<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})..],`7esn` Create ((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Union All Create `7esn`=(`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Optional Match `3esn`=(@usn5 :`7esn`),((#usn8 {_usn3:$usn2 In usn1 In 1e-1})) Where usn2[..10.12e12][..$`7esn`] Create ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((`` :``:usn1));"), + octest:ct_string("Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Where 07[.0e0][3.9e-1] With Distinct .0 Is Null Is Null As `7esn` Order By Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``]) Is Not Null Is Not Null Asc,0x0 =~$7 =~Null Descending,.12e-12[$`6esn`..] Desc Skip false[12e-12..][usn1..] Where `1esn`[11.12e-12..] Union All Delete All(`8esn` In 01234567[..0.0][..false] Where 07 Ends With @usn6 Ends With _usn3) In (:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})<-[`3esn`?:`1esn`]-(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[usn2:@usn6|:_usn3 *123456789..0x0$_usn3]->(:`8esn`:#usn7{``:$7 Starts With Null Starts With `6esn`,`4esn`:#usn8[..#usn7][..@usn6]}) In Null Merge (`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[_usn3:usn1|:#usn8 *07..]-({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}) On Match Set `6esn`:`6esn`:`3esn`,`8esn`:`7esn` On Match Set {#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}.`6esn`!.`3esn`! =5.9e-12[$`4esn`],_usn3:`2esn`:`8esn`,#usn7(0e0 Starts With $1000 Starts With `2esn`,Count ( * )[..`8esn`]).@usn5? =.0e0 =~5.9e-12 =~`7esn`;"), + octest:ct_string("With Distinct *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Skip `` =~123456789 Limit Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Where 12 In 1000 In \"d_str\" Delete 10.12e12 In `3esn` In $usn2 Match ((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2}));"), + octest:ct_string("Unwind $``[`5esn`..][`2esn`..] As `8esn` Merge `4esn`=((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) Union All Return Distinct $`8esn`[12.0..][4.9e12..] Limit 0x0 =~0x0 Union All With Distinct *,$0[$`7esn`..$`3esn`]['s_str'...0],usn1 Ends With 12 Order By Count ( * )[0..][010..] Desc Limit 12.0 Starts With 07 Starts With $`3esn` Where @usn6[usn1..][`1esn`..] Match `3esn`=(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}),usn2=((:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}));"), + octest:ct_string("With Distinct *,2.9e1 As usn2 Skip Extract(usn2 In .0e0[$`6esn`..]|$@usn6 Contains Count ( * ))[`2esn`(usn1[12e-12])..][(`8esn` :usn2)<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})..] Where 999 =~0Xa =~9e0 Create (#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`) Merge `8esn`=(`3esn` :#usn7:_usn3)<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(`2esn` :usn2)<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}) Union Match `6esn`=({_usn3:$`5esn`[7..]})<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}),((_usn4 )-[usn2?:@usn6|:_usn3]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`4esn`?:_usn3|`2esn`]-(`8esn` {``:$123456789[$_usn3..][$usn2..]})) Where $@usn5[usn1..][$`8esn`..] Delete {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) Optional Match `2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),usn2=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where 0e0[.12..][3.9e-1..] Union Remove Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12 Contains 0e-0 Contains .0).`8esn`,All(`7esn` In .12e12[Count(*)..] Where 's_str' Ends With 0.0 Ends With .12e12).#usn8? Merge (({`8esn`:$`` Is Null Is Null})) On Match Set usn1 =$0[$`7esn`..$`3esn`]['s_str'...0],[@usn6 In 00 =~.9e-12 =~usn1 Where $123456789 Starts With Count ( * )].`1esn`? =usn2 Ends With .0,`8esn` =010[..@usn5][.._usn4] Return *,`3esn`[.12e-12..] As `7esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4;"), + octest:ct_string("With 1.9e0 Starts With 's_str' Starts With 9.1e-1,8.1e1 Is Null,.1e1 Starts With .1e-1 Order By 0xabc[7.0e-0..][12e12..] Ascending Skip `5esn`[$`4esn`] Limit Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null Merge ((_usn4 )-[usn2?:@usn6|:_usn3]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`4esn`?:_usn3|`2esn`]-(`8esn` {``:$123456789[$_usn3..][$usn2..]})) On Create Set None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null).``.`1esn` ={@usn6:8.1e1[$`5esn`][0e0],`5esn`:$`8esn` Starts With `2esn`}[[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]],_usn3 =5.9e-12[9e0..] Union Return Distinct 0[..$@usn5] As `` Skip $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Limit 1e1 Is Not Null Is Not Null Union Optional Match `3esn`=(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})),`5esn`=(((_usn3 )-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3}))) Where $_usn3 In 123.654 In $`8esn`;"), + octest:ct_string("Delete $`5esn`[true] Create `2esn`=(((usn1 {`6esn`:$`5esn`[true],usn2:1e1 Is Not Null Is Not Null})-[:`4esn`|:@usn5 *01234567$_usn4]->(`7esn` {usn2:12.0[..123456789][..01]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}))),`1esn`=(((`8esn` {@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})-[`3esn`?:`2esn`|`7esn`*..]-(:_usn4)<-[``?:#usn8|:`4esn`]-(:usn1{@usn5:Count(*)})));"), + octest:ct_string("With 1e-1 =~0.0 =~9.1e-1 As usn1,Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null,Count(*) In .9e-12 In $usn1 As _usn4 Order By $`7esn`[..12.0][..0e0] Asc,.9e0[$7][1e1] Descending,8.1e1[usn2..$1000][$7..0x0] Descending Skip Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] Limit `1esn`[11.12e-12..] Where $`2esn` Contains false Contains 123456789 Delete Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]),.9e1[Count(*)..$`3esn`] Detach Delete 10.12e12 =~12e-12 =~0X0123456789ABCDEF,1e1 Is Not Null Is Not Null Union Create (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}) Remove _usn3(Distinct 7.0e-0 Is Null Is Null,$@usn6 Contains Count ( * )).`6esn`?,{`7esn`:9e12 =~.12e12,usn2:$999 Ends With .9e-12}.@usn6?,$`1esn`._usn3!.`3esn`?.@usn6 Union With *,{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1} In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) As _usn4,$#usn7 Is Not Null As `7esn` Where `1esn` Starts With 999 Starts With 3.9e-1;"), + octest:ct_string("Delete 1000 Is Not Null Is Not Null,'s_str' Ends With 0.0 Ends With .12e12 Union All Match (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),`1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) Return Distinct (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7),\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"] As @usn6 Skip 1e-1[..2.9e1] Limit [usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null]][(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})..] Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0 Starts With 0Xa Starts With $0|#usn8 =~.9e-12 =~$usn1].`4esn`,`5esn`:_usn3:_usn3,(`8esn` :_usn3:_usn3{`6esn`:9e0[..1e1],@usn6:0x0 =~$7 =~Null})<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`8esn` *1000]->(usn1 :_usn4).``;"), + octest:ct_string("Unwind .0[01234567][$#usn8] As `2esn` Merge `6esn`=(({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Create Set All(usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]).`2esn`? =0Xa[$usn2..],`3esn`:usn1,`1esn` =$``[`6esn`][00] Union All Create `5esn`=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}),#usn8=((`3esn` {#usn8:`7esn` Is Null})-[_usn4 *999..]->(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]})) Remove {usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}._usn4! Return Distinct *,1000[Null..] As `1esn`,.9e1[#usn7..] As `7esn` Limit Count ( * ) In 999 Union Optional Match #usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Optional Match `7esn`=(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]}) Where #usn8[7..@usn5];"), + octest:ct_string("Return Distinct *,0X0123456789ABCDEF Contains 8.1e1 As @usn6 Order By .1e1 =~010 =~0.12 Asc,(:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null) Ascending Skip 9e1 Ends With .9e0 Limit $12[01] Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set `6esn` =.1e1 =~10.12e12 On Match Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] Union Merge ((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) On Create Set (`6esn` :usn1)<-[usn1{`2esn`:usn2 Ends With .0}]->(_usn3 :_usn3:_usn3)-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})._usn3? =Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}],@usn5 =.9e1[...12e12] Unwind All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] As #usn8 Merge (#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) On Create Set Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])._usn3 =_usn4[7][8.1e1],#usn7+=Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()],`1esn`:#usn7:_usn3;"), + octest:ct_string("With Distinct All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,usn2[..7.0e-0] As `1esn` Skip `2esn` =~usn1 Limit .1e-1[..12][.._usn4] Where 0e0 Is Null Is Null Create ((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),(((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]})));"), + octest:ct_string("Create ((:`7esn`)),((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2)) Remove All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`).`3esn`?._usn4!._usn4,Filter(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])._usn4? Create `2esn`=((:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]}));"), + octest:ct_string("Return Distinct *,0 Starts With 0Xa Starts With $0 Skip Null Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null) Remove None(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]).#usn8,{@usn5:$`1esn` Starts With Count(*) Starts With $`8esn`}._usn3! Optional Match (`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Union All Detach Delete 123.654 In $`5esn` In 9e-1,999[..@usn5][..`1esn`],12.0[`8esn`] Delete {usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Delete 0X7[Count(*)][.9e0],`1esn` In 12e-12 In 1e-1,010 Union All Remove {@usn6:0X7 Starts With 1e1 Starts With $12}.#usn8?.usn1.@usn5!,Extract(usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|0e0 Ends With 1e1 Ends With 0Xa).``?,@usn5:`3esn`;"), + octest:ct_string("Unwind Null Starts With 9e1 Starts With `` As `8esn` Detach Delete `4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Ends With None(`` In $_usn3 Is Not Null Where .9e1[...12e12]),`5esn`[0X7..][12..] Unwind _usn4['s_str'..] As `6esn`;"), + octest:ct_string("Match (:_usn3:_usn3{`5esn`:`2esn` Is Not Null Is Not Null,`7esn`:2.9e1})<-[`7esn`*..]-(`7esn` :usn1),(`1esn` :``:usn1{usn1:123.654 Ends With 0Xa Ends With .12e12})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``}) Where $usn2 =~$`2esn` =~\"d_str\" Unwind {`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] As `3esn` Union Delete .9e-1 =~.9e-1 Remove (:`7esn`{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[#usn8?:`4esn`|:@usn5]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})._usn3!,Any(`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0).usn1 Union Merge ((`5esn` :`2esn`:`8esn`)<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})) On Match Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Remove (`` :@usn6:_usn4{`4esn`:00 Is Not Null Is Not Null})-[`1esn`:usn1|:#usn8]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}).`6esn`!.@usn5?._usn4?,@usn5:_usn4,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]).`2esn`!.`8esn`!._usn3!;"), + octest:ct_string("Remove .9e-12.usn2 Return `5esn`[$`4esn`] As @usn6,count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) =~Filter(_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789) =~[`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]|.9e12 Starts With #usn8 Starts With 00],[_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] As usn2 Limit All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Union All Delete $#usn7 Is Not Null Is Not Null Delete Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null,0X0123456789ABCDEF Is Not Null Is Not Null;"), + octest:ct_string("Remove `2esn`(Distinct 12 Is Null Is Null)._usn3! Create @usn6=((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`6esn`:`6esn`|#usn7*]->(`3esn` {_usn4:$`2esn` Starts With 0x0})-[#usn8 *010..{@usn5:6.0e0 Is Not Null}]->(@usn5 :`7esn`));"), + octest:ct_string("Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] Ascending,1e-1[..$`6esn`] Ascending Skip (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Remove {usn2:`3esn` In 0X7,usn2:7 Is Null Is Null}.`4esn`.@usn6!,{@usn6:.9e-12[..$`7esn`][...9e-1]}.usn2 Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1 Union Match (({usn2:#usn7[10.12e12..][\"d_str\"..]})-[?:`8esn`|:`2esn` *..7]-(`4esn` :#usn8{#usn8:_usn4[7][8.1e1],#usn7:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})),`3esn`=(((`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[:`4esn`|:@usn5 *00..123456789]-({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[@usn5?:@usn6|:_usn3 *07..{_usn3:$`3esn` Is Not Null Is Not Null,#usn8:usn1[0.12..1000]}]-(:@usn5{`7esn`:7.0e-0[`6esn`..]}))) Where 0 Ends With 2.9e1 Ends With 1000 Detach Delete 0e0 Ends With `7esn` Ends With usn1 Unwind .0e-0[0e0..00][.9e1..12] As usn2 Union All Create `2esn`=((:`4esn`:`7esn`{`3esn`:`1esn`[9.1e-1]})<-[?:@usn6|:_usn3 *07..]-(#usn8 :`2esn`:`8esn`{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:@usn5[...9e12]})-[? *..0X7{_usn3:00[$`6esn`]}]->({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})),#usn7=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}));"), + octest:ct_string("With Distinct *,9.1e-1 =~@usn5 =~Count ( * ) As _usn4 Order By 1000[$`6esn`..12.0]['s_str'..$`3esn`] Ascending Limit {#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0} Is Null Is Null Remove All(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8).@usn6,`3esn`:`8esn`:#usn7,_usn3(Distinct @usn6 In 3.9e-1 In 9e-12,true Starts With 2.9e1 Starts With 9e1).`7esn` Union All With .1e1[9e-1][$usn1] As `6esn`,{_usn3:07 =~_usn4 =~.9e12}[All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 8.1e1 Is Null Is Null)..] As #usn8,10.12e12[0Xa..999][1000..Count(*)] As usn2 Order By `4esn`[0.0..][.1e-1..] Desc,$_usn3 Contains 1e1 Contains .12 Ascending Limit 1e-1 =~0.0 =~9.1e-1 Where $12[01] With *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip usn2 Starts With $_usn3 Where \"d_str\"[12e12..][4.9e12..];"), + octest:ct_string("Delete .1e1 In 9e12 Match (`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Union Match `5esn`=(`5esn` :`1esn`),(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))) Where 9e-1 Starts With 123.654 Starts With .9e1 Union All Remove {@usn6:0X7 Starts With 1e1 Starts With $12}.#usn8?.usn1.@usn5!,Extract(usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|0e0 Ends With 1e1 Ends With 0Xa).``?,@usn5:`3esn`;"), + octest:ct_string("Merge `7esn`=((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)) On Match Set Filter(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).``.`8esn` =Count ( * )[..`8esn`],usn1 =123456789 Contains .1e-1 Contains .12e12,`8esn`+=`7esn` Ends With _usn4 On Match Set `6esn` ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])],All(`5esn` In 12[0xabc..][$0..] Where _usn3 Ends With 01 Ends With .1e-1).`6esn`? =12.0[..Count(*)][..5.9e-12];"), + octest:ct_string("With Distinct .9e0 Is Null Is Null As #usn7,All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Where 5.9e-12[$`4esn`];"), + octest:ct_string("Delete (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)],0.12 Is Not Null Is Not Null Detach Delete (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Starts With `7esn`(Distinct $`5esn` Is Null Is Null,$`4esn` Ends With 0e-0) Starts With Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 5.9e-12 Ends With 1e1 Ends With false),`3esn` Contains $`8esn` Contains 0e0,4.9e12 Contains .12e12 Contains 0xabc Union All Optional Match `3esn`=(@usn5 :`7esn`),((#usn8 {_usn3:$usn2 In usn1 In 1e-1})) Where usn2[..10.12e12][..$`7esn`];"), + octest:ct_string("Optional Match (#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`) Where 999 Ends With $123456789 Ends With $_usn4 Remove Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`).`1esn`!.`4esn`._usn4?,`7esn`:_usn3:_usn3,(:_usn4{``:$_usn3[1e-1..]})-[@usn5?:`8esn`|:`2esn`]-(`2esn` :_usn3:_usn3).#usn7.`1esn` Delete (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Starts With `7esn`(Distinct $`5esn` Is Null Is Null,$`4esn` Ends With 0e-0) Starts With Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 5.9e-12 Ends With 1e1 Ends With false),None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),4.9e12 =~8.1e1 =~$`8esn` Union Merge `8esn`=(`6esn` :``:usn1) On Create Set `7esn`:`8esn`:#usn7,(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(usn2 :@usn5{`8esn`:00[$`6esn`]}).#usn7.@usn5 =@usn5 Ends With 's_str' Ends With 01,None(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12).#usn7! =$999 Is Not Null With Distinct *,(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]})[Extract(`` In $_usn3 Is Not Null Where .0e-0 =~12e-12)..[`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6]] Order By false =~4.9e12 Asc,$123456789 Is Not Null Asc Limit Null In 0Xa In .9e-1 Where 0[$`1esn`..][9e12..] Create (((`2esn` :`6esn`:`3esn`{@usn5:Count(*)[.0e0]})-[usn1?:usn1|:#usn8*..]-(`7esn` {`3esn`:.9e-1 Is Null})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))),@usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0});"), + octest:ct_string("Remove ``().usn1.@usn5!,usn2(Distinct 0X7 Starts With 1e1 Starts With $12)._usn3!,{#usn8:$_usn3 Is Not Null}.@usn6! Union All With Distinct Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) As `1esn`,0[..$@usn5] As `` Order By {`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending Limit 12 Contains _usn3 Where $`2esn` Ends With 2.9e1 Ends With $usn1 Detach Delete 5.9e-12[.1e1][$#usn8] Union All Merge ((:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[#usn8? *0x0..]->(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)) On Match Set `8esn` =#usn7 Ends With $#usn7 Ends With #usn7;"), + octest:ct_string("Merge _usn4=(({_usn3:$`5esn`[7..]})) Delete All(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)[`3esn`(Distinct 0[true..$7],`3esn`[$0..][.9e1..])..],$#usn8[$@usn5][11.12e-12] Union All Remove [`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12e12[..123456789][..false]|12[0xabc..][$0..]].@usn6!,[@usn6 In .9e12 Starts With #usn8 Starts With 00].usn2?,{usn2:$usn1[$12..]}._usn3;"), + octest:ct_string("Create usn1=(:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}) Union All Delete #usn8 In $#usn8 In \"d_str\",01[..01] Return Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,07 =~_usn4 =~.9e12 As `` Skip 12e12 =~#usn7 =~.9e-1 Merge ((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) On Create Set @usn6(9.1e-1[$`4esn`..][$`4esn`..]).@usn5?.#usn8!.`2esn` =usn1[12e-12],`4esn` =$`6esn`[..12e12][.._usn3] On Match Set Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999).#usn8? =07 Is Null Is Null,`4esn` =[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null][..`1esn`(Distinct `5esn` Contains `6esn`,`3esn` Contains $`8esn` Contains 0e0)][..Single(`5esn` In 12[0xabc..][$0..] Where 1000[_usn3..`8esn`])],@usn5 =All(usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null])[``($_usn3[1e-1..],.12e12[Count(*)..])][None(_usn4 In Count(*)[9e1..][12e-12..] Where 123456789 Ends With _usn4)] Union All With Distinct *,.9e1 Starts With `4esn` As `5esn`,Count ( * )[`7esn`..] Order By $``[`4esn`..][0.0..] Desc,07 =~7.0e-0 =~`8esn` Descending Skip .9e-12[01][Count(*)] Where 1e-1 =~0.0 =~9.1e-1 Merge (`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6) On Match Set count(@usn6[..$`3esn`][..4.9e12]).`1esn`! =(`1esn` :`3esn`)-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}) In Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) In {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]} On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)];"), + octest:ct_string("Merge `2esn`=((:`3esn`{_usn3:10.12e12 In `3esn` In $usn2})<-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]->(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})) Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12|.1e-1).`1esn`?,All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]).`7esn`!,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).usn1? Union All Create #usn7=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Union All Merge ((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) On Create Set [_usn3 In ``[$``..] Where $_usn3[.1e1..][$`1esn`..]].`8esn`.`4esn`! =None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} Detach Delete _usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null Unwind 1.9e0 =~$`8esn` =~01234567 As usn2;"), + octest:ct_string("Merge `4esn`=((`7esn` :#usn7:_usn3{`3esn`:00[0e-0...9e-1][1e-1..``]})<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1})) Return *,$`5esn`[true],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Skip $`1esn` =~0.0 Delete $usn1[$7..][$0..] Union Merge `7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) On Match Set (`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8,_usn3+=Null[..07] Unwind 5.9e-12 =~$@usn6 As `2esn` Return 1.9e0 Starts With 's_str' Starts With 9.1e-1,8.1e1 Is Null,.1e1 Starts With .1e-1 Order By 1.9e0 In $0 Desc,7.0e-0 =~$123456789 =~`8esn` Asc,#usn7[10.12e12..][\"d_str\"..] Desc Union Optional Match #usn8=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`3esn`=({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})<-[?{_usn3:00[$`6esn`]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}) Where .9e1[12] Remove ({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[ *07..{#usn8:`1esn`[1000][Null]}]-(usn1 :`2esn`:`8esn`).`5esn`?,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"]._usn4,(:`7esn`{`8esn`:$usn2[0e0][$7],_usn3:.9e-12[0e0...9e-1]})-[_usn4?:``|:`3esn`]-(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn1? *0X0123456789ABCDEF..0{_usn4:00[0e-0...9e-1][1e-1..``]}]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6!;"), + octest:ct_string("Optional Match `3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})),`6esn`=((#usn7 )) Where 9.1e-1 In #usn8 With Distinct *,{`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null) Order By 4.9e12 Contains .12e12 Contains 0xabc Asc,$usn1 Is Not Null Desc Skip {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null) Where _usn4[9e0..$#usn8] Remove {usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7}.`3esn`!,(:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}).`3esn`?,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where usn2 Ends With 10.12e12).`3esn`! Union Unwind 2.9e1[...9e-12][..0] As usn2 Return Distinct *,`4esn`(Distinct 01[..0.12],$`8esn` Is Null) Contains All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]),Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} As `3esn` Limit Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null Union Create (`3esn` :`4esn`:`7esn`)-[_usn4?:``|:`3esn`]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]}),_usn4=((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12}));"), + octest:ct_string("Match (:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7}),`7esn`=((`8esn` {@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) Where 7.0e-0 Starts With $7 Starts With true;"), + octest:ct_string("Unwind $999 In 0.0 As `1esn` Unwind $999 In 0.0 As `1esn` Remove Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7).`2esn`.`3esn`.`7esn`!,`7esn`:`7esn` Union Merge _usn4=((`` :usn1)<-[``?:_usn3|`2esn` *0X0123456789ABCDEF..0{`5esn`:`4esn`[0.0..][.1e-1..]}]->({`7esn`:0[$`1esn`..`8esn`]})) On Create Set #usn7+=(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] On Match Set (@usn6 :usn1{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(`7esn` :`2esn`:`8esn`).`4esn`! =01[..0Xa],#usn7 =$999[.1e1..0.0],`3esn`+=Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null;"), + octest:ct_string("With @usn6[.9e12] As ``,01234567 Starts With `4esn` Starts With 10.12e12 Order By $`7esn` Is Null Is Null Descending,Any(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1) Asc,#usn8[usn1] Asc Where .9e1[...12e12] Union All Unwind .12e12[Count(*)..] As `5esn` Return Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,9e-1 Starts With 123.654 Starts With .9e1 As `6esn`,.9e0 Is Null Is Null Skip usn1(07 Ends With @usn6 Ends With _usn3,$`2esn` In 0X7 In 3.9e-1) Contains [`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|9e0 =~9e1 =~.12e12] Limit $7 Starts With Null Starts With `6esn` Remove 123.654.#usn7.`5esn`?,count(Distinct $`3esn` Starts With 0Xa).#usn7,`1esn`:`2esn`:`8esn`;"), + octest:ct_string("Optional Match `7esn`=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}),((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Where .0e0 Is Null Is Null Union Delete Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),usn2 =~`7esn` =~11.12e-12,1.9e0[$12][``];"), + octest:ct_string("Unwind 0e0 Ends With `7esn` Ends With usn1 As _usn3 Unwind 5.9e-12[9e0..] As @usn5;"), + octest:ct_string("Detach Delete Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null Union With Distinct 0e0 Is Null Is Null,None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[..Filter(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0)][..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] Order By .9e-12[0e0...9e-1] Ascending,.1e1 Starts With .1e-1 Asc Skip 0.12 Ends With $123456789 Ends With `7esn` Where 07 In $usn1 In 12 Remove {usn1:usn2[..7.0e-0]}.`2esn`.`2esn`?.usn1,(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6?,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e12 Is Not Null Is Not Null).#usn8? Return Distinct *,0e0[`4esn`] As `6esn`,9.1e-1[.1e-1];"), + octest:ct_string("Return 0x0 As @usn6,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] As usn2 Order By $`3esn` Ends With 010 Ends With $`7esn` Asc,.1e1[$usn2..9e1][9e-1...9e-1] Desc,3.9e-1[..$7] Descending Skip .12e12 Is Null Is Null Limit $``[`4esn`..][0.0..] Union Create ((`` :usn1)-[ *0..010]->(_usn4 :`5esn`)),(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) Union All Unwind [`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]|.1e-1 Ends With $`8esn` Ends With .9e0] Starts With {#usn7:1e-1[..2.9e1],`1esn`:.9e1[#usn7..]} As `6esn` Create usn1=((`8esn` :_usn3:_usn3)<-[_usn4? *..7{#usn7:Count ( * )[7]}]->(`6esn` :`7esn`)<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)),`3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1});"), + octest:ct_string("Unwind .9e1 Is Null As `4esn`;"), + octest:ct_string("Delete 01234567[6.0e0][$usn2] Return Distinct *,$usn1 Contains `7esn` Contains .9e12,.9e12 Starts With 6.0e0 Starts With .1e1 Order By `1esn`[11.12e-12..] Asc Skip 9e12 Contains $@usn6 Contains Count(*) Limit `5esn` Contains `6esn` Union All Detach Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..],.1e-1 Contains 1e1 Contains $`6esn` With *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By .12e-12 =~9e12 =~1e-1 Desc,11.12e-12 =~$`4esn` =~.12e12 Descending Limit [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null Where `2esn` =~usn1 Union Delete usn1(Distinct)[({@usn5:01234567[6.0e0][$usn2],`7esn`:010 Starts With 0.0 Starts With .0e0})<-[``?:#usn8|:`4esn`]-(:usn1{@usn5:Count(*)})..Filter(`5esn` In 12[0xabc..][$0..] Where 010[11.12e-12..])],0e0[.12..][3.9e-1..] Match (:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}),_usn3=((@usn5 :usn1)-[? *123456789..0x0{`8esn`:`2esn` Is Not Null Is Not Null}]->(`` :usn1));"), + octest:ct_string("Remove All(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..]).usn1,`5esn`:``:usn1 Unwind 1000 Starts With 11.12e-12 Starts With 01234567 As `1esn` Remove `4esn`:`4esn`:`7esn`;"), + octest:ct_string("Return *,Null[...9e1],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Unwind 0.12 =~2.9e1 =~12e-12 As `6esn` Merge ((_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})) On Match Set (#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`3esn`?:usn1|:#usn8*..{usn1:.12e-12[999...12]}]->(#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]}).`7esn`? =12 Ends With $7 Ends With $#usn8 On Match Set usn2 =[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Union All Unwind 12[123456789][5.9e-12] As `5esn` With Distinct *,_usn3[`2esn`..10.12e12][9e1..true] Where .9e1[#usn7..] Union Remove [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|.9e1[..`5esn`]]._usn3!.`6esn`?.`3esn`?,(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )._usn4!.usn2.#usn7! Optional Match `7esn`=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}),((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Where .0e0 Is Null Is Null Create @usn5=({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3});"), + octest:ct_string("Detach Delete .0e-0 =~12e-12,12e12[07..] Union All Unwind 5.9e-12 Ends With 1e1 Ends With false As _usn3 Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where ``[..$#usn7]|2.9e1).`1esn`?,None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]).`3esn`? Merge ``=((#usn8 {_usn3:$_usn4 Contains .12e-12})) Union Delete Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),All(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)[`3esn`(Distinct 0[true..$7],`3esn`[$0..][.9e1..])..] Merge (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) On Match Set Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12).`4esn`!.#usn8?.`1esn` =1.9e0 =~$`8esn` =~01234567,`1esn` =1000[$`6esn`..12.0]['s_str'..$`3esn`],@usn5 =9e0[$usn2][0] Merge ``=(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`` :@usn6:_usn4)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]});"), + octest:ct_string("Return Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],`2esn` Is Not Null Is Not Null Skip $123456789 Starts With Count ( * ) Limit Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..] Merge `1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null Union Detach Delete 6.0e0 In 12;"), + octest:ct_string("Return Distinct .0e0[$`1esn`][.9e-12] As `6esn`,\"d_str\"[$123456789..][0X7..] Order By All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Asc,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Limit (usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})-[`4esn`?:`6esn`|#usn7]->(`1esn` )[[`2esn` In .12e-12[$@usn6..5.9e-12]|$#usn7 Starts With 10.12e12]..] With *,1000 Is Not Null Is Not Null As #usn7,.1e-1 Ends With @usn6 As @usn6 Skip 9.1e-1 =~@usn5 =~Count ( * ) Limit _usn4 In `3esn` In 7.0e-0 Where 1.9e0 Is Null Is Null Optional Match `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),_usn4=((`6esn` :#usn7:_usn3)<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union Optional Match (:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(usn1 :usn2{``:$`` Is Not Null}) Where 1.9e0 =~$`8esn` =~01234567 Optional Match #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),`8esn`=(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}))) Merge (usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2}) Union Merge (:`4esn`:`7esn`{`3esn`:`1esn`[9.1e-1]})<-[`4esn`]->(`` :`3esn`)<-[`1esn`?:`2esn`|`7esn` *123456789..0x0{#usn7:.9e-12 Starts With .0e-0 Starts With usn2}]->(`` :`8esn`:#usn7) Remove `5esn`(123456789 =~$`1esn` =~#usn7,$0[$`7esn`..$`3esn`]['s_str'...0]).#usn7?;"), + octest:ct_string("Unwind 9.1e-1[1e-1..]['s_str'..] As _usn3 Unwind .1e1[.0e0..] As ``;"). diff --git a/test/performance_cypher_legacy_SUITE.erl b/test/performance_cypher_legacy_SUITE.erl index 0eb17ba..77089f9 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 : 15.12.2016 +%%% Created : 29.12.2016 %%%------------------------------------------------------------------- -module(performance_cypher_legacy_SUITE). @@ -38,1003 +38,1003 @@ all() -> %%-------------------------------------------------------------------- test_cypher(_Config) -> - 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!);"). + octest_legacy:ct_string("Cypher `8esn`=_usn4 Drop Constraint On(usn1:`6esn`)Assert Exists(Case $`3esn` =~0x0 When `3esn` Is Null Is Null Then $@usn6 Starts With 0xabc Starts With {`7esn`} Else Count(*)[Null..][01234567..] End._usn4!);"), + octest_legacy:ct_string("Profile Drop Constraint On(#usn7:`8esn`)Assert [#usn7 In .0e-0 In 12 Where .0e-0 Ends With $`2esn` Ends With `5esn`|{usn1} Contains `4esn`]._usn4?._usn3!.`7esn`? Is Unique;"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Return Reduce(#usn7=#usn8[\"d_str\"..usn2],#usn7 In .0e-0 In 12|`` Ends With 1.0 Ends With usn1) Ends With [_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3]] Ends With Shortestpath((((:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[`2esn`?:`8esn`|:#usn8]->(`` )<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)))),Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As usn1 Limit Case Null[#usn7..][9.1e-1..] When 12.0[..Count ( * )][..@usn6] Then {0} In {`1esn`} When 4.9e12 Starts With {``} Then $`8esn` Is Null Is Null Else $#usn7 Contains 3.9e-1 End Contains None(#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null) Contains [usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]] Detach Delete $`5esn`[..{0}][..7.0e-0],`8esn` Contains usn2,usn2[12e-12..{`8esn`}][.12e12..{123456789}] Optional Match `4esn`=(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0}) Where 2.9e1 Ends With `5esn` Ends With 1000 Union Start `3esn`=Node:#usn8(usn2='s_str') Where $`6esn` =~$#usn7 =~$`4esn` Merge #usn7=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 ))) On Create Set #usn8:`8esn` On Match Set `8esn`+=Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null],@usn5+=Reduce(@usn6=0X0123456789ABCDEF Ends With {1000},usn1 In $@usn6 Is Null Is Null|.0e0 =~0 =~.0e0) Starts With None(`6esn` In 010[{`1esn`}..] Where _usn4 Ends With {`8esn`} Ends With usn2) Starts With Case When 01234567 Ends With .0e0 Ends With 12e12 Then @usn6 Starts With #usn7 Else .12e12 Ends With 07 Ends With 3.9e-1 End,#usn7 =$_usn3[0X0123456789ABCDEF..][0x0..] Optional Match #usn8=(`6esn` :`4esn`:usn2),(((:`3esn`)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))) Using Join On `5esn`,`8esn`,#usn7 Where $12[10.12e12][.1e1] Union All Foreach(`6esn` In 9e-12[{`1esn`}..]| Optional Match Shortestpath(((`7esn` {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))) Using Join On `2esn`,`6esn` Using Join On `4esn`,`2esn`,`` Where #usn8 Is Null Is Null) Start @usn5=Rel:`8esn`(usn1={#usn7}) ,usn1=Node:usn1(usn2='s_str')Where .12e12[..$123456789] Delete $@usn6 Is Null,{`1esn`} Is Null,{@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null)"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Optional Match (((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(`2esn` :_usn3)<-[_usn3?{``:{1000} Starts With {`1esn`}}]->(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))) Using Scan #usn8:`1esn` Using Scan #usn7:`4esn` Where `4esn` Ends With 9e12 Ends With {`5esn`} Merge `7esn`=Shortestpath(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) Foreach(#usn7 In 0.12[{@usn6}..{#usn7}]| With *,Case 9e1 In $1000 When 999 Starts With 7.0e-0 Starts With true Then {usn2}[{999}..][9e12..] End[Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End..][Any(`1esn` In $12 In {usn2} Where @usn6[true..])..] As usn2 Order By {`7esn`} =~\"d_str\" =~{``} Desc,`2esn` In .9e0 In `` Ascending,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) Desc Skip 10.12e12 Contains .9e0 Limit Count(*)[{12}..{#usn8}]) Union Foreach(`8esn` In None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Contains (`8esn` :@usn6:_usn3{_usn4:{#usn7} =~$@usn6 =~$7})<-[`1esn`? *0{usn2:.9e12[6.0e0..][@usn5..]}]->(usn2 :@usn6:_usn3)-[usn1:#usn7|:@usn5 *999..123456789]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})| Unwind $`1esn` =~`8esn` As @usn5) Load Csv With Headers From ({`4esn`:#usn8[\"d_str\"..usn2],`1esn`:12.0[..Count ( * )][..@usn6]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ) =~Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End =~{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} As #usn7 Start `7esn`=Node:#usn7(usn1={`6esn`}) Where false[..usn2][..999] Union All With Distinct [`1esn` In $12 In {usn2} Where 12e-12 Starts With $`7esn`][{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}..] As `5esn`,{`3esn`}[..{`4esn`}][..usn2] As #usn8 Skip Case When .9e1 In .1e-1 Then $7 =~01234567 =~12.0 When {`8esn`} Is Not Null Is Not Null Then $12 =~4.9e12 Else {#usn7}[.12e-12] End[..Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`}))] Limit #usn7[123.654][{12}] Foreach(usn2 In {usn1:12[..$`5esn`]}[None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..])]| Optional Match Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))),(((usn1 :@usn6:_usn3)<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->(:usn1)<-[:``|:`7esn`{@usn6:{#usn8}[..@usn5],@usn6:$1000 Contains $123456789 Contains #usn8}]->(`1esn` :@usn6:_usn3{#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12}))) Create Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))),@usn6=((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})))"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Drop Constraint On(usn1:`4esn`)Assert Reduce(`6esn`={usn1} Contains `4esn`,`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$usn1[9e1][{999}]).`7esn`? Is Unique"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Unwind exists(`7esn` In _usn4 In $`7esn`,9e1 Ends With `7esn` Ends With 2.12)[..Reduce(#usn8=5.9e-12 Contains {12} Contains {#usn8},usn1 In \"d_str\" Contains {@usn6}|{`6esn`}[@usn5..{@usn6}])][..Extract(usn1 In \"d_str\" Contains {@usn6} Where {`1esn`} Is Null|`` Contains {`6esn`} Contains 123456789)] As _usn4;"), + octest_legacy:ct_string("Cypher 999.123456789 Drop Constraint On(`5esn`:``)Assert Exists(@usn5(Count ( * ) Starts With 0.12,$123456789).`6esn`?.`6esn`?)"), + octest_legacy:ct_string("Profile Create Unique `5esn`=Allshortestpaths((({`6esn`:8.1e1 Contains .9e-1 Contains false}))) Return {1000} Is Null As `2esn`,(`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` Ends With 10.12e12) As `8esn`,$`` =~$_usn3 Order By {`5esn`} Desc,@usn5 =~$#usn7 =~{usn1} Ascending Skip .12e-12[9e1] Limit (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])] Match _usn4=Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]}))),`3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})) Using Join On `6esn`,_usn3 Using Index @usn5:@usn6(`5esn`) Union All Optional Match `4esn`=(#usn7 :@usn5)-[:`8esn`|:#usn8 *0X7..0Xa]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(_usn4 :`5esn`:`7esn`{_usn4:$_usn3[.0e-0..999]}),({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`}) With @usn5[9e-1..{`1esn`}] As ``,`1esn` Is Not Null As `6esn`,Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) Ends With `2esn` As @usn5 Limit [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]][None(#usn7 In .0e-0 In 12 Where $12 In {usn2})..{`1esn`:{0} Is Null Is Null}][Extract(#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12|{`5esn`} Is Not Null Is Not Null)..Reduce(`7esn`=`7esn` Ends With 10.12e12,usn2 In $`5esn`[{`4esn`}][{0}]|@usn5[9e-1..{`1esn`}])] Where {`1esn`} Contains 1.0 Contains 4.9e12 Union All Foreach(@usn6 In $0 Ends With $usn1 Ends With {``}| Remove Shortestpath((({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))).@usn5.`1esn`?,{@usn5:{0} In {`1esn`}}.#usn7?.`4esn`! Load Csv From 0.12 In $`` As usn2 )"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Create ((`5esn` :#usn8:@usn6));"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Unwind $12 =~4.9e12 As `5esn` Merge _usn3=Shortestpath(((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))) On Create Set @usn5 ={``}[$usn2..00][{_usn3}..123.654],_usn4 =Reduce(`3esn`=`7esn`[1.9e0..5.9e-12][9e0..@usn5],`` In `7esn` =~#usn8 =~\"d_str\"|{_usn3}[{0}...9e-1][9e-1...0e0])[Case false Contains {`7esn`} When `3esn` Is Null Then `1esn` Is Not Null Is Not Null Else .9e-1 Is Null Is Null End..][Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999})..],{@usn5:`2esn`}.``! =\"d_str\" Starts With ``;"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Drop Constraint On()<-[`6esn`:`2esn`]-()Assert Exists({`4esn`:`3esn` Starts With 9.1e-1 Starts With .9e-1,#usn8:1e-1[$`4esn`]}._usn4)"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` With $#usn7 Contains 3.9e-1 Order By Count(*)[{12}..{#usn8}] Asc Where 2.12[{12}] Union With Distinct $`8esn` Is Not Null Is Not Null As _usn3 Order By Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Descending,\"d_str\" In 7.0e-0 Desc Skip Reduce(_usn3=7.0e-0[$`6esn`..],`7esn` In 0.12 Is Not Null|false Starts With 0 Starts With 2.9e1) =~Case $`3esn` =~0x0 When $12[$@usn5] Then 11.12e-12 In {usn1} When 4.9e12[{_usn4}..] Then $@usn5 Contains _usn3 Else .12e-12 Starts With .12e-12 End =~Reduce(_usn4=_usn4 Is Not Null Is Not Null,`2esn` In $@usn5 Is Not Null Is Not Null|7.0e-0 Is Not Null) Limit {_usn3:.0e-0[..``][..$7]}[..(`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`)][..@usn5] Union All Foreach(`` In true[0Xa..]| With *,0e0[12.0][{#usn7}] As `8esn`,Extract(#usn8 In 07[..$`5esn`] Where $usn2[..$999][..#usn8])[..Extract(`1esn` In $12 In {usn2} Where {123456789} =~.9e1 =~$_usn3|9e1 =~$`8esn` =~10.12e12)][..Reduce(`8esn`=.1e1[{@usn6}][true],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|0X7 Is Not Null Is Not Null)] As `3esn` Order By .0e-0[..01234567] Descending,Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null) Ascending Skip 9e1[...9e1][..$`6esn`] Limit 9e-1[0] Where Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Return *,Reduce(`2esn`=$@usn5[``..],`7esn` In 0.12 Is Not Null|$`4esn` Is Not Null) =~Any(_usn3 In `8esn`[_usn4] Where {`6esn`} In {_usn4} In $12) =~Reduce(`1esn`=false =~{`8esn`} =~00,`2esn` In $@usn5 Is Not Null Is Not Null|`1esn`[{@usn5}..][{_usn4}..]),1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Skip .12e-12 Starts With .12e-12 Limit (@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(:`6esn`{`2esn`:`5esn` Ends With Count(*)})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12}) In Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}) In Single(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str') Start #usn7=Rel:@usn6({1000}) ;"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Create Constraint On(``:#usn7)Assert Exists(Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0e-0[..$usn2]).#usn7?._usn4!)"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Create Constraint On(_usn3:usn1)Assert Shortestpath(((`8esn` :`8esn`)<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))).@usn5! Is Unique"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Start `6esn`=Rel(7,0X7,0,01) ,@usn5=Rel:usn1({usn2})Where 11.12e-12 Ends With 's_str' Union All Create Unique (((@usn5 {@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))) Foreach(_usn4 In {_usn3}[{0}...9e-1][9e-1...0e0]| Match _usn4=(({`2esn`:00[Null..usn2],`2esn`:3.9e-1[..$1000][..0.12]})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})),_usn4=Allshortestpaths(((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))) Using Scan #usn7:`3esn` Using Index @usn5:`4esn`(usn1) Optional Match `1esn`=Allshortestpaths((_usn3 {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})),(`6esn` {`3esn`:Count ( * )[_usn4..]})) Union All Merge `4esn`=Shortestpath((#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})) On Create Set `4esn` =Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 7 In 1e1 In {``})[Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..])..@usn6(0xabc[..Count(*)][..$`5esn`])][$`6esn`..{#usn7:00 =~`4esn` =~.9e-12}];"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Create Constraint On(#usn8:#usn8)Assert Allshortestpaths((`2esn` )-[ *..123456789{@usn5:$`8esn`}]-(:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})).usn1? Is Unique"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Create Unique `2esn`=(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1}) With .9e0 Is Not Null,$`7esn` Contains .12e12,false Starts With 0 Starts With 2.9e1 As `4esn` Skip (:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]-(:_usn3{_usn3:010[..9e-1][..0X7]}) Starts With Case When $1000 Starts With {@usn6} Starts With $@usn5 Then `2esn` When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else 12[4.9e12..] End Starts With (_usn4 {`3esn`:.0e-0 In 12})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc}) Create `5esn`=(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}) Union All Create Allshortestpaths(((`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]})-[`1esn`?]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}))) Unwind Shortestpath((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5))[Allshortestpaths((#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}))] As `1esn` Foreach(usn1 In Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000)| With *,$999 Ends With `2esn` Ends With 12.0 As #usn8,All(usn1 In $@usn6 Is Null Is Null Where $`1esn`[4.9e12..][_usn3..])[..@usn5(Count(*)[Count ( * )][{0}],`4esn` =~010)] As `3esn` Load Csv From #usn7 Is Null Is Null As `2esn` Fieldterminator 's_str');"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Return 5.9e-12 =~{12} =~{`2esn`} Limit Count ( * ) Starts With 0.12 Union All With *,12.0[..Count ( * )][..@usn6] Where $`1esn`[..12e-12][...9e12] Optional Match _usn4=(((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))) Using Scan `3esn`:`` Where $`5esn` =~Count(*) =~1.9e0;"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Using Periodic Commit 12 Load Csv From #usn7(Distinct $`8esn`[..5.9e-12][..`8esn`],{`3esn`}[01234567][{#usn7}]) =~Case When {`8esn`} Starts With .9e-1 Starts With 1000 Then $`6esn`[$_usn3..{1000}] When 3.9e-1 Starts With .9e0 Starts With {#usn7} Then .0e-0 Ends With $`2esn` Ends With `5esn` Else _usn4[$_usn4] End =~Single(#usn7 In .0e-0 In 12 Where #usn7[123.654][{12}]) As `1esn` Fieldterminator 's_str';"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Drop Constraint On(`7esn`:_usn3)Assert Extract(usn1 In \"d_str\" Contains {@usn6} Where $`` =~.1e-1).`4esn`.usn1?._usn3? Is Unique;"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Optional Match ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),_usn3=Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``))) Unwind $`6esn` In 999 In {_usn3} As `5esn` Unwind Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As #usn8 Union All With Distinct 12e12[usn2..$`6esn`] As usn1,0Xa Contains 12e-12,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As #usn7 Order By 9e12 Ends With \"d_str\" Ends With 0X7 Desc Skip {12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1] Where $@usn6 Is Null Load Csv From 1e-1[..$`2esn`][..01] As #usn7 ;"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Merge Allshortestpaths(((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))) With Distinct $usn2 Starts With $999 Starts With .0e0,Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $`` =~$_usn3) In .0e0 In Shortestpath((:`7esn`{usn2:00 Is Not Null Is Not Null})) Skip 0xabc Contains 12 Contains Null Limit None(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {0}[.1e-1..][_usn4..])[Case {_usn3} In $#usn8 In $12 When $`5esn` =~Count(*) =~1.9e0 Then {123456789} Ends With 11.12e-12 Ends With 00 Else 01 =~{_usn3} =~01 End..][Case When .1e1 Is Not Null Is Not Null Then @usn6 Starts With #usn7 When {1000}[`2esn`...0e-0][9e-1..0X7] Then $`8esn`[..12][..9e12] End..] Where `5esn` Contains 0 Contains $12;"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Drop Constraint On(#usn7:`5esn`)Assert Exists(All(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn5 Starts With #usn7)._usn4!)"), + octest_legacy:ct_string("Cypher 1000.999 Create Constraint On(#usn8:#usn7)Assert Exists((usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[_usn3?:@usn5|:#usn7]->(`2esn` :usn1)<-[?:usn1|usn2{#usn8:'s_str'[`2esn`][12.0]}]->(_usn3 :``).`5esn`)"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Create Constraint On(`7esn`:`4esn`)Assert Exists(Extract(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1]|'s_str' =~$usn2 =~{7}).`3esn`!)"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On(usn2:`8esn`)Assert (`4esn` :@usn5)-[usn1?:`3esn`|`3esn`*..]-(`1esn` ).#usn8?._usn4.`7esn`! Is Unique"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Create Constraint On()-[_usn4:`7esn`]->()Assert Exists(Single(`6esn` In 010[{`1esn`}..] Where usn2[12e-12..{`8esn`}][.12e12..{123456789}]).#usn8?);"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 With Distinct 9e1 Ends With 9e12 Ends With 0x0 As #usn8,``(Distinct $999[usn1..0e-0]) Ends With {`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]} Ends With {`1esn`:$@usn5 Contains _usn3,usn2:9e12 Ends With \"d_str\" Ends With 0X7} Order By 0e0 Is Null Is Null Asc,usn1 =~false =~{999} Desc Where Count ( * )[9e0..$``] Create Unique Shortestpath((`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})),((_usn3 :`7esn`{@usn6:$`4esn` Ends With .12e12 Ends With 123.654})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)<-[#usn7? *0xabc..12]-(:`3esn`)) Unwind 12e-12 Starts With $`7esn` As usn2;"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Create Constraint On(usn2:#usn8)Assert {_usn4:3.9e-1[{@usn6}..][01234567..],`2esn`:.12e-12[9e1]}.usn2! Is Unique"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Drop Constraint On(`1esn`:`2esn`)Assert Exists((#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})-[`3esn`?:`3esn`|`3esn`*..]-({`6esn`:1000[{`1esn`}..][$`3esn`..]})-[@usn6:`1esn`|:`1esn`{#usn8:12.0[..Count ( * )][..@usn6]}]-(@usn6 :`3esn`{`4esn`:$`5esn`[$_usn3][$12],#usn8:`8esn`[.12e12..]}).#usn7!);"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Match `1esn`=(`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[ *0X0123456789ABCDEF]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]}))) Load Csv From usn2 Starts With $usn1 Starts With 10.12e12 As `3esn` Fieldterminator 's_str' Union Start `7esn`=Node:`5esn`({0}) ,usn2=Relationship:#usn8(usn2={@usn5})Where $`6esn`[0..{@usn6}][@usn5..1000] Foreach(`6esn` In {`5esn`} Is Not Null Is Not Null| Load Csv From {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]} Is Not Null As `6esn` Fieldterminator 's_str') Union All Merge `1esn`=({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})-[`4esn`{_usn3:010[..9e-1][..0X7]}]->(#usn7 :`1esn`:``) Start `2esn`=Rel:usn1('s_str') Where 9e1 Starts With $@usn6 Starts With 0e-0 Create Unique (((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))),`4esn`=(((`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})-[?:_usn3]->(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})-[:`2esn`|`5esn` *01]-(@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0})))"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Using Periodic Commit 7 Load Csv From `8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End As `` Delete {`6esn`} =~2.12 =~123.654,$`5esn` In $12 In `2esn` Return Distinct *,Any(`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]) In Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4});"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Detach Delete Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null,(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])],.1e1 Is Null Is Null With Distinct 0.0[$`4esn`] As `4esn` Order By All(usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]) In Allshortestpaths(((`5esn` :`4esn`:usn2{_usn4:Count ( * ) Is Not Null Is Not Null,#usn8:`1esn`[{usn1}..]}))) In Filter(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Asc,{usn1}[9e-1][{@usn5}] Ascending,(`8esn` :@usn6:_usn3{`2esn`:#usn7 =~$@usn5 =~{7},`2esn`:{`3esn`}[..{`4esn`}][..usn2]})-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})[[`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where Count(*)[$7]|01[`6esn`..][0e0..]]..] Asc Skip 0X0123456789ABCDEF In $`2esn` In .9e-12 Limit $0 Ends With $usn1 Ends With {``} Merge ``=Shortestpath(((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[ *..123456789{@usn5:1e-1[$`4esn`]}]->(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0}))) On Match Set `3esn` ={`4esn`:12e12 Is Not Null Is Not Null} Contains Case When {_usn4}[{`6esn`}] Then 12e12 Is Not Null Is Not Null When #usn7 Is Null Is Null Then {`8esn`} Starts With .9e-1 Starts With 1000 End;"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Merge Allshortestpaths((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})) Merge `7esn`=Shortestpath(((`6esn` :``)<-[`8esn`*]-(#usn8 )-[`3esn`?:`1esn`|:`1esn`]-(@usn6 :`4esn`:usn2))) On Match Set Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where .0e-0[..``][..$7]).``!.`8esn`? ={1000} Starts With {`1esn`},``:`1esn`:``,(#usn7 {usn1:2.12[{12}]})-[:usn1|usn2]->(`8esn` :`5esn`:`7esn`).@usn6! =false =~{`8esn`} =~00 On Match Set `7esn`+=Reduce(_usn3=5.9e-12 Is Null Is Null,_usn3 In `8esn`[_usn4]|2.9e1[Count ( * )..]) Is Null,#usn8 =0e0 Ends With .9e0 Ends With 01234567 Unwind `6esn`[0X0123456789ABCDEF..][`8esn`..] As _usn4;"), + octest_legacy:ct_string("Cypher 999.123456789 Drop Constraint On(`2esn`:usn2)Assert [`` In `7esn` =~#usn8 =~\"d_str\" Where 2.12 =~$999].@usn5? Is Unique;"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Delete @usn5[#usn7..],(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]-(:_usn3{_usn3:010[..9e-1][..0X7]}) Starts With Case When $1000 Starts With {@usn6} Starts With $@usn5 Then `2esn` When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else 12[4.9e12..] End Starts With (_usn4 {`3esn`:.0e-0 In 12})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc}) Union All Foreach(`2esn` In `6esn` =~999 =~$999| Detach Delete Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789)[..All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 1e1 =~{@usn5} =~`7esn`)][..Case 07[..$`5esn`] When 00[$_usn4][$`1esn`] Then {#usn7}[.12e-12] Else `5esn` Contains 0 Contains $12 End] Create Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})))) Foreach(_usn3 In {usn1:12[..$`5esn`]}[None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..])]| Create Unique #usn8=Allshortestpaths((:usn1{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`))) Union All Return {12}[6.0e0..{usn2}][{_usn3}..{#usn7}] As _usn4,usn1 =~0Xa =~0 As @usn5 Limit $usn2 Ends With 9e12 Ends With Count ( * );"), + octest_legacy:ct_string("Cypher 1000.999 Drop Constraint On(`7esn`:`2esn`)Assert Case When {usn2} Is Not Null Is Not Null Then false Contains {`7esn`} When {_usn3} Is Null Is Null Then .12e12 Ends With 07 Ends With 3.9e-1 End.#usn7! Is Unique;"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Drop Constraint On(`8esn`:`6esn`)Assert Exists([`` In `7esn` =~#usn8 =~\"d_str\" Where 3.9e-1 Starts With .9e0 Starts With {#usn7}|$usn1 =~.9e12 =~`6esn`].`3esn`!)"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Create Constraint On(_usn4:`5esn`)Assert None(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str').@usn5?.#usn7? Is Unique"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On(`4esn`:@usn6)Assert Exists(All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {`3esn`}[999..$`4esn`])._usn4!.@usn5!.#usn7!)"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Unwind `3esn` Ends With $`` Ends With #usn7 As usn1 Remove Reduce(usn1=0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],#usn7 In .0e-0 In 12|{0} Is Not Null Is Not Null)._usn4!,Reduce(usn1=7[..123456789][..true],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|0xabc Starts With 12 Starts With 0e-0).#usn8! Remove [`6esn` In 010[{`1esn`}..] Where `6esn` Ends With 1e1 Ends With $#usn7|2.9e1 =~Count(*) =~{123456789}].`5esn`?.usn2!,Reduce(`4esn`=9e1[0.0],`6esn` In 010[{`1esn`}..]|01[$`1esn`..$`7esn`][{usn2}..12.0])._usn4! Union Optional Match `8esn`=Allshortestpaths(((:`4esn`:usn2{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(_usn4 :usn2))) Return Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0]) Is Null Is Null As _usn3,1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As usn2,false[9e12] Order By 0xabc[01234567][.12e-12] Ascending,Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`8esn`}[..999][.._usn3]) Starts With Reduce(``=$#usn7 Ends With 999 Ends With {12},`2esn` In $@usn5 Is Not Null Is Not Null|{`6esn`} Starts With .12e-12) Descending Skip 2.12[10.12e12][_usn4] Limit $`5esn` In $12 In `2esn` Optional Match ((:``{usn1:`4esn` Is Not Null})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})) Using Join On usn1,_usn4,`1esn` Where 7.0e-0[$`6esn`..] Union All Match #usn7=(`4esn` {#usn7:$usn1[0e0...9e-12]}) Where $`7esn` In $`4esn`;"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Unwind $@usn6[``..][3.9e-1..] As `3esn` Match @usn5=Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))) Using Index _usn3:usn2(`4esn`) Where 0.12[Count ( * )..Count ( * )][$999..`5esn`];"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Start `1esn`=Node:_usn4(`5esn`={usn1}) Where $usn2 Contains $`3esn` Contains 6.0e0 Merge `2esn`=(`3esn` :`2esn`:`4esn`) On Match Set `3esn`(Count ( * )[_usn4..],`2esn`).usn1!._usn4 =`1esn` In 010 In 1e-1,Any(#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null).`2esn`! =Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null,usn2+=8.1e1[$``] On Match Set @usn5:`1esn`:`` Union Match `5esn`=((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})) Using Index usn2:``(`3esn`) Where 0e-0[..7.0e-0][..{`8esn`}] Start _usn4=Relationship:`7esn`({123456789}) Where 3.9e-1[..$1000][..0.12] Remove `2esn`:_usn3,Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $usn1 Contains 4.9e12 Contains $`2esn`).usn2?.`1esn`!,`1esn`:`5esn`:`7esn`;"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Using Periodic Commit 1000 Load Csv From [@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null] Starts With Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789) Starts With All(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0) As _usn4 Fieldterminator 's_str';"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Unwind Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})[Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})<-[`5esn`?:`7esn`|usn1{@usn5:9e0[`3esn`][0]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )))..][Case When $#usn7 Contains 3.9e-1 Then .12e12 Starts With 5.9e-12 Starts With `4esn` When {1000}[`2esn`...0e-0][9e-1..0X7] Then 010[...12e-12] End..] As `3esn` With Distinct .0e0[$usn1][0] As ``,0xabc[0Xa..],9e-12 Ends With 9e1 Ends With 4.9e12 As `5esn` Order By $`` Ends With 1e-1 Ends With $@usn6 Ascending Limit .9e0 Ends With $0"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Return usn2[..$0][..`3esn`],{``:01234567[10.12e12][0Xa]} Is Null Is Null As #usn7,false Contains {`7esn`} Skip 0.0[$`4esn`] Limit (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])] Union All Detach Delete .12e12 Ends With 07 Ends With 3.9e-1 Foreach(usn2 In usn2[12e-12..{`8esn`}][.12e12..{123456789}]| Unwind {`7esn`}[0.12] As `6esn` Match `2esn`=Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}}))) Where $123456789[..$999][..`6esn`]) Union Load Csv With Headers From Shortestpath((`6esn` :``)) Contains Case When $@usn6[``..][3.9e-1..] Then 7[..123456789][..true] When `4esn` Contains 0X0123456789ABCDEF Contains $usn2 Then 12e12[{`4esn`}..`4esn`][999..{@usn6}] End As `6esn` Fieldterminator 's_str' Unwind {`8esn`}[9e12..][{_usn4}..] As #usn8"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Drop Constraint On(`1esn`:`2esn`)Assert Exists(Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0e-0[..$usn2]).@usn6);"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Start @usn5=Rel:`8esn`(usn1={#usn7}) ,``=Node:`7esn`({#usn7})Where 00[$``] Optional Match (:usn2)<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:#usn8|:``{#usn8:{_usn4} In 0X7 In 0e0,`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]-(@usn5 ) Union Delete [`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null] =~`6esn`(Distinct 2.9e1[Count ( * )..]),{`3esn`} Is Not Null Is Not Null Union Merge Allshortestpaths(((`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})<-[usn2? *0xabc..12{`6esn`:`8esn`[_usn4]}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]}))) On Match Set usn1 ={`6esn`} In 11.12e-12 In 2.9e1,#usn8+={@usn5} Contains .1e1 Contains {`5esn`},@usn6+={`3esn`}[#usn7] On Create Set @usn6 =$`5esn` In ``;"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Create Index On:_usn3(`7esn`)"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Create Constraint On(usn2:_usn4)Assert Reduce(_usn4=5.9e-12 Contains {12} Contains {#usn8},`7esn` In 0.12 Is Not Null|{`5esn`}[.1e-1..1e-1][999..{_usn3}]).#usn8.``? Is Unique"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Detach Delete Filter(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}]) Starts With Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3)) Starts With {@usn5:$123456789 Is Not Null Is Not Null},9e1 Starts With $`8esn` Starts With `3esn`,Reduce(_usn3=`4esn`[9e-12..true],`8esn` In {usn1}[7.0e-0..][3.9e-1..]|999 Starts With 7.0e-0 Starts With true) Starts With None(`2esn` In $@usn5 Is Not Null Is Not Null Where {12} Ends With $`3esn` Ends With 0xabc) Starts With Allshortestpaths((usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[`8esn`*]-(`7esn` :``{usn2:$7})) Foreach(@usn6 In 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))]| Remove Single(`2esn` In $@usn5 Is Not Null Is Not Null Where false =~$7).`7esn`!.`5esn`?,Reduce(#usn7={`5esn`},`2esn` In $@usn5 Is Not Null Is Not Null|`1esn` =~{12} =~{999})._usn4! Remove (#usn8 )<-[:_usn4|:`1esn`{@usn5:.0e-0 In 12}]-(:_usn4:`2esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1})-[`3esn`? *..07]-(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}).`7esn`?,Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[..0][.._usn3]).usn1) Union All Unwind $999[usn1..0e-0] As `8esn` Match `5esn`=Shortestpath((`5esn` :``{_usn3:$_usn4[..$999],`7esn`:0X0123456789ABCDEF Ends With {1000}})-[*{@usn5:`6esn` =~999 =~$999}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})),`1esn`=Allshortestpaths(((:usn1{`6esn`:$_usn3[usn2..][usn1..],#usn7:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}))) Using Join On `6esn`,``,usn2 Using Join On @usn5,`5esn` Where .12e12[$usn1..][{@usn6}..]"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On(@usn6:`7esn`)Assert Exists(Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..]|11.12e-12 Contains usn1)._usn4?)"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Create Constraint On(@usn5:#usn8)Assert Exists(Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[10.12e12]|$usn2[..$999][..#usn8]).`6esn`!.#usn7!);"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Load Csv With Headers From Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[`8esn`(0X0123456789ABCDEF Is Not Null Is Not Null,{usn1} Is Not Null Is Not Null)..][{usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}..] As usn2 Fieldterminator \"d_str\" Union All Load Csv From None(`2esn` In $@usn5 Is Not Null Is Not Null Where {7}[$@usn5..123456789][1e1..1.9e0]) Ends With Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End Ends With {_usn3:$1000 Starts With {@usn6} Starts With $@usn5} As `4esn` Fieldterminator \"d_str\" Union All Load Csv With Headers From 2.9e1 =~{123456789} =~01 As _usn3 Fieldterminator \"d_str\" With Distinct Any(`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]) In Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Skip {usn2} Contains {0};"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Load Csv With Headers From 2.12[010..][{999}..] As `5esn` Fieldterminator \"d_str\" Remove All(usn1 In {#usn7} =~.12e12 =~9e0 Where {7}[$@usn5..123456789][1e1..1.9e0]).`6esn`!,{`8esn`:2.9e1[Count ( * )..]}.@usn6.usn2!,Any(_usn3 In `8esn`[_usn4] Where 010[..9e-1][..0X7]).`1esn`? Union Foreach(usn2 In Single(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Is Not Null| Unwind 5.9e-12 =~@usn6 =~.12e-12 As _usn4 Remove _usn4:`4esn`:usn2,`1esn`(Distinct 0e-0[{12}],Count(*)[$7]).`4esn`._usn4,[#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12].`4esn`!.#usn7) Optional Match #usn7=((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})) Using Join On #usn8 Using Join On _usn4 Start _usn3=Relationship(0x0) ,``=Relationship( {@usn5})Where 0Xa In 1.0 In $@usn5 Union All Load Csv From $12 Is Null As `7esn` Fieldterminator 's_str' Merge `5esn`=((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)) On Match Set usn2+={7} Starts With 0x0 Starts With 9e1,`3esn`:`8esn`,{_usn4:07 Ends With {1000} Ends With 01234567}._usn4?.`1esn`? =$`7esn` Is Null On Create Set `5esn` =({`4esn`:#usn8[\"d_str\"..usn2],`1esn`:12.0[..Count ( * )][..@usn6]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ) =~Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End =~{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Foreach(`8esn` In 2.9e1 In {``}| Create Shortestpath(((`7esn` {@usn5:Count ( * )[_usn4..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))) Unwind Allshortestpaths(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0}))[Reduce(@usn6=10.12e12 Starts With $`4esn` Starts With 0e0,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$1000 Contains $123456789 Contains #usn8)..Case 7[..123456789][..true] When $1000[..0e-0][..010] Then 999 Starts With 7.0e-0 Starts With true End][[`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]]..Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When 0.12[Count ( * )..Count ( * )][$999..`5esn`] Then $123456789[..$999][..`6esn`] Else 7[{`4esn`}..] End] As @usn6);"), + octest_legacy:ct_string("Cypher 1000.999 Create Constraint On(`1esn`:`5esn`)Assert usn2(Distinct 1.0 In {usn1},10.12e12[usn2]).`1esn`?.`3esn`!.`7esn`! Is Unique;"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Return *,$123456789[..$999][..`6esn`] As @usn5,Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07)[Case 9e-12 Ends With 9e1 Ends With 4.9e12 When `3esn` =~$#usn7 Then $@usn5 Starts With #usn7 When {`4esn`}[{`3esn`}][$`2esn`] Then #usn7[$`8esn`][{`3esn`}] Else 9e0[`4esn`..$_usn4][9.1e-1..0e0] End][[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]] Skip @usn5[9e-1..{`1esn`}] Limit 11.12e-12 Contains usn1 Load Csv From false =~{`8esn`} =~00 As `7esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On()<-[_usn4:`5esn`]-()Assert Exists(Extract(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).@usn5!)"), + octest_legacy:ct_string("Cypher `6esn`=usn2 With 0Xa Starts With 9e0 Starts With Count(*) Skip $``[1.0..][_usn3..] Foreach(`5esn` In Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}]| Load Csv From 7 In 1e1 In {``} As `2esn` Fieldterminator \"d_str\") Union All Start `1esn`=Rel:_usn3(@usn5='s_str') Where 12[4.9e12..];"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Drop Constraint On(`4esn`:@usn5)Assert Reduce(usn1=$123456789 Is Not Null Is Not Null,`7esn` In 0.12 Is Not Null|.12e12 Ends With 07 Ends With 3.9e-1).`1esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Create Constraint On(usn1:`5esn`)Assert Exists({`4esn`:$`1esn`[..1000][..\"d_str\"],#usn7:{`5esn`}[.1e-1..1e-1][999..{_usn3}]}.#usn7);"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Match `3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})),usn1=((`` :`7esn`)) Using Index @usn5:_usn4(usn2) Using Join On `1esn`,`3esn`,`5esn` Union Return Distinct *,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) As #usn8,Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``}) In (_usn4 :_usn3)<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-({#usn7:12e12[.9e12..07]}) In @usn5({1000}[0..]) Unwind .1e-1 Is Not Null As `3esn` Union All Detach Delete .1e-1 Contains .12e-12,{`5esn`:$`6esn`[@usn6...9e-12]}[{usn1:$_usn3[0x0][{0}]}..Filter(_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`])][Case When .12e12 Ends With 07 Ends With 3.9e-1 Then 01234567[\"d_str\"..][$`4esn`..] End..Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End],0xabc Is Null Is Null Start _usn4=Node:@usn6(#usn8='s_str') ;"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Create ({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})<-[_usn3? *0xabc..12]->(_usn3 {#usn7:$999 =~false =~{`8esn`}}) Start _usn3=Node( {123456789}) Where {`3esn`}[$#usn8..] With Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn`) Contains (`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) Contains Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}),1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As _usn4 Skip (`1esn` :`8esn`{`6esn`:9e-1 Contains 3.9e-1,_usn4:{`3esn`}[...1e1][..0]})<-[`7esn`?:@usn5|:#usn7]->(`8esn` :@usn6:_usn3)<-[`1esn`:#usn7|:@usn5 *..123456789]-({#usn7:{7}[0x0][1e1]})[{`3esn`:0.12 In $``}] Limit 11.12e-12 =~Count ( * ) Union All Start `3esn`=Node( {1000}) ,`1esn`=Rel:@usn6(`2esn`='s_str')Where $123456789[..$999][..`6esn`] With Distinct .1e-1[2.9e1..][$`7esn`..] As #usn8,Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Not Null Is Not Null As #usn8,07[9e-1..][1e1..] As `4esn` Skip {`4esn`} Contains 4.9e12"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Drop Constraint On(usn2:`8esn`)Assert Exists(`8esn`(Distinct 8.1e1 Contains $@usn6,999 Contains {999} Contains 12).usn2?);"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Create `5esn`=Allshortestpaths((({`6esn`:8.1e1 Contains .9e-1 Contains false}))),(:usn1{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`) Delete Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}) Ends With ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[ *12{#usn8:0e0 =~{12} =~{1000}}]->(:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}) Ends With Case When $@usn5[``..] Then `3esn` Is Null When $7[.1e-1..{@usn6}][$7..{`1esn`}] Then 0xabc[0Xa..] Else 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] End,$12[$@usn5],`2esn`[.9e12..] Start `2esn`=Rel( {_usn3}) Where $_usn4 =~$#usn8 =~{`4esn`} Union Delete $`6esn` In 999 In {_usn3},0[.9e-1..0e0][.1e1.._usn4],\"d_str\" Is Not Null Is Not Null Delete {`3esn`}[..{`4esn`}][..usn2],`1esn`({`4esn`} Ends With Count(*),$usn1 Contains 4.9e12 Contains $`2esn`) Is Not Null Is Not Null,Single(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1])[Case When 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Then $#usn8 Is Not Null Is Not Null When \"d_str\" Starts With $`7esn` Starts With 999 Then \"d_str\"[0x0..{@usn6}][$@usn5..0] Else .0e-0[..01234567] End..] Merge @usn6=((`2esn` :usn1)<-[_usn3:@usn5|:#usn7 *..07]-({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2)) Union Create ((`4esn` :``{_usn4:$_usn3[0x0][{0}],@usn6:9e-12 Is Not Null Is Not Null})<-[usn2:_usn3 *0xabc..12]-(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]})),``=Shortestpath((:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})<-[`3esn` *..0x0]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})-[`6esn`?:@usn5|:#usn7{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}]-(`4esn` {@usn5:5.9e-12[12e-12][$`8esn`],`5esn`:{123456789} Contains $0}));"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Create Unique @usn6=((`1esn` :`8esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}));"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Drop Constraint On(#usn7:usn2)Assert usn2({`1esn`} Is Null).`8esn`? Is Unique;"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On(`5esn`:@usn6)Assert Exists(Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {123456789}[...9e-1][..1.0]|010[{`1esn`}..]).`8esn`);"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Drop Constraint On(`8esn`:`7esn`)Assert Extract(`6esn` In 010[{`1esn`}..] Where {`4esn`}[00..]|`6esn` =~999 =~$999).`1esn`! Is Unique"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 With Distinct #usn8[..'s_str'][..'s_str'] As `2esn`,None(@usn6 In 9e12[..usn2][.._usn3] Where $7) Is Not Null Is Not Null Limit `7esn`[1.9e0..5.9e-12][9e0..@usn5] Create Unique (((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})-[`2esn`?:@usn6|:`4esn` *010..0{`4esn`:Null[$`3esn`..][`1esn`..],_usn3:6.0e0[$#usn7..$1000]}]-(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]}))) Merge ((:_usn3{@usn6:$1000 Starts With {@usn6} Starts With $@usn5})<-[{`3esn`:Count ( * )[_usn4..]}]->(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})) On Create Set `4esn` =$@usn6 Is Null Is Null,#usn7 ={`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]} Is Null Is Null;"), + octest_legacy:ct_string("Cypher 1000.999 Create Constraint On()-[`3esn`:`5esn`]-()Assert Exists({_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}.``);"), + octest_legacy:ct_string("Cypher 999.123456789 Create Constraint On(`5esn`:`8esn`)Assert All(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..]).usn2 Is Unique;"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On()-[`2esn`:usn1]-()Assert Exists(Filter(#usn7 In .0e-0 In 12 Where 00[$``])._usn3!);"), + octest_legacy:ct_string("Cypher 1000.999 Create Constraint On(`2esn`:#usn7)Assert Exists(Any(`` In `7esn` =~#usn8 =~\"d_str\" Where 12e12 Is Not Null Is Not Null).`5esn`!)"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Return Distinct {@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] As `` Order By $`1esn`[..12e-12][...9e12] Asc,`4esn` =~_usn4 =~0e-0 Descending,{12} Is Null Is Null Descending Skip Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]) Is Not Null Is Not Null Limit {7}[#usn7..0xabc] Create Unique `6esn`=((:#usn7:`8esn`{usn2:`1esn` =~{12} =~{999}})),(({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})<-[_usn4 *010..0{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}]-($123456789));"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Delete `8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End,Any(_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12)[(`5esn` :`8esn`{`1esn`:{`8esn`} Starts With .9e-1 Starts With 1000,@usn5:10.12e12 In Null In .12e12})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})..],Reduce(#usn7=$usn1 Ends With {`2esn`} Ends With $usn1,`6esn` In 010[{`1esn`}..]|.9e-12[.12e12..][0Xa..])[#usn7(8.1e1 Contains $@usn6,$12[$`6esn`..][01..])..Reduce(@usn5=`1esn` In 6.0e0 In 12,`` In `7esn` =~#usn8 =~\"d_str\"|$`6esn` =~$#usn7 =~$`4esn`)] Merge `1esn`=Shortestpath((({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[`8esn`*]->(#usn7 :#usn7:`8esn`))) On Match Set `3esn`(Count ( * )[_usn4..],`2esn`).usn1!._usn4 =`1esn` In 010 In 1e-1,Any(#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null).`2esn`! =Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null,usn2+=8.1e1[$``] Union Return usn2[12e-12..{`8esn`}][.12e12..{123456789}] As #usn8,Case When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] When {123456789} Starts With $_usn4 Starts With 0x0 Then 9e0[`3esn`][0] End[{`3esn`:false Starts With 0 Starts With 2.9e1,@usn6:9e-12 Ends With {1000}}..{`8esn`:_usn3[{#usn7}]}] As usn1 Skip Allshortestpaths((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))[usn1..] Limit usn2 Ends With $123456789 Ends With {999};"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(`7esn`:`5esn`)Assert All(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`).usn1 Is Unique;"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Create Constraint On()<-[_usn3:@usn5]-()Assert Exists(Case When $12[$`6esn`..][01..] Then $`4esn`[$@usn6...12e12] When .9e-12[.12e12..][0Xa..] Then {`7esn`} Is Not Null Is Not Null Else {`6esn`}[6.0e0..9e0][.9e1..12e12] End.#usn8!);"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Remove @usn6(07[{@usn5}..],$999[usn1..0e-0]).`1esn`?._usn4!._usn3?,[`7esn` In 0.12 Is Not Null Where 0X0123456789ABCDEF In false|_usn3 =~{7} =~123.654].`6esn`.@usn6.usn1,#usn8:`4esn`:usn2 Create @usn5=(((`2esn` :_usn3{usn1:5.9e-12 Is Null Is Null})-[`7esn`?:#usn7|:@usn5 *1000..]->(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]}))) Remove {usn2}.`7esn`?,(:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`2esn` *1000..{`2esn`:{@usn6} In 9e12}]->(:usn1{usn1:true In 0.0,@usn5:{`1esn`} Is Null})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]}).#usn8?.`3esn`!.`2esn`!,Case .12e12[..$123456789] When .12e-12[9e1] Then 1e-1[$`4esn`] When $`8esn` Then 999[..$@usn5][..``] Else $#usn8 Is Not Null Is Not Null End.usn2?.`6esn`._usn3? Union Return #usn8[..'s_str'][..'s_str'] As `2esn`,None(@usn6 In 9e12[..usn2][.._usn3] Where $7) Is Not Null Is Not Null Limit `7esn`[1.9e0..5.9e-12][9e0..@usn5] Foreach(`7esn` In {`5esn`}[01234567..][5.9e-12..]| Detach Delete .12e12[01..{1000}][8.1e1..Count ( * )] Return Distinct Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As @usn6,07 Ends With {1000} Ends With 01234567 Order By Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null) In `4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`) Desc Skip true Contains 0X7 Contains $#usn8) Union All Unwind {usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'} Contains Allshortestpaths((`8esn` :`2esn`:`4esn`)-[`2esn`?:``|:`7esn` *1000..]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})) Contains None(`6esn` In 010[{`1esn`}..] Where {``}[$usn2..00][{_usn3}..123.654]) As #usn7 Start `5esn`=Node:_usn4(@usn5={`4esn`}) Remove Case 9e-12 Starts With {1000} When `1esn`[Null][{@usn6}] Then {_usn3} Is Null Is Null When 10.12e12[usn2] Then $12 =~4.9e12 Else .9e12[6.0e0..][@usn5..] End.@usn5!"), + octest_legacy:ct_string("Profile Return Distinct @usn6[Reduce(`5esn`=_usn4['s_str'][8.1e1],_usn3 In `8esn`[_usn4]|$_usn3 =~'s_str' =~12)..][(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[`7esn`?]-(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})..],9e0 In {usn2} In {@usn6} As `8esn` Order By None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) Desc,0e-0[..$usn2] Descending Limit $`5esn` Starts With 4.9e12 Starts With 0e-0 With {#usn7}[..\"d_str\"][..#usn8] As `3esn`,Any(_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12)[(`5esn` :`8esn`{`1esn`:{`8esn`} Starts With .9e-1 Starts With 1000,@usn5:10.12e12 In Null In .12e12})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})..] As usn1,$999 Ends With `2esn` Ends With 12.0 As @usn6 Skip $`1esn` Limit {7}[.1e-1] Where `4esn`[9e-12..true] Union Remove `2esn`:`2esn`:`4esn`,Single(usn1 In {#usn7} =~.12e12 =~9e0 Where {1000} Starts With 10.12e12 Starts With .0e-0).usn2 Start `3esn`=Node(0xabc,7,0Xa,01234567) Where $`8esn` Is Not Null Is Not Null Union All Unwind Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] As `1esn` Create Unique Allshortestpaths(({`6esn`:8.1e1 Contains .9e-1 Contains false})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})),@usn6=((`` {_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})) Load Csv With Headers From 2.12[10.12e12][_usn4] As `1esn` ;"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Detach Delete \"d_str\" Starts With .1e-1,Reduce(`2esn`=$@usn5[``..],`7esn` In 0.12 Is Not Null|$`4esn` Is Not Null) =~Any(_usn3 In `8esn`[_usn4] Where {`6esn`} In {_usn4} In $12) =~Reduce(`1esn`=false =~{`8esn`} =~00,`2esn` In $@usn5 Is Not Null Is Not Null|`1esn`[{@usn5}..][{_usn4}..]),{`2esn`:`5esn` Ends With Count(*)}[..`8esn`({#usn7}[.12e-12],$`` =~.1e-1)][..Allshortestpaths(((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})))] Foreach(usn1 In Single(_usn3 In `8esn`[_usn4] Where $_usn3[usn2..][usn1..])[{`6esn`:Count(*) =~01234567 =~.1e-1}..[usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]]]| Create ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})) Union Optional Match Shortestpath((`4esn` :_usn3)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})),#usn7=((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})) Using Join On @usn6,usn1,`5esn` Using Join On `2esn`,@usn5 Detach Delete `1esn`[Null][{@usn6}]"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Create Constraint On(usn2:#usn7)Assert Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .12e12 Starts With 5.9e-12 Starts With `4esn`).`3esn`? Is Unique;"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Create Constraint On(``:#usn8)Assert Exists(Extract(_usn3 In `8esn`[_usn4] Where 12.0[..Count ( * )][..@usn6]|00 Is Not Null Is Not Null).`8esn`?);"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Create Constraint On(`6esn`:`6esn`)Assert Single(#usn7 In .0e-0 In 12 Where 0.0[00..][0xabc..]).`1esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On(@usn5:`7esn`)Assert Exists((`3esn` {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(:`5esn`:`7esn`{`4esn`:2.9e1[{`2esn`}]})._usn3!)"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Load Csv With Headers From [usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0|4.9e12 Is Not Null Is Not Null] =~Case {_usn3} In $#usn8 In $12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else 0[..{0}][..true] End =~Case Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else $_usn3 Starts With 010 End As `3esn` Match `8esn`=((@usn6 :@usn6:_usn3)),Allshortestpaths((((:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})-[`7esn`:`1esn`|:`1esn` *0Xa..12]-(`8esn` :`7esn`)<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})))) Using Scan #usn7:`3esn` Using Index `6esn`:`3esn`(``)"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Create Constraint On(`7esn`:usn1)Assert count(01234567 =~12e12 =~.0e-0,$999 Is Not Null).@usn6?.`1esn`.`8esn`? Is Unique;"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Remove [`3esn` In 8.1e1 Contains .9e-1 Contains false Where 07 Ends With {1000} Ends With 01234567|$`5esn` Ends With 's_str' Ends With $`6esn`].`2esn`,{`2esn`:0xabc[01234567][.12e-12],`1esn`:{`3esn`}[#usn7]}._usn4?,(_usn3 )<-[:`8esn`|:#usn8 *0X7..0Xa]->(`4esn` :`8esn`{12}).`8esn`!._usn3? Unwind $`6esn` In 999 In {_usn3} As usn2 Optional Match ({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})<-[_usn3? *0xabc..12]->(_usn3 {#usn7:$999 =~false =~{`8esn`}}) Union All Start `2esn`=Relationship:``(`1esn`=\"d_str\") ,`3esn`=Node(0xabc,7,0Xa,01234567)Where 2.12[`4esn`][.9e-1] Merge @usn6=(({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)) Union All Unwind $`3esn`[0X7..$`8esn`] As @usn5"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Create Constraint On(`5esn`:_usn3)Assert Exists(None(usn2 In $`5esn`[{`4esn`}][{0}] Where 7.0e-0 Is Not Null).@usn5?.usn1?)"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Create Constraint On(`8esn`:`7esn`)Assert None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999}).#usn8! Is Unique;"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Create Constraint On(`1esn`:`7esn`)Assert `2esn`(Distinct 9e-12 Ends With {1000},{`1esn`} Contains 1.0 Contains 4.9e12).``! Is Unique;"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Remove (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}).`7esn`!._usn4.usn1,[@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`4esn`} Ends With Count(*)|$0 Ends With $usn1 Ends With {``}].`7esn`?.``!.`3esn`,Reduce(@usn5=0xabc[..Count(*)][..$`5esn`],usn1 In \"d_str\" Contains {@usn6}|123456789[#usn7..9e-1][10.12e12..{0}])._usn4.`7esn`!.`8esn`? Match `2esn`=Allshortestpaths((`6esn` :`6esn`)-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5)-[``:``|:`7esn`*{#usn8:{#usn7}[.12e-12],`3esn`:1.9e0[`6esn`][`7esn`]}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})),(((:`1esn`:``{`8esn`:5.9e-12[0x0..]})<-[`1esn` *010..0]->(@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[{usn2:{1000}[..{usn1}][..1e-1]}]->(`4esn` {`6esn`}))) Using Index #usn7:`2esn`(`8esn`) Foreach(`4esn` In Single(`2esn` In $@usn5 Is Not Null Is Not Null Where {_usn3} Is Null Is Null) =~Reduce(``=Null,`7esn` In 0.12 Is Not Null|{#usn7} Starts With .1e-1)| With Distinct {usn1} Contains {`2esn`},[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]],`6esn`[0X0123456789ABCDEF..][`8esn`..] As #usn8 Limit Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null Where $usn2 Contains $`3esn` Contains 6.0e0)"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Create Constraint On(`3esn`:usn1)Assert Exists(Shortestpath(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})).#usn7.``)"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(`2esn`:`1esn`)Assert Exists(Reduce(`5esn`=8.1e1 Contains $@usn6,#usn7 In .0e-0 In 12|{1000} Starts With 10.12e12 Starts With .0e-0).usn1!)"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Optional Match ((:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})<-[*..{`4esn`:{1000} Starts With 10.12e12 Starts With .0e-0,`2esn`:$#usn7 Ends With {`5esn`} Ends With 01}]-({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})) Create Shortestpath((#usn8 :`5esn`:`7esn`{usn2})),((usn1 :@usn6:_usn3)-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})) Union Detach Delete [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,00[..@usn6] Load Csv With Headers From #usn8[$`2esn`] As `6esn` With Distinct 999 Ends With {#usn8},9e1[..@usn5][..$`5esn`],$@usn6[...9e-1] As `2esn` Limit $123456789 Is Not Null Is Not Null Where $7 Union Load Csv From `4esn`[..7][..$usn2] As _usn4 Return Distinct Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] As `7esn`,$#usn8[$0..`3esn`][1e-1..$7],_usn3 =~{7} =~123.654 As @usn6 Order By {`8esn`}[.0e0..][999..] Asc,#usn8(Distinct 12e12[{`4esn`}..`4esn`][999..{@usn6}])[Any(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1])..{``:9e1[0.0]}] Descending Skip Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07)[Case 9e-12 Ends With 9e1 Ends With 4.9e12 When `3esn` =~$#usn7 Then $@usn5 Starts With #usn7 When {`4esn`}[{`3esn`}][$`2esn`] Then #usn7[$`8esn`][{`3esn`}] Else 9e0[`4esn`..$_usn4][9.1e-1..0e0] End][[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]] Return Distinct None(`1esn` In $12 In {usn2})[..Reduce(usn2=.9e0 In 8.1e1,`3esn` In 8.1e1 Contains .9e-1 Contains false|$_usn3 Is Not Null)] As @usn5 Skip $`3esn` =~$123456789 =~`3esn`"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Create Constraint On(_usn3:`2esn`)Assert Reduce(``=$_usn3[0X0123456789ABCDEF..][0x0..],usn2 In $`5esn`[{`4esn`}][{0}]|1.9e0 In $@usn6 In $_usn3).usn1 Is Unique"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Using Periodic Commit 00 Load Csv With Headers From .9e12 Starts With 0X7 Starts With .9e-1 As `1esn` Merge Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))) On Match Set $`4esn`.@usn6? =0e-0[#usn7..999],`6esn` =.1e-1[$@usn6],_usn4+=All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] On Match Set `7esn` =0.0[..9e1][..2.12],#usn8+=1.0[$`4esn`..$@usn5];"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Create Constraint On(usn2:`6esn`)Assert (@usn6 {usn1:0Xa In 1.0 In $@usn5})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]}).#usn7.`8esn`? Is Unique"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Drop Constraint On(`6esn`:@usn6)Assert Exists(Any(`1esn` In $12 In {usn2} Where {usn1} Is Not Null).@usn6?.usn2?)"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Merge Allshortestpaths((((`4esn` :``{_usn4:$_usn3[0x0][{0}],@usn6:9e-12 Is Not Null Is Not Null})-[`3esn`:@usn6|:`4esn`]-(`1esn` :usn2{`8esn`:12.0[...0e0]})-[usn2:_usn3 *0xabc..12]->(usn1 :usn1{#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})))) On Match Set Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999}).`5esn`.#usn8!.`3esn`? =$12 In {usn2},`4esn`(Distinct .9e0[07..][4.9e12..]).`4esn`! =Reduce(#usn7=#usn8[\"d_str\"..usn2],#usn7 In .0e-0 In 12|`` Ends With 1.0 Ends With usn1) Ends With [_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3]] Ends With Shortestpath((((:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[`2esn`?:`8esn`|:#usn8]->(`` )<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)))),`5esn`+=7 Starts With 9e-12 Load Csv With Headers From $`1esn`[4.9e12..][_usn3..] As `2esn` Fieldterminator 's_str' Foreach(_usn4 In Shortestpath((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5))[Allshortestpaths((#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}))]| Delete 9e12 Is Not Null Is Not Null,.9e1 Is Null Is Null Delete $1000[$`2esn`..])"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Create Constraint On(``:`5esn`)Assert Shortestpath((`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})).@usn6? Is Unique;"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Return $`5esn` Is Not Null Is Not Null,Allshortestpaths(({usn1:12[..$`5esn`]})<-[:`4esn`|:`2esn`{`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]}]-(#usn8 :usn2))[..`1esn`][..Case .12e-12 Starts With .12e-12 When 0xabc Starts With {`3esn`} Starts With {``} Then {usn2} Is Not Null Is Not Null Else {`4esn`} Ends With Count(*) End] As @usn6 Skip 0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}] Limit 's_str'[$_usn3..][9.1e-1..] Load Csv With Headers From Allshortestpaths((((@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?*..]-(`` {`6esn`:1000[{`1esn`}..][$`3esn`..]})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))))[Allshortestpaths((`1esn` :usn2{`8esn`:12.0[...0e0]})-[?:`1esn`|:`1esn` *..0x0{@usn6:.0e-0 In 12}]-(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]}))][Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 01234567[1000..][$`8esn`..])] As `3esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Remove {usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}.#usn7?,All(`` In `7esn` =~#usn8 =~\"d_str\" Where {12} Starts With $`` Starts With 0X0123456789ABCDEF)._usn4?.`6esn` Create @usn5=(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]}),((`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})<-[_usn4?:`8esn`|:#usn8 *01234567..]->(`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(usn2 {`7esn`:.9e12 Contains 0 Contains $0})) Union With Distinct 0.0[$999][`6esn`] Order By $`2esn`[`8esn`..] Descending,({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}) Contains Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Contains All(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]) Descending Limit $`5esn` =~Count(*) =~1.9e0 Where $12 =~4.9e12 Start #usn7=Node:``('s_str') Foreach(`7esn` In {`6esn`} =~2.12 =~123.654| Remove [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where @usn6[true..]|.0e0['s_str'..][0Xa..]].usn2!,(usn2 :@usn5{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})<-[`7esn`{`7esn`:6.0e0 =~12.0 =~9e1}]-({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}).#usn8?.``?,All(usn1 In \"d_str\" Contains {@usn6} Where 0.0[00..][0xabc..]).`3esn`?);"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On(@usn5:`3esn`)Assert Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where $`4esn`[12e-12..$`1esn`][$`2esn`...9e12]).@usn6? Is Unique"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Unwind .9e12 Contains 5.9e-12 Contains 9e-1 As `7esn`"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On(`1esn`:`3esn`)Assert Exists((`8esn` :`8esn`)-[`2esn` *1000..{`2esn`:{@usn6} In 9e12}]->(:usn1{usn1:true In 0.0,@usn5:{`1esn`} Is Null}).`7esn`.#usn7!);"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Using Periodic Commit 0X0123456789ABCDEF Load Csv With Headers From Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As `` Fieldterminator \"d_str\" Load Csv From $`8esn`[..5.9e-12][..`8esn`] As `` Fieldterminator 's_str' Detach Delete [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..],{123456789} Contains $#usn7 Contains {#usn8}"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Drop Constraint On(_usn3:`4esn`)Assert Exists(Case 6.0e0[$#usn7..$1000] When 1e-1 =~$`7esn` =~1e1 Then {`1esn`} Is Null When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] Else Null In {7} End.`8esn`)"), + octest_legacy:ct_string("Cypher 999.123456789 Start `2esn`=Rel:`6esn`(`4esn`=\"d_str\") ,`8esn`=Relationship:`8esn`(#usn7='s_str')Where 0e-0 In 0X0123456789ABCDEF In `3esn` Create _usn4=((:@usn5{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null})) Match `7esn`=Allshortestpaths((`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})<-[_usn3? *..123456789{`6esn`:.0e-0[..``][..$7],usn2:{usn2} Ends With {@usn6} Ends With 1000}]-(`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(#usn8 :_usn4:`2esn`{`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})) Using Index ``:@usn5(usn1) Using Scan `1esn`:_usn3;"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Create Constraint On()-[``:`4esn`]-()Assert Exists((`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(`1esn` :#usn7:`8esn`).@usn6!)"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Create Constraint On()-[`5esn`:`3esn`]->()Assert Exists((:`3esn`)-[`1esn`]->(`3esn` :`6esn`{_usn3:.12e-12 Ends With `2esn`,usn1:Null[#usn7..][9.1e-1..]})-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->({#usn8:_usn4[$_usn4]}).`8esn`!)"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Unwind Single(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1])[Case When 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Then $#usn8 Is Not Null Is Not Null When \"d_str\" Starts With $`7esn` Starts With 999 Then \"d_str\"[0x0..{@usn6}][$@usn5..0] Else .0e-0[..01234567] End..] As `` Unwind \"d_str\" Is Not Null Is Not Null As `3esn` With *,Reduce(`4esn`={0} Is Not Null,#usn7 In .0e-0 In 12|12e12[{`4esn`}..`4esn`][999..{@usn6}]) Contains Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 0xabc[..{usn1}][..\"d_str\"]) Contains `3esn` As `5esn`,None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null) As _usn3 Order By {12}[true..][7..] Ascending,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Asc,({#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]})<-[`8esn`*]-(#usn8 )[..Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn`[0X0123456789ABCDEF..][`8esn`..]|$_usn3 =~'s_str' =~12)][..`1esn`(Distinct .9e1[$`1esn`..][$``..])] Ascending Skip 7[..123456789][..true] Where {#usn7}[.12e-12];"), + octest_legacy:ct_string("Profile Drop Constraint On(#usn7:`7esn`)Assert Exists(@usn5(Count(*)[Count ( * )][{0}],`4esn` =~010).`7esn`._usn4?.@usn5?)"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Drop Constraint On(_usn3:@usn5)Assert Exists(Allshortestpaths(((_usn4 )-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]}))).`5esn`);"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Load Csv With Headers From #usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) As `1esn` Fieldterminator \"d_str\" Match Shortestpath(((`` :`7esn`))),Allshortestpaths((:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[*{usn1:{`6esn`} In .0e0 In $0,usn1:07[..$`5esn`]}]-(:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})) Using Index @usn5:usn1(`4esn`) Where {0}[.1e-1..][_usn4..]"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Remove [#usn7 In .0e-0 In 12 Where 0.0[00..][0xabc..]|0xabc[0Xa..]]._usn4.`1esn`!.`7esn`? Create @usn5=(`8esn` :#usn7:`8esn`) Merge @usn6=(({usn2:01[`4esn`..]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})-[`1esn`?:`3esn`|`3esn` *..00]-(`1esn` :usn2)) On Match Set `6esn`+=01[$`1esn`..$`7esn`][{usn2}..12.0],[usn1 In {#usn7} =~.12e12 =~9e0 Where $`4esn`[12e-12..$`1esn`][$`2esn`...9e12]|$`1esn`[4.9e12..][_usn3..]].#usn7 =9.1e-1[..Null][..#usn8] Union All Create (`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]}))) Return Distinct *,$12 Is Null Is Null As #usn8 Skip {@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] Merge ``=Allshortestpaths(((`8esn` :@usn6:_usn3)-[#usn8? *0X7..0Xa{`7esn`:{123456789} Contains $0,#usn8:{`3esn`}[$#usn8..]}]-({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`}))) On Create Set `` =6.0e0[$12..0.12],#usn7+=7 In 1e1 In {``}"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Merge _usn4=((_usn3 :`6esn`)<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})) On Create Set `7esn`+=$``[Count(*)..{12}],@usn5 =All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))];"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Unwind .1e-1 Is Not Null As `3esn` Optional Match Shortestpath(((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(`4esn` :`8esn`{12})-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2))) Using Index `3esn`:usn2(`5esn`) Union All Unwind {`7esn`}[0.12] As usn2;"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Start `2esn`=Node:`8esn`('s_str') Where {`8esn`}[9e12..][{_usn4}..]"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Foreach(@usn5 In {@usn5} Contains .1e1 Contains {`5esn`}| Return $`7esn` In $`4esn` Order By 0x0 Ends With #usn8 Ends With .9e-1 Descending,$12 Is Not Null Descending,$`` =~$_usn3 Asc Skip {#usn8} Starts With {`2esn`}) Foreach(_usn3 In 01 Is Not Null| Create Unique _usn4=((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})),`4esn`=(({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)) Detach Delete {`1esn`} Contains 1.0 Contains 4.9e12,{999}[..`6esn`],{`3esn`} =~$`` =~$`8esn`) Union Load Csv With Headers From 1000 As @usn6 Fieldterminator \"d_str\" Union All Start usn2=Relationship:@usn6(#usn8='s_str') ,`6esn`=Rel:@usn6(`8esn`='s_str');"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Remove usn2(Distinct .9e0 In 8.1e1).usn2?,({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`2esn`{usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]}]-(:_usn3{@usn6:$1000 Starts With {@usn6} Starts With $@usn5})-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1}).usn1?.@usn5.`2esn`!,Reduce(`5esn`=.9e1 Ends With 0x0,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|Count ( * ) Contains 9.1e-1 Contains {`2esn`}).`6esn` Union Create `4esn`=((`3esn` :#usn8:@usn6)-[`4esn`? *01{#usn8:12.0[..Count ( * )][..@usn6]}]-(usn1 :#usn8:@usn6)) Remove Filter(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1]).`5esn`!._usn3!,Any(usn2 In .12e-12 Ends With `2esn` Where .12e-12 Starts With .12e-12).#usn7.`7esn`,`7esn`(Distinct `` Ends With 1.0 Ends With usn1).`3esn`? Union All Unwind {0}[.0e-0][$`2esn`] As _usn3 Foreach(#usn8 In Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}) Ends With ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[ *12{#usn8:0e0 =~{12} =~{1000}}]->(:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}) Ends With Case When $@usn5[``..] Then `3esn` Is Null When $7[.1e-1..{@usn6}][$7..{`1esn`}] Then 0xabc[0Xa..] Else 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] End| With Distinct 12e12[usn2..$`6esn`] As usn1,0Xa Contains 12e-12,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As #usn7 Order By 9e12 Ends With \"d_str\" Ends With 0X7 Desc Skip {12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1]);"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Create @usn5=((#usn7 :`7esn`)-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)})),(((`1esn` :`3esn`{@usn6:$12 Is Null})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))) Start ``=Relationship:@usn6(#usn8='s_str') ,_usn3=Node:`8esn`(#usn8='s_str')Where {`3esn`}[..0xabc][..{`6esn`}];"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Foreach(`3esn` In \"d_str\" Starts With $`7esn` Starts With 999| Unwind Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) As @usn6) With {@usn5:5.9e-12 Is Null Is Null} Ends With Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where _usn4['s_str'][8.1e1]|0.12 =~2.9e1 =~9e1) Ends With All(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12) As `7esn` Order By _usn4['s_str'][8.1e1] Asc,Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {#usn8}[..@usn5])[(:#usn8:@usn6{`3esn`:$#usn7})-[ *12{#usn8:0e0 =~{12} =~{1000}}]-(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})-[usn2:`5esn`]-(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})][[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01|_usn4 Ends With {`8esn`} Ends With usn2]] Ascending Skip {`1esn`}[..$_usn4] Where $@usn5[.9e-1] Match _usn4=Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]}))),`3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})) Using Join On `6esn`,_usn3 Using Index @usn5:@usn6(`5esn`) Union All Optional Match _usn4=((:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)) Where .0e0['s_str'..][0Xa..] Union All Merge Shortestpath((@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?:`8esn`|:#usn8 *999..123456789]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Using Periodic Commit 12 Load Csv From 6.0e0 In 9e-1 In 123456789 As `4esn` Remove `2esn`:`3esn`,(`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->(:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[ *1000..{`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]->(`` ).#usn8!;"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Drop Constraint On(`3esn`:`8esn`)Assert Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 0xabc[01234567][.12e-12]|{123456789} Starts With $_usn4 Starts With 0x0).``.`` Is Unique;"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` With *,Extract(#usn8 In 07[..$`5esn`] Where $usn2[..$999][..#usn8]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )])[Case {#usn7}[.12e-12] When $`4esn`[$@usn6...12e12] Then .12e-12[@usn6..'s_str'] Else .12e-12 Starts With .12e-12 End..(`` :``)-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})][Reduce(`5esn`=Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|{usn2}[9e-1])..All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}])] As `8esn` Limit $`5esn`[..{0}][..7.0e-0]"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Start @usn5=Relationship:_usn3({`7esn`}) Merge ((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})) On Create Set `5esn` =0xabc[9.1e-1..],Case When $12[$`6esn`..][01..] Then $`4esn`[$@usn6...12e12] When .9e-12[.12e12..][0Xa..] Then {`7esn`} Is Not Null Is Not Null Else {`6esn`}[6.0e0..9e0][.9e1..12e12] End.#usn8! =(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(:`6esn`{`2esn`:`5esn` Ends With Count(*)})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12}) In Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}) In Single(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str'),Allshortestpaths((`8esn` :@usn6:_usn3)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})).`3esn` ={123456789} Starts With $_usn4 Starts With 0x0 On Create Set `5esn`+=7.0e-0 Is Not Null,Any(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).`3esn`! =_usn4 Is Not Null,`` =9e1 Is Null Is Null Union Start @usn5=Rel:#usn7(usn1={`6esn`}) Union Foreach(`3esn` In [usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1][Shortestpath((({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})))..Shortestpath(((:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12})-[``?:#usn7|:@usn5{``:$usn1 Ends With {`2esn`} Ends With $usn1}]->(:`5esn`:`7esn`$usn2)-[{#usn8:\"d_str\" Contains {@usn6}}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12})))]| Match ((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)),_usn4=(`8esn` :`4esn`:usn2)-[#usn8?:`8esn`|:#usn8 *999..123456789]->(#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Using Scan `8esn`:`2esn`) With Distinct *,(:`6esn`)<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 )<-[:`4esn`|:`2esn`{usn1:3.9e-1 Contains $@usn5}]->(`7esn` ) In Case 9e1[0.0] When 999 Starts With 7.0e-0 Starts With true Then {usn2}[{999}..][9e12..] End In [`2esn` In $@usn5 Is Not Null Is Not Null Where {`3esn`} =~$@usn5 =~`2esn`|\"d_str\" Is Not Null Is Not Null] As _usn4 Order By Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] Asc,9e-12 Contains .12e12 Ascending,4.9e12[{_usn4}..] Descending Skip 010[...12e-12] Limit _usn4[{``}..{`6esn`}][$7..$_usn3] Where 11.12e-12 Ends With 's_str'"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Remove None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $usn2 Ends With 00 Ends With 9e12).`3esn`,Reduce(`3esn`=1e1[$_usn3],`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1[..9.1e-1][...9e1]).`2esn`!.`1esn`?.`3esn`? Start `3esn`=Node(0xabc,7,0Xa,01234567) Where $`8esn` Is Not Null Is Not Null Union Create Unique (`1esn` :`7esn`) With Distinct *,(:`6esn`)<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 )<-[:`4esn`|:`2esn`{usn1:3.9e-1 Contains $@usn5}]->(`7esn` ) In Case 9e1[0.0] When 999 Starts With 7.0e-0 Starts With true Then {usn2}[{999}..][9e12..] End In [`2esn` In $@usn5 Is Not Null Is Not Null Where {`3esn`} =~$@usn5 =~`2esn`|\"d_str\" Is Not Null Is Not Null] As _usn4 Order By Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] Asc,9e-12 Contains .12e12 Ascending,4.9e12[{_usn4}..] Descending Skip 010[...12e-12] Limit _usn4[{``}..{`6esn`}][$7..$_usn3] Where `8esn`[_usn4] Delete 9e0 Is Null,1e-1 Ends With {@usn5} Ends With {usn2};"), + octest_legacy:ct_string("Cypher 1000.999 Create Constraint On(`7esn`:`7esn`)Assert `3esn`({`3esn`}[...1e1][..0]).`7esn`?.usn1! Is Unique"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(usn2:#usn8)Assert Exists(`8esn`(Distinct 8.1e1 Contains $@usn6,{0}[`4esn`..{`8esn`}]).usn2!.#usn7!);"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Drop Constraint On()-[``:_usn4]-()Assert Exists(Case When 6.0e0 =~12.0 =~9e1 Then $12 Ends With 7.0e-0 Ends With 9e-12 When $usn2[..$999][..#usn8] Then $1000[_usn4][{@usn5}] End.`8esn`!._usn3)"), + octest_legacy:ct_string("Profile Merge `4esn`=Shortestpath(((`1esn` :`7esn`)<-[usn2:#usn8|:``]->({`6esn`:9e0[`4esn`..$_usn4][9.1e-1..0e0]}))) On Match Set Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where Count ( * ) Starts With 0.12).`7esn`.`2esn`? =12e12[{`4esn`}..`4esn`][999..{@usn6}],Reduce(`8esn`=.9e0 =~#usn7,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|#usn8 Is Null Is Null).#usn7? =00[..@usn6] On Match Set `6esn`(Distinct 1.0 In {usn1}).`5esn`! =.0e-0 Contains $1000,Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0).`1esn`! =`8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End,Reduce(`5esn`={``} Contains 0.0 Contains `4esn`,`2esn` In $@usn5 Is Not Null Is Not Null|0.0[`7esn`]).`2esn`.`8esn`!.`` =1.0 In {usn1} Optional Match ``=(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}) Using Scan `6esn`:#usn8 Using Index @usn5:@usn6(`5esn`) Union All Foreach(`` In `6esn`(00[$``],.1e1 Is Not Null Is Not Null)[`6esn`({usn2}[{999}..][9e12..],`4esn` Ends With 9e12 Ends With {`5esn`})..][exists(Distinct {`3esn`}[#usn7],@usn5 =~$#usn7 =~{usn1})..]| Delete $7 In 1.0 In 01234567 Create (((`1esn` :`3esn`{@usn6:$12 Is Null})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),((:`1esn`:``{@usn6:$`7esn` Ends With 7.0e-0 Ends With $usn2}))) Load Csv With Headers From 0X0123456789ABCDEF In .9e-1 In 123456789 As usn1 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Cypher Cypher 1000.999 Load Csv With Headers From 7 Starts With 9e-12 As @usn6 Fieldterminator 's_str' Union All Remove Allshortestpaths((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}})).``! Union Remove All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`8esn`} Starts With .9e-1 Starts With 1000).usn2?,Extract(#usn8 In 07[..$`5esn`] Where 0 In 2.9e1 In 7).`5esn`!.`3esn`,Case {`5esn`}[.1e-1..1e-1][999..{_usn3}] When 7.0e-0 Is Not Null Then {`8esn`}[@usn5][$`2esn`] End.usn1 Create Unique Allshortestpaths(((#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7})<-[`6esn`?:@usn5|:#usn7{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)}))),@usn6=((:`4esn`:usn2{usn2:$usn2 Ends With 00 Ends With 9e12,_usn4:{`5esn`}})-[?:``|:`7esn` *12{#usn8:10.12e12 Contains .9e0,usn1:0xabc Contains {12} Contains {`6esn`}}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}));"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Drop Constraint On()<-[@usn6:`3esn`]-()Assert Exists(Reduce(#usn7=0Xa[999],usn1 In {#usn7} =~.12e12 =~9e0|$@usn5[.9e-1]).#usn7)"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 With $`5esn`[{@usn6}..{`7esn`}] As `2esn`,`8esn`[.12e12..],'s_str'[`3esn`..0x0] As @usn5 Order By Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Asc Skip `3esn` Is Null Union With $`5esn` =~Count(*) =~1.9e0 As @usn6,.9e12[6.0e0..][@usn5..],07[9e-1..][1e1..] As `4esn` Order By Reduce(`1esn`=#usn7[$`8esn`][{`3esn`}],#usn8 In 07[..$`5esn`]|7[{`4esn`}..]) =~Case 3.9e-1[..$1000][..0.12] When 0.12 Is Not Null Then $`` =~$_usn3 Else 1e-1 =~$`7esn` =~1e1 End Desc,{usn1} Desc Skip ({`4esn`:#usn8[\"d_str\"..usn2],`1esn`:12.0[..Count ( * )][..@usn6]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ) =~Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End =~{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Limit ``(Distinct $1000 Is Null,1e-1[$`4esn`])[..{`8esn`:{`3esn`}[..{`4esn`}][..usn2]}];"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Drop Constraint On(_usn3:#usn8)Assert Reduce(`2esn`=$1000 Contains $123456789 Contains #usn8,`` In `7esn` =~#usn8 =~\"d_str\"|_usn4 Is Not Null Is Not Null).`4esn` Is Unique"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Drop Constraint On(usn1:`6esn`)Assert Exists(Reduce(`2esn`=$1000 Contains $123456789 Contains #usn8,`` In `7esn` =~#usn8 =~\"d_str\"|_usn4 Is Not Null Is Not Null).`4esn`)"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Merge @usn6=Allshortestpaths((((@usn6 :`5esn`:`7esn`)-[`8esn`{#usn8:.12e12[..7]}]-({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})))) On Create Set {#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}._usn3!.`6esn`!.`5esn` =`3esn`[{`4esn`}] On Create Set (@usn6 :@usn5)-[`3esn`? *..07]-(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]}).usn1!.`3esn`.`2esn`! ={`4esn`}[..{`2esn`}],@usn6 =$usn1[..$999][..0e0] Return .1e-1 Starts With @usn6 Starts With _usn3,Shortestpath((:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})) Starts With {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF} Starts With Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})),(usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..]);"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Unique @usn5=(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})<-[{usn1:$_usn3 Starts With 010}]-(#usn8 :`8esn`) Create @usn5=Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))),usn1=Allshortestpaths(((:`4esn`:usn2{usn2:$usn2 Ends With 00 Ends With 9e12,_usn4:{`5esn`}})-[?:``|:`7esn` *12{#usn8:10.12e12 Contains .9e0,usn1:0xabc Contains {12} Contains {`6esn`}}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))) Union Return Distinct .9e12 Is Not Null Is Not Null,Shortestpath((:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})) Starts With {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF} Starts With Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})),.9e12 Contains 0 Contains $0 As #usn7 Order By .0e-0 Ends With $`2esn` Ends With `5esn` Descending Limit 12e-12 =~$_usn3;"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Create Constraint On(usn1:usn1)Assert Reduce(_usn4={`8esn`} Is Not Null Is Not Null,usn1 In $@usn6 Is Null Is Null|$`3esn` =~#usn8 =~0x0).#usn8._usn4 Is Unique;"), + octest_legacy:ct_string("Cypher 1000.999 Drop Constraint On()<-[`7esn`:``]-()Assert Exists(Single(`2esn` In $@usn5 Is Not Null Is Not Null Where {`3esn`} =~$@usn5 =~`2esn`).@usn5?.@usn6!)"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Return Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0]) Is Null Is Null As _usn3,1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As usn2,false[9e12] Order By 0xabc[01234567][.12e-12] Ascending,Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`8esn`}[..999][.._usn3]) Starts With Reduce(``=$#usn7 Ends With 999 Ends With {12},`2esn` In $@usn5 Is Not Null Is Not Null|{`6esn`} Starts With .12e-12) Descending Skip 2.12[10.12e12][_usn4] Limit $`5esn` In $12 In `2esn`;"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Return [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,$`7esn` In $`4esn` As `8esn`,Extract(`1esn` In $12 In {usn2} Where 2.9e1 =~Count(*) =~{123456789})[{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}..][123.654..] Order By 0x0[{`6esn`}..] Descending Limit usn1 =~false =~{999} Remove Allshortestpaths((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}})).``!;"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Drop Index On:`6esn`(`1esn`);"), + octest_legacy:ct_string("Cypher 1000.999 Foreach(usn1 In 4.9e12 Is Not Null Is Not Null| Unwind Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[..None(#usn7 In .0e-0 In 12 Where 0xabc =~123456789)][..11.12e-12] As @usn5) Start usn2=Node:`2esn`(_usn4={#usn7}) ,`5esn`=Rel:`6esn`(`4esn`='s_str')Where 12[..$`5esn`] Remove Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[01234567][{#usn7}]|00 =~`4esn` =~.9e-12).`5esn`.`3esn`! Union All Delete $12 Contains 's_str',`4esn` Ends With 9e12 Ends With {`5esn`},$1000[_usn4][{@usn5}] Start @usn5=Relationship:_usn3({`7esn`}) Union Foreach(_usn3 In {usn2} Ends With {@usn6} Ends With 1000| Load Csv With Headers From 123.654[..999] As `8esn` Fieldterminator \"d_str\") Match (`8esn` :@usn6:_usn3)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})-[`3esn`? *..07]-(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}) Using Index `5esn`:#usn8(_usn3) Where 9e-12 Is Not Null Is Not Null Create ({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})<-[_usn3? *0xabc..12]->(_usn3 {#usn7:$999 =~false =~{`8esn`}});"), + octest_legacy:ct_string("Cypher 1000.999 Unwind Case When $123456789 Is Not Null Is Not Null Then $`5esn` Is Not Null End Ends With {_usn3:$12 Is Not Null Is Not Null} Ends With [`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 6.0e0 =~12.0 =~9e1|@usn6 Ends With $`2esn` Ends With 1.0] As `3esn` Remove `8esn`:usn2 Load Csv With Headers From Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) As usn2 Union All Merge ((`8esn` :`8esn`)-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`8esn`*]-(`7esn` :``{usn2:$7})) With 9e-1 Is Not Null As _usn3,{12} Ends With 1e1 Skip Reduce(`8esn`=1e1[$_usn3],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e-0[..``][..$7]) Ends With Reduce(`3esn`=2.12[`4esn`][.9e-1],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{`8esn`} In {_usn3} In 6.0e0) Ends With `1esn`(@usn5[9e-1..{`1esn`}],$`4esn`[$@usn6...12e12]) Limit (`1esn` :@usn6:_usn3{#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12})<-[@usn5?:`5esn` *01{#usn8:00[Null..usn2],@usn6:0.12 =~2.9e1 =~9e1}]-({@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})[Filter(_usn3 In `8esn`[_usn4] Where 01234567 =~12e12 =~.0e-0)..][{`7esn`:.9e1[$`1esn`..][$``..]}..] Where false[9e12] Create #usn7=Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),Shortestpath((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[?{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})) Union All Return Distinct {1000} Is Null As `2esn`,(`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` Ends With 10.12e12) As `8esn`,$`` =~$_usn3 Order By usn1 Ends With 11.12e-12 Ends With 5.9e-12 Descending,.1e-1 Is Not Null Ascending,Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}] Descending Skip Any(usn1 In $@usn6 Is Null Is Null Where 0e-0[{@usn6}]) =~[`6esn` In 010[{`1esn`}..] Where 7 Starts With 9e-12|Null[#usn7..][9.1e-1..]] =~Reduce(#usn7={12} Ends With $`3esn` Ends With 0xabc,usn1 In $@usn6 Is Null Is Null|`1esn`[Null][{@usn6}]) Create Allshortestpaths((({usn1:#usn7[.9e0..`3esn`][{`6esn`}..1000],_usn4:$usn2 In #usn7 In #usn7})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[``? *0Xa..12{@usn5:01 Ends With .0e0 Ends With 7.0e-0,_usn3:0.0[00..][0xabc..]}]-(`7esn` :`7esn`))),(((:`1esn`:``{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]})<-[:#usn8|:``{#usn7:$#usn7}]-(#usn7 $12)-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5))) Unwind Allshortestpaths((`` $999)<-[? *0X0123456789ABCDEF]->(`1esn` :_usn3)<-[#usn8?:#usn7|:@usn5]-(@usn5 :#usn7:`8esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true}))[All(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Is Null Is Null)..][Allshortestpaths((({@usn6:01 Contains 9e-12 Contains $7})))..] As @usn5;"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Drop Constraint On()-[``:_usn4]-()Assert Exists((usn1 )<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})-[?:`7esn`|usn1 *01234567..{usn1:9e12 Is Null Is Null}]-(`3esn` :`2esn`:`4esn`).`5esn`?.`3esn`!.#usn8)"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Create Unique Allshortestpaths(((#usn8 :`4esn`:usn2)<-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]}))) Load Csv From 4.9e12[{_usn4}..] As _usn4 Fieldterminator 's_str' Load Csv From `8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End As `` Union All With Distinct *,{``:$`8esn`[..5.9e-12][..`8esn`]}[[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .9e12[6.0e0..][@usn5..]|2.9e1[2.9e1..][`4esn`..]]..][Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End..],01234567[1000..][$`8esn`..] Limit 07 Ends With {1000} Ends With 01234567 Where `4esn` Contains 0X0123456789ABCDEF Contains $usn2 Foreach(usn2 In 9e0[..{#usn7}][..`4esn`]| Start _usn4=Relationship:usn2({usn1}) ,_usn4=Relationship:`4esn`(\"d_str\")) Union Load Csv With Headers From Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As `` Fieldterminator \"d_str\";"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Detach Delete Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] Match #usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2)))) Using Join On ``,usn1,`2esn` Where $@usn6[``..][3.9e-1..] Union Remove (`` {usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]})<-[?:`3esn`|`3esn` *999..123456789{_usn3:$`4esn`[$@usn6...12e12]}]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}).#usn8._usn3.@usn6? Union Load Csv From {`7esn`}[$12..123456789] As _usn4 Fieldterminator \"d_str\" Start `4esn`=Node:@usn6(\"d_str\") With {@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] As ``,2.12[010..][{999}..] Limit {0}[..`3esn`][..8.1e1]"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(_usn4:#usn7)Assert Exists(Reduce(`5esn`={@usn6} In 1.0,_usn3 In `8esn`[_usn4]|@usn6 Starts With #usn7).`5esn`?);"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Create Constraint On(`1esn`:`3esn`)Assert Exists(Reduce(`2esn`={1000}[..{usn1}][..1e-1],_usn3 In `8esn`[_usn4]|Count(*)[$7]).@usn5?)"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Start `7esn`=Rel( {_usn3}) With Distinct *,0 Contains {`2esn`} Union Detach Delete $@usn5 Is Not Null Is Not Null,_usn3 =~{7} =~123.654,@usn5[@usn6] Merge Allshortestpaths((((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[`8esn`*]-(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2))));"), + octest_legacy:ct_string("Cypher 999.123456789 Merge (usn1 :#usn8:@usn6) On Match Set usn1 ={`8esn`}[..`5esn`][..01],usn2+={#usn7} Ends With 999 Ends With 12 On Create Set _usn4+={``} Ends With @usn5 Ends With $_usn3,Reduce(#usn7=9e1[0.0],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|0.0[$`4esn`]).#usn8!.`1esn`!.`1esn`? =$`4esn` Ends With .12e12 Ends With 123.654,`5esn` =$usn2 Starts With $999 Starts With .0e0 Remove Case When {usn2} Is Not Null Is Not Null Then false Contains {`7esn`} When {_usn3} Is Null Is Null Then .12e12 Ends With 07 Ends With 3.9e-1 End.#usn7!,Reduce(#usn8={`6esn`} =~2.12 =~123.654,`` In `7esn` =~#usn8 =~\"d_str\"|usn2 Contains `2esn` Contains {1000}).`5esn`,Reduce(usn2=.9e1[$`1esn`..][$``..],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|`3esn` Contains 01 Contains 01).#usn7! Union Delete Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where usn2[..$0][..`3esn`]|{0}[`4esn`..{`8esn`}])[Reduce(``=Null,`7esn` In 0.12 Is Not Null|{#usn7} Starts With .1e-1)..][Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1)..],{`6esn`} Starts With 12e12 Starts With {`2esn`} Foreach(usn2 In usn2 Contains `2esn` Contains {1000}| Load Csv From 9e-1 Contains .12e-12 Contains $0 As `6esn` With Distinct 12e12[usn2..$`6esn`] As usn1,0Xa Contains 12e-12,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As #usn7 Order By 9e12 Ends With \"d_str\" Ends With 0X7 Desc Skip {12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1] Where $@usn6 Is Null) Optional Match _usn3=(((`4esn` )-[{#usn7:1e-1[$`4esn`]}]->(`1esn` :`2esn`:`4esn`)-[?:#usn8|:``{usn2:{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],usn1:\"d_str\"[0x0..{@usn6}][$@usn5..0]}]-(:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12}))),`1esn`=Allshortestpaths((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[?$999]-(`4esn` {#usn7:$usn1[0e0...9e-12]})-[:`5esn` *01234567..{`2esn`:{usn1} Contains {`2esn`},#usn7:`4esn`[9e-12..true]}]-(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})) Union Return Distinct *,Case Count ( * ) =~123456789 =~{@usn5} When 0[10.12e12] Then 12.0 Starts With 00 Else 2.9e1 In {``} End[..Case $`8esn`[0x0][.9e0] When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null Else $usn1 =~.0e0 =~{`4esn`} End][..Extract(#usn8 In 07[..$`5esn`] Where 07[{@usn5}..]|9e-1 Contains 3.9e-1)] As `4esn`,(`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3)[Case When 3.9e-1 Ends With {usn1} Ends With {`5esn`} Then 5.9e-12 Is Null Is Null When 9e1 Ends With 9e12 Ends With 0x0 Then .9e0 =~#usn7 Else 0 Starts With `7esn` Starts With 9e0 End..Filter(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null)] As _usn4 Skip 00[$``]"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Drop Constraint On(`6esn`:`6esn`)Assert Exists(Any(`6esn` In 010[{`1esn`}..] Where `6esn` Ends With 1e1 Ends With $#usn7).`5esn`?)"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 With Distinct [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,$`7esn` In $`4esn` As `8esn`,Extract(`1esn` In $12 In {usn2} Where 2.9e1 =~Count(*) =~{123456789})[{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}..][123.654..] Order By 0x0[{`6esn`}..] Descending Limit usn1 =~false =~{999};"), + octest_legacy:ct_string("Cypher 1000.999 Drop Constraint On()-[`1esn`:#usn8]->()Assert Exists(Allshortestpaths(((#usn8 :usn2)<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))).@usn5?);"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On(usn2:`3esn`)Assert Exists(@usn6(Distinct)._usn4?.usn2?);"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Merge (#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}) On Create Set {_usn3:$999 Is Not Null}.@usn6! =_usn4 On Create Set @usn5 ={``}[$usn2..00][{_usn3}..123.654],_usn4 =Reduce(`3esn`=`7esn`[1.9e0..5.9e-12][9e0..@usn5],`` In `7esn` =~#usn8 =~\"d_str\"|{_usn3}[{0}...9e-1][9e-1...0e0])[Case false Contains {`7esn`} When `3esn` Is Null Then `1esn` Is Not Null Is Not Null Else .9e-1 Is Null Is Null End..][Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999})..],{@usn5:`2esn`}.``! =\"d_str\" Starts With `` Foreach(usn2 In {123456789} In \"d_str\"| Unwind \"d_str\" In usn2 In $`7esn` As @usn6 Optional Match @usn5=Shortestpath((`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})<-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-(@usn5 :@usn6:_usn3{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`2esn` *1000..{`2esn`:{@usn6} In 9e12}]->(:usn1{usn1:true In 0.0,@usn5:{`1esn`} Is Null})) Where `6esn`[$@usn5][01]) Union All With $12 Ends With 7.0e-0 Ends With 9e-12 As usn1,{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] As ``,9e-1 Contains .12e-12 Contains $0 Order By `6esn`[$@usn5][01] Descending,{`5esn`} Desc Skip 123.654 Is Not Null Is Not Null Limit Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null;"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Drop Constraint On()<-[`3esn`:`2esn`]-()Assert Exists((#usn8 {usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]}).`1esn`!)"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On()-[``:usn2]->()Assert Exists([@usn6 In 9e12[..usn2][.._usn3] Where $0 Ends With 9e-12 Ends With $_usn4|{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1]].``.`5esn`!)"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Create Unique (((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})-[`2esn`?:@usn6|:`4esn` *010..0{`4esn`:Null[$`3esn`..][`1esn`..],_usn3:6.0e0[$#usn7..$1000]}]-(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]}))) Unwind .9e12 Is Not Null Is Not Null As _usn3 Start usn1=Node:`2esn`({_usn3}) Where {usn1} Is Not Null"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Unwind $@usn6 Is Null Is Null As _usn4 Detach Delete 1.9e0 In $@usn6 In $_usn3,$@usn5 =~{`3esn`} Load Csv With Headers From $`5esn` In $12 In `2esn` As usn1 Union Merge Shortestpath(((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))) On Create Set `6esn` =_usn4 On Create Set `4esn` =Single(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Is Not Null Detach Delete Single(_usn3 In `8esn`[_usn4] Where `3esn` Contains `2esn` Contains {_usn4}) In Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`) In {7},$usn2 Ends With 9e12 Ends With Count ( * ),$`5esn` =~Count(*) =~1.9e0 Union All Load Csv From {#usn8}[..@usn5] As `4esn` Foreach(`6esn` In Any(usn1 In $@usn6 Is Null Is Null Where 9e0[`3esn`][0]) Ends With None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[01234567][{#usn7}]) Ends With Any(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}])| Load Csv With Headers From 0[..{#usn7}][..$_usn3] As `7esn` Fieldterminator 's_str' Unwind `8esn`[0e-0.._usn3][Null..`6esn`] As `2esn`) Detach Delete 9e0[`1esn`..0e-0][00..`1esn`],.0e-0 Ends With $`2esn` Ends With `5esn`;"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Create Constraint On()<-[`7esn`:#usn8]-()Assert Exists(Any(usn1 In $@usn6 Is Null Is Null Where `3esn` Is Null).`6esn`?)"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Foreach(usn1 In $usn1 In 4.9e12 In ``| Create Unique ``=(((@usn5 {@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})))) Union Merge Shortestpath(((@usn6 :`2esn`:`4esn`{@usn6:$12[10.12e12][.1e1],`8esn`:@usn5 In Null})<-[`3esn`?:`6esn`{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(@usn5 :usn1{`4esn`:$12 Is Null,`8esn`:\"d_str\" Starts With ``})<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) Return Distinct Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null) In `4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`),9e-1 Contains 3.9e-1 As `7esn`,All(#usn8 In 07[..$`5esn`] Where $@usn6 Starts With 0xabc Starts With {`7esn`}) As `6esn` Limit Any(`7esn` In 0.12 Is Not Null Where $0 Contains $7) Is Not Null Is Not Null Load Csv From Reduce(`6esn`=$`5esn`[$_usn3][$12],`2esn` In $@usn5 Is Not Null Is Not Null|1.9e0 In $@usn6 In $_usn3)[{``:.12e-12 Is Null}..][Case When $1000 Starts With {@usn6} Starts With $@usn5 Then `2esn` When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else 12[4.9e12..] End..] As #usn7 ;"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Return 9e1[12] Order By 0xabc[01234567][.12e-12] Ascending,Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Asc Foreach(`4esn` In 7.0e-0[true]| Unwind None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Starts With {@usn5:999 Ends With {#usn8},_usn4:Null In {7}} As `5esn` Create #usn7=(`8esn` :`7esn`)-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``),((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))) With $`1esn`[..12e-12][...9e12] As `7esn` Order By .12e12[01..{1000}][8.1e1..Count ( * )] Asc,{12} Starts With $`` Starts With 0X0123456789ABCDEF Asc,$_usn3[0x0][{0}] Descending Skip 9e1[..{usn1}] Union Create `6esn`=((:#usn7:`8esn`{usn2:`1esn` =~{12} =~{999}})),`5esn`=(:usn2{`6esn`:9e12[..usn2][.._usn3],`1esn`:01[`6esn`..][0e0..]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}) Load Csv From 010[{`1esn`}..] As #usn7 ;"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On(`2esn`:_usn4)Assert Any(`2esn` In $@usn5 Is Not Null Is Not Null Where `1esn` Is Not Null Is Not Null).@usn5!._usn4.@usn5! Is Unique;"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` With *,Allshortestpaths((_usn4 {`3esn`:.0e-0 In 12})) Is Null Is Null,{@usn6} Is Null As `5esn` Skip Shortestpath((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))[[`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`}[@usn5..{@usn6}]|{1000}[..`5esn`][..9e12]]..][{_usn4:`8esn`[.12e12..]}..] Where $12 Is Not Null Is Not Null Foreach(@usn5 In {`6esn`} Starts With 12e12 Starts With {`2esn`}| Load Csv With Headers From $`3esn` =~0x0 As usn1 Remove #usn7:`1esn`:``) Foreach(`4esn` In \"d_str\" In 7.0e-0| Delete Null[{999}..$usn2],{123456789}[...9e-1][..1.0]) Union Foreach(`3esn` In {`8esn`} Ends With true Ends With {`3esn`}| Create (`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})))) Unwind 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As `1esn` Union All Unwind (`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End] As `7esn` Start `4esn`=Rel:@usn5(_usn4='s_str') ,`4esn`=Node:@usn6(\"d_str\");"), + octest_legacy:ct_string("Cypher 1000.999 Start @usn6=Relationship:`5esn`({0}) ;"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Create Constraint On(`3esn`:``)Assert Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[..{0}][..true]|$`4esn` Is Null Is Null).`3esn`? Is Unique"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Merge ({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}) On Match Set @usn5+={#usn8} Starts With {`2esn`},#usn8 =01234567[01234567..],@usn6 =6.0e0[None(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0)..][[_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]]..] On Match Set `7esn` =1e1 Ends With $_usn3 Ends With .1e1 Merge (:usn2)<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:#usn8|:``{#usn8:{_usn4} In 0X7 In 0e0,`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]-(@usn5 ) Union Merge Allshortestpaths((`2esn` :_usn3{usn1:5.9e-12 Is Null Is Null})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(:`5esn`:`7esn`{`4esn`:2.9e1[{`2esn`}]})-[ *..123456789{@usn5:$`8esn`}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})) Unwind 01[`4esn`..] As `6esn`"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Foreach(usn2 In 9e0[..{#usn7}][..`4esn`]| Start _usn4=Relationship:usn2({usn1}) ,_usn4=Relationship:`4esn`(\"d_str\")) Union Create (({usn1:#usn7[.9e0..`3esn`][{`6esn`}..1000],_usn4:$usn2 In #usn7 In #usn7})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[``? *0Xa..12{@usn5:01 Ends With .0e0 Ends With 7.0e-0,_usn3:0.0[00..][0xabc..]}]-(`7esn` :`7esn`)),`4esn`=Allshortestpaths(((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null}))) Detach Delete $`8esn` =~{`1esn`} =~$7,010[{7}..][{`1esn`}..] Union Load Csv With Headers From $@usn5[.9e-1] As `7esn` Return Distinct $#usn7 Contains 3.9e-1,{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}} Starts With Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999|$`1esn`[..12e-12][...9e12]) Starts With (`4esn` :`8esn`{12})<-[`2esn`?:`4esn`|:`2esn`]-(`4esn` {`8esn`:5.9e-12[0x0..]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}) Skip {@usn6:{7} Starts With 0x0 Starts With 9e1}[Reduce(`5esn`=$999 Ends With `2esn` Ends With 12.0,_usn3 In `8esn`[_usn4]|_usn3 =~{7} =~123.654)..None(usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-1[1.9e0])] Limit Allshortestpaths(((#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[@usn6?{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}))) In All(`` In `7esn` =~#usn8 =~\"d_str\" Where {#usn7} =~$@usn6 =~$7) In Case When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 When $0 Ends With $usn1 Ends With {``} Then 4.9e12 Ends With $@usn6 Else 0[..{0}][..true] End;"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Drop Constraint On(_usn4:#usn8)Assert None(usn1 In $@usn6 Is Null Is Null Where {7} Starts With 0x0 Starts With 9e1).#usn7!.`1esn`! Is Unique"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Drop Constraint On()<-[`5esn`:@usn5]-()Assert Exists({usn1:0Xa In 1.0 In $@usn5}.@usn5.`8esn`)"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Load Csv From _usn4['s_str'][8.1e1] As `` Union Optional Match `5esn`=Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))),#usn7=((`1esn` :`5esn`:`7esn`)) Using Index _usn4:`1esn`(@usn5) Where usn2[12e-12..{`8esn`}][.12e12..{123456789}] Union All With Distinct .1e-1[2.9e1..][$`7esn`..] As #usn8,Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Not Null Is Not Null As #usn8,07[9e-1..][1e1..] As `4esn` Skip {`4esn`} Contains 4.9e12 Match `2esn`=(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1}) Using Join On _usn3,usn2 Where Null With $#usn8[$0..`3esn`][1e-1..$7] As `5esn`,{0} Is Not Null As `` Limit $_usn3 In `2esn` In `3esn` Where _usn3[{#usn7}]"), + octest_legacy:ct_string("Profile Detach Delete (`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3)[Case When 3.9e-1 Ends With {usn1} Ends With {`5esn`} Then 5.9e-12 Is Null Is Null When 9e1 Ends With 9e12 Ends With 0x0 Then .9e0 =~#usn7 Else 0 Starts With `7esn` Starts With 9e0 End..Filter(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null)],2.9e1 =~Count(*) =~{123456789},.12e12[..7] Union All Remove [`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn`[0X0123456789ABCDEF..][`8esn`..]].usn1,`8esn`:@usn6:_usn3 Merge @usn6=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) On Match Set usn2+=Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null),#usn8 =None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) With Distinct $`8esn`[{`2esn`}..11.12e-12][{`7esn`}..@usn5],{999} Contains $12 Contains 00 As usn2 Order By {`8esn`}[..`5esn`][..01] Asc,[@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..] Asc Where {#usn7} Is Not Null Union All Foreach(`7esn` In (:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 )[Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..][(#usn8 :`4esn`:usn2)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})..]| Optional Match `5esn`=Shortestpath((({_usn3:.9e12 Contains 0 Contains $0}))),usn2=(`8esn` :@usn6:_usn3)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Where 010[...12e-12] Detach Delete 0X0123456789ABCDEF In .9e-1 In 123456789,`8esn`[0e-0.._usn3][Null..`6esn`]) Load Csv With Headers From 2.9e1[2.12..1.9e0] As `6esn` ;"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Drop Constraint On(#usn8:`3esn`)Assert (`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})._usn3!.`4esn` Is Unique;"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` With *,Single(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1])[Case When 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Then $#usn8 Is Not Null Is Not Null When \"d_str\" Starts With $`7esn` Starts With 999 Then \"d_str\"[0x0..{@usn6}][$@usn5..0] Else .0e-0[..01234567] End..] Order By {123456789} Starts With $_usn4 Starts With 0x0 Descending,9e-12 Ends With 9e1 Ends With 4.9e12 Ascending,$@usn6[.1e-1][9e12] Asc Load Csv With Headers From $`8esn` Contains _usn4 As #usn8 Union With Distinct 4.9e12 Starts With {``} Where $0 Ends With 9e-12 Ends With $_usn4 Union All Foreach(#usn8 In 9e12 Is Null| Unwind Allshortestpaths(((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}))) Is Null Is Null As usn2 Remove Filter(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12).`3esn`?.`7esn`?,Allshortestpaths((((`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})-[`8esn`:`4esn`|:`2esn`]->(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})))).`3esn`) Detach Delete [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End,8.1e1[$``] Remove (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)}).`8esn`.`3esn`?,@usn6:usn2"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Optional Match (`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}}) Using Scan ``:#usn8 Using Join On usn1,usn2 Match `5esn`=((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})) Using Index usn2:``(`3esn`) Where 0e-0[..7.0e-0][..{`8esn`}] Foreach(usn2 In 1e-1[$#usn8]| Create Shortestpath(((usn2 :`4esn`:usn2)-[?:#usn7|:@usn5 *..00]-(:@usn5{`7esn`:01234567[\"d_str\"..][$`4esn`..]})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))),`2esn`=Shortestpath((@usn6 :@usn5)) Create `2esn`=Allshortestpaths((:`3esn`{@usn5:9e12[..usn2][.._usn3]})),``=Shortestpath((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[ *0X0123456789ABCDEF]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Union All Return _usn3($0 Ends With 9e-12 Ends With $_usn4) Is Null Is Null As `4esn`,1.9e0 In 2.12 As usn2,$#usn7[$``..999][$usn2..$usn2] Order By `4esn` =~usn1 =~Count(*) Descending,Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]) Desc Skip 2.12 Is Not Null Is Not Null Limit {`5esn`}[01234567..][5.9e-12..] Union Create ((#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7})<-[`5esn`?:`7esn`|usn1{@usn5:9e0[`3esn`][0]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})<-[_usn4?:_usn4|:`1esn` *..0x0{`6esn`:{`5esn`} Is Not Null Is Not Null,`3esn`:0xabc[..{usn1}][..\"d_str\"]}]-({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})),#usn8=({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)})"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Create ((:`8esn`{`2esn`:0[..{#usn7}][..$_usn3],#usn8:.9e-1 Is Null Is Null})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]-(`7esn` :#usn8:@usn6{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[usn2?:`2esn`|`5esn`{``:{#usn7} =~$@usn6 =~$7}]->(:`1esn`:``{`1esn`:{@usn5}[10.12e12..]})),usn2=Shortestpath((_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn2 *7]-(`` )) Union All Delete {#usn7} Is Not Null Create _usn4=((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})),`4esn`=(({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)) Match usn2=((({`5esn`:`1esn` In 010 In 1e-1})-[_usn3:`6esn`]-(`5esn` :#usn8:@usn6{``:Count(*) Starts With {usn2} Starts With `2esn`,`1esn`:12e12[{`4esn`}..`4esn`][999..{@usn6}]})<-[:``|:`7esn`{@usn6:{#usn8}[..@usn5],@usn6:$1000 Contains $123456789 Contains #usn8}]->(`1esn` :@usn6:_usn3{#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12}))) Where @usn5[{`1esn`}..][Count ( * )..];"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Create Constraint On()<-[#usn8:`1esn`]-()Assert Exists({@usn6:$`` =~.1e-1}.usn1?);"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Return Distinct *,{#usn7} =~.12e12 =~9e0,Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] Order By $123456789[{usn1}][.12e-12] Asc,0X0123456789ABCDEF Desc Skip 11.12e-12 =~Count ( * ) Limit (`4esn` {``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})-[?:#usn7|:@usn5 *12]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}) Contains Case 1.0 Is Null Is Null When .12e12[..7] Then $_usn4[..$999] When .0e-0[..01234567] Then $#usn7 Starts With $123456789 End Contains Shortestpath((usn1 :#usn8:@usn6)) Create `5esn`=(:`3esn`{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}),(usn1 :`3esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 )<-[_usn4{`5esn`:9e0[..{#usn7}][..`4esn`]}]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}) Union All With Distinct *,Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,Case \"d_str\"[0x0..{@usn6}][$@usn5..0] When 0e0 Contains {`2esn`} Then 0X0123456789ABCDEF[1e1..] Else .12e12 Starts With 5.9e-12 Starts With `4esn` End In {usn1:$#usn7[01..2.12][2.12..3.9e-1],`6esn`:.0e-0 Ends With $`2esn` Ends With `5esn`} Order By .9e12 Contains 5.9e-12 Contains 9e-1 Descending Skip $123456789[..$999][..`6esn`] Unwind #usn7[{_usn3}] As @usn5 Union All Match _usn3=Shortestpath(((usn1 :#usn8:@usn6))),((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})) Where .0e-0 Ends With $`2esn` Ends With `5esn` Merge Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))) On Match Set $`4esn`.@usn6? =0e-0[#usn7..999],`6esn` =.1e-1[$@usn6],_usn4+=All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] On Match Set `7esn` =0.0[..9e1][..2.12],#usn8+=1.0[$`4esn`..$@usn5] Foreach(_usn3 In Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null) In `4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`)| Detach Delete $`4esn`[usn2..],Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`}) In Allshortestpaths(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) In Extract(usn1 In $@usn6 Is Null Is Null Where 0Xa In 1.0 In $@usn5|Null[#usn7..][9.1e-1..]),Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null)"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Start ``=Node:`7esn`({#usn7}) Where 01234567[1000..][$`8esn`..] Match Shortestpath(((:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(`2esn` :_usn3)<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(:#usn7:`8esn`))),_usn4=((`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})) Using Scan #usn8:`1esn` Where $`4esn`[$@usn6...12e12] Return Distinct {@usn5} Ends With 0Xa Ends With .12e-12 As @usn6,_usn4['s_str'][8.1e1] Order By 1.9e0[$`4esn`] Descending;"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Drop Constraint On(``:`8esn`)Assert Exists(Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where 07[{@usn5}..]).`7esn`?);"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Drop Constraint On(`1esn`:`3esn`)Assert Exists(None(#usn7 In .0e-0 In 12 Where $12 In {usn2}).usn1!.#usn8?.`3esn`!);"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Match `7esn`=Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)),`8esn`=Allshortestpaths((((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(#usn7 :`8esn`)))) Remove (@usn5 :@usn6:_usn3{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`3esn`:`6esn` *..0x0]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}).`3esn` Delete $123456789[..$999][..`6esn`],$`4esn`[#usn7][8.1e1],10.12e12 Contains .9e0 Union All Create Shortestpath(((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})))"), + octest_legacy:ct_string("Cypher 999.123456789 Drop Constraint On(``:`2esn`)Assert Exists(Allshortestpaths((`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})).``?)"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` With Distinct *,$`5esn` Ends With 's_str' Ends With $`6esn` As usn1 Order By {`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]} In Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}))) In Extract(_usn3 In `8esn`[_usn4] Where 0[..{#usn7}][..$_usn3]|0x0 Ends With #usn8 Ends With .9e-1) Descending,$12 Contains false Contains {`1esn`} Descending,\"d_str\" Starts With .1e-1 Asc Skip $`1esn`[..12e-12][...9e12] Where 0X7[#usn7..][$@usn5..] Load Csv From {usn1:$usn1[9e1][{999}],#usn8:0e-0[$``..10.12e12]}[Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End] As `8esn` Union Load Csv From $_usn3[usn2..][usn1..] As @usn5 Fieldterminator 's_str' Merge usn1=Allshortestpaths(((:`4esn`:usn2{usn2:$usn2 Ends With 00 Ends With 9e12,_usn4:{`5esn`}})-[?:``|:`7esn` *12{#usn8:10.12e12 Contains .9e0,usn1:0xabc Contains {12} Contains {`6esn`}}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))) On Create Set Single(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`).usn2!.`5esn`.`2esn`! =11.12e-12 Contains usn1,(_usn4 :`1esn`:``{`3esn`})-[:`5esn` *01234567..{`2esn`:{usn1} Contains {`2esn`},#usn7:`4esn`[9e-12..true]}]-(:`5esn`:`7esn`{`1esn`:{1000}[..`5esn`][..9e12]}).`3esn`?.usn2!.`6esn` =Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})),`5esn`+=[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12][All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3])..][Case When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else @usn5[9e-1..{`1esn`}] End..] On Match Set {usn2:.9e-12[.12e12..][0Xa..]}.usn2.#usn8.usn2! =.9e1 Ends With 0x0 Load Csv From Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] As `8esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Profile Create Constraint On(`7esn`:`6esn`)Assert Shortestpath(((`8esn` :`8esn`)-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`8esn`*]-(`7esn` :``{usn2:$7}))).`3esn`.`4esn`!.`4esn`? Is Unique"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Drop Constraint On(#usn7:`8esn`)Assert Single(`6esn` In 010[{`1esn`}..] Where {`8esn`}[@usn5][$`2esn`]).`4esn`?.usn2!.`4esn` Is Unique;"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On(`8esn`:`1esn`)Assert Exists(Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End.`1esn`?)"), + octest_legacy:ct_string("Profile Remove Shortestpath(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})).`7esn`?,All(`1esn` In $12 In {usn2} Where {`3esn`}[..0xabc][..{`6esn`}]).`8esn`? Create Unique Shortestpath((_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})),Shortestpath(((@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})-[@usn5:`6esn` *..00]->(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Foreach(@usn6 In {`1esn`}[{usn2}]| Load Csv From All(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Ends With Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789 Is Not Null Is Not Null|{`8esn`}[@usn5][$`2esn`]) Ends With (#usn8 :`5esn`:`7esn`{usn2})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )-[_usn4? *..0x0{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null}) As `` Fieldterminator 's_str') Union Optional Match `1esn`=((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})),`7esn`=Allshortestpaths(((:`7esn`)<-[#usn7?:_usn3 *999..123456789{@usn5:$12 In {usn2},usn1:5.9e-12 Is Null Is Null}]->(`` {`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654})-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:`8esn`{#usn8:2.9e1[2.12..1.9e0],#usn8:@usn6[true..]}))) Using Scan `4esn`:`1esn` Using Join On _usn4,usn1,`` Where 4.9e12 Ends With $@usn6;"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Load Csv With Headers From 9.1e-1 In 9e1 As `5esn` Match _usn4=Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]}))),`3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})) Where 9e12[..usn2][.._usn3] Union Load Csv With Headers From #usn7({12} Starts With $`` Starts With 0X0123456789ABCDEF)[Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where .12e-12[9e1])..] As @usn5 Fieldterminator \"d_str\" Foreach(`2esn` In {#usn8} Starts With {`2esn`}| Load Csv From Filter(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}]) Starts With Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3)) Starts With {@usn5:$123456789 Is Not Null Is Not Null} As usn2 Load Csv With Headers From 9e-1[{7}..1e-1][0.12..{12}] As @usn6 ) Union All Create #usn7=(((#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})-[?:@usn5|:#usn7 *0]->({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})-[:usn2{``:07 Ends With {1000} Ends With 01234567,`5esn`:999 Ends With {#usn8}}]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]})))"), + octest_legacy:ct_string("Cypher Cypher 1000.999 With Distinct 0e0 Is Null Is Null As `2esn`,{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]} In Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}))) In Extract(_usn3 In `8esn`[_usn4] Where 0[..{#usn7}][..$_usn3]|0x0 Ends With #usn8 Ends With .9e-1) As ``,$`6esn` In 999 In {_usn3} As usn2 Order By 010 =~9.1e-1 =~{`8esn`} Desc Skip false[9e12] Limit 0e-0[..7.0e-0][..{`8esn`}] Union Remove None(@usn6 In 9e12[..usn2][.._usn3] Where 01[`4esn`..]).#usn8?,Case When `5esn` Contains 0 Contains $12 Then true In 0.0 Else 9e12 Ends With \"d_str\" Ends With 0X7 End._usn4,0.0.@usn6!"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Create Constraint On(`8esn`:`5esn`)Assert Case When `4esn` =~010 Then {7}[$@usn5..123456789][1e1..1.9e0] Else 1e-1 =~$`7esn` =~1e1 End.usn1? Is Unique;"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Optional Match _usn3=(((`4esn` )-[{#usn7:1e-1[$`4esn`]}]->(`1esn` :`2esn`:`4esn`)-[?:#usn8|:``{usn2:{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],usn1:\"d_str\"[0x0..{@usn6}][$@usn5..0]}]-(:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12}))),`1esn`=Allshortestpaths((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[?$999]-(`4esn` {#usn7:$usn1[0e0...9e-12]})-[:`5esn` *01234567..{`2esn`:{usn1} Contains {`2esn`},#usn7:`4esn`[9e-12..true]}]-(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})) Foreach(@usn5 In Case Count(*) =~01234567 =~.1e-1 When {123456789} Starts With $_usn4 Starts With 0x0 Then .9e-12[usn2] When {`8esn`}[@usn5][$`2esn`] Then 00[$``] End[..Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 999[..$@usn5][..``])][..Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End]| Create Unique `2esn`=(((@usn6 :`2esn`:`4esn`{@usn6:$12[10.12e12][.1e1],`8esn`:@usn5 In Null})-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(#usn7 )-[`3esn`?:usn2]-(:`1esn`:``{_usn4:123.654[01..][Count(*)..],`8esn`:12e12}))))"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Drop Constraint On(`8esn`:`6esn`)Assert `1esn`(true Is Null,$1000[..0e-0][..010]).#usn8!.usn1?.`3esn` Is Unique"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Return Distinct {0}[.1e-1..][_usn4..],`3esn` Contains 1000 Contains 7.0e-0 Order By $@usn6[...9e-1] Descending,$#usn7 Starts With $123456789 Descending,Case {1000}[..{usn1}][..1e-1] When {@usn5}[10.12e12..] Then 1.0 Is Null Is Null When {`3esn`} Is Not Null Is Not Null Then .1e1 Contains 1e-1 Contains #usn8 Else $`5esn`[{`4esn`}][{0}] End[..{usn1:1.9e0[..0][.._usn3],`7esn`:1.9e0[.12e-12][9e-12]}][..{`1esn`:{0} Is Null Is Null}] Asc Union All Create Allshortestpaths((((:`7esn`{usn2:00 Is Not Null Is Not Null})<-[`8esn`? *..123456789{@usn6:5.9e-12[\"d_str\"..][{`6esn`}..],`7esn`:{@usn5}[10.12e12..]}]->(:`3esn`{usn2:01234567[10.12e12][0Xa]})<-[ *1000..{`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]->(`` )))),usn1=((`4esn` :_usn4:`2esn`{#usn8:\"d_str\" Contains {@usn6}})<-[?{@usn5:@usn6[999][1000]}]->(`1esn` ))"), + octest_legacy:ct_string("Cypher 999.123456789 Delete $@usn5 Starts With #usn7,999 Starts With 7.0e-0 Starts With true,{`8esn`}[..999][.._usn3] Union All Detach Delete `7esn`[1.9e0..5.9e-12][9e0..@usn5],[usn2 In $`5esn`[{`4esn`}][{0}] Where $usn2[..$999][..#usn8]][2.9e1..][None(usn2 In .12e-12 Ends With `2esn` Where `7esn`[1.9e0..5.9e-12][9e0..@usn5])..],8.1e1 Contains $@usn6 Create Unique Shortestpath((:`3esn`)),`3esn`=(usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]});"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Remove Case #usn8[\"d_str\"..usn2] When $12[$`6esn`..][01..] Then $`4esn`[$@usn6...12e12] End.`6esn`._usn3,Reduce(usn2=$@usn6 Is Null Is Null,`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|$`4esn` Contains `4esn` Contains .0e-0).usn2 Unwind $usn2[$999][1e1] As `4esn`;"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 With *,4.9e12[{_usn4}..],Reduce(`6esn`=$`5esn`[$_usn3][$12],`2esn` In $@usn5 Is Not Null Is Not Null|1.9e0 In $@usn6 In $_usn3)[{``:.12e-12 Is Null}..][Case When $1000 Starts With {@usn6} Starts With $@usn5 Then `2esn` When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else 12[4.9e12..] End..] Order By 0xabc[01234567][.12e-12] Ascending,Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`8esn`}[..999][.._usn3]) Starts With Reduce(``=$#usn7 Ends With 999 Ends With {12},`2esn` In $@usn5 Is Not Null Is Not Null|{`6esn`} Starts With .12e-12) Descending Limit None(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999)[Shortestpath((((:#usn8:@usn6{`3esn`:$#usn7})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(`4esn` :`8esn`{12})-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12}))))..] Where 00[{1000}] Create `2esn`=Allshortestpaths((((@usn6 :`5esn`:`7esn`)-[`8esn`{#usn8:.12e12[..7]}]-({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})))),`2esn`=Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) Create Unique @usn6=((({@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})<-[:@usn5|:#usn7 *0X0123456789ABCDEF{`5esn`:9e-1 Contains 3.9e-1}]->(`6esn` $_usn3)<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),(((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`}))) Union All With $123456789[{usn1}][.12e-12] As `3esn`,1.9e0 =~.0e0 =~0X7 As #usn7,9e1 Ends With 9e12 Ends With 0x0 As #usn8 Order By $@usn5 Is Null Is Null Ascending,`1esn` Is Not Null Is Not Null Desc Limit {`8esn`} Ends With true Ends With {`3esn`} Where $12 Is Not Null Is Not Null Remove (`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(`1esn` :#usn7:`8esn`).@usn5.`5esn`?,[usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null|2.12[`4esn`][.9e-1]].`1esn`!,{`3esn`:00 =~`4esn` =~.9e-12}.`3esn`? Load Csv From $@usn6 Is Null As `1esn` ;"), + octest_legacy:ct_string("Cypher 1000.999 Drop Constraint On(_usn3:@usn5)Assert Shortestpath(((:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[`2esn` *7]->(:`8esn`{@usn6:$`6esn`[$_usn3..{1000}],_usn3:0xabc[..{usn1}][..\"d_str\"]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ))).`4esn`? Is Unique"), + octest_legacy:ct_string("Cypher 999.123456789 Create Constraint On(@usn6:_usn4)Assert Case 0e-0[..7.0e-0][..{`8esn`}] When $`8esn`[0x0][.9e0] Then #usn8 =~{@usn5} End._usn3.`8esn`.#usn8! Is Unique"), + octest_legacy:ct_string("Cypher 1000.999 With *,Case .12e-12 Is Null When Count ( * )[_usn4..] Then 7.0e-0 Is Not Null When 2.12[{12}] Then {usn2} Ends With {@usn6} Ends With 1000 End[Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..])][({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})] Order By .0e0 Starts With 1.0 Starts With $12 Ascending Limit 0e0[2.9e1..][.12e-12..];"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Return Distinct *,Filter(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn` =~999 =~$999) In All(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]) In Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`) As `1esn` Order By 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] Asc Skip $_usn3 Contains 1.0 Contains 0.12 Union All Foreach(@usn5 In 01 Starts With 12 Starts With $`2esn`| Load Csv With Headers From $`8esn` Starts With {`7esn`} As #usn8 Fieldterminator \"d_str\") Start usn1=Rel:_usn4(@usn5={`4esn`}) ,`1esn`=Rel:`5esn`(@usn5=\"d_str\")Where @usn6[true..]"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Start `3esn`=Rel:`7esn`(`8esn`={`3esn`}) ,`2esn`=Node( {`6esn`})Where $`6esn` Starts With 0.0 Union Return usn2($12 =~4.9e12) Ends With Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Ends With Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End As `7esn` Skip `5esn` Is Not Null Is Not Null Limit .1e1 Is Null Is Null Merge usn2=(`8esn` :@usn6:_usn3)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) On Match Set usn1 ={`6esn`} In 11.12e-12 In 2.9e1,#usn8+={@usn5} Contains .1e1 Contains {`5esn`},@usn6+={`3esn`}[#usn7] On Match Set Reduce(`1esn`=12.0[..Count ( * )][..@usn6],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|5.9e-12 Contains {12} Contains {#usn8}).usn2? =5.9e-12[..9e0] Create ((#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[@usn6?{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})),`6esn`=Allshortestpaths(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0}))"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Drop Constraint On(`2esn`:`2esn`)Assert All(`7esn` In 0.12 Is Not Null Where 4.9e12 Starts With {``}).`7esn`? Is Unique;"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Drop Constraint On(`8esn`:#usn8)Assert Exists((`8esn` :usn1)<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12}).#usn8!);"), + octest_legacy:ct_string("Profile Create Constraint On(usn1:`6esn`)Assert Exists([`` In `7esn` =~#usn8 =~\"d_str\" Where $`4esn` In {999}|{1000} Is Null].usn2!)"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Foreach(_usn3 In Null| Optional Match ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),_usn3=Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)))) Return *,$12 Is Null As #usn8 Order By ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[_usn3?:@usn5|:#usn7]->(`` :``)-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Starts With Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`) Ascending,{`8esn`} =~$#usn7 =~2.12 Desc,Count(*) Starts With 07 Starts With $#usn7 Desc Skip @usn6[true..] Create ({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12}),#usn8=Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]})));"), + octest_legacy:ct_string("Cypher 999.123456789 Start `2esn`=Relationship:@usn5({`4esn`}) Where 07 Ends With $_usn3 Ends With $#usn8;"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Merge #usn7=(`8esn` :`7esn`)-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``) On Create Set None(`2esn` In $@usn5 Is Not Null Is Not Null Where {#usn8}[..@usn5]).usn2 =`1esn` In 6.0e0 In 12,`4esn`:_usn4:`2esn` On Create Set Single(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where `4esn` Ends With 9e12 Ends With {`5esn`})._usn3?.@usn6!.#usn8 =0[..12][..{`8esn`}],#usn8 =.1e1 In $999 In {#usn8},_usn3 =[usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]|{12} Contains `8esn` Contains @usn5] Contains Shortestpath(((({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(@usn6 :@usn5)-[`2esn`? *7{`5esn`:false[..usn2][..999]}]-(`4esn` :@usn6:_usn3)))) Contains (:usn1{#usn8:$`8esn` Is Not Null Is Not Null,`5esn`:3.9e-1 Starts With .9e0 Starts With {#usn7}})-[:#usn8|:`` *..07{@usn5:01234567[\"d_str\"..][$`4esn`..],`6esn`:$usn1 Ends With {`2esn`} Ends With $usn1}]-(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[? *0X7..0Xa]->(`1esn` );"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Drop Constraint On()<-[#usn8:`6esn`]-()Assert Exists(Single(usn2 In .12e-12 Ends With `2esn`)._usn3!);"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Create Constraint On(#usn7:`6esn`)Assert Case When {1000}[..`5esn`][..9e12] Then Count(*)[..{#usn7}] End.`3esn`! Is Unique"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On()-[`8esn`:#usn7]->()Assert Exists({#usn8:7[..123456789][..true]}.`2esn`.usn2.`8esn`!);"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Drop Constraint On(`8esn`:`5esn`)Assert Case #usn7 Is Null Is Null When $`8esn` Is Null Is Null Then _usn4[{``}..{`6esn`}][$7..$_usn3] When {`3esn`}[999..$`4esn`] Then \"d_str\" In usn2 In $`7esn` End.``? Is Unique"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Create Constraint On()<-[`6esn`:``]-()Assert Exists(Reduce(`3esn`=.0e0 =~0 =~.0e0,usn1 In \"d_str\" Contains {@usn6}|01234567[\"d_str\"..][$`4esn`..]).@usn5?);"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Delete 0X0123456789ABCDEF,$usn1 =~9e1 =~$1000,{``} Contains $1000 Remove [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 01234567[1000..][$`8esn`..]|.9e-1 Is Not Null Is Not Null].@usn5!.``?.usn2!,Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))).`5esn`?.`8esn`?.@usn5?,Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null).@usn6! Detach Delete Reduce(`6esn`=`2esn`[`7esn`][1000],usn2 In .12e-12 Ends With `2esn`|010[..9e-1][..0X7]) Contains `7esn` Contains Case When 9e1 Ends With 9e12 Ends With 0x0 Then {12} Ends With 1e1 Else `4esn` Contains 0X0123456789ABCDEF Contains $usn2 End Union Unwind Extract(`1esn` In $12 In {usn2} Where 12e12[{`4esn`}..`4esn`][999..{@usn6}])[None(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}][Reduce(#usn7=12[..$`5esn`],usn1 In $@usn6 Is Null Is Null|12e12 Ends With `5esn` Ends With .0e0)..[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 0.12 Is Not Null]] As `1esn` Foreach(`3esn` In Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Not Null Is Not Null| Unwind {usn1} Contains {`2esn`} As `8esn`) With *,Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null) As `2esn` Limit `4esn` Is Not Null Where $@usn6 Starts With 0xabc Starts With {`7esn`};"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Load Csv With Headers From 2.9e1[2.12..1.9e0] As `6esn` Unwind {@usn5} As `5esn` Create Unique (({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})),`2esn`=(((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}))) Union Create Unique Allshortestpaths((:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[`7esn`?:`7esn`|usn1 *1000..{@usn6:#usn7 In 07,#usn8:$999[usn1..0e-0]}]->(#usn8 :`5esn`:`7esn`{usn2})-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})) Union Remove {usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}.#usn7!,Any(#usn7 In .0e-0 In 12 Where {`6esn`}[6.0e0..9e0][.9e1..12e12]).`6esn`?.`2esn`? Match (:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[_usn3?:`5esn`*..]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}),`1esn`=Shortestpath((:usn2{`6esn`:9e12[..usn2][.._usn3],`1esn`:01[`6esn`..][0e0..]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})) Using Index @usn5:`4esn`(usn1) Where $`` =~$_usn3 Start `4esn`=Rel:usn2(#usn7='s_str') ,`3esn`=Node:`6esn`(#usn7={_usn4})Where 9e12 Ends With \"d_str\" Ends With 0X7;"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On(_usn3:_usn3)Assert Exists(_usn3($`5esn`[$_usn3][$12]).`7esn`);"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Merge (:``)-[`3esn`?:`1esn`|:`1esn`]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12}) On Create Set `8esn` =[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]] On Match Set @usn5:@usn5 Union All Create Unique ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})),``=Shortestpath((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) Start @usn5=Rel:`8esn`(usn1={#usn7}) ,``=Node:`7esn`({#usn7})Where 00[$``] Load Csv With Headers From Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] As usn1 Union All Create `4esn`=(({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)) Load Csv From $`8esn` Starts With {`7esn`} As `8esn` Fieldterminator 's_str';"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Foreach(`2esn` In .1e-1[..$_usn3][..0]| Remove All(usn1 In $@usn6 Is Null Is Null Where _usn4 Is Not Null Is Not Null).`7esn`!.@usn5?) Union Remove Extract(usn1 In \"d_str\" Contains {@usn6} Where $`` =~.1e-1|$`3esn` =~0x0).@usn6.``!,Case When .9e1 In .1e-1 Then $7 =~01234567 =~12.0 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else $`7esn` In $@usn5 End.#usn8,(`2esn` {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`` $999)-[#usn8?:`8esn`|:#usn8 *999..123456789]->(`3esn` :usn2).#usn8.@usn5? Foreach(`5esn` In Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}]| Load Csv From 7 In 1e1 In {``} As `2esn` Fieldterminator \"d_str\") Load Csv From false[9e12] As `2esn` ;"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Create Constraint On()<-[@usn6:`5esn`]-()Assert Exists(Single(usn1 In \"d_str\" Contains {@usn6} Where {`1esn`} Is Null).`2esn`)"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Merge Shortestpath((usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})) On Create Set `7esn` ={`1esn`}[7.0e-0..9e-1][01234567..{`4esn`}],`7esn`+=$`` =~$_usn3,`2esn` =[usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF] Is Null Is Null On Match Set Any(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])._usn4._usn3!.usn1! ={usn1} Is Not Null Optional Match (:`3esn`{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}),(:usn1{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`) Using Index `3esn`:`2esn`(`7esn`) Using Index usn2:`1esn`(`3esn`) Merge (({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})<-[usn2:`4esn`|:`2esn` *0X7..0Xa]-(#usn7 :#usn7:`8esn`)) Union All Load Csv With Headers From Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] As `7esn` Start `4esn`=Node(0x0) ;"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Create Constraint On(``:`3esn`)Assert Case .9e0 =~#usn7 When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 When 0e0 Contains {`2esn`} Then {1000}[0..] Else 2.9e1 Ends With `5esn` Ends With 1000 End.@usn6 Is Unique;"), + octest_legacy:ct_string("Cypher 999.123456789 Create Constraint On(`5esn`:`5esn`)Assert Extract(#usn8 In 07[..$`5esn`] Where 07[{@usn5}..]|9e-1 Contains 3.9e-1).`3esn`?.usn1 Is Unique;"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Using Periodic Commit Load Csv From `4esn`($`6esn`[@usn6...9e-12],{12})[None(@usn6 In 9e12[..usn2][.._usn3] Where $7[999..10.12e12][$`1esn`..{usn1}])..Allshortestpaths((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})-[`5esn`?:`2esn`|`5esn`]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`))][usn1..Reduce(@usn5=`1esn` In 6.0e0 In 12,`` In `7esn` =~#usn8 =~\"d_str\"|$`6esn` =~$#usn7 =~$`4esn`)] As `` Remove `5esn`:usn1,Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 01234567[1000..][$`8esn`..]|07[..$`5esn`]).`6esn`.@usn5.usn1;"), + octest_legacy:ct_string("Profile Drop Constraint On(usn1:#usn8)Assert Exists(Extract(@usn6 In 9e12[..usn2][.._usn3]|01234567[1000..][$`8esn`..])._usn4!.usn1!.``!);"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Detach Delete 9.1e-1 Starts With .9e0,Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null,Case 9e1 In $1000 When 999 Starts With 7.0e-0 Starts With true Then {usn2}[{999}..][9e12..] End[Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End..][Any(`1esn` In $12 In {usn2} Where @usn6[true..])..]"), + octest_legacy:ct_string("Cypher 1000.999 Drop Constraint On()-[`1esn`:`5esn`]->()Assert Exists({@usn5:`5esn` Ends With Count(*),usn1:$12[$@usn5]}.usn2!);"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Drop Constraint On(`1esn`:`7esn`)Assert None(`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`}[@usn5..{@usn6}]).@usn6.usn1? Is Unique;"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Optional Match @usn5=Allshortestpaths((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})-[`3esn`? *..07]-(#usn7 {_usn4:$12[$`6esn`..][01..]})),((({`1esn`:10.12e12 In Null In .12e12})<-[?:`1esn`|:`1esn`]-(`1esn` :#usn8:@usn6{`7esn`:.1e-1 Contains .12e-12,`2esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[:`4esn`|:`2esn`{usn1:3.9e-1 Contains $@usn5}]->(`7esn` ))) Using Index ``:@usn5(usn1) Using Index usn1:#usn7(usn1) Start _usn4=Node:`4esn`({12}) Union Delete $`1esn` Ends With 1000 Foreach(@usn6 In $`7esn` In $0| With *,{`1esn`} In 0 As _usn3 Order By @usn5[9e-1..0e0][{_usn3}..$usn1] Descending,2.12[`4esn`][.9e-1] Ascending,$`1esn` In 0Xa Desc Skip {1000}[12] Load Csv From 8.1e1['s_str'..] As #usn7 Fieldterminator 's_str') Create (_usn3 {#usn7:$999 =~false =~{`8esn`}})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0}) Union Merge (#usn8 :@usn5{`8esn`:0x0 Ends With #usn8 Ends With .9e-1}) With Distinct *,_usn4['s_str'][8.1e1] Order By $@usn6[.1e-1][9e12] Asc,Case When $999 =~false =~{`8esn`} Then 999 Is Null Is Null When {``} Contains 0.0 Contains `4esn` Then $999 Is Not Null End Contains Case $usn2 In #usn7 In #usn7 When {12} Ends With $`3esn` Ends With 0xabc Then $@usn5 Contains _usn3 End Contains None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0xabc[01234567][.12e-12]) Asc Skip $`4esn`[{usn1}..] Limit {`6esn`} In .0e0 In $0 Foreach(`1esn` In {`7esn`:{`2esn`} Ends With 9e-1 Ends With .1e-1,`7esn`:{@usn6} In 9e12} =~Reduce(_usn3=$usn1[9e1][{999}],usn1 In \"d_str\" Contains {@usn6}|$@usn5 Contains _usn3)| Match `7esn`=(((#usn8 :``{usn2:9e1 =~$`8esn` =~10.12e12})-[_usn3:`6esn`]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}))) Using Index `3esn`:`8esn`(`5esn`) Using Index `3esn`:`8esn`(`5esn`) Create (`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Create Constraint On()-[@usn6:`3esn`]-()Assert Exists({usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`}._usn3!);"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Create Constraint On(`3esn`:usn1)Assert Single(`7esn` In 0.12 Is Not Null Where 010[{`1esn`}..]).`3esn` Is Unique;"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Return Count(*) Starts With {usn2} Starts With `2esn` As `3esn`,0.12 Ends With 7 Ends With 12,`5esn`({`5esn`}[01234567..][5.9e-12..],5.9e-12 Is Null Is Null)[Reduce(#usn7={12} Ends With $`3esn` Ends With 0xabc,usn1 In $@usn6 Is Null Is Null|`1esn`[Null][{@usn6}])..@usn5(`3esn` Contains `2esn` Contains {_usn4},2.9e1 In {``})][Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789}))..Any(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`)] As usn2 Order By $#usn7[$``..999][$usn2..$usn2] Ascending,{usn1:12[..$`5esn`]}[None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..])] Ascending,0.12 =~2.9e1 =~9e1 Ascending Skip [usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1][Shortestpath((({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})))..Shortestpath(((:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12})-[``?:#usn7|:@usn5{``:$usn1 Ends With {`2esn`} Ends With $usn1}]->(:`5esn`:`7esn`$usn2)-[{#usn8:\"d_str\" Contains {@usn6}}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12})))] Limit Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where Count ( * ) Starts With 0.12|{`3esn`} =~$`` =~$`8esn`) Ends With Case {`5esn`} Is Not Null Is Not Null When {``} Is Null Is Null Then {usn2} Ends With {@usn6} Ends With 1000 When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Union All With Distinct $`` =~.1e-1,#usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]),$999 Ends With `2esn` Ends With 12.0 As #usn8 Limit \"d_str\" In 7.0e-0 Where {`3esn`}[999..$`4esn`] Create Unique ((`1esn` :`8esn`)<-[:usn1|usn2]-(`` :`4esn`:usn2)<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``)),Allshortestpaths(({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)})) Union Remove (`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[?:@usn5|:#usn7 *0]->(_usn3 {`2esn`:5.9e-12[0x0..]}).usn2?;"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Remove `2esn`:`3esn`,(`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->(:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[ *1000..{`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]->(`` ).#usn8! Return Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] As #usn8,[`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]),{`7esn`} Is Not Null Is Not Null As `1esn` Order By 00[{1000}] Descending,'s_str'[$_usn3..][9.1e-1..] Desc,$_usn4 =~$#usn8 =~{`4esn`} Desc Skip $``[9e12..] Limit Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[`8esn`(0X0123456789ABCDEF Is Not Null Is Not Null,{usn1} Is Not Null Is Not Null)..][{usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}..] Union Unwind {`8esn`}[.0e0..][999..] As `1esn`;"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Create Constraint On(_usn3:usn1)Assert Exists(Single(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`).``!)"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Return Distinct (:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 ) Ends With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) As `4esn`,#usn7 Contains .0e0 Contains $@usn6 As @usn6,999 Ends With {#usn8} As `7esn` Order By .9e12 Is Not Null Is Not Null Descending Skip .9e-1 Contains {#usn7} Limit `7esn` Ends With $123456789 Ends With 1e-1 With Distinct 0xabc[9.1e-1..] As usn2 Order By 0xabc Starts With 12 Starts With 0e-0 Descending,{`7esn`}[0.12] Ascending"), + octest_legacy:ct_string("Cypher 999.123456789 Using Periodic Commit 07 Load Csv With Headers From `2esn`[`7esn`][1000] As `2esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Unwind @usn5[#usn7..] As usn1 With Distinct 0Xa Starts With 9e0 Starts With Count(*) Skip \"d_str\" Is Not Null Is Not Null Limit {`4esn`}[{`3esn`}][$`2esn`] Where 3.9e-1[{@usn6}..][01234567..] With $_usn3 Contains 1.0 Contains 0.12 As ``,0x0 Ends With #usn8 Ends With .9e-1 As _usn4 Order By 01234567 Ends With .0e0 Ends With 12e12 Ascending,usn1(Distinct {usn1}[7.0e-0..][3.9e-1..]) Asc,.0e-0[..01234567] Descending Union Optional Match #usn7=Shortestpath(({`5esn`:`1esn` In 010 In 1e-1})<-[?:@usn6|:`4esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]-(`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})) Using Scan `6esn`:#usn8 Using Scan #usn7:`8esn` Remove Allshortestpaths((_usn3 {#usn7:$999 =~false =~{`8esn`}})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})).#usn8,Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0).`8esn`! Load Csv With Headers From usn2[12e-12..{`8esn`}][.12e12..{123456789}] As _usn3 Fieldterminator 's_str' Union With 12e-12 Starts With $`7esn` As `5esn`,10.12e12[usn2] As _usn4,$999 Ends With `2esn` Ends With 12.0 As #usn8 Order By #usn8(Distinct 12e12[{`4esn`}..`4esn`][999..{@usn6}])[Any(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1])..{``:9e1[0.0]}] Descending,{`8esn`}[..`5esn`][..01] Asc,9e1 Starts With $`8esn` Starts With `3esn` Ascending Return Distinct *,9e1[12] As usn1 Limit 9.1e-1[..Null][..#usn8];"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Drop Constraint On(_usn3:_usn3)Assert [`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\"].#usn7! Is Unique"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Load Csv With Headers From {0}[..`3esn`][..8.1e1] As `2esn` Fieldterminator \"d_str\" Load Csv From Single(`6esn` In 010[{`1esn`}..] Where _usn4 Ends With {`8esn`} Ends With usn2) =~`1esn`(123.654[01..][Count(*)..],{_usn4} Ends With {0} Ends With `1esn`) =~(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}) As `8esn` Unwind $`6esn` =~$#usn7 =~$`4esn` As usn1 Union All Foreach(usn2 In {usn1:12[..$`5esn`]}[None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..])]| Optional Match Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))),(((usn1 :@usn6:_usn3)<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->(:usn1)<-[:``|:`7esn`{@usn6:{#usn8}[..@usn5],@usn6:$1000 Contains $123456789 Contains #usn8}]->(`1esn` :@usn6:_usn3{#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12}))) Create Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))),@usn6=((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}))) Create Unique (@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})-[#usn8?*..]-(`` {`6esn`:1000[{`1esn`}..][$`3esn`..]});"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Remove All(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where {1000}[0..]).usn2,Extract(#usn7 In .0e-0 In 12 Where {0}[.0e-0][$`2esn`]).`8esn`!;"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Start #usn7=Rel:@usn5('s_str') Where false Contains {`7esn`} Union Delete Reduce(`1esn`={`5esn`}[01234567..][5.9e-12..],usn1 In {#usn7} =~.12e12 =~9e0|$`6esn`[..01][..{_usn3}]) Ends With (`2esn` :usn1)<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-(_usn3 :`1esn`:``) Ends With {usn1:{12}[6.0e0..{usn2}][{_usn3}..{#usn7}]},6.0e0[$12..0.12],$`3esn` In 01 In Count ( * ) Merge Shortestpath(((:@usn5{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null})))"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Create Constraint On(usn2:`6esn`)Assert Reduce(_usn3=@usn5[9e-1..{`1esn`}],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|{123456789} Starts With `6esn`).`4esn`.`6esn`? Is Unique"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Foreach(`2esn` In [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01|_usn4 Ends With {`8esn`} Ends With usn2][Any(usn1 In $@usn6 Is Null Is Null Where `3esn` Is Null)..]| Unwind .12e12[01..{1000}][8.1e1..Count ( * )] As `2esn` With 4.9e12[{_usn4}..],{`5esn`} Ends With $`7esn` Ends With {@usn5} Skip {999}[..`6esn`]) Optional Match _usn4=(((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))) Using Scan `3esn`:`` Where $`5esn` =~Count(*) =~1.9e0 Union All Remove #usn7(Distinct \"d_str\" Is Not Null Is Not Null,$`6esn`[$_usn3..{1000}])._usn3!.#usn7?,[usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $12 Is Null Is Null].``.`3esn`? Remove Case #usn8[\"d_str\"..usn2] When $`5esn`[$_usn3][$12] Then 0[$usn1..] End.`6esn`?,Case When `5esn` Contains 0 Contains $12 Then true In 0.0 Else 9e12 Ends With \"d_str\" Ends With 0X7 End._usn4;"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On(@usn6:`5esn`)Assert Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When $1000[_usn4][{@usn5}] Then 4.9e12[{_usn4}..] End.@usn6?.#usn8! Is Unique"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Drop Constraint On(`5esn`:``)Assert ({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]})-[:`6esn` *12{#usn7:`3esn` =~$#usn7,`8esn`:0e-0[{@usn6}]}]->(usn1 :#usn7:`8esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})-[``? *..00{@usn5:$`8esn` =~{`1esn`} =~$7,#usn7:.12e-12 Starts With .12e-12}]->({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}).usn2! Is Unique"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Start #usn8=Node(7,0X7,0,01) ,#usn8=Relationship:_usn4(@usn6=\"d_str\") Start `6esn`=Rel(7,0X7,0,01) ,@usn5=Rel:usn1({usn2})Where 11.12e-12 Ends With 's_str' Union Remove usn2(.9e-12[usn2]).``,[@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e0 In 8.1e1|9e-1 Is Not Null].`4esn`? Union With Distinct [`1esn` In $12 In {usn2} Where $`8esn` Is Not Null Is Not Null|8.1e1 Contains $@usn6] In All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..]) In Extract(`7esn` In 0.12 Is Not Null Where .12e-12[@usn6..'s_str']) As @usn6,1.9e0 =~.0e0 =~0X7 As @usn6,{`3esn`}[$#usn8..] Order By $`` =~.1e-1 Asc,9e1[..@usn5][..$`5esn`] Descending,$#usn7 Ends With 999 Ends With {12} Descending Skip 3.9e-1 Contains 2.9e1 Contains `5esn` Where 01 Contains 9e-12 Contains $7 Merge `6esn`=(`4esn` :_usn3)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}) On Create Set @usn5 =Count(*)[$7] On Create Set usn1:`6esn`,{`7esn`:{#usn7}[.12e-12]}.@usn6!.#usn7?.`6esn`! ={12} Contains `8esn` Contains @usn5"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Unwind ``[$#usn7] As `3esn` Detach Delete 010[.0e-0..\"d_str\"][.9e0..123.654],1.9e0 In $@usn6 In $_usn3,Reduce(@usn6=0X0123456789ABCDEF Ends With {1000},usn1 In $@usn6 Is Null Is Null|.0e0 =~0 =~.0e0) Starts With None(`6esn` In 010[{`1esn`}..] Where _usn4 Ends With {`8esn`} Ends With usn2) Starts With Case When 01234567 Ends With .0e0 Ends With 12e12 Then @usn6 Starts With #usn7 Else .12e12 Ends With 07 Ends With 3.9e-1 End Union All Load Csv With Headers From {`8esn`}[9e-12..0] As `` With Distinct *,Any(usn2 In $`5esn`[{`4esn`}][{0}] Where .1e-1[2.9e1..][$`7esn`..]) Contains Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Contains Allshortestpaths((_usn3 :`4esn`:usn2)),9e1[...9e1][..$`6esn`] As `4esn` Create Unique `1esn`=((`4esn` :`8esn`{12}));"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Create Constraint On()<-[`5esn`:`1esn`]-()Assert Exists(Case When `2esn` Starts With 010 Starts With `` Then 00[$``] Else @usn6[0x0..][$_usn4..] End.@usn6)"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Unwind 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As `1esn` Return Distinct {@usn6:$12 Is Null} In (`4esn` {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}) As usn2,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null Limit 01 =~07 Remove Single(#usn8 In 07[..$`5esn`] Where 123.654 Ends With {1000} Ends With 9e12).``!"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Using Periodic Commit 1000 Load Csv From {`8esn`:`1esn` In 6.0e0 In 12} =~Case 7 Starts With 9e-12 When .9e12 Is Not Null Is Not Null Then 1000[{`1esn`}..][$`3esn`..] Else {`6esn`}[6.0e0..9e0][.9e1..12e12] End As `5esn` Merge Allshortestpaths(((_usn4 {_usn3:.0e-0[..``][..$7]}))) On Match Set @usn5+=Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null Return Distinct *,{``}[$usn2..00][{_usn3}..123.654],`5esn` Ends With 's_str' Ends With @usn5 Skip Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn`) Contains (`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) Contains Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}) Limit (`1esn` :`5esn`:`7esn`)-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})[[#usn8 In 07[..$`5esn`] Where `8esn`[_usn4]]..Reduce(`7esn`=$@usn5 Is Null Is Null,`2esn` In $@usn5 Is Not Null Is Not Null|{`1esn`}[..$_usn4])][Case When `4esn` =~010 Then {7}[$@usn5..123456789][1e1..1.9e0] Else 1e-1 =~$`7esn` =~1e1 End..#usn7(Distinct usn1 =~false =~{999},{`3esn`} =~$@usn5 =~`2esn`)];"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Create Constraint On(usn2:@usn6)Assert ``(Distinct {_usn3}[{0}...9e-1][9e-1...0e0],$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]).`3esn`? Is Unique;"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(usn2:@usn6)Assert Extract(usn1 In \"d_str\" Contains {@usn6} Where $`` =~.1e-1|$`3esn` =~0x0).`7esn`.`6esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Match #usn8=Allshortestpaths((usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[`3esn`:#usn8|:``{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}]->(:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})) Using Index `7esn`:``(`8esn`) Where {#usn7} =~$@usn6 =~$7 Unwind Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1) Starts With Case 7.0e-0[$`6esn`..] When \"d_str\"[0x0..{@usn6}][$@usn5..0] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else $`5esn`[{`4esn`}][{0}] End Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`) As @usn6 Load Csv From #usn8 =~{@usn5} As #usn8 Fieldterminator 's_str' Union All Load Csv With Headers From Shortestpath(((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(_usn3 :usn1)))[..{_usn4:.9e-1 Ends With .0e-0 Ends With {_usn3},_usn4:9e1 Ends With 9e12 Ends With 0x0}][..Reduce(#usn8=`8esn`[_usn4],`1esn` In $12 In {usn2}|$`4esn` Is Not Null)] As `1esn` Fieldterminator 's_str' Union Merge (((@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[`7esn`?:`2esn`|`5esn` *0]->({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000}))) Start _usn3=Node( {123456789}) Where {`3esn`}[$#usn8..] Delete $7 =~01234567 =~12.0,9e1 Starts With $@usn6 Starts With 0e-0"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Drop Constraint On(`5esn`:`1esn`)Assert Reduce(`3esn`={usn2} Is Not Null Is Not Null,`7esn` In 0.12 Is Not Null|$@usn5 =~{`3esn`}).`2esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Create ``=Shortestpath(((`1esn` :`8esn`)-[`7esn`?:`2esn`|`5esn` *0]->(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))),@usn6=((#usn8 :@usn5{`8esn`:0x0 Ends With #usn8 Ends With .9e-1})) Create `7esn`=((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]})),_usn3=(#usn7 :@usn6:_usn3)-[`6esn`?:@usn5|:#usn7{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]});"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Drop Constraint On(`3esn`:#usn7)Assert ({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[usn2:_usn3 *0xabc..12]-(:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null}).`5esn`? Is Unique"), + octest_legacy:ct_string("Cypher 1000.999 Create Constraint On(#usn8:``)Assert Exists({``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}.#usn8?.@usn6?)"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Create Constraint On(`3esn`:`6esn`)Assert `8esn`(Distinct 12e12 Contains {0}).`4esn`? Is Unique;"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Create Constraint On(`8esn`:usn1)Assert Exists(Extract(#usn7 In .0e-0 In 12 Where 0xabc =~123456789|Null[$`3esn`..][`1esn`..]).usn2!)"), + octest_legacy:ct_string("Cypher 1000.999 Create Constraint On()-[`1esn`:`8esn`]->()Assert Exists(Filter(`6esn` In 010[{`1esn`}..] Where `6esn` Ends With 1e1 Ends With $#usn7).`4esn`);"), + octest_legacy:ct_string("Cypher 1000.999 Drop Constraint On(@usn6:`1esn`)Assert Exists(All(`6esn` In 010[{`1esn`}..] Where usn2[12e-12..{`8esn`}][.12e12..{123456789}]).`5esn`.@usn6!.`5esn`!)"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Using Periodic Commit 0 Load Csv From $999[usn1..0e-0] As `1esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Create Constraint On(`2esn`:usn2)Assert {`5esn`:`3esn` Starts With 9.1e-1 Starts With .9e-1}._usn3 Is Unique;"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Create Constraint On(_usn3:`1esn`)Assert {@usn6:$_usn3 Starts With 010}.`4esn` Is Unique;"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Remove Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]).`4esn`,Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 9e12 Is Null Is Null).`3esn`,(@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`).#usn7.`8esn` Create Unique _usn4=((_usn3 :`6esn`)<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})),usn2=(`2esn` {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(#usn8 {``:9e1[0.0]})-[:#usn8|:`` *..07{@usn5:01234567[\"d_str\"..][$`4esn`..],`6esn`:$usn1 Ends With {`2esn`} Ends With $usn1}]->(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1}) Union All Start usn2=Relationship:#usn8(usn2={@usn5}) ,`2esn`=Relationship:``(`1esn`=\"d_str\") Return *,3.9e-1 Ends With {usn1} Ends With {`5esn`} As `3esn`,Reduce(@usn5=`1esn` In 010 In 1e-1,`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1 Contains $@usn6)[All(usn1 In {#usn7} =~.12e12 =~9e0 Where $7)][`8esn`(.1e-1[2.9e1..][$`7esn`..])] Skip Shortestpath((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))[[`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`}[@usn5..{@usn6}]|{1000}[..`5esn`][..9e12]]..][{_usn4:`8esn`[.12e12..]}..] Limit Count ( * ) Contains 9.1e-1 Contains {`2esn`} Return Distinct *,$_usn4[..01234567][..$`6esn`],{`1esn`} Is Null Order By None(`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]) Starts With Reduce(`3esn`=.1e1 Ends With #usn7 Ends With {#usn7},usn2 In $`5esn`[{`4esn`}][{0}]|\"d_str\" In usn2 In $`7esn`) Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`1esn`}[{usn2}]) Asc,Extract(usn2 In .12e-12 Ends With `2esn` Where `3esn` Contains 01 Contains 01) Is Not Null Descending,$`` =~$_usn3 Descending Limit {`4esn`}[00..] Union Foreach(_usn3 In 9e1[$``.._usn4][999..`3esn`]| Unwind {`8esn`}[.0e0..][999..] As `` Unwind .9e-1[`1esn`][7] As usn2);"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Create Constraint On(@usn6:`3esn`)Assert Exists(Reduce(usn2={`6esn`}[@usn5..{@usn6}],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|9e0[..{#usn7}][..`4esn`]).#usn8?);"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` With @usn6 Ends With $`2esn` Ends With 1.0,(usn2 )-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(_usn4 :`1esn`:``{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}})-[:`2esn`|`5esn` *999..123456789{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]}]-(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}) =~Case When {`1esn`} Is Null Then .1e1[{@usn6}][true] When \"d_str\" Starts With $`7esn` Starts With 999 Then 07[..$`5esn`] Else 00[Null..usn2] End As usn2 Limit 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Start `3esn`=Rel:`7esn`(`8esn`={`3esn`}) ,`2esn`=Node( {`6esn`})Where $`6esn` Starts With 0.0 Foreach(_usn4 In \"d_str\" Contains {@usn6}| Remove Shortestpath((:usn1$1000)).@usn5? Create (`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5))"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On(``:`5esn`)Assert Exists(Allshortestpaths(((#usn8 :usn2)<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))).`8esn`)"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On(#usn8:`1esn`)Assert Allshortestpaths(((`2esn` :`2esn`:`4esn`{#usn7:0 Starts With `7esn` Starts With 9e0})-[?:`4esn`|:`2esn` *01]->(`2esn` :_usn3{`6esn`:_usn4[{``}..{`6esn`}][$7..$_usn3],`6esn`:$`4esn` Ends With {999}})))._usn4? Is Unique;"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Match ``=((:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})-[?:`4esn`|:`2esn`{usn1:{123456789} Starts With `6esn`,@usn5:9e1 Ends With 9e12 Ends With 0x0}]-(`2esn` :usn1)) Using Index `6esn`:`6esn`(`7esn`) Foreach(#usn7 In 0e0 =~{12} =~{1000}| With Distinct *,$`5esn` Is Null As `1esn`,.0e-0[..01234567] Order By 0[10.12e12] Descending,`1esn`({`4esn`} Ends With Count(*),$usn1 Contains 4.9e12 Contains $`2esn`) Is Not Null Is Not Null Asc,{`1esn`} Contains 1.0 Contains 4.9e12 Desc Where $0 Ends With $usn1 Ends With {``}) Optional Match `5esn`=((`3esn` :`1esn`:``{usn1:$usn1[9e1][{999}],#usn8:0e-0[$``..10.12e12]})<-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]->({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(`4esn` :@usn5)) Union Unwind [_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12] As _usn3 Create Unique `7esn`=Allshortestpaths((`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})<-[_usn3? *..123456789{`6esn`:.0e-0[..``][..$7],usn2:{usn2} Ends With {@usn6} Ends With 1000}]-(`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(#usn8 :_usn4:`2esn`{`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})),((:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(`2esn` :_usn3)<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(:#usn7:`8esn`));"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Optional Match @usn5=Allshortestpaths(((:usn1{#usn8:2.9e1[{`2esn`}]}))) Using Scan #usn7:`` Using Index #usn8:usn2(@usn5) Where 10.12e12 Contains .9e0;"), + octest_legacy:ct_string("Cypher 1000.999 Create Unique Allshortestpaths((`2esn` :_usn3{usn1:5.9e-12 Is Null Is Null})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(:`5esn`:`7esn`{`4esn`:2.9e1[{`2esn`}]})-[ *..123456789{@usn5:$`8esn`}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})),((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})) Create Unique usn1=((`` :`7esn`)) Foreach(@usn5 In Shortestpath(((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)))[..Any(#usn7 In .0e-0 In 12)]| Load Csv From [usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0|4.9e12 Is Not Null Is Not Null] =~Case {_usn3} In $#usn8 In $12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else 0[..{0}][..true] End =~Case Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else $_usn3 Starts With 010 End As #usn7 ) Union All Merge `5esn`=((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})) On Match Set (:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12}).`3esn`! =0x0[{`6esn`}..],_usn3+=Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`|.9e-12[.12e12..][0Xa..])[{#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}..],`4esn` ={`8esn`}[.0e0..][999..] Create Unique Shortestpath((@usn6 :@usn5)),@usn6=(({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)) Create (_usn4 :`6esn`)<-[`2esn` *7]->(`4esn` :@usn5),_usn3=(_usn3 :`1esn`:``{`8esn`:{#usn8} In {12} In .9e12})<-[?:`3esn`|`3esn` *999..123456789{_usn3:$`4esn`[$@usn6...12e12]}]->(usn1 {#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]});"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Drop Constraint On(_usn3:``)Assert Exists(Shortestpath((((:`1esn`:``{`8esn`:5.9e-12[0x0..]})-[?:`1esn`|:`1esn` *999..123456789]-(usn2 :@usn6:_usn3)<-[_usn4:`2esn`|`5esn` *7{`2esn`:999 Ends With {#usn8},#usn8:.12e12 Is Not Null}]-(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})))).`7esn`);"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(@usn6:``)Assert Any(_usn3 In `8esn`[_usn4] Where $1000[_usn4][{@usn5}]).``?.`1esn`.usn1? Is Unique"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(`3esn`:_usn3)Assert Case 9e0[{7}...0e-0][Null..@usn5] When {`6esn`}[@usn5..{@usn6}] Then 1.9e0 In $@usn6 In $_usn3 Else $`8esn` =~{`6esn`} =~12 End.`5esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On(usn2:#usn7)Assert Exists(Extract(usn1 In \"d_str\" Contains {@usn6}).`8esn`?.`1esn`?);"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Unique (({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})),`2esn`=(((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}))) Remove Extract(#usn8 In 07[..$`5esn`] Where $usn2[..$999][..#usn8])._usn3?,Single(`` In `7esn` =~#usn8 =~\"d_str\" Where 9e1 Ends With 9e12 Ends With 0x0).`5esn`!,usn2({`6esn`} In .0e0 In $0,0X0123456789ABCDEF Is Not Null Is Not Null).``? Union All Remove (`` :`8esn`)-[#usn7? *..00{_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}]->(:`3esn`)-[usn1?:usn1|usn2]->(#usn7 :@usn5).usn1,{12}.`6esn`? Create Unique #usn8=((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) Merge (((`1esn` :#usn8:@usn6{`7esn`:.1e-1 Contains .12e-12,`2esn`:.1e1 Ends With #usn7 Ends With {#usn7}})-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5)-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5))) On Match Set Allshortestpaths((:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})).@usn6! =12 Is Not Null Is Not Null On Create Set Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})).`5esn`!._usn3!._usn3? =$`1esn` Ends With 1000,(`8esn` :usn1)<-[usn2 *7]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})-[ *01{usn1:false[..usn2][..999]}]-(_usn3 ).#usn7!.`` =4.9e12 Ends With $@usn6,usn2 =10.12e12[.0e0] Union All Remove Case #usn8[\"d_str\"..usn2] When $12[$`6esn`..][01..] Then $`4esn`[$@usn6...12e12] End.`7esn`!.``!.`7esn`?,All(`6esn` In 010[{`1esn`}..] Where `3esn` Starts With 9.1e-1 Starts With .9e-1).#usn8.`3esn`! Merge `4esn`=Allshortestpaths((usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) Unwind ``[$7..$_usn4] As ``"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Unwind _usn4[{`3esn`}][00] As _usn3 Union Merge ((:`1esn`:``{`8esn`:5.9e-12[0x0..]})) On Create Set #usn7 =usn1 =~false =~{999},Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}).`2esn`! =9e12 Is Null Is Null,`2esn`+=Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`}) Ends With Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))) Ends With Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1) On Create Set `3esn` =$7[.1e-1..{@usn6}][$7..{`1esn`}],None(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {0}[.1e-1..][_usn4..]).usn2 =$`7esn` In $`4esn`,usn1+=$`4esn` Ends With {999} Union All Return *,$123456789[..$999][..`6esn`] As @usn5,Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07)[Case 9e-12 Ends With 9e1 Ends With 4.9e12 When `3esn` =~$#usn7 Then $@usn5 Starts With #usn7 When {`4esn`}[{`3esn`}][$`2esn`] Then #usn7[$`8esn`][{`3esn`}] Else 9e0[`4esn`..$_usn4][9.1e-1..0e0] End][[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]] Skip @usn5[9e-1..{`1esn`}] Limit 11.12e-12 Contains usn1 Load Csv From false =~{`8esn`} =~00 As `7esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Unwind 1000[{123456789}][usn1] As `7esn` Create Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))),@usn6=((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})) Union All Remove (`` :`8esn`)-[#usn7? *..00{_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}]->(:`3esn`)-[usn1?:usn1|usn2]->(#usn7 :@usn5).usn1,{12}.`6esn`? Create Unique #usn8=((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) Merge (((`1esn` :#usn8:@usn6{`7esn`:.1e-1 Contains .12e-12,`2esn`:.1e1 Ends With #usn7 Ends With {#usn7}})-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5)-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5))) On Match Set Allshortestpaths((:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})).@usn6! =12 Is Not Null Is Not Null On Create Set Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})).`5esn`!._usn3!._usn3? =$`1esn` Ends With 1000,(`8esn` :usn1)<-[usn2 *7]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})-[ *01{usn1:false[..usn2][..999]}]-(_usn3 ).#usn7!.`` =4.9e12 Ends With $@usn6,usn2 =10.12e12[.0e0] Union All Create Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}})) Return (usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[_usn3?:@usn5|:#usn7]->(`2esn` :usn1)<-[?:usn1|usn2{#usn8:'s_str'[`2esn`][12.0]}]->(_usn3 :``)[[usn2 In .12e-12 Ends With `2esn` Where .9e0[07..][4.9e12..]|12.0[...0e0]]] As `1esn`,$_usn4 =~$#usn8 =~{`4esn`} Order By $1000 Is Null Desc,9e-12 Is Not Null Is Not Null Desc,{`1esn`} In 0 Asc Unwind 12e-12 Starts With $`7esn` As usn2"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Drop Constraint On(`6esn`:usn2)Assert Allshortestpaths(({@usn6:12e12[{`4esn`}..`4esn`][999..{@usn6}]})-[#usn8?:_usn3 *..123456789]-({#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]})-[_usn3?:``|:`7esn` *0X0123456789ABCDEF]-(#usn7 {usn2:0X7[#usn7..][$@usn5..]})).usn2 Is Unique;"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Drop Constraint On()-[`8esn`:`3esn`]-()Assert Exists([`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]|7 Starts With 9e-12].usn2?.`6esn`);"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Load Csv From {@usn6} Is Null As _usn3 Union All Merge `8esn`=Allshortestpaths(((`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})-[`2esn`?:@usn6|:`4esn` *010..0{`4esn`:Null[$`3esn`..][`1esn`..],_usn3:6.0e0[$#usn7..$1000]}]-(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]})-[`3esn`:#usn8|:``{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}]->(:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]}))) On Match Set `` =6.0e0[$12..0.12],#usn7+=7 In 1e1 In {``} On Match Set `` =$usn2 Starts With $999 Starts With .0e0,All(usn1 In \"d_str\" Contains {@usn6} Where $1000 Is Null)._usn3?._usn4!.`7esn`? ={usn1:$usn1[9e1][{999}],#usn8:0e-0[$``..10.12e12]}[Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End] Create `8esn`=Shortestpath(((:usn1{#usn8:2.9e1[{`2esn`}]})<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``))) Unwind {12}[true..][7..] As @usn5;"), + octest_legacy:ct_string("Cypher 999.123456789 Return 01234567[1000..][$`8esn`..],Count ( * ) Is Not Null Is Not Null As _usn3,3.9e-1[..$1000][..0.12] As `` Limit {999} =~$`6esn` =~$`6esn` Unwind #usn7 In 07 As ``"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Drop Constraint On(usn1:usn2)Assert Exists({``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}.`1esn`!.`6esn`?)"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Drop Constraint On(_usn3:_usn3)Assert Exists([@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 1.9e0 In $@usn6 In $_usn3].`7esn`)"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On(#usn8:`4esn`)Assert Exists(Reduce(_usn3={123456789}[...9e-1][..1.0],@usn6 In 9e12[..usn2][.._usn3]|\"d_str\" Is Not Null Is Not Null).@usn6?)"), + octest_legacy:ct_string("Cypher 1000.999 Create Unique @usn5=Shortestpath((`7esn` {#usn8:2.9e1[{`2esn`}]})<-[usn2:#usn8|:``]->({`6esn`:9e0[`4esn`..$_usn4][9.1e-1..0e0]})),(usn1 :`3esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 )<-[_usn4{`5esn`:9e0[..{#usn7}][..`4esn`]}]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}) Remove [#usn7 In .0e-0 In 12 Where $999 Is Not Null].`8esn`.@usn6!.`1esn`,Extract(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1]|0[$usn1..])._usn3!.usn2.`8esn`! Union All With Distinct (`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` Ends With 10.12e12) As `8esn` Order By 9e-12[010..{#usn7}][{123456789}..7] Desc Limit 7.0e-0 Ends With {123456789} Ends With @usn6"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Create Constraint On(``:`2esn`)Assert Exists({_usn3:12.0[..Count ( * )][..@usn6]}.``!)"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Unwind [`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] As `8esn` Merge `8esn`=(@usn6 :`5esn`:`7esn`) On Match Set (`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[? *..123456789{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:`7esn`{`5esn`:{`8esn`} Starts With .9e-1 Starts With 1000})._usn3._usn3?.`6esn`! =(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}) Is Not Null,#usn8 =0[4.9e12] Remove Extract(`7esn` In 0.12 Is Not Null Where {`1esn`}[{usn2}]|9e1 Ends With `7esn` Ends With 2.12).`2esn`?.`1esn`.usn2!,Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where {`3esn`} =~$@usn5 =~`2esn`|$1000 Starts With {@usn6} Starts With $@usn5).`3esn`?.`3esn`?.`4esn`? Union All Foreach(@usn5 In $`` Ends With 1e-1 Ends With $@usn6| Return *,_usn4[{``}..{`6esn`}][$7..$_usn3] Order By 9e0 Ends With {7} Desc,`4esn` =~_usn4 =~0e-0 Descending) Union All Return Distinct $`` Ends With #usn7 Ends With _usn3 As _usn3,{@usn6:2.9e1[{`2esn`}],usn1:01 Contains 9e-12 Contains $7} Is Null Is Null As @usn6 Order By `6esn`[..$0][..{7}] Asc,Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null) In `4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`) Ascending,{123456789} =~@usn5 Asc Limit Single(_usn3 In `8esn`[_usn4] Where `3esn` Contains `2esn` Contains {_usn4}) In Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`) In {7} With *,$999 Ends With `2esn` Ends With 12.0 As #usn8,All(usn1 In $@usn6 Is Null Is Null Where $`1esn`[4.9e12..][_usn3..])[..@usn5(Count(*)[Count ( * )][{0}],`4esn` =~010)] As `3esn`"), + octest_legacy:ct_string("Cypher 999.123456789 Create Constraint On(`6esn`:#usn8)Assert Case When `1esn`[{@usn5}..][{_usn4}..] Then {`3esn`}[..{`4esn`}][..usn2] Else `4esn` Contains 0X0123456789ABCDEF Contains $usn2 End.`8esn`.`4esn`?.@usn5? Is Unique;"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Return *,$`3esn`[..{`5esn`}],$_usn3 Contains 1.0 Contains 0.12 As `` Skip 5.9e-12[..9e0] Union With Distinct 4.9e12 Starts With {``} Where $0 Ends With 9e-12 Ends With $_usn4;"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On(`6esn`:usn1)Assert Exists(Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..]|1e-1 Contains 0.0)._usn4?)"), + octest_legacy:ct_string("Cypher 1000.999 Create Constraint On()<-[`1esn`:@usn5]-()Assert Exists([_usn3 In `8esn`[_usn4] Where 0[..{#usn7}][..$_usn3]|usn2 Contains `2esn` Contains {1000}].`3esn`!);"), + octest_legacy:ct_string("Cypher 1000.999 Create Constraint On()<-[#usn7:`1esn`]-()Assert Exists([@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {1000}[..`5esn`][..9e12]].#usn7!.`5esn`!._usn3);"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Match `3esn`=({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}),((:#usn7:`8esn`{@usn6:123456789[_usn4..`1esn`][$`6esn`..{@usn6}]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}})) Using Index `5esn`:`4esn`(_usn3) Merge (`1esn` :@usn5{@usn6:$`7esn` Ends With 7.0e-0 Ends With $usn2}) On Create Set `` =$`3esn` =~$123456789 =~`3esn`,Reduce(#usn7=4.9e12 Starts With {``},usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|3.9e-1 Contains $@usn5).`7esn`?.#usn7.`1esn`? =12 Ends With {#usn8} Ends With $_usn4,(_usn3 )<-[:`8esn`|:#usn8 *0X7..0Xa]->(`4esn` :`8esn`{12}).`8esn`!._usn3? =Filter(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Starts With (#usn7 :``)-[`3esn`{`4esn`:12e12[.9e12..07]}]-(`1esn` :``{_usn4:$@usn5 =~{`3esn`}})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}) Starts With Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12) On Match Set Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999}).`5esn`.#usn8!.`3esn`? =$12 In {usn2},`4esn`(Distinct .9e0[07..][4.9e12..]).`4esn`! =Reduce(#usn7=#usn8[\"d_str\"..usn2],#usn7 In .0e-0 In 12|`` Ends With 1.0 Ends With usn1) Ends With [_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3]] Ends With Shortestpath((((:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[`2esn`?:`8esn`|:#usn8]->(`` )<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)))),`5esn`+=7 Starts With 9e-12 Unwind $@usn5 =~{`3esn`} As `5esn` Union All Create Unique (((:`5esn`:`7esn`{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[#usn8:usn2]->({`6esn`:12[@usn6][{`2esn`}]})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(`5esn` {_usn4:0xabc[..Count(*)][..$`5esn`]}))),Shortestpath((_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn2 *7]-(`` )) With Distinct 00[..@usn6] As `6esn`,{`3esn`}[...1e1][..0],Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null As `2esn` Skip $usn2 Ends With 9e12 Ends With Count ( * ) Limit 0xabc Starts With {`3esn`} Starts With {``} Where 123456789[_usn4..`1esn`][$`6esn`..{@usn6}] Union Return *,None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12)[Case When .12e12 Is Not Null Then {`6esn`} Starts With .12e-12 When .1e-1 Starts With @usn6 Starts With _usn3 Then $`5esn` Ends With 's_str' Ends With $`6esn` End..][Extract(usn1 In $@usn6 Is Null Is Null Where $999 =~false =~{`8esn`}|$@usn6[``..][3.9e-1..])..],@usn6[true..] As _usn4 Order By $`4esn` Ends With .12e12 Ends With 123.654 Desc,Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) =~usn2({`1esn`} Is Null) =~Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 1.9e0 In $@usn6 In $_usn3) Descending Skip $`7esn` Is Null Limit Reduce(`5esn`=$usn1[..$999][..0e0],`2esn` In $@usn5 Is Not Null Is Not Null|``[$#usn7]) Starts With [`6esn` In 010[{`1esn`}..] Where 9e-12[$7..]] Starts With Any(_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12) Optional Match @usn5=(((`1esn` :usn2{`8esn`:12.0[...0e0]})-[`5esn`?:@usn5|:#usn7{`4esn`:9e-12[$7..]}]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]}))),Shortestpath((`6esn` :``)<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})) Where $@usn6 Is Null With Distinct *,Case Count ( * ) =~123456789 =~{@usn5} When 0[10.12e12] Then 12.0 Starts With 00 Else 2.9e1 In {``} End[..Case $`8esn`[0x0][.9e0] When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null Else $usn1 =~.0e0 =~{`4esn`} End][..Extract(#usn8 In 07[..$`5esn`] Where 07[{@usn5}..]|9e-1 Contains 3.9e-1)] As `4esn`,(`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3)[Case When 3.9e-1 Ends With {usn1} Ends With {`5esn`} Then 5.9e-12 Is Null Is Null When 9e1 Ends With 9e12 Ends With 0x0 Then .9e0 =~#usn7 Else 0 Starts With `7esn` Starts With 9e0 End..Filter(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null)] As _usn4 Skip 00[$``] Where @usn6 Ends With $`2esn` Ends With 1.0"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Remove 0e0.`4esn`!,usn1(Distinct #usn7 Contains .0e0 Contains $@usn6,.9e0 =~#usn7).`5esn`?,Single(usn2 In .12e-12 Ends With `2esn` Where $999 Ends With `2esn` Ends With 12.0).`8esn` Create ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})),`1esn`=Allshortestpaths(((#usn8 {@usn5:{7}[$@usn5..123456789][1e1..1.9e0],@usn6:usn2 Starts With $usn1 Starts With 10.12e12})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc}))) Load Csv With Headers From Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] As `7esn` "), + octest_legacy:ct_string("Cypher `8esn`=_usn4 With \"d_str\" Starts With $`7esn` Starts With 999,[`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] Skip Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..])[[`6esn` In 010[{`1esn`}..] Where Count ( * ) Starts With 0.12|.12e12 Ends With 07 Ends With 3.9e-1]..] With $_usn3 Contains 1.0 Contains 0.12 As ``,0x0 Ends With #usn8 Ends With .9e-1 As _usn4 Order By 01234567 Ends With .0e0 Ends With 12e12 Ascending,usn1(Distinct {usn1}[7.0e-0..][3.9e-1..]) Asc,.0e-0[..01234567] Descending Union Detach Delete $`5esn` Is Null,{1000} Starts With {`1esn`} Start _usn3=Rel:usn2(#usn7='s_str') Create Shortestpath(((@usn6 :usn2{@usn5:$`5esn`[{`4esn`}][{0}],usn2:9e12 Is Null Is Null})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})-[usn1?:@usn6|:`4esn` *..123456789]->({#usn8:_usn4[$_usn4]}))),`2esn`=(:_usn3{usn2:6.0e0[$12..0.12],#usn7:`2esn`})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]});"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create #usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2)))),(((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))) Remove Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`).`6esn`?._usn4?.#usn8,usn2(0Xa In 1.0 In $@usn5).usn2! Merge `2esn`=((`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[?:`2esn`|`5esn` *..123456789$1000]-({`1esn`:$`8esn` Is Null Is Null,`1esn`:0.12 =~2.9e1 =~9e1})-[usn2:`5esn`]-(:`4esn`:usn2{@usn5:`8esn`[.12e12..],usn1:$#usn8[$0..`3esn`][1e-1..$7]})) Union Return $#usn8 Starts With 9.1e-1 Starts With {#usn7} As `8esn`,$`1esn` Contains 1000 Contains $123456789 As _usn3 Order By 00[{1000}] Descending,'s_str'[$_usn3..][9.1e-1..] Desc,$_usn4 =~$#usn8 =~{`4esn`} Desc Skip $@usn6[...9e-1] Limit $#usn7[01..2.12][2.12..3.9e-1] Remove [usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null].`1esn`! Union All Merge ((`1esn` {@usn6:6.0e0[$#usn7..$1000]})) On Create Set `3esn` =9e0[`7esn`..][#usn8..],Shortestpath(((#usn7 :`1esn`:``)<-[?:`4esn`|:`2esn`]-(_usn3 :`4esn`:usn2)-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}))).usn1 =$_usn3[.0e-0..999],{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}.`6esn`? =$0[1e1][12e-12] On Match Set Shortestpath(((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(_usn3 :usn1))).usn2 =Count(*) Is Not Null Is Not Null,[`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 10.12e12[usn2]|9e0[`3esn`][0]].`6esn`? =3.9e-1[..$1000][..0.12] Foreach(`8esn` In {1000}[`2esn`...0e-0][9e-1..0X7]| Load Csv From usn2(Distinct $_usn3 =~'s_str' =~12) In (`` :usn1)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}) In Case When {_usn4}[{`6esn`}] Then 12e12 Is Not Null Is Not Null When #usn7 Is Null Is Null Then {`8esn`} Starts With .9e-1 Starts With 1000 End As usn2 ) Remove @usn5:`8esn`;"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Create Unique Allshortestpaths(((@usn6 :@usn6:_usn3))),Allshortestpaths(((@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1}))) Union All Create Allshortestpaths(((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))),`8esn`=Allshortestpaths(((:`4esn`:usn2{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(_usn4 :usn2))) Union Unwind $`8esn`[...1e-1] As usn2 Match Shortestpath(((`` :`7esn`))),Allshortestpaths((:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[*{usn1:{`6esn`} In .0e0 In $0,usn1:07[..$`5esn`]}]-(:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})) Using Index @usn5:usn1(`4esn`) Where {0}[.1e-1..][_usn4..] Optional Match `5esn`=Shortestpath((({_usn3:.9e12 Contains 0 Contains $0}))),usn2=(`8esn` :@usn6:_usn3)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Where 010[...12e-12];"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Create Constraint On()-[#usn8:@usn6]->()Assert Exists(Case 12e12 When {#usn7} =~$@usn6 =~$7 Then 6.0e0 =~12.0 =~9e1 When 0.0[00..][0xabc..] Then .9e1[$`1esn`..][$``..] Else `5esn` Is Not Null Is Not Null End.`6esn`?);"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create #usn7=(((:`3esn`)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1})))"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Create Constraint On(``:`8esn`)Assert exists(Distinct .0e-0[..``][..$7],$`3esn` =~0x0)._usn3?._usn3? Is Unique;"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Create Constraint On(`8esn`:usn2)Assert Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..]).@usn5 Is Unique"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Create Constraint On()-[usn1:`5esn`]-()Assert Exists(Single(#usn7 In .0e-0 In 12 Where 9e1[$``.._usn4][999..`3esn`]).@usn6?)"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Create Constraint On(`4esn`:`2esn`)Assert Exists(Allshortestpaths((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]}))).``!.`5esn`!.#usn8!)"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Detach Delete 1.9e0 In $@usn6 In $_usn3,$@usn5 =~{`3esn`} Load Csv With Headers From .0e0 =~Case $`6esn` Starts With 0.0 When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] End =~All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}]) As `1esn` Fieldterminator 's_str';"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Delete (`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[`3esn` *..0x0]-(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:_usn4|:`1esn` *01]-(`4esn` {`3esn`:{`7esn`} =~\"d_str\" =~{``},`3esn`:{`1esn`} Contains 1.0 Contains 4.9e12}) =~Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 9e12 Is Null Is Null) =~(:@usn5{#usn7:Null,`5esn`:{@usn5} Ends With 0Xa Ends With .12e-12})-[:`3esn`|`3esn` *1000..]-(@usn6 )"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Drop Constraint On()<-[`1esn`:usn1]-()Assert Exists((#usn7 {#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})._usn4?)"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Create Constraint On(@usn5:_usn4)Assert Exists(Any(#usn7 In .0e-0 In 12 Where .0e-0 Ends With $`2esn` Ends With `5esn`).``.@usn6?);"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Return Distinct *,$999 =~0e0 =~0X7 As `1esn` Order By $`6esn`[@usn6...9e-12] Asc,9e-12 Starts With {1000} Desc Limit Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789)[..All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 1e1 =~{@usn5} =~`7esn`)][..Case 07[..$`5esn`] When 00[$_usn4][$`1esn`] Then {#usn7}[.12e-12] Else `5esn` Contains 0 Contains $12 End] Delete {`8esn`}[9e-12..0],usn1 =~false =~{999},.12e-12 Ends With `2esn` With 8.1e1[$``],.9e12 Contains 0 Contains $0 As _usn4 Skip [usn2 In .12e-12 Ends With `2esn` Where @usn5 In Null|false =~{`8esn`} =~00][Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where Count ( * ) =~123456789 =~{@usn5})..Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)] Limit Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Where $_usn4 Ends With {#usn8} Union All Create Shortestpath((`` :`3esn`)-[:#usn8|:``*{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]->(:``{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Remove Case When {1000}[..`5esn`][..9e12] Then Count(*)[..{#usn7}] End.`3esn`? Match `1esn`=((`4esn` :`8esn`{12})) Using Join On `4esn`,`5esn`,@usn6 Using Join On @usn5,_usn4 Where #usn7 =~$@usn5 =~{7} Union All Foreach(`4esn` In [usn2 In $`5esn`[{`4esn`}][{0}] Where $usn2[..$999][..#usn8]][2.9e1..][None(usn2 In .12e-12 Ends With `2esn` Where `7esn`[1.9e0..5.9e-12][9e0..@usn5])..]| Load Csv From {usn2} In false As `6esn` ) Match Shortestpath((:`2esn`:`4esn`{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({#usn7:12e12[.9e12..07]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->()),(`4esn` :`8esn`{12})-[_usn3:`6esn`]-(`3esn` :#usn8:@usn6)-[`1esn`]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]}) Using Index `7esn`:``(`8esn`) Where $usn2 Starts With $999 Starts With .0e0 Foreach(`7esn` In `1esn`[{usn1}..]| Remove None(#usn7 In .0e-0 In 12 Where `8esn`[.12e12..]).`5esn`!,Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0X0123456789ABCDEF Ends With {1000})._usn4?) Union Foreach(`8esn` In 2.12 Is Not Null Is Not Null| Create Unique usn2=Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Optional Match ((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})) Using Index #usn7:`4esn`(@usn5) Using Join On `4esn`,`2esn`,`` Where {123456789} Starts With $_usn4 Starts With 0x0) Create `3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})),(:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[`7esn`?:`7esn`|usn1 *1000..{@usn6:#usn7 In 07,#usn8:$999[usn1..0e-0]}]->(#usn8 :`5esn`:`7esn`{usn2})-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]});"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Drop Constraint On()-[``:@usn6]->()Assert Exists(Extract(usn2 In .12e-12 Ends With `2esn` Where 1e-1 Contains 0.0).@usn6.`2esn`?)"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Drop Constraint On(`5esn`:#usn7)Assert Exists(Allshortestpaths((@usn6 {usn1:0Xa In 1.0 In $@usn5})-[`5esn`?:`2esn`|`5esn`]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})).`4esn`!._usn3)"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Return *,Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789)[..All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 1e1 =~{@usn5} =~`7esn`)][..Case 07[..$`5esn`] When 00[$_usn4][$`1esn`] Then {#usn7}[.12e-12] Else `5esn` Contains 0 Contains $12 End],1.0 Is Null Is Null Order By [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End Ascending,{`7esn`}[0.12] Descending Skip Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12])[Reduce(@usn5=1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$0 Ends With 9e-12 Ends With $_usn4)..] Detach Delete $#usn7 Contains 3.9e-1 Match ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})),`6esn`=(usn1 :#usn8:@usn6) Union All Match (((`7esn` :usn1)<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})<-[`3esn`?:@usn6|:`4esn`]-(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))),``=((:_usn4:`2esn`{@usn5:1e-1[$`4esn`]})<-[? *0]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})) Using Scan ``:`1esn` Merge Shortestpath(((:_usn3{_usn3:010[..9e-1][..0X7]}))) On Match Set `3esn`+=Case .12e-12 Is Null When Count ( * )[_usn4..] Then 7.0e-0 Is Not Null When 2.12[{12}] Then {usn2} Ends With {@usn6} Ends With 1000 End[Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..])][({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})],_usn4+=Single(_usn3 In `8esn`[_usn4] Where $_usn3[usn2..][usn1..])[{`6esn`:Count(*) =~01234567 =~.1e-1}..[usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]]],`2esn`+=0X0123456789ABCDEF In false Union All Unwind 's_str'[`2esn`][12.0] As `4esn`"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Create Constraint On()-[`5esn`:`1esn`]-()Assert Exists(Reduce(`2esn`=$usn2 Starts With $999 Starts With .0e0,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|0xabc[0Xa..]).@usn5)"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Remove Shortestpath(({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})<-[`8esn`*]-(@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}}))._usn3?.`3esn`? Optional Match `4esn`=Shortestpath(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))),((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})) Unwind 12.0 In `7esn` As _usn4 Union Delete {_usn4} In 0X7 In 0e0,.9e12 Starts With 0X7 Starts With .9e-1 Create Allshortestpaths((`5esn` {`3esn`:$@usn5 Is Null Is Null})-[`8esn`? *1000..{usn2:0X7[#usn7..][$@usn5..]}]->(`2esn` {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})),``=({`4esn`:{7}[0x0][1e1]})-[:`8esn`|:#usn8 *01]-(usn2 :`2esn`:`4esn`)-[$#usn8]->({usn2:01[`4esn`..]}) With Extract(#usn7 In .0e-0 In 12 Where {`6esn`}[6.0e0..9e0][.9e1..12e12]|Count(*)[$7]) Is Null Is Null As `1esn` Order By {_usn3:.0e-0[..``][..$7]}[..(`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`)][..@usn5] Descending,Any(@usn6 In 9e12[..usn2][.._usn3] Where 12e12[.9e12..07]) Ends With Shortestpath(((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))) Asc,$`1esn` In 0Xa Desc Skip 1e1 Ends With $_usn3 Ends With .1e1 Where {#usn8} Starts With {`2esn`} Union All Detach Delete {1000} =~4.9e12 =~9e1,Null,10.12e12[010..1e1][.1e-1..{1000}] Return *,2.12[{12}] As #usn7,.0e-0 =~usn2 As `1esn` Order By $`8esn` =~{`6esn`} =~12 Ascending,Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End In (:usn1)<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}) In [_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|usn2 Ends With $123456789 Ends With {999}] Ascending,Any(_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0) Ends With Reduce(`6esn`=1e1 Ends With 12 Ends With 999,`` In `7esn` =~#usn8 =~\"d_str\"|$usn2 Contains $`3esn` Contains 6.0e0) Ends With `1esn`(Distinct {0} Is Not Null Is Not Null) Descending Skip {`6esn`} In {_usn4} In $12 Foreach(usn2 In {_usn4} In 0X7 In 0e0| Detach Delete $@usn5 Is Not Null Is Not Null,_usn3 =~{7} =~123.654,@usn5[@usn6] Start _usn4=Rel:_usn4({`1esn`}) );"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Match _usn4=((_usn3 :`6esn`)<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})),Allshortestpaths(((`1esn` :usn2{`8esn`:12.0[...0e0]}))) Where $`5esn`[$_usn3][$12] Return Distinct {@usn6:$12 Is Null} In (`4esn` {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}) As usn2,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null Limit 01 =~07 Remove {`7esn`:`3esn` Starts With 9.1e-1 Starts With .9e-1}.@usn6?,All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 0 In 2.9e1 In 7).#usn7!,#usn8(Distinct _usn4 Ends With {`8esn`} Ends With usn2).`6esn`?;"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Create Constraint On()<-[#usn8:`4esn`]-()Assert Exists(12.@usn5.``!.`8esn`);"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Return Distinct *;"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Create Constraint On(#usn8:usn2)Assert Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`} In .0e0 In $0).`4esn`.#usn8?.`3esn` Is Unique;"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Foreach(`8esn` In $`5esn` Starts With 4.9e12 Starts With 0e-0| Create Unique `6esn`=(({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[_usn4? *999..123456789{@usn6:$`4esn` Ends With .12e12 Ends With 123.654}]->(#usn8 {usn2:$0 Ends With 9e-12 Ends With $_usn4,`5esn`:0e-0[{@usn6}]})-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]-(`1esn` :_usn4:`2esn`))) Remove Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0).`8esn`!,Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0).``? Union Create ``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))),``=Allshortestpaths(((@usn6 :@usn5))) Create Unique (((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))),`4esn`=(((`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})-[?:_usn3]->(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})-[:`2esn`|`5esn` *01]-(@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0})))"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Using Periodic Commit 7 Load Csv With Headers From (@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[`8esn`?:_usn3 *12{usn1:#usn7[.9e0..`3esn`][{`6esn`}..1000],_usn4:$usn2 In #usn7 In #usn7}]-(_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(usn2 :`2esn`:`4esn`)[..Reduce(`2esn`={1000}[..{usn1}][..1e-1],_usn3 In `8esn`[_usn4]|Count(*)[$7])][..{_usn3}] As `2esn` ;"), + octest_legacy:ct_string("Cypher `6esn`=usn2 With (usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..]) As `2esn` Order By 6.0e0 In 9e-1 In 123456789 Ascending,Shortestpath(((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)))[..Any(#usn7 In .0e-0 In 12)] Asc,(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[`3esn` *..0x0]-(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:_usn4|:`1esn` *01]-(`4esn` {`3esn`:{`7esn`} =~\"d_str\" =~{``},`3esn`:{`1esn`} Contains 1.0 Contains 4.9e12}) =~Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 9e12 Is Null Is Null) =~(:@usn5{#usn7:Null,`5esn`:{@usn5} Ends With 0Xa Ends With .12e-12})-[:`3esn`|`3esn` *1000..]-(@usn6 ) Ascending Merge (:`3esn`{@usn5:9e12[..usn2][.._usn3]}) On Create Set #usn8:`8esn` On Match Set `4esn`+=Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000),{`8esn`:`` Ends With 1.0 Ends With usn1,@usn5:$usn1 =~.0e0 =~{`4esn`}}.#usn7 ={usn1} Contains {`2esn`},Case {`8esn`} Is Not Null Is Not Null When 999 Starts With 7.0e-0 Starts With true Then .12e12[$usn1..][{@usn6}..] End.#usn8?.`2esn`?.`7esn`? =#usn7[$`8esn`][{`3esn`}] Union Merge Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) On Match Set #usn7 =All(#usn8 In 07[..$`5esn`] Where $@usn6 Starts With 0xabc Starts With {`7esn`}) On Match Set @usn6 =$@usn6[.1e-1][9e12] Merge `6esn`=Shortestpath((`1esn` :`2esn`:`4esn`)<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})) Start _usn4=Node:`4esn`({12}) ,``=Node:_usn3({0});"), + octest_legacy:ct_string("Cypher 1000.999 Load Csv With Headers From (`1esn` {`2esn`})-[@usn6:`3esn`|`3esn` *0X7..0Xa]->(_usn4 :#usn8:@usn6)[Allshortestpaths((`3esn` :`6esn`{_usn3:.12e-12 Ends With `2esn`,usn1:Null[#usn7..][9.1e-1..]})-[_usn3?:@usn5|:#usn7]->(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]}))][Filter(usn2 In .12e-12 Ends With `2esn` Where 0.12 =~2.9e1 =~9e1)] As @usn6 "), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Create Constraint On()-[`4esn`:#usn8]-()Assert Exists(`3esn`(Distinct $@usn5 Contains _usn3,{`1esn`} Contains 1.0 Contains 4.9e12).`2esn`!);"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Unwind {@usn6} In 9e12 As usn2 Unwind Case 9e-12[$7..] When {``} Is Null Is Null Then .9e12 Contains 0 Contains $0 When Null Then $@usn6[.1e-1][9e12] End[..Extract(usn1 In $@usn6 Is Null Is Null Where 0Xa In 1.0 In $@usn5|Null[#usn7..][9.1e-1..])][..(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`3esn`?:`1esn`|:`1esn`]-(#usn8 {``:@usn6 Starts With #usn7,@usn6:7[..123456789][..true]})] As `2esn` Remove Any(#usn7 In .0e-0 In 12 Where 123.654 Ends With {1000} Ends With 9e12).usn2.`6esn`.#usn7?,_usn3({`5esn`} Is Not Null Is Not Null,$usn1 Contains 4.9e12 Contains $`2esn`).usn2?,Any(`7esn` In 0.12 Is Not Null Where 01234567[1000..][$`8esn`..]).`1esn`.usn2?.usn1!;"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On(_usn4:`5esn`)Assert ({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[_usn3?:`6esn`{_usn4:07[{@usn5}..],usn2:$`4esn` Is Null Is Null}]->(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]}).`6esn`? Is Unique;"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 With *,$#usn8[$0..`3esn`][1e-1..$7] As `5esn`,(usn1 :usn1{#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[`3esn`?:_usn4|:`1esn`]->(`6esn` :`4esn`:usn2)[Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {@usn6} In 9e12)][(`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})] As #usn7 Skip $`4esn`[$@usn6...12e12] Limit Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]) Where 0e-0 In 0X0123456789ABCDEF In `3esn` Create Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}})) Create Unique Allshortestpaths(({`6esn`:8.1e1 Contains .9e-1 Contains false})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})),@usn6=((`` {_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})) Union All Create Unique `6esn`=((`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]})) With *,usn2($12 =~4.9e12) Ends With Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Ends With Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End,0Xa Starts With 9e0 Starts With Count(*) As `2esn` Order By 0e-0[..7.0e-0][..{`8esn`}] Ascending,$`` Ends With 1e-1 Ends With $@usn6 Desc Limit {#usn8} Starts With .1e-1 Starts With 9e1 Where 0e-0 In 0X0123456789ABCDEF In `3esn` Foreach(`5esn` In $`5esn` Is Null| Remove Single(`2esn` In $@usn5 Is Not Null Is Not Null Where {`3esn`} =~$@usn5 =~`2esn`).`4esn`! Create usn2=(`8esn` :usn2)-[:`1esn`|:`1esn` *0{`8esn`:2.12[{12}],`7esn`:$@usn6[``..][3.9e-1..]}]->(:`2esn`:`4esn`{usn2:$@usn6[.1e-1][9e12],`5esn`:12e12 Is Not Null Is Not Null}));"), + octest_legacy:ct_string("Cypher 1000.999 Start _usn4=Relationship:@usn6(\"d_str\") Where $`4esn` Is Null Is Null Return Distinct [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,$`7esn` In $`4esn` As `8esn`,Extract(`1esn` In $12 In {usn2} Where 2.9e1 =~Count(*) =~{123456789})[{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}..][123.654..] Order By Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}])[{usn1:\"d_str\"[0x0..{@usn6}][$@usn5..0],`6esn`:.9e-12[usn2]}][Reduce(`2esn`=$1000 Contains $123456789 Contains #usn8,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$1000 Contains {`2esn`} Contains {`8esn`})] Desc,$12 Ends With 7.0e-0 Ends With 9e-12 Descending,$`4esn`[$@usn6...12e12] Descending Limit 9.1e-1 In 9e1 Union All Merge #usn7=(:`5esn`:`7esn`) On Match Set @usn5:@usn5 Load Csv With Headers From Filter(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}]) Starts With Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3)) Starts With {@usn5:$123456789 Is Not Null Is Not Null} As `4esn` With .0e0 Starts With 1.0 Starts With $12 As `7esn`,Case When 9e-12[010..{#usn7}][{123456789}..7] Then $999 =~false =~{`8esn`} When {0}[.0e-0][$`2esn`] Then 12e12 Is Not Null Is Not Null Else false[..usn2][..999] End[Allshortestpaths(((({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(@usn6 :@usn5)-[`2esn`? *7{`5esn`:false[..usn2][..999]}]-(`4esn` :@usn6:_usn3))))..All(usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null)][.9e0..`4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`)],@usn5[{`1esn`}..][Count ( * )..] Order By None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null) Asc,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Ascending,8.1e1 Contains .9e-1 Contains false Descending Limit 0x0 Ends With #usn8 Ends With .9e-1 Where {`3esn`}[..{`4esn`}][..usn2];"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Create Constraint On(#usn7:usn1)Assert None(usn2 In $`5esn`[{`4esn`}][{0}]).`5esn` Is Unique;"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On(`5esn`:usn2)Assert Filter(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1]).`5esn`!._usn3! Is Unique;"), + octest_legacy:ct_string("Cypher 999.123456789 With Distinct 5.9e-12[01][`4esn`],$#usn8 Starts With 9.1e-1 Starts With {#usn7} As `8esn`,`5esn` Ends With 's_str' Ends With @usn5 As `1esn` Order By 's_str'[$_usn3..][9.1e-1..] Desc Where 1.0 Is Null Is Null Match (:#usn8:@usn6{@usn6:$_usn4 Ends With {#usn8},_usn4:0e0[12.0][{#usn7}]})<-[?{@usn5:@usn6[999][1000]}]->(`1esn` )<-[usn2:@usn5|:#usn7 *01{@usn6:.0e-0 In 12}]-(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]}),usn1=Allshortestpaths(((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})))) Load Csv With Headers From 0Xa In 1.0 In $@usn5 As @usn5 Fieldterminator \"d_str\";"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Drop Constraint On(``:`3esn`)Assert Exists([`6esn` In 010[{`1esn`}..] Where 9e-12[$7..]].`6esn`?)"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Create Constraint On()-[`2esn`:`1esn`]->()Assert Exists(Case When {`3esn`}[01234567][{#usn7}] Then $#usn8[$0..`3esn`][1e-1..$7] When #usn8[$`2esn`] Then 3.9e-1 Starts With .9e0 Starts With {#usn7} End.``)"), + octest_legacy:ct_string("Cypher 1000.999 Using Periodic Commit 0Xa Load Csv From {0} Is Null Is Null As `5esn` Fieldterminator 's_str' Unwind _usn4 As _usn3 Detach Delete \"d_str\" Starts With .1e-1,Reduce(`2esn`=$@usn5[``..],`7esn` In 0.12 Is Not Null|$`4esn` Is Not Null) =~Any(_usn3 In `8esn`[_usn4] Where {`6esn`} In {_usn4} In $12) =~Reduce(`1esn`=false =~{`8esn`} =~00,`2esn` In $@usn5 Is Not Null Is Not Null|`1esn`[{@usn5}..][{_usn4}..]),{`2esn`:`5esn` Ends With Count(*)}[..`8esn`({#usn7}[.12e-12],$`` =~.1e-1)][..Allshortestpaths(((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})))];"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Load Csv With Headers From Case When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 Else $12 Is Not Null Is Not Null End Starts With usn1(Distinct .9e1[$`1esn`..][$``..]) Starts With Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End As @usn6 Merge `4esn`=((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})<-[ *01234567..{usn1:{12} Contains `8esn` Contains @usn5}]->(usn1 :@usn6:_usn3)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) On Create Set {``:`6esn` =~999 =~$999}.`3esn`! =.1e1 In $999 In {#usn8},{`1esn`:$usn2 Is Not Null Is Not Null,`8esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}.#usn8 =7.0e-0 Ends With {123456789} Ends With @usn6,usn1 =$#usn7 Ends With {`5esn`} Ends With 01 On Create Set Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})).`5esn`!._usn3!._usn3? =$`1esn` Ends With 1000,(`8esn` :usn1)<-[usn2 *7]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})-[ *01{usn1:false[..usn2][..999]}]-(_usn3 ).#usn7!.`` =4.9e12 Ends With $@usn6,usn2 =10.12e12[.0e0] Create Unique `5esn`=Shortestpath((({_usn3:.9e12 Contains 0 Contains $0})))"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Optional Match `6esn`=(:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[:`2esn`|`5esn`{`8esn`:$`4esn`[$@usn6...12e12]}]-(usn1 {@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]})<-[?:usn1|usn2{#usn8:'s_str'[`2esn`][12.0]}]->(:`1esn`:``),(({`6esn`:3.9e-1[..$1000][..0.12]})-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-(:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})) Using Join On @usn5,_usn4 Using Index `6esn`:`8esn`(`2esn`) Union Match `8esn`=Allshortestpaths(({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})),``=(((#usn7 )-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(`2esn` :@usn5)<-[?:`2esn`|`5esn` *..123456789$1000]-({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}))) Using Scan `8esn`:#usn7 Using Index `3esn`:usn2(`5esn`) Merge Allshortestpaths((`4esn` :@usn6:_usn3)-[?:_usn3{usn2:010[{`1esn`}..],`1esn`:`5esn` Contains 0 Contains $12}]-(@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})<-[ *01234567..{usn1:{12} Contains `8esn` Contains @usn5}]->(`5esn` )) Union All Create Allshortestpaths(((`4esn` :#usn7:`8esn`)<-[:`8esn`|:#usn8{_usn4:$#usn7 Ends With {`5esn`} Ends With 01}]-({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[usn1:#usn7|:@usn5 *999..123456789]->(`5esn` :``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null}))),(`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]});"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Using Periodic Commit 0xabc Load Csv From Filter(usn1 In $@usn6 Is Null Is Null Where {`3esn`}[#usn7]) Is Null Is Null As _usn4 Fieldterminator 's_str' Delete `4esn` =~usn1 =~Count(*) Optional Match Shortestpath((@usn6 :@usn5)) Where `3esn` Is Null Is Null;"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Drop Constraint On(`6esn`:``)Assert Exists(Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..])._usn4!)"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Return Distinct {`5esn`} Ends With $`7esn` Ends With {@usn5} As `4esn`,{#usn8} Is Not Null As `6esn`,{`3esn`}[...1e1][..0] Order By usn1 Ends With 11.12e-12 Ends With 5.9e-12 Descending,.1e-1 Is Not Null Ascending,Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}] Descending Skip 9e0[{7}...0e-0][Null..@usn5] Limit $`5esn` =~Count(*) =~1.9e0 Create Unique _usn4=((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})) Merge Allshortestpaths(((`8esn` :`7esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 )))"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Delete {`4esn`} In 1000 In {@usn5} Unwind [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..] As `2esn`"), + octest_legacy:ct_string("Profile Drop Constraint On(usn2:`2esn`)Assert `2esn`($12 Is Not Null Is Not Null,12e12[usn2..$`6esn`]).`2esn`? Is Unique"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Create Constraint On()-[`8esn`:usn1]-()Assert Exists([`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 2.12[{12}]|123.654[10.12e12..$12][6.0e0..{#usn8}]].usn2?.#usn7);"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Drop Constraint On()<-[_usn4:@usn5]-()Assert Exists([#usn7 In .0e-0 In 12 Where 0xabc[..{usn1}][..\"d_str\"]|0.12 =~`6esn` =~.9e-1]._usn3?.@usn6!);"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Drop Constraint On()-[``:@usn5]-()Assert Exists(Shortestpath((({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]->(:`6esn`{`8esn`:{123456789} =~.9e1 =~$_usn3,#usn7:Count(*)[Null..][01234567..]}))).`8esn`.`4esn`!);"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On(usn1:`5esn`)Assert (`2esn` :_usn3)-[? *..0x0{usn2:Null[$`3esn`..][`1esn`..],`2esn`:\"d_str\" Contains {@usn6}}]-(`8esn` :usn1)-[`8esn`?:_usn3]->(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}}).`4esn`?.@usn6.`5esn`? Is Unique"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Create Constraint On(`1esn`:#usn8)Assert Case When $`5esn` =~Count(*) =~1.9e0 Then .1e-1 Starts With @usn6 Starts With _usn3 When $_usn3[0X0123456789ABCDEF..][0x0..] Then #usn8 =~{@usn5} Else 1e1[$_usn3] End.`7esn`? Is Unique"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Load Csv From #usn8(Distinct 12e12[{`4esn`}..`4esn`][999..{@usn6}])[Any(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1])..{``:9e1[0.0]}] As `7esn` Fieldterminator \"d_str\";"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Load Csv From 0[10.12e12] As `6esn` "), + octest_legacy:ct_string("Cypher Cypher 1000.999 Load Csv With Headers From 2.9e1 In {``} As `7esn` Unwind {`7esn`}[0.12] As usn2;"), + octest_legacy:ct_string("Cypher 1000.999 Drop Constraint On(`5esn`:@usn5)Assert Exists(Case When {1000}[..`5esn`][..9e12] Then Count(*)[..{#usn7}] End.`3esn`!)"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Delete false,$`6esn`[@usn6...9e-12],$`4esn` Contains `4esn` Contains .0e-0 Return Distinct `7esn`[1.9e0..5.9e-12][9e0..@usn5] As `5esn`,#usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]),None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0) As usn2 Skip {`1esn`}[7.0e-0..9e-1][01234567..{`4esn`}] Limit Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where .0e-0 In 12|10.12e12 Contains .9e0) Contains (`` {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})-[usn2:#usn8|:``]->(:`3esn`{@usn5:9e12[..usn2][.._usn3]})<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains Any(usn1 In $@usn6 Is Null Is Null) With Distinct (`3esn` :#usn8:@usn6)<-[`8esn`? *..123456789{@usn6:5.9e-12[\"d_str\"..][{`6esn`}..],`7esn`:{@usn5}[10.12e12..]}]->(#usn7 :`7esn`)[None(usn2 In .12e-12 Ends With `2esn` Where `7esn`[1.9e0..5.9e-12][9e0..@usn5])..][usn1(`8esn`[.12e12..],usn2[12e-12..{`8esn`}][.12e12..{123456789}])..] As _usn4 Order By [_usn3 In `8esn`[_usn4] Where {#usn7} Starts With .1e-1|`3esn` Is Null] Contains `5esn`({#usn8} Ends With _usn3 Ends With `2esn`,.9e0 =~#usn7) Asc,{`5esn`}[{usn2}..$`1esn`] Descending Where 999 Is Null Is Null Union All Foreach(`3esn` In _usn3($`5esn`[$_usn3][$12])[None(#usn8 In 07[..$`5esn`])..][All(`` In `7esn` =~#usn8 =~\"d_str\" Where 12e12 Is Not Null Is Not Null)..]| Start usn2=Rel:`4esn`({7}) ) Union Start #usn7=Node:``('s_str') "), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Drop Index On:`1esn`(`2esn`)"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Create Constraint On(_usn4:usn1)Assert Exists(Any(#usn8 In 07[..$`5esn`] Where .9e0[07..][4.9e12..]).`8esn`.`6esn`.`5esn`?);"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On(`2esn`:_usn3)Assert Exists([#usn7 In .0e-0 In 12 Where Count ( * ) Is Not Null Is Not Null|5.9e-12[\"d_str\"..][{`6esn`}..]].usn2);"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Start `5esn`=Node:usn2(_usn4='s_str') Where 0e-0[..7.0e-0][..{`8esn`}] Unwind 0[.9e-1..0e0][.1e1.._usn4] As #usn8 Union Create #usn8=Allshortestpaths((usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[`3esn`:#usn8|:``{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}]->(:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})),Shortestpath(((@usn6 :usn2{@usn5:$`5esn`[{`4esn`}][{0}],usn2:9e12 Is Null Is Null})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})-[usn1?:@usn6|:`4esn` *..123456789]->({#usn8:_usn4[$_usn4]}))) Match `3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})),usn1=((`` :`7esn`)) Using Index @usn5:_usn4(usn2) Using Join On `1esn`,`3esn`,`5esn` Union All Start `5esn`=Relationship:#usn8(@usn5={@usn6}) ,@usn6=Node:@usn5({`4esn`}) Unwind 5.9e-12 =~{12} =~{`2esn`} As usn1 Create Unique ``=Allshortestpaths(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2))),`7esn`=(@usn5 :@usn5{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6})-[usn2?:`1esn`|:`1esn` *..123456789]-(:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[:_usn3]-(`3esn` )"), + octest_legacy:ct_string("Cypher 1000.999 Foreach(_usn4 In {12} Ends With $`3esn` Ends With 0xabc| Optional Match #usn7=(((:`3esn`)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))),`7esn`=Allshortestpaths(((:`7esn`)<-[#usn7?:_usn3 *999..123456789{@usn5:$12 In {usn2},usn1:5.9e-12 Is Null Is Null}]->(`` {`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654})-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:`8esn`{#usn8:2.9e1[2.12..1.9e0],#usn8:@usn6[true..]}))) Using Index `6esn`:usn1(`3esn`) Using Index usn2:``(`3esn`) Remove All(usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-1[1.9e0]).usn1) Create Unique (`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}),#usn7=Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))) Create Unique `7esn`=(:`8esn`$@usn5),`7esn`=Shortestpath(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) Union Remove Reduce(`6esn`=5.9e-12 Contains {12} Contains {#usn8},usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{123456789} Ends With 11.12e-12 Ends With 00).`2esn` Load Csv With Headers From 9.1e-1 Contains {`3esn`} Contains $12 As @usn6 Fieldterminator 's_str' Union All Start `2esn`=Rel:`6esn`(`4esn`=\"d_str\") Load Csv With Headers From $12 Is Null As `3esn` Optional Match `6esn`=(:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[:`2esn`|`5esn`{`8esn`:$`4esn`[$@usn6...12e12]}]-(usn1 {@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]})<-[?:usn1|usn2{#usn8:'s_str'[`2esn`][12.0]}]->(:`1esn`:``),(({`6esn`:3.9e-1[..$1000][..0.12]})-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-(:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})) Using Join On @usn5,_usn4 Using Index `6esn`:`8esn`(`2esn`);"), + octest_legacy:ct_string("Cypher 1000.999 Delete {12} Ends With 1e1,(`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Is Not Null Is Not Null,[`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where .0e-0[..``][..$7]|0[..12][..{`8esn`}]] Ends With Single(`2esn` In $@usn5 Is Not Null Is Not Null Where .9e1[$`1esn`..][$``..]) Ends With All(@usn6 In 9e12[..usn2][.._usn3] Where `8esn`[_usn4]) Remove Reduce(usn1=Null In {7},`3esn` In 8.1e1 Contains .9e-1 Contains false|00[$_usn4][$`1esn`]).usn1?,Reduce(@usn6=$`8esn` =~{`6esn`} =~12,#usn7 In .0e-0 In 12|123456789[_usn4..`1esn`][$`6esn`..{@usn6}]).`3esn`!,Case 7 Starts With 9e-12 When .9e12 Is Not Null Is Not Null Then 1000[{`1esn`}..][$`3esn`..] Else {`6esn`}[6.0e0..9e0][.9e1..12e12] End.`1esn`;"), + octest_legacy:ct_string("Cypher 999.123456789 Drop Constraint On()-[#usn7:usn1]->()Assert Exists(Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`4esn`} Ends With Count(*)|{`7esn`} =~\"d_str\" =~{``})._usn4?);"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On(`7esn`:@usn5)Assert ({`1esn`:10.12e12 In Null In .12e12})<-[`6esn`?:@usn6|:`4esn` *12{`6esn`:{12} Starts With $`` Starts With 0X0123456789ABCDEF,@usn6:0 Starts With `7esn` Starts With 9e0}]->(`2esn` :`4esn`:usn2{`8esn`:.9e-1 Contains .9e0 Contains ``,_usn4:8.1e1 Contains .9e-1 Contains false}).``! Is Unique"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Create Constraint On(`8esn`:`6esn`)Assert Exists((@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[#usn7? *0xabc..12]-(_usn3 :`6esn`).#usn7?)"), + octest_legacy:ct_string("Profile Optional Match `5esn`=({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}),`6esn`=(((`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn2 *7]-(`8esn` {_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`})));"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Drop Constraint On(usn2:`6esn`)Assert Exists([`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0|$12 Is Null Is Null].`3esn`?);"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On()-[@usn5:`3esn`]->()Assert Exists(`5esn`(Distinct $`7esn` Ends With 7.0e-0 Ends With $usn2).`4esn`?)"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On(``:`8esn`)Assert @usn5(Distinct 0.0[00..][0xabc..]).#usn8! Is Unique"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Using Periodic Commit 12 Load Csv From {123456789} Starts With `6esn` As @usn6 "), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On()-[`4esn`:usn2]-()Assert Exists([_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|{`3esn`}[...1e1][..0]].usn2!._usn3!._usn3!);"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Start usn1=Relationship:@usn6({999}) ;"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` With Distinct Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null As #usn8,.9e1 Is Null Is Null As #usn8,00[..@usn6] Order By 12 Ends With 12e12 Asc,.9e12 Starts With 0X7 Starts With .9e-1 Asc Skip 00[Null..usn2] Limit 01[{usn2}..][1.9e0..] Where $usn1 =~.0e0 =~{`4esn`} Remove Allshortestpaths((`2esn` :_usn3)).@usn6!,Extract(usn1 In $@usn6 Is Null Is Null Where _usn4[{``}..{`6esn`}][$7..$_usn3])._usn4!.@usn5? Start `2esn`=Node:@usn5(#usn7=\"d_str\") ,@usn6=Relationship:#usn8(usn2={12})Where \"d_str\" Is Not Null Is Not Null;"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Unwind Shortestpath(((`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))[All(_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null)] As #usn8 Create `1esn`=Allshortestpaths((usn2 :@usn5{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})),@usn6=Shortestpath((_usn4 )) Unwind 1000[{12}..][0e0..] As `5esn` Union Return Distinct 0.0[$999][`6esn`] Order By $`2esn`[`8esn`..] Descending,({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}) Contains Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Contains All(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]) Descending Limit $`5esn` =~Count(*) =~1.9e0 Start _usn3=Node:`5esn`({`2esn`}) ,usn2=Relationship:`8esn`(#usn8='s_str') Remove Allshortestpaths(((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))).`6esn`.`5esn`?,(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}})<-[:`8esn`|:#usn8{usn2:$0 Ends With 9e-12 Ends With $_usn4}]->(`4esn` {`8esn`:5.9e-12[0x0..]}).`5esn`?,[usn1 In \"d_str\" Contains {@usn6} Where .9e12[6.0e0..][@usn5..]].#usn7"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Create Constraint On(@usn6:`8esn`)Assert Exists((@usn5 )<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}).@usn6?)"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Start _usn4=Rel:`4esn`({7}) Foreach(`3esn` In {`8esn`} Ends With true Ends With {`3esn`}| Create (`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]}))));"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Create Constraint On(_usn4:`6esn`)Assert Reduce(``=01234567[1000..][$`8esn`..],usn1 In $@usn6 Is Null Is Null|6.0e0[$12..0.12]).``.`5esn` Is Unique"), + octest_legacy:ct_string("Profile Drop Constraint On()<-[`2esn`:_usn4]-()Assert Exists(Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0|$#usn7 Starts With $123456789)._usn3!)"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Create Constraint On()-[`8esn`:_usn4]-()Assert Exists(Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`|01 =~07).`2esn`!)"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Merge Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))) On Match Set `6esn` =.1e-1[$@usn6],#usn7 =7.0e-0 Is Not Null On Create Set `1esn`+=[_usn3 In `8esn`[_usn4] Where {#usn7} Starts With .1e-1|`3esn` Is Null] Contains `5esn`({#usn8} Ends With _usn3 Ends With `2esn`,.9e0 =~#usn7),@usn6 =[`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0|{`4esn`} In 1000 In {@usn5}] Is Null,{`1esn`:$999 Is Not Null}.`6esn`? =Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) Return 0.0[$999][`6esn`] Order By $`2esn`[`8esn`..] Descending,({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}) Contains Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Contains All(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]) Descending Limit $`5esn` =~Count(*) =~1.9e0 Start `1esn`=Rel:`5esn`(@usn5=\"d_str\") ,`5esn`=Node:@usn6(#usn8='s_str') Union With {`2esn`}[0x0..9e0] As `6esn`,{`8esn`} Ends With true Ends With {`3esn`} As `2esn` Skip {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null) Where 2.9e1 Ends With `5esn` Ends With 1000 Create `2esn`=(:@usn6:_usn3),(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})<-[`1esn`:#usn7|:@usn5 *..123456789]-({#usn7:{7}[0x0][1e1]})"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Create Unique #usn7=Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)),#usn7=((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})) Union With Case false =~{`8esn`} =~00 When usn2 Starts With $usn1 Starts With 10.12e12 Then usn2 Starts With $usn1 Starts With 10.12e12 When {1000} =~4.9e12 =~9e1 Then `3esn` =~$#usn7 End Ends With All(usn2 In $`5esn`[{`4esn`}][{0}] Where 0e0 Contains {`2esn`}) Ends With [#usn7 In .0e-0 In 12 Where Count ( * ) Is Not Null Is Not Null|$`7esn` Starts With 's_str'] As #usn7,{`8esn`:{usn2}[{999}..][9e12..]}[(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[`3esn` *..0x0]-(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:_usn4|:`1esn` *01]-(`4esn` {`3esn`:{`7esn`} =~\"d_str\" =~{``},`3esn`:{`1esn`} Contains 1.0 Contains 4.9e12})][Reduce(`7esn`=123.654[01..][Count(*)..],`6esn` In 010[{`1esn`}..]|0.0[$`4esn`])] As `7esn`,`4esn`[12.0..][9.1e-1..] As `4esn` Order By 1.9e0 In 2.12 Asc,usn1 =~false =~{999} Desc Where 0[..12][..{`8esn`}] With Distinct 4.9e12 Is Not Null Is Not Null,$`7esn` In $0 Order By Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $#usn7[01..2.12][2.12..3.9e-1]) =~_usn3(.0e-0 Ends With $`2esn` Ends With `5esn`,$usn1 =~.9e12 =~`6esn`) =~Reduce(_usn3=5.9e-12 Is Null Is Null,_usn3 In `8esn`[_usn4]|2.9e1[Count ( * )..]) Asc Limit 0[10.12e12] Where .12e12 Starts With 5.9e-12 Starts With `4esn` Delete [usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]][`5esn`(Distinct $@usn5[`8esn`][12e12])..][``(Distinct $1000 Is Null,1e-1[$`4esn`])..],$`4esn` Is Null Is Null Union All Foreach(_usn3 In Case When $12 Ends With 12.0 Ends With $`4esn` Then `8esn`[.12e12..] End[Single(`6esn` In 010[{`1esn`}..] Where _usn4 Ends With {`8esn`} Ends With usn2)][Filter(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 1.9e0[`6esn`][`7esn`])]| Remove #usn7(Distinct \"d_str\" Is Not Null Is Not Null,$`6esn`[$_usn3..{1000}])._usn3!.#usn7?,[usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $12 Is Null Is Null].``.`3esn`?) Create Unique `1esn`=(`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}) Start @usn5=Node:_usn4({_usn3}) ,`3esn`=Node(0xabc,7,0Xa,01234567)Where {123456789} Contains $0;"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Drop Constraint On(`8esn`:#usn7)Assert Exists([`2esn` In $@usn5 Is Not Null Is Not Null Where {`3esn`} =~$@usn5 =~`2esn`].`5esn`?)"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Using Periodic Commit 0 Load Csv From .1e1 Ends With #usn7 Ends With {#usn7} As `4esn` ;"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Create Constraint On()-[`3esn`:@usn6]-()Assert Exists(Reduce(@usn5=0xabc[..Count(*)][..$`5esn`],usn1 In \"d_str\" Contains {@usn6}|123456789[#usn7..9e-1][10.12e12..{0}]).`2esn`!.`3esn`)"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Create Unique `7esn`=Shortestpath((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})-[:#usn7|:@usn5]-(:`1esn`:``{`8esn`:5.9e-12[0x0..]})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)),Allshortestpaths(((`` :`7esn`))) Union All Foreach(_usn4 In {12} Ends With $`3esn` Ends With 0xabc| Optional Match #usn7=(((:`3esn`)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))),`7esn`=Allshortestpaths(((:`7esn`)<-[#usn7?:_usn3 *999..123456789{@usn5:$12 In {usn2},usn1:5.9e-12 Is Null Is Null}]->(`` {`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654})-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:`8esn`{#usn8:2.9e1[2.12..1.9e0],#usn8:@usn6[true..]}))) Using Index `6esn`:usn1(`3esn`) Using Index usn2:``(`3esn`) Remove All(usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-1[1.9e0]).usn1) Create Unique (`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}),#usn7=Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))) Create Unique `7esn`=(:`8esn`$@usn5),`7esn`=Shortestpath(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) Union All Create Unique ((`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})-[`3esn`?:`1esn`|:`1esn`]-({_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})) Detach Delete 9e12 Is Null,12 Ends With {#usn8} Ends With $_usn4,#usn7 =~$@usn5 =~{7} Load Csv With Headers From {0}[`4esn`..{`8esn`}] As `5esn` "), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Start `2esn`=Relationship(0) Where $12 Ends With 12.0 Ends With $`4esn` Union All With *,$_usn3[.0e-0..999],0 In 2.9e1 In 7 As usn2 Skip #usn8 Contains 7 Contains {`4esn`} Limit Allshortestpaths((((@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[``? *..00{@usn5:$`8esn` =~{`1esn`} =~$7,#usn7:.12e-12 Starts With .12e-12}]->({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]})-[:`8esn`|:#usn8 *01]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))))[..Case When {#usn7} Ends With 999 Ends With 12 Then {`3esn`}[999..$`4esn`] End] Load Csv With Headers From $`1esn`[4.9e12..][_usn3..] As `2esn` Fieldterminator 's_str' Start `5esn`=Node:`1esn`(`4esn`={@usn5}) Where {`8esn`} In {_usn3} In 6.0e0 Union Unwind 9e0 Is Null As ``"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Create #usn7=(`4esn` {@usn5:5.9e-12[12e-12][$`8esn`],`5esn`:{123456789} Contains $0})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`) Union Create ((usn1 :@usn6:_usn3)-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})) Start `5esn`=Relationship:@usn6(#usn8='s_str') Where Count(*) Starts With 07 Starts With $#usn7 Create Allshortestpaths(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) Union Detach Delete 0.12[Count ( * )..Count ( * )][$999..`5esn`],Allshortestpaths(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0}))[Reduce(@usn6=10.12e12 Starts With $`4esn` Starts With 0e0,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$1000 Contains $123456789 Contains #usn8)..Case 7[..123456789][..true] When $1000[..0e-0][..010] Then 999 Starts With 7.0e-0 Starts With true End][[`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]]..Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When 0.12[Count ( * )..Count ( * )][$999..`5esn`] Then $123456789[..$999][..`6esn`] Else 7[{`4esn`}..] End] Create Unique Shortestpath(((:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(`3esn` $0)<-[`7esn`:#usn8|:`` *01234567..{`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7}]-(#usn8 :usn2))) Delete @usn5[@usn6],{`5esn`}[{usn2}..$`1esn`]"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Drop Constraint On(``:_usn4)Assert Exists(Case .9e-1 Ends With .0e-0 Ends With {_usn3} When $12 Is Not Null Is Not Null Then {``}[$usn2..00][{_usn3}..123.654] When .1e-1 Starts With @usn6 Starts With _usn3 Then 9e0[{7}...0e-0][Null..@usn5] Else $12 =~4.9e12 End._usn4!);"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Create Constraint On()-[`5esn`:@usn6]->()Assert Exists(Allshortestpaths(((usn1 :@usn6:_usn3)-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1}))).`1esn`!)"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Drop Constraint On(@usn5:usn1)Assert Exists(Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where {@usn5} Ends With 0Xa Ends With .12e-12|{`8esn`} In {_usn3} In 6.0e0)._usn4?)"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Detach Delete $usn1 =~9e1 =~$1000 Union Optional Match `3esn`=({#usn8:_usn4[$_usn4]})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7}) Where .12e12[..$123456789] Detach Delete Reduce(`1esn`={`5esn`}[01234567..][5.9e-12..],usn1 In {#usn7} =~.12e12 =~9e0|$`6esn`[..01][..{_usn3}]) Ends With (`2esn` :usn1)<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-(_usn3 :`1esn`:``) Ends With {usn1:{12}[6.0e0..{usn2}][{_usn3}..{#usn7}]},{7}[0x0][1e1],$1000 Is Null;"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Start #usn7=Rel:@usn6({1000}) ,`5esn`=Node:`1esn`(@usn6={`4esn`})Where Count(*) Starts With 07 Starts With $#usn7 Union Create Unique @usn6=((`1esn` :`8esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Using Periodic Commit 0Xa Load Csv With Headers From 2.12[10.12e12][_usn4] As `1esn` Start `2esn`=Node:_usn4(#usn8=\"d_str\") ,`7esn`=Relationship:usn1(usn2='s_str')"), + octest_legacy:ct_string("Profile Load Csv With Headers From $`1esn`[4.9e12..][_usn3..] As `2esn` Fieldterminator 's_str' Detach Delete $`8esn` Contains _usn4,[usn1 In \"d_str\" Contains {@usn6} Where 5.9e-12[0x0..]|4.9e12 Ends With $@usn6] =~(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) =~(`3esn` :#usn8:@usn6)-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[:`2esn`|`5esn` *01]-({@usn6:{_usn4} In 0X7 In 0e0}),``(Distinct $1000 Is Null,1e-1[$`4esn`])[None(_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3])][[usn1 In \"d_str\" Contains {@usn6} Where 5.9e-12[0x0..]|4.9e12 Ends With $@usn6]] Match `2esn`=(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1}) Using Join On _usn3,usn2 Where Null"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 With Distinct usn2[12e-12..{`8esn`}][.12e12..{123456789}] As #usn8,$`1esn`[9e0..3.9e-1][`7esn`..`6esn`] As @usn6,Case 12.0[...0e0] When {#usn8}[..@usn5] Then `3esn` Is Null End Is Null Is Null Order By $`5esn` Is Not Null Is Not Null Ascending,Count ( * ) Contains 9.1e-1 Contains {`2esn`} Descending Skip $@usn5 Contains _usn3 Limit Extract(#usn8 In 07[..$`5esn`] Where .1e1 Ends With #usn7 Ends With {#usn7}|Null) Contains Allshortestpaths((`3esn` :`6esn`{_usn3:.12e-12 Ends With `2esn`,usn1:Null[#usn7..][9.1e-1..]})-[_usn3?:@usn5|:#usn7]->(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})) Where 12.0[...0e0] Create `2esn`=Shortestpath(((`7esn` {#usn8:2.9e1[{`2esn`}]})-[?:`1esn`|:`1esn` *..0x0{@usn6:.0e-0 In 12}]-(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0})-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]-(`1esn` :_usn4:`2esn`))),``=Shortestpath(({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})) Union All Foreach(`` In Shortestpath(((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(_usn3 :usn1)))[..{_usn4:.9e-1 Ends With .0e-0 Ends With {_usn3},_usn4:9e1 Ends With 9e12 Ends With 0x0}][..Reduce(#usn8=`8esn`[_usn4],`1esn` In $12 In {usn2}|$`4esn` Is Not Null)]| Start #usn7=Relationship:#usn8(usn2={12}) Where 01234567 Ends With .0e0 Ends With 12e12 Unwind `6esn`[0X0123456789ABCDEF..][`8esn`..] As _usn4) Merge ((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})) On Create Set Case When 01234567 Ends With .0e0 Ends With 12e12 Then 00[$``] End.`1esn` ={1000} Ends With .12e12 Ends With 010 Optional Match `6esn`=((`3esn` :#usn8:@usn6)) Using Join On `6esn`,`1esn` Union Remove `2esn`(Distinct \"d_str\" Starts With $`7esn` Starts With 999).#usn8.`5esn`?.`4esn`?,(:usn1{`6esn`:$_usn3[usn2..][usn1..],#usn7:$_usn4 =~$#usn8 =~{`4esn`}})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7}).`5esn`,Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..]|{_usn3} In $#usn8 In $12)._usn3!.#usn8?.`5esn`! Unwind 11.12e-12 Starts With 1.0 Starts With 12.0 As @usn6 Merge _usn4=((usn1 {@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]})-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})<-[_usn3?:`5esn`*..]-({`1esn`:01 =~{_usn3} =~01,`8esn`:{#usn7} Ends With 999 Ends With 12}))"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Optional Match _usn4=Allshortestpaths(((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))),Shortestpath((((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[`8esn`*]-(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)))) With Distinct 12.0 =~{@usn6} As _usn3,.1e-1[$@usn6] As `3esn` Skip {`4esn`}[{`3esn`}][$`2esn`] Where .0e-0[..01234567];"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Remove Reduce(usn2=12e12[{`4esn`}..`4esn`][999..{@usn6}],`1esn` In $12 In {usn2}|$`8esn`).`5esn`?,(`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})<-[_usn3?:`5esn`*..]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}).@usn5!;"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On(#usn8:``)Assert Exists(Reduce(_usn3=0e-0[..$usn2],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|01234567[10.12e12][0Xa])._usn3!._usn3?.@usn5?)"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Drop Constraint On()-[`5esn`:`7esn`]-()Assert Exists(Reduce(`1esn`=.9e1 Ends With 0x0,usn2 In .12e-12 Ends With `2esn`|_usn4 Is Not Null Is Not Null)._usn3!.@usn5!);"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 With Distinct *,None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0) Optional Match (:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})<-[usn2?:`2esn`|`5esn`{``:{#usn7} =~$@usn6 =~$7}]->(usn2 :`2esn`:`4esn`{`6esn`:Count(*)[$7]}),Shortestpath((#usn8 :`5esn`:`7esn`{usn2})) Unwind `4esn` =~_usn4 =~0e-0 As `7esn` Union All Unwind $usn1[0e0...9e-12] As usn1 Match (`6esn` :_usn4:`2esn`) Using Index _usn3:usn2(`4esn`) Using Scan #usn8:`1esn` Where $`5esn` =~Count(*) =~1.9e0 Load Csv With Headers From 9e-1[{7}..1e-1][0.12..{12}] As @usn6 Union All Return *,0.12 In $`4esn` In $`3esn` As usn1 Skip #usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Limit Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] With Distinct *,0.12 In $`4esn` In $`3esn`,{`8esn`} In {_usn3} In 6.0e0 As `5esn` Order By {`3esn`} Is Not Null Is Not Null Ascending,01234567 Ends With .0e0 Ends With 12e12 Descending,Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) Asc Skip .9e1 In {#usn7} In .9e-12"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(#usn7:usn2)Assert Exists(Extract(usn2 In .12e-12 Ends With `2esn` Where $`4esn` Ends With .12e12 Ends With 123.654|0X7 Is Not Null Is Not Null).usn1?);"), + octest_legacy:ct_string("Cypher 999.123456789 Create Constraint On(`8esn`:`5esn`)Assert Allshortestpaths((:usn1$1000)).`8esn`! Is Unique"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Unwind 00[{1000}] As usn1 Union Create `2esn`=Allshortestpaths((:`3esn`{@usn5:9e12[..usn2][.._usn3]})),``=Shortestpath((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[ *0X0123456789ABCDEF]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) Optional Match `7esn`=(((:`3esn`{usn2:01234567[10.12e12][0Xa]})-[_usn3?{`8esn`:{usn2} Is Not Null Is Not Null}]->({`7esn`:.9e12 Is Not Null Is Not Null})-[#usn8?:`4esn`|:`2esn` *7{`6esn`:{0} Ends With 0Xa,usn1:.9e1 Is Null Is Null}]->({`1esn`:01 =~{_usn3} =~01,`8esn`:{#usn7} Ends With 999 Ends With 12}))) Using Scan #usn7:_usn3 Using Index #usn7:`4esn`(@usn5) Union All With Distinct *,$`4esn`[...0e-0] Skip [`6esn` In 010[{`1esn`}..] Where 7 Starts With 9e-12|Null[#usn7..][9.1e-1..]][None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`})..][`1esn`(@usn5[9e-1..{`1esn`}],$`4esn`[$@usn6...12e12])..] Limit 00 In {#usn7} In $usn1 Where $#usn7 Ends With 999 Ends With {12} Merge (:@usn5)"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Drop Constraint On(`1esn`:`7esn`)Assert (`8esn` :@usn6:_usn3)<-[$#usn8]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]}).usn2._usn4? Is Unique"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Using Periodic Commit 07 Load Csv With Headers From usn2[..$0][..`3esn`] As `` Foreach(`7esn` In {123456789} =~.9e1 =~$_usn3| Start @usn6=Node:`2esn`(#usn7={`4esn`}) With *,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null,{#usn8} Ends With _usn3 Ends With `2esn` Order By $`6esn`[{`4esn`}..][{#usn8}..] Ascending,$#usn8 Starts With 9.1e-1 Starts With {#usn7} Asc Skip Case When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 Else $12 Is Not Null Is Not Null End Starts With usn1(Distinct .9e1[$`1esn`..][$``..]) Starts With Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End);"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Create Constraint On(usn1:usn1)Assert None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 1000[{`1esn`}..][$`3esn`..]).#usn8? Is Unique"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Drop Constraint On(_usn3:@usn5)Assert Exists(@usn6(Distinct 0e0 Contains {`2esn`}).`7esn`.`3esn`?._usn4?)"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` With {usn2} In false As `1esn`,\"d_str\"[0x0..{@usn6}][$@usn5..0] Limit (:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})-[_usn4:_usn3{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]}) Ends With (`5esn` {`2esn`:00[Null..usn2],`2esn`:3.9e-1[..$1000][..0.12]})<-[#usn8]->(`2esn` :_usn3{`6esn`:_usn4[{``}..{`6esn`}][$7..$_usn3],`6esn`:$`4esn` Ends With {999}})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12}) Ends With Allshortestpaths((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) Return Distinct [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End As `5esn`,0[..12][..{`8esn`}] As usn1,{usn1} Is Not Null As `` Order By 0.0[00..][0xabc..] Ascending,.9e-12[.12e12..][0Xa..] Desc,Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) Asc Limit 123456789[_usn4..`1esn`][$`6esn`..{@usn6}]"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Foreach(_usn3 In 5.9e-12 =~{12} =~{`2esn`}| Optional Match `4esn`=Allshortestpaths((_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})) Using Join On usn1,usn2 Using Join On usn1) Load Csv From Allshortestpaths((`4esn` :`3esn`)-[`3esn`?:`1esn`|:`1esn`]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})) Is Not Null Is Not Null As `5esn` Fieldterminator \"d_str\" Union Create `5esn`=(:`4esn`:usn2)-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})-[:`1esn`|:`1esn` *0{`8esn`:2.12[{12}],`7esn`:$@usn6[``..][3.9e-1..]}]-(#usn8 :@usn5) Union Remove ({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}).#usn8? Unwind ({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})-[`8esn`?:_usn3]->(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Ends With {_usn3:{123456789} Starts With `6esn`} Ends With {usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]} As _usn4;"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Unwind $`6esn`[..01][..{_usn3}] As #usn7 Optional Match Shortestpath(((`` :`7esn`))),Allshortestpaths((:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[*{usn1:{`6esn`} In .0e0 In $0,usn1:07[..$`5esn`]}]-(:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})) Using Index @usn5:`5esn`(usn2) Using Index @usn5:usn1(`4esn`) Create Unique ((#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[@usn6?{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}))"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On(`7esn`:`8esn`)Assert Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where 9e1 Ends With 9e12 Ends With 0x0|`1esn` In 6.0e0 In 12).usn2! Is Unique;"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Drop Constraint On()-[#usn8:`2esn`]->()Assert Exists(Reduce(#usn8=$``[1.0..][_usn3..],`6esn` In 010[{`1esn`}..]|{1000} =~4.9e12 =~9e1)._usn4)"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Foreach(#usn8 In 9e12 Is Null| Unwind Allshortestpaths(((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}))) Is Null Is Null As usn2 Remove Filter(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12).`3esn`?.`7esn`?,Allshortestpaths((((`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})-[`8esn`:`4esn`|:`2esn`]->(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})))).`3esn`) Detach Delete [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End,8.1e1[$``] Remove (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)}).`8esn`.`3esn`?,@usn6:usn2;"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Return $12 Contains false Contains {`1esn`},None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null),[`6esn` In 010[{`1esn`}..] Where 7 Starts With 9e-12|Null[#usn7..][9.1e-1..]][None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`})..][`1esn`(@usn5[9e-1..{`1esn`}],$`4esn`[$@usn6...12e12])..] As `4esn` Limit {usn1}[`7esn`..Count(*)] Union Create `6esn`=(({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[_usn4? *999..123456789{@usn6:$`4esn` Ends With .12e12 Ends With 123.654}]->(#usn8 {usn2:$0 Ends With 9e-12 Ends With $_usn4,`5esn`:0e-0[{@usn6}]})-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]-(`1esn` :_usn4:`2esn`));"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Merge _usn4=(`8esn` :`4esn`:usn2)-[#usn8?:`8esn`|:#usn8 *999..123456789]->(#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Match #usn7=((:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}})<-[usn2? *0X0123456789ABCDEF]-($12)) Using Scan `1esn`:#usn8 Delete 1.9e0[$`4esn`],07[..$`5esn`] Union All Load Csv From {@usn6} In 9e12 As usn2 Union Unwind 123.654 =~12 =~{_usn3} As `7esn`"), + octest_legacy:ct_string("Cypher 999.123456789 Start `1esn`=Relationship:_usn4(`5esn`={usn1}) ,`7esn`=Relationship:usn2(`8esn`=\"d_str\") Detach Delete 00 =~`4esn` =~.9e-12 Match #usn7=((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})),`5esn`=(`` $999)<-[? *0X0123456789ABCDEF]->(`1esn` :_usn3)<-[#usn8?:#usn7|:@usn5]-(@usn5 :#usn7:`8esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true}) Using Scan `3esn`:`` Using Scan ``:#usn8"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On(`7esn`:`2esn`)Assert Case When {usn2} Is Not Null Is Not Null Then false Contains {`7esn`} When {_usn3} Is Null Is Null Then .12e12 Ends With 07 Ends With 3.9e-1 End.#usn7! Is Unique;"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Create Constraint On(#usn8:`1esn`)Assert Extract(#usn8 In 07[..$`5esn`] Where 00 Is Not Null Is Not Null|`5esn` Is Not Null Is Not Null).`3esn`? Is Unique;"), + octest_legacy:ct_string("Cypher 1000.999 Remove _usn3(Distinct 9e1 Starts With $@usn6 Starts With 0e-0,0.12 =~`6esn` =~.9e-1).usn2? Foreach(`4esn` In {0}[..`3esn`][..8.1e1]| Optional Match `7esn`=(@usn5 :@usn5{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6})-[usn2?:`1esn`|:`1esn` *..123456789]-(:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[:_usn3]-(`3esn` ),(({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 {#usn7:$999 =~false =~{`8esn`}})) Where {#usn7} Starts With .1e-1) Merge Allshortestpaths(((`8esn` :`7esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 ))) Union Create Unique (:`3esn`{@usn5:9e12[..usn2][.._usn3]}) Union All Delete {`5esn`}[01234567..][5.9e-12..]"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Drop Constraint On()<-[`8esn`:`7esn`]-()Assert Exists(Extract(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12|01[`4esn`..]).`7esn`._usn3?.``)"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Delete 1.0 Is Null Is Null,None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Contains (`8esn` :@usn6:_usn3{_usn4:{#usn7} =~$@usn6 =~$7})<-[`1esn`? *0{usn2:.9e12[6.0e0..][@usn5..]}]->(usn2 :@usn6:_usn3)-[usn1:#usn7|:@usn5 *999..123456789]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7}) Remove @usn6:`3esn` Union All With Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] As #usn8,[`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]),{`7esn`} Is Not Null Is Not Null As `1esn` Order By 1000 Ends With 0x0 Asc Union Create Allshortestpaths((`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`)),Allshortestpaths(((`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]})-[_usn4*{`3esn`:{``} Is Null Is Null}]-({`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))) Return *,1.9e0[$`4esn`],Null In {7} As usn2 Order By 0xabc[..{usn1}][..\"d_str\"] Asc Limit $`6esn` Contains All(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) Create Unique usn1=((`` :`7esn`));"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On(`6esn`:@usn5)Assert Exists(All(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1]).``!)"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Merge usn2=Shortestpath((((`3esn` $0)-[`4esn`? *01{#usn8:12.0[..Count ( * )][..@usn6]}]-(usn1 :#usn8:@usn6)-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2)))) Union All Load Csv With Headers From {@usn6} =~Count ( * ) =~1.0 As `6esn` Union Create Unique _usn4=((_usn3 :`6esn`)<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})) Return [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End,_usn3 =~{`4esn`},{usn1} Contains `4esn` As `6esn` Order By 12[@usn6][{`2esn`}] Ascending,Single(`` In `7esn` =~#usn8 =~\"d_str\")[Reduce(`3esn`=1e1[$_usn3],`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1[..9.1e-1][...9e1])][[#usn7 In .0e-0 In 12 Where \"d_str\"[0x0..{@usn6}][$@usn5..0]|{7}[$@usn5..123456789][1e1..1.9e0]]] Ascending,None(`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]) Starts With Reduce(`3esn`=.1e1 Ends With #usn7 Ends With {#usn7},usn2 In $`5esn`[{`4esn`}][{0}]|\"d_str\" In usn2 In $`7esn`) Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`1esn`}[{usn2}]) Asc Remove Allshortestpaths((((@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})-[:`3esn`|`3esn`]-(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(:`4esn`:usn2)))).`6esn`?;"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Match @usn6=((({@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})<-[:@usn5|:#usn7 *0X0123456789ABCDEF{`5esn`:9e-1 Contains 3.9e-1}]->(`6esn` $_usn3)<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),(((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`}))) Using Join On usn1,`1esn`,_usn4 Using Scan `8esn`:`2esn` Foreach(`3esn` In $7| With Distinct $`8esn` Is Not Null Is Not Null As _usn3 Order By Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Descending,\"d_str\" In 7.0e-0 Desc Skip Reduce(_usn3=7.0e-0[$`6esn`..],`7esn` In 0.12 Is Not Null|false Starts With 0 Starts With 2.9e1) =~Case $`3esn` =~0x0 When $12[$@usn5] Then 11.12e-12 In {usn1} When 4.9e12[{_usn4}..] Then $@usn5 Contains _usn3 Else .12e-12 Starts With .12e-12 End =~Reduce(_usn4=_usn4 Is Not Null Is Not Null,`2esn` In $@usn5 Is Not Null Is Not Null|7.0e-0 Is Not Null) Limit {_usn3:.0e-0[..``][..$7]}[..(`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`)][..@usn5] Load Csv With Headers From {`1esn`} Is Null As @usn6 Fieldterminator \"d_str\") Create (((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))),(usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[``:`1esn`|:`1esn`{@usn5:999[..$@usn5][..``],@usn5:0xabc[..Count(*)][..$`5esn`]}]-(`1esn` :``{_usn4:$@usn5 =~{`3esn`}}) Union All Remove Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {#usn8}[..@usn5]|{0}[.0e-0][$`2esn`]).@usn6?.``?,(`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[?:`1esn`|:`1esn`]-(:@usn5{`1esn`:$999 =~0e0 =~0X7})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12}).`7esn`,{_usn4:$7}.@usn5 Return Distinct 0.12[{@usn6}..{#usn7}] Order By Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) Ascending,Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Descending,.9e-1[`1esn`][7] Ascending Limit {`4esn`}[{`3esn`}][$`2esn`] Union With Distinct *,$`4esn`[#usn7][8.1e1] As `2esn` Skip .1e1 Contains 1e-1 Contains #usn8 Limit 9e1 Ends With `7esn` Ends With 2.12 Where .1e1 Is Not Null Is Not Null Detach Delete Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000),{`4esn`}[..{`2esn`}] Create Allshortestpaths(({`6esn`:8.1e1 Contains .9e-1 Contains false})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})),@usn6=Allshortestpaths(({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})<-[usn2:usn1|usn2]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null}))"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Drop Constraint On(_usn3:_usn3)Assert _usn3(Distinct 9e1 Starts With $@usn6 Starts With 0e-0,0.12 =~`6esn` =~.9e-1).usn2? Is Unique"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Return Distinct *,$999 =~0e0 =~0X7 As `1esn` Skip {7} Is Not Null Create `6esn`=Shortestpath((((:`6esn`{`3esn`:9e12[..usn2][.._usn3]})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})<-[_usn4 *010..0{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}]-(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})))),Allshortestpaths((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})) With $usn1 Ends With {`2esn`} Ends With $usn1 Order By 123.654 Ends With {1000} Ends With 9e12 Descending,{`6esn`} Starts With 12e12 Starts With {`2esn`} Descending Union Start `2esn`=Relationship:_usn4(@usn6=\"d_str\") ,``=Node:``(`1esn`=\"d_str\")Where $`6esn`[..01][..{_usn3}] Remove Case usn1 Ends With 11.12e-12 Ends With 5.9e-12 When 01 Ends With .0e0 Ends With 7.0e-0 Then $`7esn` Starts With 's_str' Else true Is Null End.`5esn`!.`5esn`,Reduce(usn1=`7esn`[1.9e0..5.9e-12][9e0..@usn5],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$`` =~$_usn3).#usn7! Foreach(`7esn` In `1esn`[{usn1}..]| Remove None(#usn7 In .0e-0 In 12 Where `8esn`[.12e12..]).`5esn`!,Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0X0123456789ABCDEF Ends With {1000})._usn4?);"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Foreach(@usn6 In {`1esn`}[{usn2}]| Load Csv From All(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Ends With Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789 Is Not Null Is Not Null|{`8esn`}[@usn5][$`2esn`]) Ends With (#usn8 :`5esn`:`7esn`{usn2})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )-[_usn4? *..0x0{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null}) As `` Fieldterminator 's_str') Remove _usn4(Distinct).`6esn`?.`4esn`?,Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 999 Starts With 7.0e-0 Starts With true).``? Merge Allshortestpaths(((@usn6 :`5esn`:`7esn`)-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)-[`3esn`:`6esn` *..0x0]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}))) On Match Set `2esn`+=9e1[0.0],#usn8+=.12e-12[@usn6..'s_str'],{`6esn`:4.9e12 Is Not Null Is Not Null,_usn4:`4esn`[9e-12..true]}.#usn8._usn3? =Shortestpath((((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))))[None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0.0[`7esn`])..Single(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])][`5esn`(Distinct .9e1[$`1esn`..][$``..])..Case When 12e12 Ends With `5esn` Ends With .0e0 Then .9e0 In 8.1e1 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else .9e1 Ends With 0x0 End] On Create Set @usn6+=00 =~`4esn` =~.9e-12,`3esn` =$123456789,[usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF].`5esn`! =.0e-0 Ends With $`2esn` Ends With `5esn`;"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Create Unique Shortestpath((`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[:`1esn`|:`1esn` *0{`8esn`:2.12[{12}],`7esn`:$@usn6[``..][3.9e-1..]}]->(:`2esn`:`4esn`{usn2:$@usn6[.1e-1][9e12],`5esn`:12e12 Is Not Null Is Not Null})-[`5esn`?:#usn7|:@usn5{usn2:#usn7[123.654][{12}]}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})),((:`7esn`{`4esn`:@usn5 =~$#usn7 =~{usn1}})-[`8esn`{#usn8:.12e12[..7]}]-({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`1esn`? *0{@usn6:true Is Null}]-(_usn4 )) Union All Load Csv With Headers From 9.1e-1 In 9e1 As @usn5 ;"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Drop Constraint On(@usn6:`6esn`)Assert Exists(Any(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).`3esn`!)"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On(``:@usn5)Assert exists(`3esn` Starts With 9.1e-1 Starts With .9e-1,{#usn8} Starts With {`2esn`}).``! Is Unique;"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Delete .1e1 In 12.0 In $``,@usn6 Starts With #usn7,Any(@usn6 In 9e12[..usn2][.._usn3] Where 12e12[.9e12..07]) Ends With Shortestpath(((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))) Union Create ((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})),`4esn`=((`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[?$999]-(`8esn` :@usn6:_usn3)<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})) Union Foreach(@usn6 In 0.12 Ends With 7 Ends With 12| Delete 1.9e0[$`4esn`],07[..$`5esn`] Create Unique `2esn`=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))),((:`4esn`:usn2{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(_usn4 :usn2))) Match ``=(((#usn7 )-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(`2esn` :@usn5)<-[?:`2esn`|`5esn` *..123456789$1000]-({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}))) Where `4esn` Contains 0X0123456789ABCDEF Contains $usn2 Create Unique Allshortestpaths((((@usn6 :`5esn`:`7esn`)-[`8esn`{#usn8:.12e12[..7]}]-({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))));"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Foreach(`6esn` In Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}]| Return Distinct 00[..@usn6] As `6esn`,{`3esn`}[...1e1][..0],Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null As `2esn` Skip $usn2 Ends With 9e12 Ends With Count ( * ) Limit 0xabc Starts With {`3esn`} Starts With {``}) Start `1esn`=Node( {`8esn`}) Union Merge usn1=({`1esn`:01 =~{_usn3} =~01,`8esn`:{#usn7} Ends With 999 Ends With 12})-[_usn4]-(#usn8 )-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}) Remove Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where .9e0 =~#usn7).`3esn`,`7esn`:`8esn` Remove Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where 2.12[{12}]|$`4esn` Contains `4esn` Contains .0e-0).``,None(usn1 In {#usn7} =~.12e12 =~9e0 Where {`1esn`} Is Null).#usn8!.``?._usn3!,Case 0X0123456789ABCDEF[1e1..] When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] End.@usn6!.`` Union Return {`8esn`}[@usn5][$`2esn`],$`6esn` In 999 In {_usn3},Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] As _usn4 Order By $12 Is Not Null Desc,`7esn`[1.9e0..5.9e-12][9e0..@usn5] Asc Skip $`5esn` Is Not Null Match `7esn`=Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)),`8esn`=Allshortestpaths((((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(#usn7 :`8esn`)))) Start `2esn`=Rel( {_usn3}) ,_usn3=Relationship(0x0);"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Load Csv With Headers From `4esn` Is Not Null As _usn4 Fieldterminator 's_str' Remove `7esn`:`4esn`:usn2,Filter(usn2 In .12e-12 Ends With `2esn` Where $7).usn1.#usn7!.`5esn` Union All Load Csv With Headers From $`1esn`[9e0..$12] As #usn7 Fieldterminator \"d_str\" Union All Return Distinct *,`1esn`[..$1000] As _usn3 Order By $@usn5 =~{`3esn`} Descending,_usn4['s_str'][8.1e1] Descending Limit $`8esn` Is Null Is Null Match `1esn`=(((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))) Using Join On _usn4,usn1,`` Using Index usn2:``(`3esn`) Where .0e0['s_str'..][0Xa..];"), + octest_legacy:ct_string("Cypher 999.123456789 Drop Constraint On(@usn6:`2esn`)Assert Exists(Case When $`6esn`[..01][..{_usn3}] Then .9e-1 Ends With .0e-0 Ends With {_usn3} When usn2 Contains `2esn` Contains {1000} Then $`4esn`[$@usn6...12e12] End.`7esn`?)"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On(#usn8:#usn8)Assert Exists([_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|$7].@usn5!.usn2?)"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Start `5esn`=Relationship:#usn8(@usn5={@usn6}) Where 0.12 =~`6esn` =~.9e-1 Load Csv From #usn7[.9e0..`3esn`][{`6esn`}..1000] As _usn3 Delete All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0)[..(_usn4 {`3esn`:.0e-0 In 12})-[`4esn`{_usn3:010[..9e-1][..0X7]}]-(@usn5 :`8esn`{12})-[_usn3:`6esn`]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})];"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Using Periodic Commit 7 Load Csv With Headers From {@usn5} Ends With 0Xa Ends With .12e-12 As `5esn` Fieldterminator 's_str' Load Csv With Headers From 0Xa Contains 12e-12 As #usn7 Fieldterminator 's_str'"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Create Constraint On()-[_usn4:#usn8]->()Assert Exists(Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`|01 =~07).`2esn`!)"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Merge @usn5=(usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[?$999]-(`4esn` {#usn7:$usn1[0e0...9e-12]})-[:`5esn` *01234567..{`2esn`:{usn1} Contains {`2esn`},#usn7:`4esn`[9e-12..true]}]-(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null}) On Create Set #usn8:`8esn` On Create Set #usn7+={_usn4} Ends With {0} Ends With `1esn`"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Merge (:`4esn`:usn2{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[`3esn`?:`1esn`|:`1esn`]-(`7esn` :usn1)<-[:`4esn`|:`2esn`{usn1:3.9e-1 Contains $@usn5}]->(@usn6 {``:$`6esn` Starts With 0.0}) On Match Set @usn6+=00 =~`4esn` =~.9e-12,`3esn` =$123456789,[usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF].`5esn`! =.0e-0 Ends With $`2esn` Ends With `5esn` With Distinct $`8esn`[{`2esn`}..11.12e-12][{`7esn`}..@usn5],{999} Contains $12 Contains 00 As usn2 Order By {`8esn`}[..`5esn`][..01] Asc,[@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..] Asc Where {#usn7} Is Not Null Unwind 00[{1000}] As usn1 Union All Unwind 0.0[$`4esn`] As `2esn` Create Allshortestpaths(((:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))),((usn2 :`2esn`:`4esn`)<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]->(_usn4 :`6esn`$_usn3)-[usn2?*]->(@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})) Remove (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)}).``;"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On()<-[`6esn`:``]-()Assert Exists((`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[?:@usn5|:#usn7 *0]->(_usn3 {`2esn`:5.9e-12[0x0..]}).@usn6!.`6esn`!);"), + octest_legacy:ct_string("Cypher Cypher 1000.999 With $#usn8 Starts With 9.1e-1 Starts With {#usn7} As `8esn`,$`1esn` Contains 1000 Contains $123456789 As _usn3 Order By 00[{1000}] Descending,'s_str'[$_usn3..][9.1e-1..] Desc,$_usn4 =~$#usn8 =~{`4esn`} Desc Skip $@usn6[...9e-1] Limit $#usn7[01..2.12][2.12..3.9e-1] Where {#usn7} Starts With .1e-1 Return Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] As #usn8,[`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]),{`7esn`} Is Not Null Is Not Null As `1esn` Order By 00[{1000}] Descending,'s_str'[$_usn3..][9.1e-1..] Desc,$_usn4 =~$#usn8 =~{`4esn`} Desc Skip $``[9e12..] Limit Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[`8esn`(0X0123456789ABCDEF Is Not Null Is Not Null,{usn1} Is Not Null Is Not Null)..][{usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}..] Create Unique `7esn`=Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}))))"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Merge `8esn`=Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})) On Match Set Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where {0}[.1e-1..][_usn4..]).`6esn`.usn1.`7esn`? =0xabc Starts With `2esn` Starts With 10.12e12,`8esn` =[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]] Merge (#usn7 :@usn5)-[:`8esn`|:#usn8 *0X7..0Xa]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(_usn4 :`5esn`:`7esn`{_usn4:$_usn3[.0e-0..999]}) On Create Set usn2+=Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null),#usn8 =None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) Create (#usn7 :`6esn`{usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[`2esn`?:``|:`7esn` *1000..]-(:_usn3{@usn5:`2esn`[`7esn`][1000]}) Union All Unwind `4esn` =~010 As `` Remove ({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000})<-[`5esn` *01]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}).#usn7!,All(usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]).`8esn`!,`7esn`:usn2"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Drop Constraint On(`1esn`:`1esn`)Assert Exists(Filter(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).@usn6!);"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Create Constraint On(``:`7esn`)Assert All(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1]).``! Is Unique"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Create Unique (((`1esn` :`3esn`{@usn6:$12 Is Null})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),`3esn`=(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0})-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[usn1?:`3esn`|`3esn`*..]-(`1esn` ) Union All Unwind usn2($12 =~4.9e12) Ends With Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Ends With Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End As #usn8 With *,@usn6 Ends With $`2esn` Ends With 1.0,.1e-1[$@usn6] Skip usn2($12 =~4.9e12) Ends With Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Ends With Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End Limit false =~$7 Where {``} Contains 0.0 Contains `4esn` Union Unwind $123456789 As #usn7 Start `2esn`=Node:`5esn`({`2esn`}) ,@usn6=Node( {``})Where .0e-0 Ends With $`2esn` Ends With `5esn`"), + octest_legacy:ct_string("Profile Drop Constraint On(@usn5:#usn8)Assert Exists(Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[10.12e12]|$usn2[..$999][..#usn8]).`6esn`!.#usn7!);"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Detach Delete [_usn3 In `8esn`[_usn4] Where {#usn7} Starts With .1e-1|`3esn` Is Null] Contains `5esn`({#usn8} Ends With _usn3 Ends With `2esn`,.9e0 =~#usn7),01234567 Ends With .0e0 Ends With 12e12,0.12[8.1e1..0Xa][Count ( * )..{_usn3}] Remove {`5esn`:$`4esn` Ends With .12e12 Ends With 123.654,@usn6:{123456789} Contains $0}.`8esn`,({#usn7:12e12[.9e12..07]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})-[@usn5:`2esn`|`5esn` *7]->(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}).#usn8!,(`3esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[?:`4esn`|:`2esn` *01]-(`` :``).`4esn`.#usn7 Union With Distinct *,Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null Skip 0xabc Contains 12 Contains Null Limit $123456789 Contains 07 Contains 0.0 Load Csv From {_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}[Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)][[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1]] As `5esn` Fieldterminator 's_str' Union All Foreach(usn1 In 4.9e12 Is Not Null Is Not Null| Unwind Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[..None(#usn7 In .0e-0 In 12 Where 0xabc =~123456789)][..11.12e-12] As @usn5) Start usn2=Node:`2esn`(_usn4={#usn7}) ,`5esn`=Rel:`6esn`(`4esn`='s_str')Where 12[..$`5esn`] Remove Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[01234567][{#usn7}]|00 =~`4esn` =~.9e-12).`5esn`.`3esn`!"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Unwind $`` =~.1e-1 As usn1 Union All Match `6esn`=(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Where 0[..{#usn7}][..$_usn3]"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Drop Constraint On(usn2:usn1)Assert Single(usn2 In $`5esn`[{`4esn`}][{0}] Where $`4esn` In {999}).#usn8? Is Unique"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Create Constraint On()-[`4esn`:usn1]->()Assert Exists({_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999}.`7esn`)"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Create Constraint On()<-[`5esn`:#usn8]-()Assert Exists({`6esn`:4.9e12 Is Not Null Is Not Null,_usn4:`4esn`[9e-12..true]}.`2esn`?.`8esn`?.usn1)"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Drop Constraint On(`2esn`:usn2)Assert Single(usn2 In .12e-12 Ends With `2esn` Where $999 Ends With `2esn` Ends With 12.0).`1esn`?.``! Is Unique;"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Create _usn3=(`3esn` :`2esn`:`4esn`) Start @usn5=Node:#usn7(usn1={`6esn`}) ,`4esn`=Node( {``})Where $123456789 Match usn2=(((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(#usn7 :`8esn`))),#usn7=Shortestpath((`1esn` :usn2{`8esn`:12.0[...0e0]})-[?:`1esn`|:`1esn` *..0x0{@usn6:.0e-0 In 12}]-(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})) Using Scan `8esn`:`4esn` Where $`7esn` In $@usn5 Union All Create Unique `2esn`=((_usn3 :`6esn`{usn2:.9e1 In .1e-1,usn2:1e-1 Contains 0.0})) Union All Remove Case $`8esn`[0x0][.9e0] When 9e1 Starts With $@usn6 Starts With 0e-0 Then {#usn8} Starts With {`2esn`} Else 9e-12[$7..] End.#usn7 Load Csv From $``[Count(*)..{12}] As usn2 Fieldterminator 's_str';"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Create Constraint On()-[`7esn`:_usn4]-()Assert Exists(#usn8(Distinct `6esn`[3.9e-1..`8esn`][12.0..0.0],@usn5 In Null).`7esn`!);"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Create Constraint On(`6esn`:@usn5)Assert Exists(Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 3.9e-1 Starts With .9e0 Starts With {#usn7}).``!);"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Start #usn8=Node(07,0Xa) Where 123456789[_usn4..`1esn`][$`6esn`..{@usn6}] Return 0Xa[999],Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)) Is Not Null Is Not Null As `8esn` Order By 10.12e12 Contains .9e0 Ascending,0e0[2.9e1..][.12e-12..] Ascending Skip {0} In {`1esn`} Limit `6esn` =~999 =~$999 Union Load Csv From {usn1:$usn1[9e1][{999}],#usn8:0e-0[$``..10.12e12]}[Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End] As `8esn` Merge `2esn`=Shortestpath(((`4esn` :`3esn`))) Merge Shortestpath(((`5esn` :#usn8:@usn6{``:Count(*) Starts With {usn2} Starts With `2esn`,`1esn`:12e12[{`4esn`}..`4esn`][999..{@usn6}]})<-[?:`2esn`|`5esn` *..123456789$1000]-({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]}))) On Match Set `1esn` ={`2esn`}[0x0..9e0],Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]).`8esn`? ={123456789} Contains $#usn7 Contains {#usn8},`5esn` =Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End Ends With Reduce(``={`3esn`}[$#usn8..],usn1 In {#usn7} =~.12e12 =~9e0|2.9e1[{`2esn`}]) Ends With [`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}|$`` =~$_usn3] On Match Set `2esn` =7[{`4esn`}..],usn2 =$@usn5 Contains _usn3 Union All Unwind Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {12} Ends With $`3esn` Ends With 0xabc)[Case When {0} Is Null Is Null Then $``[1.0..][_usn3..] Else 999[..$@usn5][..``] End..] As @usn5 Optional Match ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})),``=Shortestpath((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) Where 7[{`4esn`}..] Return *,0xabc Starts With `2esn` Starts With 10.12e12,`1esn` In 010 In 1e-1 As usn2 Skip Case false =~$7 When 999 Ends With {#usn8} Then `1esn` =~{12} =~{999} Else @usn5 In Null End[..Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $#usn8[$0..`3esn`][1e-1..$7])] Limit 12e12 Starts With {``};"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Create Constraint On()<-[_usn3:`3esn`]-()Assert Exists(All(`2esn` In $@usn5 Is Not Null Is Not Null Where `6esn`[3.9e-1..`8esn`][12.0..0.0]).`5esn`);"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Unwind {`6esn`} In {_usn4} In $12 As `1esn`;"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On()-[`6esn`:usn2]-()Assert Exists(All(`` In `7esn` =~#usn8 =~\"d_str\").`3esn`!)"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On(`6esn`:usn1)Assert Any(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With ``)._usn3 Is Unique;"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Return Distinct #usn8[..'s_str'][..'s_str'] As `2esn`,None(@usn6 In 9e12[..usn2][.._usn3] Where $7) Is Not Null Is Not Null;"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Merge usn2=Shortestpath((`6esn` {`3esn`:Count ( * )[_usn4..]})<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(`5esn` :``{_usn3:$_usn4[..$999],`7esn`:0X0123456789ABCDEF Ends With {1000}})) Merge `7esn`=(({_usn4:1e-1[$`4esn`]})) On Create Set `3esn` =.9e-12[{@usn5}] Union All Unwind Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) As @usn6 Union All Delete 0e-0[..7.0e-0][..{`8esn`}] Remove (`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[{`2esn`:9e1[$``.._usn4][999..`3esn`],usn1:0.0[`7esn`]}]->(#usn8 :`5esn`:`7esn`{usn2})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}).@usn5!,Case When 11.12e-12 Ends With 's_str' Then #usn7 Contains .0e0 Contains $@usn6 When $#usn7 Then `7esn`[1.9e0..5.9e-12][9e0..@usn5] Else 0.12 Is Not Null End.#usn7!"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On(`8esn`:usn2)Assert {`3esn`:`5esn` Ends With Count(*)}.@usn6! Is Unique"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Foreach(`` In 10.12e12[.0e0]| Create `7esn`=((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[_usn3?:`7esn`|usn1]-(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[usn2 *7]-(`8esn` :#usn7:`8esn`)) Load Csv From 12[11.12e-12..][`4esn`..] As @usn6 ) Union All Delete .0e0 =~Case $`6esn` Starts With 0.0 When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] End =~All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}]),`8esn`(Distinct 8.1e1 Contains .9e-1 Contains false,usn1 =~false =~{999}) In {12} In (usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12})<-[#usn8:`3esn`|`3esn` *1000..{#usn7}]-(:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[? *..00]->(:usn1{#usn8:2.9e1[{`2esn`}]}),Case .12e-12 Is Null When Count ( * )[_usn4..] Then 7.0e-0 Is Not Null When 2.12[{12}] Then {usn2} Ends With {@usn6} Ends With 1000 End[Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..])][({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})] Foreach(`8esn` In None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Contains (`8esn` :@usn6:_usn3{_usn4:{#usn7} =~$@usn6 =~$7})<-[`1esn`? *0{usn2:.9e12[6.0e0..][@usn5..]}]->(usn2 :@usn6:_usn3)-[usn1:#usn7|:@usn5 *999..123456789]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})| Unwind $`1esn` =~`8esn` As @usn5)"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On()<-[usn2:_usn4]-()Assert Exists(Any(usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]).`4esn`!.@usn5!)"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Using Periodic Commit 00 Load Csv With Headers From $`1esn`[4.9e12..][_usn3..] As `2esn` Fieldterminator 's_str' Merge @usn5=(_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]}) On Match Set `7esn`+=$_usn3[0x0][{0}],Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}}))._usn3 =9e0[{7}...0e-0][Null..@usn5],usn1+=Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null Match `6esn`=Shortestpath((((:`6esn`{`3esn`:9e12[..usn2][.._usn3]})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})<-[_usn4 *010..0{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}]-(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})))),Allshortestpaths((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})) Using Scan `1esn`:_usn3 Using Index `3esn`:`2esn`(`7esn`);"), + octest_legacy:ct_string("Cypher 1000.999 Drop Constraint On(`6esn`:#usn8)Assert Exists(@usn5(`4esn` Contains 0X0123456789ABCDEF Contains $usn2,{@usn5}[10.12e12..]).`1esn`!)"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Create Unique _usn4=Allshortestpaths(((`5esn` :_usn3)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}))),((`8esn` :`2esn`:`4esn`)-[?:#usn7|:@usn5 *12]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})) Load Csv From `4esn`[..7][..$usn2] As _usn4 Unwind Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1) Starts With Case 7.0e-0[$`6esn`..] When \"d_str\"[0x0..{@usn6}][$@usn5..0] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else $`5esn`[{`4esn`}][{0}] End Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`) As @usn6"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Drop Constraint On(`8esn`:usn2)Assert Exists({usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]}._usn4)"), + octest_legacy:ct_string("Cypher 999.123456789 Using Periodic Commit 07 Load Csv With Headers From $@usn5[.9e-1] As `7esn` Return *,123456789[#usn7..9e-1][10.12e12..{0}] Order By [`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]] Is Not Null Is Not Null Desc,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) Desc Merge usn1=Shortestpath((`1esn` :`7esn`{usn1:3.9e-1 Starts With .9e0 Starts With {#usn7}})<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`6esn` :`4esn`:usn2)-[`1esn`]-(`2esn` :`2esn`:`4esn`{#usn7:0 Starts With `7esn` Starts With 9e0})) On Create Set _usn4+=123456789[_usn4..`1esn`][$`6esn`..{@usn6}],#usn7+=1.9e0[..1.0][..`6esn`]"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Foreach(`1esn` In [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12][All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3])..][Case When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else @usn5[9e-1..{`1esn`}] End..]| Remove Single(`6esn` In 010[{`1esn`}..] Where $usn1[9e1][{999}]).usn1!,Single(usn1 In {#usn7} =~.12e12 =~9e0 Where ``[$#usn7]).`2esn`);"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Drop Constraint On()-[`5esn`:`2esn`]->()Assert Exists(Filter(usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF).`7esn`)"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Foreach(`7esn` In $`` =~.1e-1| Unwind $123456789 As #usn7) With Distinct *,0 Contains {`2esn`} Union All With Distinct .12e-12[@usn6..'s_str'],Allshortestpaths((((@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[``? *..00{@usn5:$`8esn` =~{`1esn`} =~$7,#usn7:.12e-12 Starts With .12e-12}]->({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]})-[:`8esn`|:#usn8 *01]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))))[..Case When {#usn7} Ends With 999 Ends With 12 Then {`3esn`}[999..$`4esn`] End],5.9e-12[01][`4esn`] As _usn4 Skip Single(`` In `7esn` =~#usn8 =~\"d_str\")[Reduce(`3esn`=1e1[$_usn3],`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1[..9.1e-1][...9e1])][[#usn7 In .0e-0 In 12 Where \"d_str\"[0x0..{@usn6}][$@usn5..0]|{7}[$@usn5..123456789][1e1..1.9e0]]] Remove Extract(usn1 In \"d_str\" Contains {@usn6} Where $`` =~.1e-1|$`3esn` =~0x0).`7esn`.`6esn`!,Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $1000[_usn4][{@usn5}]).#usn8!,Reduce(`2esn`=$`4esn`[$@usn6...12e12],`1esn` In $12 In {usn2}|{12} Starts With $`` Starts With 0X0123456789ABCDEF).usn1!._usn3 Merge `4esn`=((:``{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[? *..00$_usn3]-({`5esn`:`1esn` In 010 In 1e-1})) On Match Set #usn7 =All(#usn8 In 07[..$`5esn`] Where $@usn6 Starts With 0xabc Starts With {`7esn`})"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Create Constraint On(`1esn`:`3esn`)Assert {@usn6:12e12[{`4esn`}..`4esn`][999..{@usn6}]}.usn1?.`8esn`? Is Unique"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Create Shortestpath(((#usn7 :`1esn`:``)<-[?:`4esn`|:`2esn`]-(_usn3 :`4esn`:usn2)-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}))),usn2=((`4esn` :`8esn`{12})) Union Create Unique (`8esn` :`6esn`),`8esn`=(({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})-[`2esn`?:@usn6|:`4esn` *010..0{`4esn`:Null[$`3esn`..][`1esn`..],_usn3:6.0e0[$#usn7..$1000]}]-(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]})-[`3esn`{`4esn`:12e12[.9e12..07]}]-(:`4esn`:usn2{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})) Return *,`4esn`[..7][..$usn2] As #usn8,Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $#usn7[01..2.12][2.12..3.9e-1]) =~_usn3(.0e-0 Ends With $`2esn` Ends With `5esn`,$usn1 =~.9e12 =~`6esn`) =~Reduce(_usn3=5.9e-12 Is Null Is Null,_usn3 In `8esn`[_usn4]|2.9e1[Count ( * )..]) As `8esn` Order By 0.0[$999][`6esn`] Asc Limit 10.12e12 Contains .9e0 Union All Foreach(usn2 In $usn1 Ends With {`2esn`} Ends With $usn1| Match `5esn`=(((`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[?:_usn3]->(`8esn` :usn1)-[?:`1esn`|:`1esn` *999..123456789]-(`8esn` :#usn7:`8esn`))),`5esn`=Shortestpath(((@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))) Using Scan `4esn`:#usn7 Using Scan `7esn`:`` Where .12e-12[@usn6..'s_str'] Start #usn7=Relationship:#usn8(usn2={12}) Where 01234567 Ends With .0e0 Ends With 12e12);"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` With Distinct Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End In (:usn1)<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}) In [_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|usn2 Ends With $123456789 Ends With {999}] As _usn4 Skip $_usn3 Contains 1.0 Contains 0.12 Remove (_usn3 :`1esn`:``{`8esn`:{#usn8} In {12} In .9e12})<-[ *1000..{`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]->(`` ).#usn8?"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Drop Index On:#usn8(`6esn`);"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create `5esn`=Shortestpath((({_usn3:.9e12 Contains 0 Contains $0}))),usn2=(`8esn` :@usn6:_usn3)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) With Distinct 0.0[$999][`6esn`] Order By $`2esn`[`8esn`..] Descending,({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}) Contains Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Contains All(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]) Descending Limit $`5esn` =~Count(*) =~1.9e0 With Distinct Count(*)[Null..][01234567..] As `1esn`,{#usn7} Is Not Null As `7esn`,10.12e12[usn2] Union Start ``=Node:`7esn`({#usn7}) Where {`7esn`} =~\"d_str\" =~{``} Create Allshortestpaths((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})),`8esn`=(((`3esn` $0)-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})));"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Using Periodic Commit 00 Load Csv With Headers From 1e-1 =~$`7esn` =~1e1 As @usn5 Fieldterminator 's_str' With None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0) As usn2 Skip Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])[..(#usn7 {`5esn`:.12e12 Is Not Null,@usn5:.12e12 Is Not Null})-[#usn8:`7esn`|usn1 *0X7..0Xa{usn1:_usn4 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})][..Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`)] Where 0Xa In 1.0 In $@usn5 Match `2esn`=(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1}),``=Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))) Where 7[{`4esn`}..];"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Create Constraint On(`6esn`:#usn8)Assert Exists(All(usn2 In $`5esn`[{`4esn`}][{0}] Where Null[$`3esn`..][`1esn`..]).#usn8!.#usn8.`7esn`);"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Remove Reduce(`8esn`=1e1[$_usn3],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e-0[..``][..$7]).`6esn`.`8esn`?,[`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1].`2esn`! Unwind {usn2} Ends With {@usn6} Ends With 1000 As `` Union All Detach Delete Case When `4esn` Contains 0X0123456789ABCDEF Contains $usn2 Then {1000} Starts With {`1esn`} End Starts With Case $`8esn`[0x0][.9e0] When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null Else $usn1 =~.0e0 =~{`4esn`} End Starts With .0e-0,Reduce(`5esn`={`8esn`}[..999][.._usn3],usn2 In $`5esn`[{`4esn`}][{0}]|`` Ends With 1.0 Ends With usn1) =~({@usn6:$@usn6 Is Null Is Null})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5),{`6esn`} Starts With @usn6 Create Unique _usn4=(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[:`6esn` *..0x0{``}]-(#usn8 :``{usn2:9e1 =~$`8esn` =~10.12e12}) Delete {999} =~$`6esn` =~$`6esn` Union All Match ``=(((@usn5 {@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))),`2esn`=Allshortestpaths((((#usn8 :`3esn`{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})-[? *0]-(:`3esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`})-[?:``|:`7esn` *12{#usn8:10.12e12 Contains .9e0,usn1:0xabc Contains {12} Contains {`6esn`}}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1})))) Using Scan @usn5:`8esn` Create Unique ((`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})),`8esn`=Shortestpath((_usn3 )-[usn2:_usn3 *0xabc..12]->(:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`))"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Remove Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .12e12 Starts With 5.9e-12 Starts With `4esn`).`7esn`? Create (((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(`2esn` :_usn3)<-[_usn3?{``:{1000} Starts With {`1esn`}}]->(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))) Start `7esn`=Rel( {`8esn`}) ,`6esn`=Node:@usn6({999})Where `1esn`[{@usn5}..][{_usn4}..];"), + octest_legacy:ct_string("Cypher 1000.999 Drop Constraint On()-[`1esn`:``]-()Assert Exists(Case When 0e-0[$``..10.12e12] Then 3.9e-1[{@usn6}..][01234567..] End.`4esn`!)"), + octest_legacy:ct_string("Profile Merge Shortestpath((`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[:`1esn`|:`1esn` *0{`8esn`:2.12[{12}],`7esn`:$@usn6[``..][3.9e-1..]}]->(:`2esn`:`4esn`{usn2:$@usn6[.1e-1][9e12],`5esn`:12e12 Is Not Null Is Not Null})-[`5esn`?:#usn7|:@usn5{usn2:#usn7[123.654][{12}]}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})) On Create Set _usn3+=Case {`4esn`} Ends With Count(*) When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] When $#usn7 Contains 3.9e-1 Then 123.654[10.12e12..$12][6.0e0..{#usn8}] Else $usn1[0e0...9e-12] End[Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))..][Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})..],#usn7+=[`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|01[$`1esn`..$`7esn`][{usn2}..12.0]][(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]-(:_usn3{_usn3:010[..9e-1][..0X7]})..][[`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 0X0123456789ABCDEF Is Not Null Is Not Null]..],Case When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else `6esn`[3.9e-1..`8esn`][12.0..0.0] End.`7esn`?.`5esn`?.#usn8! =7.0e-0 Is Not Null Create `1esn`=Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))),usn2=((:`7esn`{`4esn`:@usn5 =~$#usn7 =~{usn1}})-[`8esn`{#usn8:.12e12[..7]}]-({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`1esn`? *0{@usn6:true Is Null}]-(_usn4 ));"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Drop Constraint On()-[`5esn`:`3esn`]->()Assert Exists(12.@usn5.``!.`8esn`);"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 With Distinct *,$usn1[..$999][..0e0] As #usn7,.9e-12[{@usn5}] As `7esn` Limit 999 Ends With {#usn8} Union All Create Allshortestpaths((`1esn` :`5esn`:`7esn`)-[{``:{`3esn`}[01234567][{#usn7}],_usn4:999 Is Null Is Null}]->(usn2 {``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})) Optional Match Shortestpath((@usn6 :@usn5)) Where `3esn` Is Null Is Null;"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Drop Constraint On(`4esn`:@usn6)Assert (`` $999)<-[? *010..0]-(#usn7 :``)-[:`4esn`|:`2esn`{usn1:3.9e-1 Contains $@usn5}]->(:`5esn`:`7esn`{`8esn`:{12} Ends With $`3esn` Ends With 0xabc}).`3esn`?.`6esn`? Is Unique"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Delete 9e0 Is Null,1e-1 Ends With {@usn5} Ends With {usn2} Start `1esn`=Rel:`5esn`(@usn5=\"d_str\") ,usn1=Rel:`7esn`(`8esn`={`3esn`})Where {usn1} In Count ( * ) In 12e12 Start #usn8=Relationship:usn2(usn1={_usn3}) Union Start @usn5=Rel:#usn7(\"d_str\") ,`2esn`=Node(0X7,123456789,123456789,0X7)Where 999 Is Null Is Null Foreach(_usn4 In 1e1 Ends With $_usn3 Ends With .1e1| Detach Delete Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`) Is Null Is Null,6.0e0[$#usn7..$1000],$12 Is Not Null Is Not Null) Unwind `4esn`($@usn5[.9e-1],00[{1000}]) Ends With Reduce(`7esn`=0.0[00..][0xabc..],usn1 In {#usn7} =~.12e12 =~9e0|10.12e12 In Null In .12e12) As @usn6"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Create Constraint On()-[_usn3:`4esn`]-()Assert Exists(Shortestpath((:`3esn`{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]})).usn2!);"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Load Csv With Headers From Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null)[#usn7(`1esn`[..$1000])..][Reduce(`5esn`=$@usn5 =~{`3esn`},`1esn` In $12 In {usn2}|$`5esn` Ends With 's_str' Ends With $`6esn`)..] As `7esn` With *,_usn4['s_str'][8.1e1] Order By 999 Starts With 07 Ascending Where 1.0 Is Not Null"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Create Unique `8esn`=(({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})) Return Distinct `4esn`[12.0..][9.1e-1..] As `4esn`,true In 0.0 As `5esn` Order By $7 In 1.0 In 01234567 Ascending,@usn5 =~$#usn7 =~{usn1} Ascending Skip #usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Union Create Shortestpath(((({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(_usn4 :`1esn`:``{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}})-[?:@usn5|:#usn7 *0]->({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})))) Start _usn4=Relationship( {#usn8}) ,`4esn`=Node:usn2(usn1={_usn3}) Optional Match (((`8esn` :`5esn`:`7esn`{usn1:{``} Contains 0.0 Contains `4esn`})-[`2esn`?:`4esn`|:`2esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]->(@usn5 {`8esn`:123456789[#usn7..9e-1][10.12e12..{0}],@usn6:1.0 Is Not Null})-[#usn8?:usn2*..]->(:``{usn2:00 Is Not Null Is Not Null}))) Using Join On #usn8,_usn3,`6esn` Using Join On `1esn`,usn1,`7esn`;"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Optional Match `4esn`=Shortestpath(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))),((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}));"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Load Csv With Headers From 0e0 Contains {`2esn`} As `2esn` Fieldterminator \"d_str\" Create ((`1esn` :`7esn`{usn1:3.9e-1 Starts With .9e0 Starts With {#usn7}})-[usn2? *01234567..]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})) Unwind None(#usn8 In 07[..$`5esn`]) Starts With (:#usn7:`8esn`{`5esn`:false[..usn2][..999]})<-[`7esn`:`4esn`|:`2esn`*{``:true Is Null,_usn3:$12 Ends With 7.0e-0 Ends With 9e-12}]->(`` :`7esn`) Starts With All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 123.654 Ends With {1000} Ends With 9e12) As `3esn`"), + octest_legacy:ct_string("Profile Drop Constraint On()-[`7esn`:_usn4]->()Assert Exists(Shortestpath((`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[:`7esn`|usn1 *7]-(`8esn` :`5esn`:`7esn`{usn1:{``} Contains 0.0 Contains `4esn`})-[? *1000..{`1esn`:{`1esn`} Is Null}]->(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})).`1esn`?);"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Create Constraint On(usn1:usn2)Assert Exists(Reduce(#usn8=$``[1.0..][_usn3..],`6esn` In 010[{`1esn`}..]|{1000} =~4.9e12 =~9e1).`6esn`.@usn6!);"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Using Periodic Commit Load Csv From $@usn6[``..][3.9e-1..] As usn1 "), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` With Distinct *,7 Starts With 9e-12 As #usn7,$_usn3 In `2esn` In `3esn` Order By Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null Desc,0X7 Contains $12 Contains 0e0 Descending,{@usn5:5.9e-12 Is Null Is Null} Ends With Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where _usn4['s_str'][8.1e1]|0.12 =~2.9e1 =~9e1) Ends With All(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12) Descending Where {`1esn`} Contains 1.0 Contains 4.9e12"), + octest_legacy:ct_string("Cypher 999.123456789 Detach Delete (@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(:`6esn`{`2esn`:`5esn` Ends With Count(*)})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12}) In Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}) In Single(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str') Union All With $0 In {`5esn`:.9e-1 Contains .9e0 Contains ``} In {`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12} As `7esn`,.9e0 Ends With $0 As @usn6 Limit $`5esn` In $12 In `2esn` Union Create ((:#usn7:`8esn`{@usn5:{0} In {`1esn`}})),((`3esn` :#usn8:@usn6))"), + octest_legacy:ct_string("Cypher 999.123456789 Create usn2=Shortestpath(((@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))) Optional Match `4esn`=(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(_usn4 :#usn8:@usn6),Shortestpath((((_usn3 {_usn3:.12e-12 Ends With `2esn`,usn1:Null[#usn7..][9.1e-1..]})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[ *..123456789{@usn5:$`8esn`}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})))) Where .9e12[6.0e0..][@usn5..] Union Merge #usn7=Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))) On Match Set (:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12}).`3esn`! =0x0[{`6esn`}..],_usn3+=Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`|.9e-12[.12e12..][0Xa..])[{#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}..],`4esn` ={`8esn`}[.0e0..][999..]"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Load Csv From $@usn5 =~{`3esn`} As `8esn` Fieldterminator 's_str' Foreach(`` In 07 Ends With {1000} Ends With 01234567| Remove `8esn`:`1esn`:``,[usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000|{#usn8} In {12} In .9e12].`5esn`!.`8esn`._usn4?,{`7esn`:.9e12 Contains 0 Contains $0}.`3esn`!.@usn5?.usn1 Unwind Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null As @usn5) Union Delete @usn5[@usn6],{`5esn`}[{usn2}..$`1esn`] Foreach(#usn8 In usn2 Starts With $usn1 Starts With 10.12e12| With {1000} Starts With 10.12e12 Starts With .0e-0 As `8esn`,Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) As _usn4 Skip Count ( * ) Starts With 0.12 Limit Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Create ``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))))"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Match Shortestpath(((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999}))),_usn3=(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}) Using Join On `4esn`,`5esn`,@usn6 Where #usn8 =~{@usn5} Unwind {7} Is Not Null As _usn3 Union All Optional Match `5esn`=Shortestpath(((`8esn` :`8esn`)-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`8esn`*]-(`7esn` :``{usn2:$7}))),`3esn`=Allshortestpaths((((`4esn` :`3esn`)<-[@usn5?*..]->(:_usn3{_usn3:010[..9e-1][..0X7]})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)))) Using Index `5esn`:#usn8(_usn3) Return Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] As #usn8,[`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]),{`7esn`} Is Not Null Is Not Null As `1esn` Order By 00[{1000}] Descending,'s_str'[$_usn3..][9.1e-1..] Desc,$_usn4 =~$#usn8 =~{`4esn`} Desc Skip $``[9e12..] Limit Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[`8esn`(0X0123456789ABCDEF Is Not Null Is Not Null,{usn1} Is Not Null Is Not Null)..][{usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}..] Union All Foreach(`6esn` In $_usn4[..01234567][..$`6esn`]| Match ((`4esn` {@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})) Using Index `5esn`:`4esn`(_usn3) Using Join On #usn7,`7esn`);"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Using Periodic Commit 1000 Load Csv From None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) As `6esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Using Periodic Commit 0x0 Load Csv From {`5esn`} As usn1 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Cypher _usn4=#usn8 Return Distinct 0.0 Starts With 0X0123456789ABCDEF,{123456789} =~.9e1 =~$_usn3,Case When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 Else $12 Is Not Null Is Not Null End Starts With usn1(Distinct .9e1[$`1esn`..][$``..]) Starts With Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End Order By Null Ends With `4esn` Ends With `3esn` Descending,None(`6esn` In 010[{`1esn`}..] Where 0 In 2.9e1 In 7) Ends With [@usn6 In 9e12[..usn2][.._usn3] Where .12e12 Ends With 07 Ends With 3.9e-1|$@usn5 Is Null Is Null] Ascending,Case When true In 0.0 Then {`4esn`}[{`3esn`}][$`2esn`] Else @usn6 Starts With #usn7 End =~{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}} =~{_usn3:010[..9e-1][..0X7]} Descending Union All Remove `5esn`:`6esn`,[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01|_usn4 Ends With {`8esn`} Ends With usn2].usn1.`7esn`.@usn6 Match (((:`6esn`)-[? *0Xa..12{`4esn`:9e-12[$7..]}]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(usn2 {`7esn`:.9e12 Contains 0 Contains $0}))),@usn6=Shortestpath((:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})) Using Index `6esn`:usn1(#usn8) Using Scan `1esn`:#usn8;"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Create Constraint On()-[usn1:`3esn`]->()Assert Exists(Single(usn1 In \"d_str\" Contains {@usn6} Where false Contains {`7esn`}).`6esn`);"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On()-[`5esn`:#usn7]->()Assert Exists((:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[#usn8?:_usn3 *..123456789]->(usn1 :_usn4:`2esn`).`2esn`.``)"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Create Constraint On(#usn7:`6esn`)Assert Exists(usn1(Distinct 0e-0[{12}]).`3esn`?)"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Create Constraint On()-[#usn7:@usn5]->()Assert Exists(Reduce(_usn3=1.9e0[.12e-12][9e-12],`2esn` In $@usn5 Is Not Null Is Not Null|9e-12 Ends With 9e1 Ends With 4.9e12).``.`1esn`?);"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Unwind $123456789[{usn1}][.12e-12] As `1esn` Load Csv From {_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}[Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)][[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1]] As `5esn` Fieldterminator 's_str' Detach Delete 8.1e1[usn2..{1000}][0X7..9e12],$1000[_usn4][{@usn5}];"), + octest_legacy:ct_string("Cypher 1000.999 Drop Constraint On(_usn3:#usn7)Assert Exists(Reduce(`1esn`=12.0[..Count ( * )][..@usn6],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|5.9e-12 Contains {12} Contains {#usn8}).``!.`2esn`!.#usn7?)"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(`7esn`:usn2)Assert Exists(Case When $`4esn` Ends With {999} Then 6.0e0[$#usn7..$1000] When .12e12 Is Not Null Then {`6esn`} Starts With .12e-12 End.`5esn`!);"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Match #usn7=(`8esn` :`7esn`)-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``),((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})) Using Join On `3esn`,`` Using Index `1esn`:_usn4(`5esn`) Create ``=Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))) Union Create Unique ((`1esn` :`8esn`)<-[:usn1|usn2]-(`` :`4esn`:usn2)<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``)),Allshortestpaths(({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)})) Remove (:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(`2esn` :@usn5)-[`8esn`:_usn4|:`1esn`]->({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`}).#usn7,Filter(#usn7 In .0e-0 In 12 Where _usn4 Is Not Null Is Not Null).#usn7! Unwind Single(`6esn` In 010[{`1esn`}..]) As `8esn` Union Unwind .9e12 Is Not Null Is Not Null As #usn7 Load Csv From 9e-1[1.9e0] As #usn8 "), + octest_legacy:ct_string("Cypher Cypher 1000.999 Drop Constraint On(#usn8:@usn6)Assert Exists(None(#usn7 In .0e-0 In 12 Where $123456789).#usn8?)"), + octest_legacy:ct_string("Cypher 1000.999 Merge usn1=Allshortestpaths(((:`4esn`:usn2{usn2:$usn2 Ends With 00 Ends With 9e12,_usn4:{`5esn`}})-[?:``|:`7esn` *12{#usn8:10.12e12 Contains .9e0,usn1:0xabc Contains {12} Contains {`6esn`}}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))) On Create Set Single(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`).usn2!.`5esn`.`2esn`! =11.12e-12 Contains usn1,(_usn4 :`1esn`:``{`3esn`})-[:`5esn` *01234567..{`2esn`:{usn1} Contains {`2esn`},#usn7:`4esn`[9e-12..true]}]-(:`5esn`:`7esn`{`1esn`:{1000}[..`5esn`][..9e12]}).`3esn`?.usn2!.`6esn` =Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})),`5esn`+=[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12][All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3])..][Case When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else @usn5[9e-1..{`1esn`}] End..] On Match Set {usn2:.9e-12[.12e12..][0Xa..]}.usn2.#usn8.usn2! =.9e1 Ends With 0x0 Union All Start _usn3=Relationship(0x0) Create Unique @usn6=Allshortestpaths(((#usn8 :usn2)<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))),usn1=Allshortestpaths((`6esn` :`5esn`:`7esn`)-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 {`2esn`:5.9e-12[0x0..]})) Merge @usn6=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) On Match Set usn2+=Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null),#usn8 =None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..])"), + octest_legacy:ct_string("Cypher 999.123456789 Create `7esn`=((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[_usn3?:`7esn`|usn1]-(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[usn2 *7]-(`8esn` :#usn7:`8esn`)) Create Unique (`1esn` {usn2:.9e-12[.12e12..][0Xa..]}),Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})))"), + octest_legacy:ct_string("Cypher 999.123456789 Create Constraint On(`6esn`:`5esn`)Assert Any(@usn6 In 9e12[..usn2][.._usn3] Where $0 Ends With 9e-12 Ends With $_usn4).@usn6!.usn2? Is Unique"), + octest_legacy:ct_string("Cypher 999.123456789 Drop Constraint On(`1esn`:`5esn`)Assert Filter(`6esn` In 010[{`1esn`}..] Where `6esn` Ends With 1e1 Ends With $#usn7).@usn5! Is Unique;"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Start `5esn`=Node:`1esn`(`4esn`={@usn5}) ,`2esn`=Rel( {_usn3}) Load Csv From {0}[.1e-1..][_usn4..] As `6esn` Fieldterminator \"d_str\";"), + octest_legacy:ct_string("Cypher 999.123456789 Create Constraint On()-[@usn6:`3esn`]-()Assert Exists(Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where 3.9e-1 Starts With .9e0 Starts With {#usn7}).#usn8!)"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Merge `6esn`=Shortestpath((`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})) On Match Set _usn4+=01234567[10.12e12][0Xa],Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01).#usn7!.`2esn`.@usn6! =4.9e12 Ends With $@usn6,`3esn`+=.1e-1 Is Not Null On Create Set _usn3+=Count ( * ) =~123456789 =~{@usn5} Load Csv From {@usn6:3.9e-1[..$1000][..0.12]}[All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000)] As `3esn` Union Remove Reduce(`3esn`={0} Is Not Null,`` In `7esn` =~#usn8 =~\"d_str\"|01234567[\"d_str\"..][$`4esn`..])._usn4.@usn6 Delete 2.9e1 Ends With 12e12 Ends With .9e12,{123456789} Contains $0,$12 Is Null Unwind [_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12] As _usn3 Union Unwind Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null As @usn5 Detach Delete Case .12e-12 Is Null When Count ( * )[_usn4..] Then 7.0e-0 Is Not Null When 2.12[{12}] Then {usn2} Ends With {@usn6} Ends With 1000 End[Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..])][({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})],{`1esn`}[7.0e-0..9e-1][01234567..{`4esn`}],1e-1 Starts With .1e1 Starts With 12.0 Detach Delete 's_str'[`3esn`..0x0],0xabc Contains 12 Contains Null"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Create Constraint On()-[usn1:usn2]-()Assert Exists(Reduce(#usn8=1e1 Ends With $_usn3 Ends With .1e1,`7esn` In 0.12 Is Not Null|true[1.9e0..]).`7esn`)"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Using Periodic Commit 0xabc Load Csv From Count(*)[Null..][01234567..] As usn1 Fieldterminator \"d_str\" Create Allshortestpaths((`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`)),Allshortestpaths(((`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]})-[_usn4*{`3esn`:{``} Is Null Is Null}]-({`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})));"), + octest_legacy:ct_string("Cypher 999.123456789 Create Constraint On()<-[_usn4:`5esn`]-()Assert Exists(Case $`3esn`[0e-0] When $12[$@usn5] Then $_usn4 Ends With {#usn8} When {0} In {`1esn`} Then 1.9e0[`6esn`][`7esn`] Else 12e12 Ends With `5esn` Ends With .0e0 End._usn4.`2esn`?.`7esn`)"), + octest_legacy:ct_string("Cypher 999.123456789 Drop Constraint On()<-[``:_usn4]-()Assert Exists(Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e-1 Is Null Is Null).#usn8);"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Detach Delete {`1esn`} Contains 1.0 Contains 4.9e12,{999}[..`6esn`],{`3esn`} =~$`` =~$`8esn` Union Merge `8esn`=Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})) On Match Set Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where {0}[.1e-1..][_usn4..]).`6esn`.usn1.`7esn`? =0xabc Starts With `2esn` Starts With 10.12e12,`8esn` =[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]] Merge (#usn7 :@usn5)-[:`8esn`|:#usn8 *0X7..0Xa]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(_usn4 :`5esn`:`7esn`{_usn4:$_usn3[.0e-0..999]}) On Create Set usn2+=Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null),#usn8 =None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) Create (#usn7 :`6esn`{usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[`2esn`?:``|:`7esn` *1000..]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Start _usn4=Rel:`4esn`({7}) ,`6esn`=Rel:@usn6(`8esn`='s_str')Where {0} Ends With 0Xa Start _usn4=Rel:`5esn`(@usn5=\"d_str\") With .0e-0 Ends With $`2esn` Ends With `5esn`,Case {`4esn`} Ends With Count(*) When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] When $#usn7 Contains 3.9e-1 Then 123.654[10.12e12..$12][6.0e0..{#usn8}] Else $usn1[0e0...9e-12] End[Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))..][Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})..] As `2esn`,true In 0.0 As @usn5 Order By 0 Ends With .0e-0 Ends With false Descending,Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where .9e1[$`1esn`..][$``..]) Ascending,Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] Asc Limit [`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..])"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Create Unique ((`8esn` :`2esn`:`4esn`)-[?:#usn7|:@usn5 *12]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})) Create Unique usn2=(((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(#usn7 :`8esn`))),#usn7=Shortestpath((`1esn` :usn2{`8esn`:12.0[...0e0]})-[?:`1esn`|:`1esn` *..0x0{@usn6:.0e-0 In 12}]-(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})) Match ((:`1esn`:``{`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})),Allshortestpaths((`4esn` :`3esn`)-[`3esn`?:`1esn`|:`1esn`]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})) Using Index `2esn`:usn1(_usn3) Using Scan #usn8:`8esn` Union Remove `4esn`:#usn8:@usn6 Delete {_usn3} Is Null Is Null,$999 Starts With 0e-0 Starts With .9e12,0.12[{@usn6}..{#usn7}] Load Csv From None(`1esn` In $12 In {usn2})[..Reduce(usn2=.9e0 In 8.1e1,`3esn` In 8.1e1 Contains .9e-1 Contains false|$_usn3 Is Not Null)] As #usn7 Fieldterminator 's_str' Union All Load Csv From 12[11.12e-12..][`4esn`..] As @usn6 "), + octest_legacy:ct_string("Cypher _usn4=#usn8 Unwind `6esn`[0X0123456789ABCDEF..][`8esn`..] As `1esn` Foreach(_usn3 In 12e12 Is Not Null Is Not Null| Remove [`3esn` In 8.1e1 Contains .9e-1 Contains false Where 07 Ends With {1000} Ends With 01234567|$`5esn` Ends With 's_str' Ends With $`6esn`].`2esn`,{`2esn`:0xabc[01234567][.12e-12],`1esn`:{`3esn`}[#usn7]}._usn4?,(_usn3 )<-[:`8esn`|:#usn8 *0X7..0Xa]->(`4esn` :`8esn`{12}).`8esn`!._usn3? Return *,@usn5[{`1esn`}..][Count ( * )..] As `8esn` Order By {_usn3:.0e-0[..``][..$7]}[..(`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`)][..@usn5] Descending Skip $999[9e0] Limit false =~{`8esn`} =~00) Union All Detach Delete {`8esn`}[9e-12..0],`` Ends With 1.0 Ends With usn1 Remove Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With ``).`5esn`,{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}._usn3.`2esn`!,Reduce(`8esn`=@usn6[999][1000],#usn8 In 07[..$`5esn`]|{`8esn`}[9e12..][{_usn4}..]).`4esn`? Detach Delete {`1esn`} Contains 1.0 Contains 4.9e12,{999}[..`6esn`],{`3esn`} =~$`` =~$`8esn` Union All Foreach(_usn3 In Null| Optional Match ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),_usn3=Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)))) Return *,$12 Is Null As #usn8 Order By ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[_usn3?:@usn5|:#usn7]->(`` :``)-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Starts With Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`) Ascending,{`8esn`} =~$#usn7 =~2.12 Desc,Count(*) Starts With 07 Starts With $#usn7 Desc Skip @usn6[true..] Create ({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12}),#usn8=Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]})));"), + octest_legacy:ct_string("Cypher 999.123456789 Merge `3esn`=Shortestpath(((`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})<-[usn2? *0xabc..12{`6esn`:`8esn`[_usn4]}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]}))) On Create Set Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0[..{#usn7}][..$_usn3]).#usn7? ={@usn5}[10.12e12..],[`1esn` In $12 In {usn2} Where 9e-1[1.9e0]]._usn4!.`4esn`? ={`8esn`}[@usn5][$`2esn`],`1esn` ={@usn6:$12 Is Null} In (`4esn` {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}) On Create Set #usn7 =usn1 =~false =~{999},Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}).`2esn`! =9e12 Is Null Is Null,`2esn`+=Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`}) Ends With Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))) Ends With Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1);"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Delete 2.9e1 Ends With `5esn` Ends With 1000"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Create Constraint On(@usn5:`7esn`)Assert (:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(`2esn` :@usn5)-[`8esn`:_usn4|:`1esn`]->({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`}).#usn7 Is Unique;"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Create Constraint On()-[_usn3:`2esn`]-()Assert Exists(Any(`7esn` In 0.12 Is Not Null Where 0.0[00..][0xabc..]).`5esn`?)"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Optional Match (_usn4 :`6esn`)<-[:#usn8|:``{#usn7:$#usn7}]-(#usn7 $12),(((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))) Using Index `3esn`:`8esn`(`5esn`) Using Index `6esn`:usn1(`3esn`) With Distinct 1.9e0[..1.0][..`6esn`] As `1esn` Order By $999 Ends With `2esn` Ends With 12.0 Ascending Limit Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] Load Csv From `1esn`[{@usn5}..][{_usn4}..] As `6esn` Union All With Distinct usn1 Ends With 11.12e-12 Ends With 5.9e-12 Limit Any(`1esn` In $12 In {usn2} Where @usn6[true..]) Contains Any(usn2 In .12e-12 Ends With `2esn` Where 9e12 Ends With 9e-1 Ends With 9e1) Contains (`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3) Start `5esn`=Relationship:_usn4({_usn3}) Where `` Ends With 1.0 Ends With usn1 Start `2esn`=Relationship:``(`1esn`=\"d_str\") ,`2esn`=Node( {`6esn`})"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Load Csv From 0.12[Count ( * )..Count ( * )][$999..`5esn`] As `7esn` Unwind 0.0[00..][0xabc..] As #usn7 Start #usn7=Node:``('s_str') Union Foreach(`1esn` In Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null)| Delete 2.9e1 Ends With `5esn` Ends With 1000 With Distinct *,false[..usn2][..999] Order By .0e-0[010..] Asc,6.0e0 In 9e-1 In 123456789 Ascending,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) Desc Skip $`3esn` =~$123456789 =~`3esn`) Return Distinct 9.1e-1[..Null][..#usn8] As @usn6 Order By {999} Starts With $`4esn` Starts With $`1esn` Ascending,$`8esn`[...1e-1] Desc Limit Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null;"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Return Distinct Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null As #usn8,.9e1 Is Null Is Null As #usn8,00[..@usn6] Order By 12 Ends With 12e12 Asc,.9e12 Starts With 0X7 Starts With .9e-1 Asc Skip 00[Null..usn2] Limit 01[{usn2}..][1.9e0..] Return Distinct None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0) As usn2 Skip $#usn7[01..2.12][2.12..3.9e-1] Limit `5esn` Ends With Count(*) Union All With Distinct *,1.9e0[$`4esn`],All(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`]) Ends With Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e-12[9e1]) Merge ((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})) On Create Set (`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[? *..123456789{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:`7esn`{`5esn`:{`8esn`} Starts With .9e-1 Starts With 1000})._usn3._usn3?.`6esn`! =(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}) Is Not Null,#usn8 =0[4.9e12] Optional Match `7esn`=Shortestpath(((usn1 :_usn4:`2esn`)<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[?{#usn7:`2esn`,`7esn`:$@usn5 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))),Allshortestpaths((:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[_usn3?:`5esn`*..]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]})) Using Join On `5esn`,usn1,`7esn` Using Scan #usn8:`1esn` Where 8.1e1[..9.1e-1][...9e1] Union All Remove Reduce(`6esn`=.9e-12[.12e12..][0Xa..],#usn8 In 07[..$`5esn`]|.9e-12[.12e12..][0Xa..]).`5esn`?,Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 7 In 1e1 In {``}).`6esn`,All(usn2 In $`5esn`[{`4esn`}][{0}] Where Null[$`3esn`..][`1esn`..]).#usn8!.#usn8.`7esn` Optional Match ((usn1 :@usn6:_usn3)-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})) Where $usn2 In #usn7 In #usn7 Load Csv With Headers From 11.12e-12 Starts With 1.0 Starts With 12.0 As #usn8 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Load Csv With Headers From 11.12e-12 Starts With 1.0 Starts With 12.0 As `4esn` Fieldterminator \"d_str\" Union Unwind Shortestpath(((`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))[All(_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null)] As #usn8 Create `1esn`=Allshortestpaths((usn2 :@usn5{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})),@usn6=Shortestpath((_usn4 )) Unwind 1000[{12}..][0e0..] As `5esn`"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Delete $_usn3 Is Null,9e1[...9e1][..$`6esn`] Union All Create Unique Shortestpath(((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}))),`7esn`=((`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})<-[_usn4?:`8esn`|:#usn8 *01234567..]->(`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(usn2 {`7esn`:.9e12 Contains 0 Contains $0})) Delete {7} Is Not Null,.1e1 Is Not Null Is Not Null,`2esn`[`7esn`][1000] Union Foreach(`1esn` In $usn1 =~.0e0 =~{`4esn`}| Load Csv From $`5esn` Is Not Null As `3esn` ) Create Unique usn2=Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))),@usn6=Allshortestpaths(((#usn7 {`2esn`:`8esn`[.12e12..],_usn3:usn1 =~0Xa =~0})));"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Remove (`` :`8esn`)-[#usn7? *..00{_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}]->(:`3esn`)-[usn1?:usn1|usn2]->(#usn7 :@usn5).usn1,{12}.`6esn`? Create Unique #usn8=((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) Merge (((`1esn` :#usn8:@usn6{`7esn`:.1e-1 Contains .12e-12,`2esn`:.1e1 Ends With #usn7 Ends With {#usn7}})-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5)-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5))) On Match Set Allshortestpaths((:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})).@usn6! =12 Is Not Null Is Not Null On Create Set Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})).`5esn`!._usn3!._usn3? =$`1esn` Ends With 1000,(`8esn` :usn1)<-[usn2 *7]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})-[ *01{usn1:false[..usn2][..999]}]-(_usn3 ).#usn7!.`` =4.9e12 Ends With $@usn6,usn2 =10.12e12[.0e0] Union All Start _usn3=Rel:`8esn`(usn1={#usn7}) ,@usn6=Rel:usn1({usn2}) Create `5esn`=Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))),((_usn3 {@usn6:{0} In {`1esn`}})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->(`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999})) Create `7esn`=(((:`1esn`:``{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[`8esn`? *1000..{usn2:0X7[#usn7..][$@usn5..]}]->(`2esn` {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})<-[?:usn1|usn2{#usn8:2.9e1[2.12..1.9e0],#usn8:@usn6[true..]}]-(:@usn6:_usn3{``:{@usn5}[10.12e12..]}))),((#usn8 :usn2)-[``? *0Xa..12{@usn5:01 Ends With .0e0 Ends With 7.0e-0,_usn3:0.0[00..][0xabc..]}]-(usn2 :`2esn`:`4esn`{`7esn`:@usn5 =~$#usn7 =~{usn1}})) Union All Merge _usn3=Shortestpath(((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))) On Create Set @usn5 ={``}[$usn2..00][{_usn3}..123.654],_usn4 =Reduce(`3esn`=`7esn`[1.9e0..5.9e-12][9e0..@usn5],`` In `7esn` =~#usn8 =~\"d_str\"|{_usn3}[{0}...9e-1][9e-1...0e0])[Case false Contains {`7esn`} When `3esn` Is Null Then `1esn` Is Not Null Is Not Null Else .9e-1 Is Null Is Null End..][Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999})..],{@usn5:`2esn`}.``! =\"d_str\" Starts With `` Load Csv From 1e-1[$`5esn`][9e12] As `2esn` Create Unique `3esn`=(_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null});"), + octest_legacy:ct_string("Cypher 1000.999 With $123456789[{usn1}][.12e-12] As `3esn`,1.9e0 =~.0e0 =~0X7 As #usn7,9e1 Ends With 9e12 Ends With 0x0 As #usn8 Order By $@usn5 Is Null Is Null Ascending,`1esn` Is Not Null Is Not Null Desc Limit {`8esn`} Ends With true Ends With {`3esn`} Where $usn1[9e1][{999}] Unwind @usn5[#usn7..] As usn1 Create ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})),`6esn`=(usn1 :#usn8:@usn6) Union All Delete [usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]][`5esn`(Distinct $@usn5[`8esn`][12e12])..][``(Distinct $1000 Is Null,1e-1[$`4esn`])..],$`4esn` Is Null Is Null Create Unique ((:@usn5{`1esn`:$999 =~0e0 =~0X7})<-[usn2:_usn3 *0xabc..12]-(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]})<-[{usn1:$_usn3 Starts With 010}]-(_usn3 :usn1)),(usn2 :@usn5{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}) Detach Delete `7esn`[1.9e0..5.9e-12][9e0..@usn5];"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On()-[`5esn`:`1esn`]-()Assert Exists(Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where 3.9e-1 Starts With .9e0 Starts With {#usn7}).@usn6!);"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Foreach(`` In Case Count(*) =~01234567 =~.1e-1 When {123456789} Starts With $_usn4 Starts With 0x0 Then .9e-12[usn2] When {`8esn`}[@usn5][$`2esn`] Then 00[$``] End[..Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 999[..$@usn5][..``])][..Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End]| Remove Reduce(`6esn`=$999 =~0x0,@usn6 In 9e12[..usn2][.._usn3]|.9e1 Is Null Is Null).`2esn`,Reduce(@usn5={`3esn`}[01234567][{#usn7}],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|0e0 =~{12} =~{1000}).#usn7!)"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Unwind .9e12 Is Not Null Is Not Null As _usn3 Merge Allshortestpaths(((`4esn` :#usn7:`8esn`)<-[:`8esn`|:#usn8{_usn4:$#usn7 Ends With {`5esn`} Ends With 01}]-({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[usn1:#usn7|:@usn5 *999..123456789]->(`5esn` :``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})))"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On()-[usn1:`6esn`]-()Assert Exists(Extract(`6esn` In 010[{`1esn`}..] Where {`4esn`}[00..]|`6esn` =~999 =~$999).`3esn`?);"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Load Csv From 8.1e1['s_str'..] As #usn7 Fieldterminator 's_str' Remove Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where `6esn` Ends With 1e1 Ends With $#usn7).usn2 Unwind Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null)[#usn7(`1esn`[..$1000])..][Reduce(`5esn`=$@usn5 =~{`3esn`},`1esn` In $12 In {usn2}|$`5esn` Ends With 's_str' Ends With $`6esn`)..] As `4esn` Union Unwind 0.0[$`4esn`] As `8esn`"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Using Periodic Commit 07 Load Csv With Headers From 12 Ends With 12e12 As usn1 Fieldterminator \"d_str\" Foreach(#usn7 In Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}])| Unwind 1e1 =~{@usn5} =~`7esn` As #usn8) Return Distinct [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,$`7esn` In $`4esn` As `8esn`,Extract(`1esn` In $12 In {usn2} Where 2.9e1 =~Count(*) =~{123456789})[{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}..][123.654..] Order By $`6esn`[@usn6...9e-12] Asc,9e-12 Starts With {1000} Desc Skip 9e0 Ends With {7};"), + octest_legacy:ct_string("Cypher 999.123456789 Optional Match ((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})) Using Index usn1:#usn8(``) Remove Case {0}[.0e-0][$`2esn`] When Count(*)[$7] Then $12 Ends With {_usn4} Ends With $`8esn` End.`6esn`,Shortestpath(((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))).``?,None(`2esn` In $@usn5 Is Not Null Is Not Null Where `6esn`[3.9e-1..`8esn`][12.0..0.0]).`7esn`! Create `6esn`=Shortestpath((@usn5 :_usn4:`2esn`{@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})),`2esn`=Shortestpath(((`1esn` :`7esn`{usn1:3.9e-1 Starts With .9e0 Starts With {#usn7}})<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]}))) Union Create Unique _usn4=((:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)),#usn8=(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]}) Unwind {7} Is Not Null As _usn3 Remove {``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}._usn3?;"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Merge ``=((@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})-[@usn5:`6esn` *..00]->(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) On Create Set @usn5+=Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On()-[@usn5:usn2]-()Assert Exists({_usn4:{7} Starts With 0x0 Starts With 9e1,#usn8:{@usn6} In 9e12}.`1esn`!)"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Drop Constraint On()-[`1esn`:@usn5]->()Assert Exists(Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where 9e-1 Is Not Null).`3esn`?);"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Drop Constraint On(`6esn`:_usn3)Assert Allshortestpaths((`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[:`7esn`|usn1 *7]-(`8esn` :`5esn`:`7esn`{usn1:{``} Contains 0.0 Contains `4esn`})-[? *1000..{`1esn`:{`1esn`} Is Null}]->(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})).`8esn`? Is Unique;"), + octest_legacy:ct_string("Profile Match `3esn`=((_usn4 :_usn4:`2esn`{`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[_usn4]-(#usn8 )) Using Join On ``,`4esn`,_usn4 Unwind .12e-12[@usn6..'s_str'] As `7esn` Return Distinct 0xabc[..Count(*)][..$`5esn`],{12} Ends With 1e1 As `8esn`,{`4esn`} In 1000 In {@usn5} Order By {7} Ends With 999 Asc,_usn3 =~{`4esn`} Desc Skip [`1esn` In $12 In {usn2} Where 12e-12 Starts With $`7esn`][{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}..] Union All Load Csv From Reduce(`6esn`=$`5esn`[$_usn3][$12],`2esn` In $@usn5 Is Not Null Is Not Null|1.9e0 In $@usn6 In $_usn3)[{``:.12e-12 Is Null}..][Case When $1000 Starts With {@usn6} Starts With $@usn5 Then `2esn` When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else 12[4.9e12..] End..] As #usn7 Create (((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})));"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Optional Match #usn7=Shortestpath((`5esn` :``{_usn3:$_usn4[..$999],`7esn`:0X0123456789ABCDEF Ends With {1000}})-[*{@usn5:`6esn` =~999 =~$999}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})),#usn8=(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[`1esn`:`4esn`|:`2esn`{`5esn`:$_usn3[usn2..][usn1..]}]->(:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`}) Using Join On `1esn`,@usn6,usn1 Where 9e-12 Is Not Null Is Not Null Start _usn4=Node:@usn6(#usn8='s_str') ,`7esn`=Relationship:usn2(`8esn`=\"d_str\")Where 8.1e1[.1e1..][`4esn`..] Merge Allshortestpaths((:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})-[?:@usn5|:#usn7 *0]->(`4esn` :`8esn`{`4esn`:4.9e12 Starts With {``},`8esn`:$12 Ends With {_usn4} Ends With $`8esn`})-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12})) On Match Set `1esn` ={`2esn`}[0x0..9e0],Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]).`8esn`? ={123456789} Contains $#usn7 Contains {#usn8},`5esn` =Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End Ends With Reduce(``={`3esn`}[$#usn8..],usn1 In {#usn7} =~.12e12 =~9e0|2.9e1[{`2esn`}]) Ends With [`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}|$`` =~$_usn3] Union All Merge Allshortestpaths((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})) Merge `7esn`=Shortestpath(((`6esn` :``)<-[`8esn`*]-(#usn8 )-[`3esn`?:`1esn`|:`1esn`]-(@usn6 :`4esn`:usn2))) On Match Set Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where .0e-0[..``][..$7]).``!.`8esn`? ={1000} Starts With {`1esn`},``:`1esn`:``,(#usn7 {usn1:2.12[{12}]})-[:usn1|usn2]->(`8esn` :`5esn`:`7esn`).@usn6! =false =~{`8esn`} =~00 On Match Set `7esn`+=Reduce(_usn3=5.9e-12 Is Null Is Null,_usn3 In `8esn`[_usn4]|2.9e1[Count ( * )..]) Is Null,#usn8 =0e0 Ends With .9e0 Ends With 01234567 Unwind `6esn`[0X0123456789ABCDEF..][`8esn`..] As _usn4"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Delete Count(*) Is Not Null Is Not Null,All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3]) In Allshortestpaths((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]}))) In (`1esn` :`2esn`:`4esn`)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[#usn8]->(`2esn` :_usn3{`6esn`:_usn4[{``}..{`6esn`}][$7..$_usn3],`6esn`:$`4esn` Ends With {999}})"), + octest_legacy:ct_string("Cypher 999.123456789 Create Constraint On(#usn7:usn1)Assert Exists(None(#usn8 In 07[..$`5esn`] Where .1e1 Ends With #usn7 Ends With {#usn7}).`1esn`)"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Create Constraint On(`3esn`:`6esn`)Assert _usn3(Distinct .12e12 Is Not Null,.9e0[07..][4.9e12..]).`2esn`? Is Unique;"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Start ``=Node:_usn3({0}) ,usn2=Rel:``(_usn3='s_str')Where {1000}[`2esn`...0e-0][9e-1..0X7]"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Remove Extract(`7esn` In 0.12 Is Not Null Where {`1esn`}[{usn2}]|9e1 Ends With `7esn` Ends With 2.12).`2esn`?.`1esn`.usn2!,Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where {`3esn`} =~$@usn5 =~`2esn`|$1000 Starts With {@usn6} Starts With $@usn5).`3esn`?.`3esn`?.`4esn`? Delete 1e1[$_usn3],9e-1[0],$#usn8 Starts With 9.1e-1 Starts With {#usn7} Detach Delete $@usn6[.1e-1][9e12];"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Drop Constraint On(`2esn`:``)Assert Exists(Case When .9e1 In .1e-1 Then $7 =~01234567 =~12.0 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else $`7esn` In $@usn5 End.#usn8)"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 With *,\"d_str\" Starts With $`7esn` Starts With 999 As `3esn`,5.9e-12[\"d_str\"..][{`6esn`}..] As #usn7 Skip `2esn`[`7esn`][1000] Limit (@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[`8esn`?:_usn3 *12{usn1:#usn7[.9e0..`3esn`][{`6esn`}..1000],_usn4:$usn2 In #usn7 In #usn7}]-(_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(usn2 :`2esn`:`4esn`)[..Reduce(`2esn`={1000}[..{usn1}][..1e-1],_usn3 In `8esn`[_usn4]|Count(*)[$7])][..{_usn3}] Where .12e-12 Is Null Optional Match Shortestpath(((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})))),_usn3=Allshortestpaths((((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999})<-[``?:@usn5|:#usn7 *..00{#usn8:$`8esn`[...1e-1]}]->(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]})))) Using Index `3esn`:`8esn`(`5esn`) Where .12e12 Ends With 07 Ends With 3.9e-1 Detach Delete .9e-1 Is Not Null Is Not Null,$_usn3[.0e-0..999],0X0123456789ABCDEF Ends With {1000} Union All Create Unique `4esn`=((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})<-[ *01234567..{usn1:{12} Contains `8esn` Contains @usn5}]->(usn1 :@usn6:_usn3)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})),(:`3esn`{@usn5:9e12[..usn2][.._usn3]})<-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]->(:`5esn`:`7esn`{`1esn`:{1000}[..`5esn`][..9e12]})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1})"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Create `5esn`=Shortestpath((((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})))) Foreach(`2esn` In $#usn7 Ends With 999 Ends With {12}| Start `8esn`=Node( {`4esn`}) ,`7esn`=Rel:``('s_str')) Union Merge `4esn`=((`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[?$999]-(`8esn` :@usn6:_usn3)<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})) Start _usn3=Relationship:usn2(`8esn`=\"d_str\") Where $1000[..0e-0][..010] Create Unique (`1esn` {usn2:.9e-12[.12e12..][0Xa..]}),@usn6=Allshortestpaths(((`5esn` :_usn3)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}))) Union Delete {usn2}[9e-1],{`6esn`}[@usn5..{@usn6}] Merge Allshortestpaths(((`4esn` :@usn5)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[:`3esn`|`3esn` *1000..]->(`1esn` :`7esn`))) On Match Set usn2+=[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]][None(#usn7 In .0e-0 In 12 Where $12 In {usn2})..{`1esn`:{0} Is Null Is Null}][Extract(#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12|{`5esn`} Is Not Null Is Not Null)..Reduce(`7esn`=`7esn` Ends With 10.12e12,usn2 In $`5esn`[{`4esn`}][{0}]|@usn5[9e-1..{`1esn`}])] With (usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..]) As `2esn`,0.0[..9e1][..2.12] As `` Order By 01234567 Ends With .0e0 Ends With 12e12 Asc,{@usn6:{7} Starts With 0x0 Starts With 9e1}[Reduce(`5esn`=$999 Ends With `2esn` Ends With 12.0,_usn3 In `8esn`[_usn4]|_usn3 =~{7} =~123.654)..None(usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-1[1.9e0])] Ascending,$`6esn` Starts With 0.0 Desc Skip $12[{_usn3}..] Limit 9e0[{7}...0e-0][Null..@usn5] Where 12e12 Contains {0};"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Unwind Allshortestpaths((`` $999)<-[? *0X0123456789ABCDEF]->(`1esn` :_usn3)<-[#usn8?:#usn7|:@usn5]-(@usn5 :#usn7:`8esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true}))[All(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Is Null Is Null)..][Allshortestpaths((({@usn6:01 Contains 9e-12 Contains $7})))..] As @usn5 Merge Allshortestpaths(((@usn6 :`5esn`:`7esn`)-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)-[`3esn`:`6esn` *..0x0]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}))) On Match Set `2esn`+=9e1[0.0],#usn8+=.12e-12[@usn6..'s_str'],{`6esn`:4.9e12 Is Not Null Is Not Null,_usn4:`4esn`[9e-12..true]}.#usn8._usn3? =Shortestpath((((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))))[None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0.0[`7esn`])..Single(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])][`5esn`(Distinct .9e1[$`1esn`..][$``..])..Case When 12e12 Ends With `5esn` Ends With .0e0 Then .9e0 In 8.1e1 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else .9e1 Ends With 0x0 End] On Create Set @usn6+=00 =~`4esn` =~.9e-12,`3esn` =$123456789,[usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF].`5esn`! =.0e-0 Ends With $`2esn` Ends With `5esn`;"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On(#usn7:_usn4)Assert Case When {`8esn`} Starts With .9e-1 Starts With 1000 Then $`6esn`[$_usn3..{1000}] When 3.9e-1 Starts With .9e0 Starts With {#usn7} Then .0e-0 Ends With $`2esn` Ends With `5esn` Else _usn4[$_usn4] End.usn2! Is Unique"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Drop Constraint On()-[`2esn`:`3esn`]->()Assert Exists(Reduce(#usn7=`1esn`[{@usn5}..][{_usn4}..],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|{usn2} Is Not Null Is Not Null).usn1)"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` With $12 Contains false Contains {`1esn`},None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null),[`6esn` In 010[{`1esn`}..] Where 7 Starts With 9e-12|Null[#usn7..][9.1e-1..]][None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`})..][`1esn`(@usn5[9e-1..{`1esn`}],$`4esn`[$@usn6...12e12])..] As `4esn` Limit {usn1}[`7esn`..Count(*)] Where $@usn6 Starts With 0xabc Starts With {`7esn`} Detach Delete $`3esn`[..{`5esn`}] Merge `4esn`=((`7esn` {@usn5:Count ( * )[_usn4..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})) On Match Set #usn7 =``[$7..$_usn4] Union Merge usn1=Allshortestpaths(((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) On Create Set `5esn`+=Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] Detach Delete Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})[Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})<-[`5esn`?:`7esn`|usn1{@usn5:9e0[`3esn`][0]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )))..][Case When $#usn7 Contains 3.9e-1 Then .12e12 Starts With 5.9e-12 Starts With `4esn` When {1000}[`2esn`...0e-0][9e-1..0X7] Then 010[...12e-12] End..];"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Create Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))),@usn6=((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})) Foreach(`8esn` In {1000}[`2esn`...0e-0][9e-1..0X7]| Load Csv From usn2(Distinct $_usn3 =~'s_str' =~12) In (`` :usn1)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}) In Case When {_usn4}[{`6esn`}] Then 12e12 Is Not Null Is Not Null When #usn7 Is Null Is Null Then {`8esn`} Starts With .9e-1 Starts With 1000 End As usn2 ) Load Csv With Headers From $0[.9e12..] As `1esn` ;"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Load Csv From $`5esn` Contains .9e12 As _usn4 ;"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Drop Constraint On(`3esn`:usn2)Assert Case When {usn2} Is Not Null Is Not Null Then false Contains {`7esn`} When $12[$`6esn`..][01..] Then .0e-0[..``][..$7] End.#usn8.@usn6? Is Unique"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Create `4esn`=((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})<-[ *01234567..{usn1:{12} Contains `8esn` Contains @usn5}]->(usn1 :@usn6:_usn3)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})),(:`3esn`{@usn5:9e12[..usn2][.._usn3]})<-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]->(:`5esn`:`7esn`{`1esn`:{1000}[..`5esn`][..9e12]})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1}) Detach Delete Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,{``:01234567[10.12e12][0Xa]} Is Null Is Null Union Return Distinct _usn3($0 Ends With 9e-12 Ends With $_usn4) Is Null Is Null As `4esn`,1.9e0 In 2.12 As usn2,$#usn7[$``..999][$usn2..$usn2] Order By Any(`1esn` In $12 In {usn2} Where @usn6[true..]) Contains Any(usn2 In .12e-12 Ends With `2esn` Where 9e12 Ends With 9e-1 Ends With 9e1) Contains (`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3) Desc,`1esn`({12} Starts With $`` Starts With 0X0123456789ABCDEF,3.9e-1 Contains $@usn5)[..Case 01 =~{_usn3} =~01 When .12e12[..7] Then $_usn4[..$999] End] Desc,01234567 Ends With .0e0 Ends With 12e12 Ascending Skip 1e-1 =~$`7esn` =~1e1 Limit $999 =~0x0 Create Allshortestpaths(((:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))),((usn2 :`2esn`:`4esn`)<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]->(_usn4 :`6esn`$_usn3)-[usn2?*]->(@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})) Create Allshortestpaths((:`8esn`$@usn5));"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Start `3esn`=Relationship:usn2({usn2}) ,`1esn`=Rel:`5esn`(@usn5=\"d_str\")Where {`8esn`} Contains $@usn5 Foreach(`8esn` In $`5esn` Starts With 4.9e12 Starts With 0e-0| Create Unique `6esn`=(({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[_usn4? *999..123456789{@usn6:$`4esn` Ends With .12e12 Ends With 123.654}]->(#usn8 {usn2:$0 Ends With 9e-12 Ends With $_usn4,`5esn`:0e-0[{@usn6}]})-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]-(`1esn` :_usn4:`2esn`))) Foreach(#usn8 In 9e12 Is Null| Unwind Allshortestpaths(((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}))) Is Null Is Null As usn2 Remove Filter(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12).`3esn`?.`7esn`?,Allshortestpaths((((`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})-[`8esn`:`4esn`|:`2esn`]->(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})))).`3esn`) Union All Create @usn5=Shortestpath(((:#usn8:@usn6{@usn6:$_usn4 Ends With {#usn8},_usn4:0e0[12.0][{#usn7}]})-[:#usn8|:``*{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]->(:``{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Start ``=Node:`7esn`({#usn7}) Where 01234567[1000..][$`8esn`..];"), + octest_legacy:ct_string("Cypher 1000.999 Using Periodic Commit 7 Load Csv From 0xabc[01234567][.12e-12] As `2esn` ;"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Create Constraint On(#usn8:#usn8)Assert Exists(Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {0}[.1e-1..][_usn4..]|0e-0[..$usn2])._usn4!);"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Create Constraint On(@usn5:`8esn`)Assert Exists(usn1(.9e-12[.12e12..][0Xa..],$`6esn` =~$#usn7 =~$`4esn`).`7esn`?)"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Detach Delete Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])[..(#usn7 {`5esn`:.12e12 Is Not Null,@usn5:.12e12 Is Not Null})-[#usn8:`7esn`|usn1 *0X7..0Xa{usn1:_usn4 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})][..Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`)] Start `5esn`=Node:`8esn`('s_str') Union Start `7esn`=Rel( {_usn3}) With Distinct *,0 Contains {`2esn`} Union All Load Csv From Single(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Is Not Null As `3esn` Merge `6esn`=(usn1 :#usn8:@usn6) On Create Set `6esn`+=$#usn7 On Create Set `8esn` ={#usn8} Is Not Null Is Not Null,@usn5+={`3esn`} Is Not Null Is Not Null,#usn8:`` Detach Delete Single(_usn3 In `8esn`[_usn4] Where `3esn` Contains `2esn` Contains {_usn4}) In Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`) In {7},$usn2 Ends With 9e12 Ends With Count ( * ),$`5esn` =~Count(*) =~1.9e0"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Load Csv With Headers From 7.0e-0 Is Null Is Null As _usn3 Union All Remove {`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true}.#usn7!,@usn6:`1esn`:``;"), + octest_legacy:ct_string("Profile Create Unique (_usn4 {#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12})"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Create Shortestpath(((`7esn` {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))),`5esn`=Shortestpath((((#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})<-[? *1000..]->({usn1:true In 0.0,@usn5:{`1esn`} Is Null})<-[`4esn`?:`4esn`|:`2esn`]->(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})))) Create Unique `4esn`=((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})<-[ *01234567..{usn1:{12} Contains `8esn` Contains @usn5}]->(usn1 :@usn6:_usn3)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})),(:`3esn`{@usn5:9e12[..usn2][.._usn3]})<-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]->(:`5esn`:`7esn`{`1esn`:{1000}[..`5esn`][..9e12]})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1}) Union Create (#usn8 :_usn4:`2esn`) Delete Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {12} Ends With $`3esn` Ends With 0xabc)[Case When {0} Is Null Is Null Then $``[1.0..][_usn3..] Else 999[..$@usn5][..``] End..],Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null,$0 =~{@usn5} =~1e1 Start _usn4=Node:@usn6(#usn8='s_str') Union Start `4esn`=Node:usn2(usn1={_usn3}) ,`4esn`=Node:@usn6(\"d_str\")"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Match ``=Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))),`7esn`=Shortestpath(((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})))) Where 0X0123456789ABCDEF[1e1..]"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Drop Constraint On(@usn6:@usn5)Assert @usn5(Count ( * ) Starts With 0.12,$123456789).#usn8 Is Unique"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Start #usn7=Node( {``}) ,`6esn`=Node:@usn6(#usn8='s_str')Where {_usn3} In $#usn8 In $12 Unwind .12e-12 Ends With `2esn` As `` Start `4esn`=Node(0x0) Union With Distinct *,@usn6[Reduce(`5esn`=_usn4['s_str'][8.1e1],_usn3 In `8esn`[_usn4]|$_usn3 =~'s_str' =~12)..][(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[`7esn`?]-(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})..] As usn1 Skip {`6esn`} In .0e0 In $0 Limit (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])] Where 1.0 In {usn1} Union Match Shortestpath((`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[:`7esn`|usn1 *7]-(`8esn` :`5esn`:`7esn`{usn1:{``} Contains 0.0 Contains `4esn`})-[? *1000..{`1esn`:{`1esn`} Is Null}]->(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})),(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}}) Using Index `7esn`:``(`8esn`) Where .9e12[6.0e0..][@usn5..] Delete $usn1[7.0e-0..][{123456789}..],{usn1}[`7esn`..Count(*)] Foreach(`8esn` In (`1esn` :@usn6:_usn3{#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12})<-[@usn5?:`5esn` *01{#usn8:00[Null..usn2],@usn6:0.12 =~2.9e1 =~9e1}]-({@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})[Filter(_usn3 In `8esn`[_usn4] Where 01234567 =~12e12 =~.0e-0)..][{`7esn`:.9e1[$`1esn`..][$``..]}..]| Remove (#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(`7esn` {@usn5:Count ( * )[_usn4..]}).usn2?);"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Create Constraint On(_usn3:`7esn`)Assert Reduce(`6esn`={`8esn`}[..999][.._usn3],`3esn` In 8.1e1 Contains .9e-1 Contains false|{123456789} Ends With 11.12e-12 Ends With 00).`8esn`!.#usn7!.``! Is Unique;"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Match usn2=Allshortestpaths(((@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0}))) Using Scan `1esn`:`8esn` Where {usn1} Is Not Null Is Not Null Remove Allshortestpaths((((@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})-[:`3esn`|`3esn`]-(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(:`4esn`:usn2)))).`6esn`?;"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Load Csv From Shortestpath((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))[[`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`}[@usn5..{@usn6}]|{1000}[..`5esn`][..9e12]]..][{_usn4:`8esn`[.12e12..]}..] As usn1 Fieldterminator \"d_str\" Create Unique #usn8=Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))),`2esn`=(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1}) Merge Allshortestpaths(({`4esn`:{7}[0x0][1e1]})) On Create Set #usn8 =Null In {7} Union Remove ({`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}).#usn8,None(_usn3 In `8esn`[_usn4] Where $`4esn`[usn2..]).@usn6?.`1esn` Union All Foreach(@usn6 In {usn2} Contains {0}| Create Unique Shortestpath(((:usn1{#usn8:2.9e1[{`2esn`}]})<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``))),((_usn3 {`3esn`:`3esn` Is Null,`1esn`:$`8esn`[0x0][.9e0]}))) With Distinct *,$`5esn`[{@usn6}..{`7esn`}],.9e-12[.12e12..][0Xa..] As _usn3 Order By {12}[true..][7..] Ascending,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Asc,({#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]})<-[`8esn`*]-(#usn8 )[..Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn`[0X0123456789ABCDEF..][`8esn`..]|$_usn3 =~'s_str' =~12)][..`1esn`(Distinct .9e1[$`1esn`..][$``..])] Ascending Skip {#usn7} Is Not Null Match ``=Shortestpath(({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})),#usn7=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 ))) Using Join On usn1,`1esn`,_usn4 Using Join On `5esn`,usn1,`7esn`"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Merge @usn6=((`1esn` :`8esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})) On Create Set {usn1:{123456789} Starts With $_usn4 Starts With 0x0,`3esn`:$`4esn` Is Null Is Null}.`7esn`?.`7esn`?.#usn7 =1.9e0 In 2.12,Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where {0}[.1e-1..][_usn4..]).`6esn`.usn1.`7esn`? =12e-12 Ends With $999 Ends With ``,Extract(#usn8 In 07[..$`5esn`] Where 123.654 Ends With {1000} Ends With 9e12|$usn1[..$999][..0e0])._usn3! ={1000} Starts With {`1esn`} On Match Set `7esn`+=Reduce(_usn3=5.9e-12 Is Null Is Null,_usn3 In `8esn`[_usn4]|2.9e1[Count ( * )..]) Is Null,#usn8 =0e0 Ends With .9e0 Ends With 01234567 Union All Start `8esn`=Relationship:`7esn`({`4esn`}) Where 's_str'[`2esn`][12.0] Load Csv From {_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}[Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)][[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1]] As `5esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Delete $`8esn` Contains _usn4,{usn2} Contains {0} Unwind {@usn6} =~Count ( * ) =~1.0 As `4esn` Create Allshortestpaths((_usn3 {#usn7:$999 =~false =~{`8esn`}})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})),Shortestpath(((`1esn` :`5esn`:`7esn`))) Union With Distinct 0[..12][..{`8esn`}] As _usn3,{`2esn`} Contains 0xabc Order By ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[_usn3?:@usn5|:#usn7]->(`` :``)-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Starts With Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`) Ascending,`3esn` =~$#usn7 Desc Limit Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where $usn2[..$999][..#usn8])[Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`)..] Union With {`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]} In Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}))) In Extract(_usn3 In `8esn`[_usn4] Where 0[..{#usn7}][..$_usn3]|0x0 Ends With #usn8 Ends With .9e-1) As `` Order By `4esn` =~_usn4 =~0e-0 Ascending Limit None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Starts With {@usn5:999 Ends With {#usn8},_usn4:Null In {7}} Where 0e0 =~{12} =~{1000} Remove None(#usn8 In 07[..$`5esn`] Where 0.0[$`4esn`])._usn3?.``._usn3! Remove {usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}.#usn7?,All(`` In `7esn` =~#usn8 =~\"d_str\" Where {12} Starts With $`` Starts With 0X0123456789ABCDEF)._usn4?.`6esn`"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Create Constraint On(`3esn`:`4esn`)Assert Exists([usn1 In $@usn6 Is Null Is Null].@usn6!);"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Return Distinct *,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) As #usn8,Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``}) In (_usn4 :_usn3)<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-({#usn7:12e12[.9e12..07]}) In @usn5({1000}[0..]) Unwind .1e-1 Is Not Null As `3esn`"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On()-[`2esn`:`1esn`]-()Assert Exists(Single(#usn7 In .0e-0 In 12 Where {0}[.0e-0][$`2esn`]).`1esn`.@usn6?.@usn6!);"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Create Constraint On(@usn5:_usn4)Assert Exists((@usn6 )-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[`3esn`?:usn2]-(`8esn` {`6esn`:12[@usn6][{`2esn`}]}).usn2.`7esn`.#usn7)"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` With Distinct Allshortestpaths((({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)))[Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0])..][Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End..] As #usn8,{12} Ends With 1e1 As `8esn` Skip {@usn6:$12 Is Null} In (`4esn` {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}) Where @usn6 Ends With $`2esn` Ends With 1.0 With {usn2} In false,{_usn4} In 0X7 In 0e0 As `2esn` Order By {#usn8} In {12} In .9e12 Asc,9e0[`1esn`..0e-0][00..`1esn`] Ascending With $12 As _usn4 Order By 123.654 Is Not Null Is Not Null Descending,(`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End] Asc,Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1) Starts With Case 7.0e-0[$`6esn`..] When \"d_str\"[0x0..{@usn6}][$@usn5..0] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else $`5esn`[{`4esn`}][{0}] End Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`) Asc Skip true In 0.0 Where `3esn` =~$#usn7 Union All Remove Reduce(`3esn`={usn2} Is Not Null Is Not Null,`7esn` In 0.12 Is Not Null|$@usn5 =~{`3esn`})._usn4! Union Merge Shortestpath((`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[:`1esn`|:`1esn` *0{`8esn`:2.12[{12}],`7esn`:$@usn6[``..][3.9e-1..]}]->(:`2esn`:`4esn`{usn2:$@usn6[.1e-1][9e12],`5esn`:12e12 Is Not Null Is Not Null})-[`5esn`?:#usn7|:@usn5{usn2:#usn7[123.654][{12}]}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})) On Create Set _usn3+=Case {`4esn`} Ends With Count(*) When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] When $#usn7 Contains 3.9e-1 Then 123.654[10.12e12..$12][6.0e0..{#usn8}] Else $usn1[0e0...9e-12] End[Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))..][Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})..],#usn7+=[`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|01[$`1esn`..$`7esn`][{usn2}..12.0]][(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]-(:_usn3{_usn3:010[..9e-1][..0X7]})..][[`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 0X0123456789ABCDEF Is Not Null Is Not Null]..],Case When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else `6esn`[3.9e-1..`8esn`][12.0..0.0] End.`7esn`?.`5esn`?.#usn8! =7.0e-0 Is Not Null Create `1esn`=Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))),usn2=((:`7esn`{`4esn`:@usn5 =~$#usn7 =~{usn1}})-[`8esn`{#usn8:.12e12[..7]}]-({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`1esn`? *0{@usn6:true Is Null}]-(_usn4 ))"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Load Csv From 12[11.12e-12..][`4esn`..] As @usn6 Union Remove Reduce(`3esn`={0} Is Not Null,`` In `7esn` =~#usn8 =~\"d_str\"|01234567[\"d_str\"..][$`4esn`..])._usn4.@usn6 Delete 2.9e1 Ends With 12e12 Ends With .9e12,{123456789} Contains $0,$12 Is Null Unwind [_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12] As _usn3 Union All Create `5esn`=((`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})-[ *..123456789{@usn5:1e-1[$`4esn`]}]->(#usn7 {usn1:2.12[{12}]})<-[`3esn`?*{`7esn`:.9e12 Contains 0 Contains $0}]->(:@usn5{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]})),Shortestpath((((`4esn` :`3esn`)<-[@usn5?*..]->(:_usn3{_usn3:010[..9e-1][..0X7]})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)))) Return Distinct $`` Ends With #usn7 Ends With _usn3 As _usn3,{@usn6:2.9e1[{`2esn`}],usn1:01 Contains 9e-12 Contains $7} Is Null Is Null As @usn6 Order By `6esn`[..$0][..{7}] Asc,Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null) In `4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`) Ascending,{123456789} =~@usn5 Asc Limit Single(_usn3 In `8esn`[_usn4] Where `3esn` Contains `2esn` Contains {_usn4}) In Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`) In {7} Create Unique Shortestpath(((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}))),usn2=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})))"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Load Csv From `1esn`[..$1000] As #usn8 Foreach(@usn6 In 9e1 =~$`8esn` =~10.12e12| Load Csv From Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]) Is Not Null Is Not Null As #usn8 ) Remove `5esn`:`6esn`,[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01|_usn4 Ends With {`8esn`} Ends With usn2].usn1.`7esn`.@usn6 Union All With Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,999 Starts With 7.0e-0 Starts With true As _usn3 Order By 2.12[010..][{999}..] Descending Limit Shortestpath((:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})) Starts With {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF} Starts With Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})) Start `2esn`=Node:`8esn`('s_str') ,`1esn`=Rel:``({`4esn`}) With Distinct *,Any(usn2 In $`5esn`[{`4esn`}][{0}] Where .1e-1[2.9e1..][$`7esn`..]) Contains Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Contains Allshortestpaths((_usn3 :`4esn`:usn2)),9e1[...9e1][..$`6esn`] As `4esn`;"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Remove Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]).`1esn`.#usn8!,Allshortestpaths(((`4esn` :`8esn`{12})))._usn3! Load Csv With Headers From usn1 =~false =~{999} As @usn6 Union All Delete $12[10.12e12][.1e1],{#usn7}[.9e-12][4.9e12] Start `4esn`=Node:@usn6(\"d_str\") Where $usn2 Is Not Null Is Not Null Remove Case When `2esn` Starts With 010 Starts With `` Then 00[$``] Else @usn6[0x0..][$_usn4..] End.`6esn`,All(usn2 In $`5esn`[{`4esn`}][{0}] Where $`8esn` Is Not Null Is Not Null)._usn4!._usn3?,Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})).`8esn`!;"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Remove Reduce(usn1=false[..usn2][..999],`2esn` In $@usn5 Is Not Null Is Not Null|7.0e-0 Is Not Null).@usn6?;"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Remove Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]).`1esn`.#usn8!,(`6esn` {`3esn`:Count ( * )[_usn4..]})-[#usn8? *0Xa..12]->(`7esn` {#usn8:2.9e1[{`2esn`}]}).#usn8.`3esn`,{usn2:{usn1} In Count ( * ) In 12e12}.`7esn`?.`3esn`! Detach Delete $`6esn`[..01][..{_usn3}],true Contains 0X7 Contains $#usn8 Union Start `2esn`=Rel:`6esn`(`4esn`=\"d_str\") ,`8esn`=Relationship:`8esn`(#usn7='s_str')Where 0e-0 In 0X0123456789ABCDEF In `3esn` Create _usn4=((:@usn5{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null})) Match `7esn`=Allshortestpaths((`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})<-[_usn3? *..123456789{`6esn`:.0e-0[..``][..$7],usn2:{usn2} Ends With {@usn6} Ends With 1000}]-(`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(#usn8 :_usn4:`2esn`{`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})) Using Index ``:@usn5(usn1) Using Scan `1esn`:_usn3 Union Remove (:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[?:`1esn`|:`1esn` *999..123456789]->(_usn3 {`3esn`:`3esn` Is Null,`1esn`:$`8esn`[0x0][.9e0]})-[`6esn`:``|:`7esn` *0{`4esn`:00 Is Not Null Is Not Null}]->(`2esn` {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}).`4esn` Create Unique ``=Shortestpath(((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})-[? *..123456789{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:`7esn`{`5esn`:{`8esn`} Starts With .9e-1 Starts With 1000})<-[_usn3?:`6esn`{_usn4:07[{@usn5}..],usn2:$`4esn` Is Null Is Null}]->(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))),Allshortestpaths((`6esn` :`5esn`:`7esn`)-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 {`2esn`:5.9e-12[0x0..]}))"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Drop Constraint On(#usn8:@usn6)Assert Exists(Reduce(``=`2esn`[`7esn`][1000],usn2 In $`5esn`[{`4esn`}][{0}]|{123456789} Ends With 11.12e-12 Ends With 00).@usn5._usn3.@usn5)"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Using Periodic Commit 1000 Load Csv From {0}[.1e-1..][_usn4..] As `6esn` Fieldterminator \"d_str\";"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Create Constraint On(`5esn`:`4esn`)Assert Reduce(_usn4=1e-1 =~$`7esn` =~1e1,usn2 In .12e-12 Ends With `2esn`|0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}]).usn2! Is Unique"), + octest_legacy:ct_string("Cypher 999.123456789 Drop Constraint On(_usn4:usn1)Assert Exists(Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`6esn`} =~2.12 =~123.654|`6esn` Ends With 1e1 Ends With $#usn7).@usn5!.``!);"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Create (`6esn` :`2esn`:`4esn`{`4esn`:9e-1 Is Not Null,`8esn`:9e0[`7esn`..][#usn8..]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(:_usn4:`2esn`) Foreach(`1esn` In [`1esn` In $12 In {usn2} Where $`8esn` Is Not Null Is Not Null|8.1e1 Contains $@usn6] In All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..]) In Extract(`7esn` In 0.12 Is Not Null Where .12e-12[@usn6..'s_str'])| Create Unique Allshortestpaths(((({#usn7:{7}[0x0][1e1]})<-[{@usn5:0.12 =~`6esn` =~.9e-1}]->({_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[usn2?:`2esn`|`5esn`{``:{#usn7} =~$@usn6 =~$7}]->(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})))) Load Csv From _usn4['s_str'][8.1e1] As `` ) Union Delete 9e0 Is Null,1e-1 Ends With {@usn5} Ends With {usn2} Start `1esn`=Rel:`5esn`(@usn5=\"d_str\") ,usn1=Rel:`7esn`(`8esn`={`3esn`})Where {usn1} In Count ( * ) In 12e12 Start #usn8=Relationship:usn2(usn1={_usn3}) "), + octest_legacy:ct_string("Cypher _usn4=#usn8 Foreach(_usn4 In Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null| Optional Match `2esn`=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))) Using Join On _usn3,usn2 Using Index _usn4:`1esn`(@usn5) Where 0e0 Contains {`2esn`})"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Create Constraint On()-[@usn5:`3esn`]->()Assert Exists(All(#usn7 In .0e-0 In 12 Where 123.654 Ends With {1000} Ends With 9e12).`6esn`.`6esn`?);"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Remove [_usn3 In `8esn`[_usn4] Where 12.0[..Count ( * )][..@usn6]|$#usn7].``.usn1!.#usn8!,Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})).usn2!.`5esn`?,{usn2:.9e1 In .1e-1,usn2:1e-1 Contains 0.0}.`5esn`?.``;"), + octest_legacy:ct_string("Cypher 1000.999 Drop Constraint On(`6esn`:usn1)Assert Exists(Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`3esn`[0e-0]).usn2?.`8esn`);"), + octest_legacy:ct_string("Cypher 1000.999 Remove Allshortestpaths((({`6esn`:3.9e-1[..$1000][..0.12]})-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-(:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00}))).`2esn`.#usn8 Unwind Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End[(`4esn` :#usn7:`8esn`)-[_usn3?:@usn6|:`4esn`{_usn4:$12 Ends With 12.0 Ends With $`4esn`}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2)..][Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1)..] As _usn4 With Distinct *,{7} Ends With 999 As @usn5 Order By 7.0e-0 Ends With 0e0 Ends With 3.9e-1 Asc Skip {`5esn`}[{1000}..] Union Merge `5esn`=((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)) On Match Set usn2+={7} Starts With 0x0 Starts With 9e1,`3esn`:`8esn`,{_usn4:07 Ends With {1000} Ends With 01234567}._usn4?.`1esn`? =$`7esn` Is Null On Create Set `5esn` =({`4esn`:#usn8[\"d_str\"..usn2],`1esn`:12.0[..Count ( * )][..@usn6]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ) =~Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End =~{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Load Csv From $@usn6 Starts With 0xabc Starts With {`7esn`} As usn1 Union All Foreach(`7esn` In .1e-1[$@usn6]| Delete $`8esn` Contains _usn4,{usn2} Contains {0} Start `1esn`=Relationship:_usn4(`5esn`={usn1}) ) Foreach(`` In Any(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0xabc[..{usn1}][..\"d_str\"])[Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 0X0123456789ABCDEF Is Not Null Is Not Null)..None(#usn8 In 07[..$`5esn`] Where 8.1e1 Contains .9e-1 Contains false)][Case {0} Is Not Null Is Not Null When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End..[`` In `7esn` =~#usn8 =~\"d_str\"|$_usn4 Ends With {#usn8}]]| Load Csv From {@usn6:3.9e-1[..$1000][..0.12]}[All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000)] As `3esn` );"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Foreach(usn2 In 0.12 Ends With 7 Ends With 12| Load Csv From $`8esn`[..5.9e-12][..`8esn`] As `` Fieldterminator 's_str') Remove Extract(usn1 In $@usn6 Is Null Is Null|010[...12e-12]).``.usn2?.usn1?,@usn5(`3esn` Contains `2esn` Contains {_usn4},2.9e1 In {``}).#usn8,Shortestpath((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})).`8esn`? Remove [usn1 In $@usn6 Is Null Is Null Where $`1esn`[4.9e12..][_usn3..]|$1000 Is Null].`8esn`?,Reduce(`3esn`=.1e1[{@usn6}][true],_usn3 In `8esn`[_usn4]|.9e-1 Contains .9e0 Contains ``).`5esn`.usn2?.`7esn` Union All Unwind Allshortestpaths((_usn4 {`3esn`:.0e-0 In 12})) Is Null Is Null As `4esn` Remove {#usn7:1e-1[$`4esn`]}.`1esn`!.usn1?.`4esn`!,[`6esn` In 010[{`1esn`}..] Where $usn1[..$999][..0e0]|true[1.9e0..]].@usn6! With Distinct * Where $123456789[{usn1}][.12e-12];"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Unwind Shortestpath((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5))[Allshortestpaths((#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}))] As `1esn` Union All Load Csv With Headers From $`1esn`[9e0..$12] As #usn7 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Remove Shortestpath(((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}))).`5esn`?._usn3?,$7.@usn6.`1esn` Merge `2esn`=Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) On Create Set Case 0xabc[..Count(*)][..$`5esn`] When `6esn`[0X0123456789ABCDEF..][`8esn`..] Then `2esn`[`7esn`][1000] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} Else 12e12[{`4esn`}..`4esn`][999..{@usn6}] End.``!.#usn8! =Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})),(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})-[_usn4:_usn3{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]}).#usn7! =8.1e1 Contains .9e-1 Contains false,`5esn` =false Is Not Null Is Not Null With 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Order By $1000 Is Null Descending,7.0e-0 Ends With {123456789} Ends With @usn6 Descending Limit 1000[{`1esn`}..][$`3esn`..]"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Delete Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]) Is Null,Reduce(`5esn`=$7 =~01234567 =~12.0,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{`8esn`}[..999][.._usn3])[{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}..],Any(usn2 In $`5esn`[{`4esn`}][{0}] Where .1e-1[2.9e1..][$`7esn`..]) Contains Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Contains Allshortestpaths((_usn3 :`4esn`:usn2)) Unwind `8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End As @usn6 Union All Remove [usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`3esn`[0e-0]|'s_str' =~$usn2 =~{7}].@usn5 Foreach(@usn5 In 0.0 In .0e-0| With Distinct *,{usn1} Is Not Null,{`2esn`}[0x0..9e0] As `6esn` Limit Allshortestpaths((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))[usn1..])"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On(@usn6:`4esn`)Assert Exists(Reduce(@usn6=true In 0.0,`6esn` In 010[{`1esn`}..]|2.9e1[2.12..1.9e0]).`4esn`!);"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Create Constraint On(_usn3:#usn7)Assert (`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(`1esn` :#usn7:`8esn`).@usn5.`5esn`? Is Unique;"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Create Unique (((`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(`3esn` $0)<-[usn2:#usn8|:``]->(`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0}))) Remove Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]).`6esn`!,Allshortestpaths((:`3esn`{usn2:01234567[10.12e12][0Xa]})).`1esn`? Union All Create Unique _usn4=((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})),`4esn`=(({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)) Detach Delete $usn1[..$999][..0e0],`4esn`[9e-12..true],{@usn5} Contains .1e1 Contains {`5esn`} Union All Load Csv From Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}] As @usn6 Fieldterminator 's_str';"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Create Constraint On(`2esn`:`1esn`)Assert Exists({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12}.`7esn`)"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Create Constraint On(`8esn`:`5esn`)Assert Exists({#usn8:$`8esn` =~{`6esn`} =~12,_usn3:11.12e-12 Contains usn1}.#usn8?);"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Create Constraint On()<-[`3esn`:#usn8]-()Assert Exists([`6esn` In 010[{`1esn`}..] Where 9e-12[$7..]].`6esn`?);"), + octest_legacy:ct_string("Cypher 999.123456789 Foreach(usn2 In usn2[12e-12..{`8esn`}][.12e12..{123456789}]| Unwind {`7esn`}[0.12] As `6esn` Match `2esn`=Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}}))) Where $123456789[..$999][..`6esn`]) Load Csv From None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) As `6esn` Fieldterminator \"d_str\" Union Optional Match (((`` :`1esn`:``)<-[usn2:`3esn`|`3esn` *0Xa..12]->(`4esn` )-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))),#usn7=Allshortestpaths(((`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})-[`3esn`?:usn2]-(:`1esn`:``{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})<-[``?{``:{#usn7} =~$@usn6 =~$7}]-(:@usn6:_usn3))) Using Join On usn1,`1esn`,_usn4 Where {0}[.1e-1..][_usn4..] With .1e1 Contains 1e-1 Contains #usn8,.9e-12[usn2] As usn1,.1e1 Contains 1e-1 Contains #usn8 As `` Skip Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Limit 010 =~9.1e-1 =~{`8esn`};"), + octest_legacy:ct_string("Profile Using Periodic Commit 01234567 Load Csv With Headers From Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[`8esn`(0X0123456789ABCDEF Is Not Null Is Not Null,{usn1} Is Not Null Is Not Null)..][{usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}..] As usn2 Fieldterminator \"d_str\" Foreach(#usn8 In $usn2 Starts With $999 Starts With .0e0| Match ((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})) Using Join On `4esn`,`5esn`,@usn6) Create Unique ((`4esn` {@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]}));"), + octest_legacy:ct_string("Profile Create Constraint On(`6esn`:`8esn`)Assert Reduce(`2esn`=.1e-1[..$_usn3][..0],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|5.9e-12[12e-12][$`8esn`])._usn3.`6esn`?.`3esn`! Is Unique"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Return {_usn4}[{`6esn`}],true In 0.0 As #usn7 Skip 0.12[{@usn6}..{#usn7}] Limit (`1esn` :`5esn`:`7esn`)-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})[[#usn8 In 07[..$`5esn`] Where `8esn`[_usn4]]..Reduce(`7esn`=$@usn5 Is Null Is Null,`2esn` In $@usn5 Is Not Null Is Not Null|{`1esn`}[..$_usn4])][Case When `4esn` =~010 Then {7}[$@usn5..123456789][1e1..1.9e0] Else 1e-1 =~$`7esn` =~1e1 End..#usn7(Distinct usn1 =~false =~{999},{`3esn`} =~$@usn5 =~`2esn`)]"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Foreach(`4esn` In 123.654 Contains true Contains 7.0e-0| Return `3esn` Starts With 9.1e-1 Starts With .9e-1 As `8esn`,Any(usn1 In $@usn6 Is Null Is Null)[Case {_usn3}[{0}...9e-1][9e-1...0e0] When 010[..9e-1][..0X7] Then $0 Ends With $usn1 Ends With {``} End..Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]})))] Skip 9e0[`1esn`..0e-0][00..`1esn`]) Delete {#usn7} Is Not Null Load Csv With Headers From Case 12.0[...0e0] When {#usn8}[..@usn5] Then `3esn` Is Null End Is Null Is Null As `5esn` Fieldterminator 's_str' Union All Create Allshortestpaths((((:`7esn`{usn2:00 Is Not Null Is Not Null})<-[`8esn`? *..123456789{@usn6:5.9e-12[\"d_str\"..][{`6esn`}..],`7esn`:{@usn5}[10.12e12..]}]->(:`3esn`{usn2:01234567[10.12e12][0Xa]})<-[ *1000..{`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]->(`` )))) Remove {usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}.#usn7?,All(`` In `7esn` =~#usn8 =~\"d_str\" Where {12} Starts With $`` Starts With 0X0123456789ABCDEF)._usn4?.`6esn` Load Csv From 3.9e-1[{@usn6}..][01234567..] As `7esn` "), + octest_legacy:ct_string("Cypher _usn4=#usn8 Create Constraint On()-[usn2:@usn6]->()Assert Exists(Shortestpath((:`3esn`)-[#usn8*..]-(`5esn` :#usn8:@usn6)<-[`4esn`?]-(:@usn5{#usn7:Null,`5esn`:{@usn5} Ends With 0Xa Ends With .12e-12})).`8esn`);"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On(`6esn`:`2esn`)Assert Exists(Reduce(`2esn`={12} Ends With $`3esn` Ends With 0xabc,#usn7 In .0e-0 In 12|.9e-12[usn2]).`3esn`);"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Optional Match #usn8=Allshortestpaths((usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})),Allshortestpaths((:``{usn1:`4esn` Is Not Null})-[ *01{usn1:false[..usn2][..999]}]-(_usn3 )) Using Join On `1esn`,@usn6,usn1 Load Csv With Headers From Reduce(`3esn`=2.12[`4esn`][.9e-1],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{`8esn`} In {_usn3} In 6.0e0)[`3esn`(Distinct)..[`` In `7esn` =~#usn8 =~\"d_str\" Where $`4esn` In {999}|0e-0[$``..10.12e12]]][Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`6esn`} =~2.12 =~123.654|{`8esn`} Contains $@usn5)..`5esn`(Distinct $`7esn` Ends With 7.0e-0 Ends With $usn2)] As #usn8 With .0e-0 Ends With $`2esn` Ends With `5esn`,Case {`4esn`} Ends With Count(*) When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] When $#usn7 Contains 3.9e-1 Then 123.654[10.12e12..$12][6.0e0..{#usn8}] Else $usn1[0e0...9e-12] End[Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))..][Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})..] As `2esn`,true In 0.0 As @usn5 Order By 0 Ends With .0e-0 Ends With false Descending,Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where .9e1[$`1esn`..][$``..]) Ascending,Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] Asc Limit [`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..])"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Merge Shortestpath(((`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(`1esn` {@usn6:6.0e0[$#usn7..$1000]}))) On Match Set {usn1:1.0 Is Not Null}.usn1? ={123456789} Contains $0,usn1+=01 Is Not Null,usn1 ={999} =~$`6esn` =~$`6esn` With Distinct {usn1} Contains {`2esn`},[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]],`6esn`[0X0123456789ABCDEF..][`8esn`..] As #usn8 Limit Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null Where $usn2 Contains $`3esn` Contains 6.0e0 Unwind $usn1[0e0...9e-12] As usn1 Union Return Distinct {`5esn`} Ends With $`7esn` Ends With {@usn5} As `4esn`,{#usn8} Is Not Null As `6esn`,{`3esn`}[...1e1][..0] Order By usn1 Ends With 11.12e-12 Ends With 5.9e-12 Descending,.1e-1 Is Not Null Ascending,Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}] Descending Skip 9e0[{7}...0e-0][Null..@usn5] Limit $`5esn` =~Count(*) =~1.9e0 Create Unique _usn4=((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})) Merge Allshortestpaths(((`8esn` :`7esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 )))"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Foreach(`5esn` In {@usn5:$@usn5 Is Not Null Is Not Null} Contains None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[..0xabc][..{`6esn`}])| Delete 9e-1[0.0..],7.0e-0 Ends With {123456789} Ends With @usn6,{`3esn`} Is Not Null Is Not Null Return Distinct 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )],0 In 2.9e1 In 7 As usn2 Limit Any(usn1 In $@usn6 Is Null Is Null)[Case {_usn3}[{0}...9e-1][9e-1...0e0] When 010[..9e-1][..0X7] Then $0 Ends With $usn1 Ends With {``} End..Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]})))]) Union Remove (`3esn` )<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(`7esn` )<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}).#usn8,#usn7(07[{@usn5}..],{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1])._usn3.`4esn`? Union Remove All(#usn7 In .0e-0 In 12 Where 0xabc =~123456789).@usn6.#usn8!.`7esn`,Case {_usn3} In $#usn8 In $12 When `3esn` Starts With 9.1e-1 Starts With .9e-1 Then $1000[_usn4][{@usn5}] Else 12[@usn6][{`2esn`}] End._usn3!.#usn8?.`7esn`?,Case 010[...12e-12] When .9e1[$`1esn`..][$``..] Then Count ( * ) Starts With 0.12 End.`8esn`!.#usn8 Remove Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}).`8esn`!._usn3!._usn3!,Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))).`5esn`?.`8esn`?.@usn5?,[usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-12[010..{#usn7}][{123456789}..7]|Count(*)[..{#usn7}]]._usn4! Load Csv From \"d_str\" Contains {@usn6} As `3esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Cypher 1000.999 Create Constraint On(@usn6:#usn8)Assert Extract(usn1 In $@usn6 Is Null Is Null Where Count(*)[Count ( * )][{0}]|2.9e1[Count ( * )..]).`8esn`! Is Unique"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Load Csv From $`6esn`[0..{@usn6}][@usn5..1000] As _usn3 Fieldterminator \"d_str\" Union All Delete `2esn` In .9e0 In ``,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Unwind 9e1[0.0] As @usn5 Remove {``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}._usn3? Union All Load Csv With Headers From Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null As @usn5 Fieldterminator \"d_str\" Foreach(`3esn` In Reduce(`7esn`=#usn7 Contains .0e0 Contains $@usn6,`6esn` In 010[{`1esn`}..]|00 Is Not Null Is Not Null)[$7..]| Load Csv From {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null) As @usn6 Start `5esn`=Node:usn2(_usn4='s_str') ) Return {0}[.1e-1..][_usn4..] As _usn3,9e0[{7}...0e-0][Null..@usn5] As `` Limit $_usn3 Is Null"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Create Constraint On()<-[`8esn`:`8esn`]-()Assert Exists({``:01234567[10.12e12][0Xa]}._usn3);"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Drop Constraint On()-[@usn6:_usn3]->()Assert Exists(None(`7esn` In 0.12 Is Not Null Where $0 Contains $7)._usn3!)"), + octest_legacy:ct_string("Cypher 999.123456789 Drop Constraint On()-[`2esn`:`3esn`]->()Assert Exists(Shortestpath((((#usn8 :`4esn`:usn2{#usn7:{`3esn`}[#usn7],`4esn`:010[..9e-1][..0X7]})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]})-[?:@usn5|:#usn7 *0]->(`7esn` :`8esn`)))).usn1?);"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` With Distinct 0xabc[..Count(*)][..$`5esn`],{12} Ends With 1e1 As `8esn`,{`4esn`} In 1000 In {@usn5} Order By {7} Ends With 999 Asc,_usn3 =~{`4esn`} Desc Skip [`1esn` In $12 In {usn2} Where 12e-12 Starts With $`7esn`][{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}..] Where Null In {7} Match Shortestpath((((`1esn` :#usn8:@usn6{usn1:#usn8 Is Null Is Null,_usn3:{`4esn`} In 1000 In {@usn5}})<-[`6esn`?:@usn5|:#usn7{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)))),Allshortestpaths(((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))) Using Join On `6esn`,``,usn2 Where .12e-12 Is Null Merge (((`7esn` :usn1)<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})<-[`3esn`?:@usn6|:`4esn`]-(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) On Create Set `4esn` =Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null,{``:`6esn` =~999 =~$999}.`3esn`! =.1e1 In $999 In {#usn8},@usn5 =9e1 In $1000 On Match Set Shortestpath(((:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->(`` :`4esn`:usn2)-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->(`` :`4esn`:usn2))).usn1? =9e0[`1esn`..0e-0][00..`1esn`],`7esn`+=00[(`3esn` :_usn3{@usn6:0.12 Is Not Null})-[#usn8:`5esn`]-({`6esn`:12[@usn6][{`2esn`}]})..],Shortestpath(((usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[`8esn`{#usn8:.12e12[..7]}]-({`6esn`:1000[{`1esn`}..][$`3esn`..]}))).`7esn`? =$12 Contains false Contains {`1esn`} Union All Detach Delete {1000} =~4.9e12 =~9e1,Null,10.12e12[010..1e1][.1e-1..{1000}] Return *,2.12[{12}] As #usn7,.0e-0 =~usn2 As `1esn` Order By $`8esn` =~{`6esn`} =~12 Ascending,Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End In (:usn1)<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}) In [_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|usn2 Ends With $123456789 Ends With {999}] Ascending,Any(_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0) Ends With Reduce(`6esn`=1e1 Ends With 12 Ends With 999,`` In `7esn` =~#usn8 =~\"d_str\"|$usn2 Contains $`3esn` Contains 6.0e0) Ends With `1esn`(Distinct {0} Is Not Null Is Not Null) Descending Skip {`6esn`} In {_usn4} In $12 Foreach(usn2 In {_usn4} In 0X7 In 0e0| Detach Delete $@usn5 Is Not Null Is Not Null,_usn3 =~{7} =~123.654,@usn5[@usn6] Start _usn4=Rel:_usn4({`1esn`}) )"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Unwind 00[$_usn4][$`1esn`] As _usn4 Remove `4esn`().`6esn`!.#usn7!.`2esn` Remove Case $`8esn` Is Not Null Is Not Null When #usn8[\"d_str\"..usn2] Then .12e-12 Is Null End.@usn6?,Filter(`6esn` In 010[{`1esn`}..] Where {`8esn`}[9e12..][{_usn4}..]).`3esn`!,Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]|$1000 Starts With {@usn6} Starts With $@usn5).usn1 Union Merge ((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[ *..123456789{@usn5:1e-1[$`4esn`]}]->(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})) Start @usn5=Rel:`8esn`(usn1={#usn7}) ,``=Relationship:@usn6(#usn8='s_str')Where 12e-12 In .9e0"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Unwind [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..] As `2esn` Union All Merge Shortestpath((#usn8 {usn2:$0 Ends With 9e-12 Ends With $_usn4,`5esn`:0e-0[{@usn6}]})-[`8esn`?:_usn3]->(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})) On Create Set count(01234567 =~12e12 =~.0e-0,$999 Is Not Null).@usn6?.`1esn`.`8esn`? =All(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Ends With Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789 Is Not Null Is Not Null|{`8esn`}[@usn5][$`2esn`]) Ends With (#usn8 :`5esn`:`7esn`{usn2})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )-[_usn4? *..0x0{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null}),.12e12._usn3? =01[`4esn`..] Merge `4esn`=(`7esn` :``{usn2:$7})-[:#usn8|:`` *..07{@usn5:01234567[\"d_str\"..][$`4esn`..],`6esn`:$usn1 Ends With {`2esn`} Ends With $usn1}]->(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1}) On Create Set (`3esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[?:`4esn`|:`2esn` *01]-(`` :``).`1esn`.@usn5! =None(`` In `7esn` =~#usn8 =~\"d_str\" Where $`4esn` In {999}) Starts With ({usn1:12[..$`5esn`]})-[:`1esn`|:`1esn` *999..123456789{@usn5:$999 Ends With `2esn` Ends With 12.0}]->(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}) Starts With Case When $#usn8 Is Not Null Is Not Null Then $#usn8[$0..`3esn`][1e-1..$7] When $`` Starts With $`4esn` Starts With `3esn` Then .12e12[$usn1..][{@usn6}..] End,#usn7+=.9e-1 Is Null Is Null Unwind `1esn` In 010 In 1e-1 As `8esn` Union All Load Csv From {_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}[Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)][[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1]] As `5esn` Fieldterminator 's_str' Return Distinct *,$`8esn` Contains _usn4 As `8esn`,Count(*)[@usn5..] As #usn8 Limit 2.12[`4esn`][.9e-1]"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Load Csv From .9e0 Is Null As `3esn` Start _usn4=Node:`1esn`(`4esn`={@usn5}) ,`2esn`=Rel:`6esn`(`4esn`=\"d_str\")Where $`1esn`[..12e-12][...9e12] Union Return Distinct $`` Ends With #usn7 Ends With _usn3 As _usn3,{@usn6:2.9e1[{`2esn`}],usn1:01 Contains 9e-12 Contains $7} Is Null Is Null As @usn6 Skip {`8esn`}[.0e0..][999..] Union Create Unique @usn6=((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}));"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Create Constraint On(`4esn`:``)Assert None(`3esn` In 8.1e1 Contains .9e-1 Contains false).``.`7esn` Is Unique"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Drop Constraint On()<-[_usn3:`4esn`]-()Assert Exists(exists(0[$usn1..])._usn4)"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Unwind $`5esn`[..{0}][..7.0e-0] As `8esn`;"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` With $#usn8[$0..`3esn`][1e-1..$7] As `5esn`,{0} Is Not Null As `` Limit $_usn3 In `2esn` In `3esn` Where _usn3[{#usn7}] Start _usn4=Relationship:@usn6(\"d_str\") ,`8esn`=Rel:`1esn`(`1esn`={usn1}) Union All Load Csv With Headers From {_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}[Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)][[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1]] As usn2 Create _usn3=Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)),Allshortestpaths((`6esn` :`4esn`:usn2)-[? *0Xa..12{`4esn`:9e-12[$7..]}]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}));"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Drop Constraint On(`1esn`:`5esn`)Assert Exists(Extract(_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]|{``}[usn1..][{`8esn`}..]).`3esn`?);"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Remove Case When $usn2 Ends With 00 Ends With 9e12 Then $#usn7 Ends With 999 Ends With {12} Else 0e0 =~{12} =~{1000} End.@usn6.usn1?,None(@usn6 In 9e12[..usn2][.._usn3] Where {`8esn`}[@usn5][$`2esn`])._usn3!;"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Using Periodic Commit 0x0 Load Csv From 0.0[$`4esn`] As `` Fieldterminator 's_str' Unwind 12e-12 Starts With $`7esn` As usn2 Merge Shortestpath((((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})-[`2esn`?:@usn6|:`4esn` *010..0{`4esn`:Null[$`3esn`..][`1esn`..],_usn3:6.0e0[$#usn7..$1000]}]-(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]})))) On Create Set usn2 =0xabc Contains {12} Contains {`6esn`},`` =usn2($usn1 =~.0e0 =~{`4esn`}) Contains Allshortestpaths(((#usn8 :@usn5)<-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 )<-[?:`1esn`|:`1esn`{`5esn`:9e1[0.0]}]->(`8esn` ))),_usn3({1000} Is Null,123456789[#usn7..9e-1][10.12e12..{0}]).usn1.`2esn`._usn4 ={123456789} Is Not Null On Match Set Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}).`8esn`!._usn3!._usn3! =Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End Is Null Is Null,(`1esn` :`8esn`)<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})-[:#usn7|:@usn5]-(:`1esn`:``{`8esn`:5.9e-12[0x0..]}).`6esn`? =Any(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0xabc[..{usn1}][..\"d_str\"])[Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 0X0123456789ABCDEF Is Not Null Is Not Null)..None(#usn8 In 07[..$`5esn`] Where 8.1e1 Contains .9e-1 Contains false)][Case {0} Is Not Null Is Not Null When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End..[`` In `7esn` =~#usn8 =~\"d_str\"|$_usn4 Ends With {#usn8}]]"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Optional Match Allshortestpaths((((:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})-[`7esn`:`1esn`|:`1esn` *0Xa..12]-(`8esn` :`7esn`)<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})))),#usn7=((`1esn` :usn2{`8esn`:12.0[...0e0]})) Using Scan #usn8:_usn3 Using Index @usn5:@usn5(_usn4) Where {`6esn`}[@usn5..{@usn6}] Return *,_usn4[{``}..{`6esn`}][$7..$_usn3] Order By 9e0 Ends With {7} Desc,`4esn` =~_usn4 =~0e-0 Descending Union All Optional Match `6esn`=((`1esn` :`8esn`)<-[:usn1|usn2]-(`` :`4esn`:usn2)<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``)) Using Index usn1:#usn8(``) Using Join On `4esn`,`2esn`,`` Where 0.0[$`4esn`] Load Csv With Headers From Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) As usn2 Union Merge `6esn`=(((`8esn` :usn2)-[@usn5:`2esn`|`5esn` *7]->(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})-[? *12{@usn6:$`` =~.1e-1}]->(:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}}))) On Match Set `7esn`+=$_usn3[0x0][{0}],Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}}))._usn3 =9e0[{7}...0e-0][Null..@usn5],usn1+=Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null On Match Set _usn4+=01234567[10.12e12][0Xa],Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01).#usn7!.`2esn`.@usn6! =4.9e12 Ends With $@usn6,`3esn`+=.1e-1 Is Not Null;"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On()-[@usn5:`8esn`]->()Assert Exists({`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}.`5esn`)"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Create Constraint On(`5esn`:`6esn`)Assert Exists(Reduce(`7esn`=$usn2 Starts With $999 Starts With .0e0,@usn6 In 9e12[..usn2][.._usn3]|$@usn6 Is Null Is Null).`8esn`?.usn2!);"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(`6esn`:usn2)Assert Reduce(`3esn`=.9e0[$#usn8][Count ( * )],#usn7 In .0e-0 In 12|Count(*) Starts With 07 Starts With $#usn7).`6esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Drop Constraint On(#usn8:`4esn`)Assert Exists(Case When 01234567 Ends With .0e0 Ends With 12e12 Then {`4esn`}[{`3esn`}][$`2esn`] When `` Contains {`6esn`} Contains 123456789 Then 2.9e1[2.12..1.9e0] End.usn2);"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Create Constraint On(`5esn`:usn2)Assert Exists({_usn4:#usn8 =~{@usn5}}.`6esn`?)"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Drop Constraint On(#usn7:_usn4)Assert [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where .12e-12[9e1]|.9e0[07..][4.9e12..]].usn2 Is Unique;"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Return *,\"d_str\" In usn2 In $`7esn` As `5esn`,12[11.12e-12..][`4esn`..] Order By Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Is Null Ascending,'s_str'[$`8esn`..$999] Descending,$`2esn`[`8esn`..] Descending Remove Case 2.9e1 Ends With `5esn` Ends With 1000 When @usn6[999][1000] Then .0e0 =~0 =~.0e0 When {`4esn`} In 1000 In {@usn5} Then 123456789[_usn4..`1esn`][$`6esn`..{@usn6}] Else .12e12 Is Not Null End.`2esn`? Delete (usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..])"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Drop Constraint On()<-[`4esn`:usn2]-()Assert Exists(All(usn1 In {#usn7} =~.12e12 =~9e0 Where 0xabc[01234567][.12e-12]).@usn5!)"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Foreach(`7esn` In 01234567[1000..][$`8esn`..]| With Distinct 5.9e-12[01][`4esn`],$#usn8 Starts With 9.1e-1 Starts With {#usn7} As `8esn`,`5esn` Ends With 's_str' Ends With @usn5 As `1esn` Order By 's_str'[$_usn3..][9.1e-1..] Desc Where 1.0 Is Null Is Null Optional Match #usn7=(`8esn` :`7esn`)-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``),`4esn`=Shortestpath((_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn2 *7]-(`` ))) With Distinct $`5esn` =~Count(*) =~1.9e0 As @usn6,.9e12[6.0e0..][@usn5..],07[9e-1..][1e1..] As `4esn` Order By Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Null Is Null Desc,$`8esn`[...1e-1] Desc,$12 Is Not Null Descending Limit `4esn`[12.0..][9.1e-1..] Union All Start usn1=Rel:`8esn`({`3esn`}) ,#usn7=Node:#usn8(usn2='s_str') Return *,9e1[12] As usn1,Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``})[`3esn`(Distinct 0 Starts With `7esn` Starts With 9e0,$`4esn` Is Null Is Null)][`7esn`(Distinct $`4esn` Ends With .12e12 Ends With 123.654)] Limit true In 0.0 Create (((`3esn` $0)-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]}))),(({`6esn`:8.1e1 Contains .9e-1 Contains false})<-[`8esn`*]-(@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})-[`6esn`?:@usn5|:#usn7{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}));"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Merge `2esn`=Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) On Create Set Case 0xabc[..Count(*)][..$`5esn`] When `6esn`[0X0123456789ABCDEF..][`8esn`..] Then `2esn`[`7esn`][1000] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} Else 12e12[{`4esn`}..`4esn`][999..{@usn6}] End.``!.#usn8! =Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})),(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})-[_usn4:_usn3{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]}).#usn7! =8.1e1 Contains .9e-1 Contains false,`5esn` =false Is Not Null Is Not Null Union All Load Csv From 6.0e0 In 9e-1 In 123456789 As `4esn` Foreach(@usn6 In {`6esn`} Starts With 12e12 Starts With {`2esn`}| Delete {123456789} Contains $#usn7 Contains {#usn8} Load Csv From None(`1esn` In $12 In {usn2})[..Reduce(usn2=.9e0 In 8.1e1,`3esn` In 8.1e1 Contains .9e-1 Contains false|$_usn3 Is Not Null)] As #usn7 Fieldterminator 's_str') Union All Create Unique Allshortestpaths(({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)})),((:`1esn`:``{`7esn`:`5esn` Contains 0 Contains $12,`2esn`:.9e12[6.0e0..][@usn5..]}));"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Drop Constraint On(`4esn`:#usn8)Assert Exists(Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 999 Starts With 7.0e-0 Starts With true).`2esn`)"), + octest_legacy:ct_string("Cypher 1000.999 Create Unique `1esn`=Allshortestpaths(((:usn1{`6esn`:$_usn3[usn2..][usn1..],#usn7:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}))),#usn8=Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789})) Remove Reduce(#usn7={`4esn`} In 1000 In {@usn5},usn2 In .12e-12 Ends With `2esn`|false Starts With 0 Starts With 2.9e1).usn1!,None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 12e12 Ends With `5esn` Ends With .0e0).`5esn`?,All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where $`4esn`[usn2..]).`2esn`! Union Merge ((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[ *..123456789{@usn5:1e-1[$`4esn`]}]->(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})) Start @usn5=Rel:`8esn`(usn1={#usn7}) ,``=Relationship:@usn6(#usn8='s_str')Where 12e-12 In .9e0 Union Merge `7esn`=(({_usn4:1e-1[$`4esn`]})) Create Unique (`1esn` {usn2:.9e-12[.12e12..][0Xa..]}),@usn6=Allshortestpaths(((`5esn` :_usn3)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}))) Match Shortestpath(((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1))),(((usn2 :`4esn`:usn2)<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})-[usn1?:#usn8|:`` *0xabc..12{usn2:01234567[10.12e12][0Xa]}]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}))) Using Join On @usn5,`1esn`"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Drop Constraint On()-[`3esn`:_usn3]-()Assert Exists({`5esn`:$usn1[9e1][{999}]}.#usn7?)"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Create Constraint On(``:`6esn`)Assert Exists(Shortestpath((`4esn` :_usn3)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})).``!);"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Create Constraint On(`4esn`:`3esn`)Assert Exists(Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `6esn` Ends With 1e1 Ends With $#usn7).`8esn`!.`2esn`!.`1esn`!);"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Create Allshortestpaths((`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`)) Create Unique `6esn`=(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})<-[?$999]-(`4esn` {#usn7:$usn1[0e0...9e-12]})-[:`8esn`|:#usn8 *01]-(:#usn7:`8esn`{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}),_usn3=(((`4esn` )-[{#usn7:1e-1[$`4esn`]}]->(`1esn` :`2esn`:`4esn`)-[?:#usn8|:``{usn2:{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],usn1:\"d_str\"[0x0..{@usn6}][$@usn5..0]}]-(:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12}))) Union Detach Delete 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))],{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1] Create Unique _usn4=(#usn8 :`5esn`:`7esn`{usn2}) Delete {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null),0.0[$`4esn`] Union Remove Reduce(`3esn`={123456789} =~.9e1 =~$_usn3,`8esn` In {_usn4} Ends With {0} Ends With `1esn`|{usn1}[`7esn`..Count(*)]).usn2.`6esn`?;"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Load Csv With Headers From $999 =~false =~{`8esn`} As @usn6 Fieldterminator 's_str' Merge @usn5=(_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]}) On Match Set `7esn`+=$_usn3[0x0][{0}],Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}}))._usn3 =9e0[{7}...0e-0][Null..@usn5],usn1+=Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null;"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Delete true[..{`2esn`}],Allshortestpaths(({usn1:12[..$`5esn`]})<-[:`4esn`|:`2esn`{`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]}]-(#usn8 :usn2))[..`1esn`][..Case .12e-12 Starts With .12e-12 When 0xabc Starts With {`3esn`} Starts With {``} Then {usn2} Is Not Null Is Not Null Else {`4esn`} Ends With Count(*) End],$`4esn` Contains `4esn` Contains .0e-0 Load Csv From [usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0|4.9e12 Is Not Null Is Not Null] =~Case {_usn3} In $#usn8 In $12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else 0[..{0}][..true] End =~Case Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else $_usn3 Starts With 010 End As #usn7 Load Csv With Headers From 12 Ends With 12e12 As usn1 Fieldterminator \"d_str\";"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Drop Constraint On(@usn5:`1esn`)Assert Exists(Single(_usn3 In `8esn`[_usn4] Where 01234567 Ends With .0e0 Ends With 12e12).#usn8!);"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(_usn3:`6esn`)Assert (:`1esn`:``{`8esn`:0X0123456789ABCDEF Ends With {1000}})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`6esn` :`4esn`:usn2).`5esn` Is Unique"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Delete .9e12 Is Not Null Is Not Null,12.0 In `7esn` Delete .12e-12[{`1esn`}][`1esn`]"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Remove (`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[usn1?:`3esn`|`3esn`*..]->(:usn1{#usn8:$`8esn` Is Not Null Is Not Null,`5esn`:3.9e-1 Starts With .9e0 Starts With {#usn7}})-[:usn1|usn2 *7{`8esn`:{usn2}[{999}..][9e12..]}]->(`` {`7esn`:`4esn` =~010}).usn2!,Case When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null When $@usn6 Is Null Then {usn2} Is Not Null Is Not Null End.`8esn`.`3esn`?.usn2 With Distinct 1e-1[$`4esn`] Order By Count(*)[Null..][01234567..] Ascending,Count ( * ) =~.9e1 =~$#usn8 Ascending Skip Count ( * ) Contains 9.1e-1 Contains {`2esn`} Where .9e1 Is Null Is Null Optional Match `1esn`=((usn2 :`2esn`:`4esn`{`7esn`:@usn5 =~$#usn7 =~{usn1}})<-[`1esn`:`4esn`|:`2esn`{`5esn`:$_usn3[usn2..][usn1..]}]->(:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})) Where 3.9e-1[{@usn6}..][01234567..] Union Optional Match @usn6=Allshortestpaths(((#usn7 {`2esn`:`8esn`[.12e12..],_usn3:usn1 =~0Xa =~0}))),_usn4=((#usn7 :@usn6:_usn3{``:9e1[0.0]}))"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On()-[`3esn`:_usn4]-()Assert Exists({usn2:\"d_str\" Starts With ``}.`7esn`!);"), + octest_legacy:ct_string("Profile Drop Constraint On(_usn3:`2esn`)Assert Exists(usn1(Distinct 1.9e0[..0][.._usn3],$@usn5 Is Null Is Null).``)"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Create Constraint On()<-[`7esn`:usn2]-()Assert Exists(Any(usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null).usn1);"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Create Unique `3esn`=(`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999})-[`3esn`?:`1esn`|:`1esn`]-(#usn8 {``:@usn6 Starts With #usn7,@usn6:7[..123456789][..true]})<-[?:`1esn`|:`1esn`]-(`1esn` :#usn8:@usn6{`7esn`:.1e-1 Contains .12e-12,`2esn`:.1e1 Ends With #usn7 Ends With {#usn7}}),`2esn`=((`8esn` :`5esn`:`7esn`)-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})<-[#usn8?:_usn3 *..123456789]->(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})) Foreach(`7esn` In [`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0|2.12[`4esn`][.9e-1]][Reduce(usn2={_usn4} Ends With {0} Ends With `1esn`,`` In `7esn` =~#usn8 =~\"d_str\"|$123456789 Is Not Null Is Not Null)]| With Distinct {_usn3} Is Null Is Null As #usn8,None(`` In `7esn` =~#usn8 =~\"d_str\" Where 1e-1 =~$`7esn` =~1e1) Is Not Null Is Not Null As @usn5,Null[{999}..$usn2] As `7esn` Order By 7.0e-0 Starts With {123456789} Starts With @usn6 Asc,9.1e-1 In {`1esn`} Asc,Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] Ascending Load Csv With Headers From 0xabc Starts With `2esn` Starts With 10.12e12 As usn2 ) Create Unique (((`8esn` :`8esn`)<-[usn1?{`5esn`:$0 Ends With 9e-12 Ends With $_usn4}]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})-[?:_usn3]->(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]}))),((`` :`7esn`)) Union All Unwind 9e0 In {usn2} In {@usn6} As @usn5 Start `2esn`=Relationship:_usn4(@usn6=\"d_str\") Union All Load Csv From $12 Contains false Contains {`1esn`} As usn1 Fieldterminator \"d_str\" Remove Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When $1000[_usn4][{@usn5}] Then 4.9e12[{_usn4}..] End.@usn6?.#usn8! Unwind {`8esn`} Contains $@usn5 As _usn4;"), + octest_legacy:ct_string("Cypher 1000.999 Match ``=(#usn7 {#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})<-[@usn5?:#usn7|:@usn5]->(:`8esn`{`2esn`:0[..{#usn7}][..$_usn3],#usn8:.9e-1 Is Null Is Null})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}) Using Join On `4esn`,`5esn`,@usn6 Using Index usn2:`1esn`(`3esn`) Detach Delete [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,00[..@usn6] Union Load Csv From 12e12[usn2..$`6esn`] As usn2 Foreach(usn2 In (`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End]| Start _usn4=Relationship( {#usn8}) ,`4esn`=Node:usn2(usn1={_usn3}))"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Unwind Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Contains (:`2esn`:`4esn`{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``) Contains {@usn6:10.12e12 Contains .9e0,`3esn`:`6esn` =~999 =~$999} As `2esn` Union All Optional Match Shortestpath(((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})))),_usn3=Allshortestpaths((((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999})<-[``?:@usn5|:#usn7 *..00{#usn8:$`8esn`[...1e-1]}]->(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]})))) Using Index `3esn`:`8esn`(`5esn`) Where .12e12 Ends With 07 Ends With 3.9e-1 Foreach(`8esn` In 2.9e1 In {``}| Create Shortestpath(((`7esn` {@usn5:Count ( * )[_usn4..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))) Unwind Allshortestpaths(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0}))[Reduce(@usn6=10.12e12 Starts With $`4esn` Starts With 0e0,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$1000 Contains $123456789 Contains #usn8)..Case 7[..123456789][..true] When $1000[..0e-0][..010] Then 999 Starts With 7.0e-0 Starts With true End][[`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]]..Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When 0.12[Count ( * )..Count ( * )][$999..`5esn`] Then $123456789[..$999][..`6esn`] Else 7[{`4esn`}..] End] As @usn6)"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Start `2esn`=Node:``(#usn8=\"d_str\") ,`2esn`=Relationship:``(`1esn`=\"d_str\") With Distinct *,{usn1} Is Not Null,{`2esn`}[0x0..9e0] As `6esn` Limit Allshortestpaths((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))[usn1..] Optional Match #usn8=Allshortestpaths((usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[`3esn`:#usn8|:``{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}]->(:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})) Using Join On _usn4,usn2,`` Using Join On `7esn` Where $_usn3 In `2esn` In `3esn` Union Return Distinct Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null],7 Starts With 9e-12 As #usn7 Order By All(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12)[usn1({#usn7} Ends With 999 Ends With 12)] Descending,$`1esn` In 0Xa Desc,10.12e12[.0e0] Desc Skip Case {1000}[..{usn1}][..1e-1] When {@usn5}[10.12e12..] Then 1.0 Is Null Is Null When {`3esn`} Is Not Null Is Not Null Then .1e1 Contains 1e-1 Contains #usn8 Else $`5esn`[{`4esn`}][{0}] End[..{usn1:1.9e0[..0][.._usn3],`7esn`:1.9e0[.12e-12][9e-12]}][..{`1esn`:{0} Is Null Is Null}];"), + octest_legacy:ct_string("Cypher 999.123456789 Create Constraint On(_usn4:#usn7)Assert Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``))).@usn6! Is Unique;"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Drop Constraint On(@usn6:#usn7)Assert [`6esn` In 010[{`1esn`}..]|.1e-1[2.9e1..][$`7esn`..]].usn2 Is Unique"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Start @usn5=Node:``(`1esn`=\"d_str\") Where {`2esn`} Contains 0xabc Return Distinct `1esn` In 6.0e0 In 12 Limit {12} Starts With 01 Starts With $1000"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Drop Constraint On(_usn3:#usn7)Assert `7esn`(11.12e-12 In {usn1}).`5esn` Is Unique"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Drop Constraint On(`2esn`:@usn5)Assert Exists(Any(usn1 In \"d_str\" Contains {@usn6} Where $`8esn`)._usn4)"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Create Constraint On(usn2:_usn3)Assert Exists(All(usn1 In $@usn6 Is Null Is Null Where 9e0[`4esn`..$_usn4][9.1e-1..0e0])._usn4!.`1esn`.`4esn`!);"), + octest_legacy:ct_string("Cypher 1000.999 Foreach(@usn5 In Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]|@usn5 =~$#usn7 =~{usn1}) In Case 9.1e-1 Contains {`3esn`} Contains $12 When {@usn6} In 9e12 Then 01[$`1esn`..$`7esn`][{usn2}..12.0] When {#usn8} In {12} In .9e12 Then @usn6 Starts With #usn7 End In All(usn1 In $@usn6 Is Null Is Null Where {7} Starts With 0x0 Starts With 9e1)| Remove [`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`} In .0e0 In $0].`4esn`?)"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Drop Constraint On(`2esn`:usn2)Assert Case 9e-12[$7..] When .1e-1 Contains .12e-12 Then true Is Null Else 0[..{#usn7}][..$_usn3] End.`` Is Unique;"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Unwind Allshortestpaths(((@usn6 :@usn6:_usn3))) Is Null Is Null As `2esn` Start @usn6=Relationship:#usn8(usn2={12}) ,@usn5=Rel:usn2({`1esn`}) Return Distinct 2.9e1 =~{123456789} =~01 As usn1,.9e12 Is Not Null Is Not Null,12e12[usn2..$`6esn`] As usn1 Order By [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..] Asc,Case When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else {123456789} Starts With `6esn` End =~Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where `4esn` Contains 0X0123456789ABCDEF Contains $usn2) =~Allshortestpaths((`7esn` :``{usn2:$7})) Descending Skip Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End In (:usn1)<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}) In [_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|usn2 Ends With $123456789 Ends With {999}] Limit $`6esn`[$_usn3..{1000}] Union Unwind Single(`6esn` In 010[{`1esn`}..] Where {`4esn`} In 1000 In {@usn5}) Starts With Any(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01234567 Ends With .0e0 Ends With 12e12) As `1esn` Return Distinct 4.9e12[{_usn4}..],{`5esn`} Ends With $`7esn` Ends With {@usn5} Skip 00[{`4esn`}..] Limit false Contains {`7esn`} Merge `6esn`=(((`8esn` :usn2)-[@usn5:`2esn`|`5esn` *7]->(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})-[? *12{@usn6:$`` =~.1e-1}]->(:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}}))) On Match Set {usn1:{123456789} Starts With $_usn4 Starts With 0x0,`3esn`:$`4esn` Is Null Is Null}.`7esn`?.`7esn`?.#usn7 =1.9e0 In 2.12,Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where {0}[.1e-1..][_usn4..]).`6esn`.usn1.`7esn`? =12e-12 Ends With $999 Ends With ``,Extract(#usn8 In 07[..$`5esn`] Where 123.654 Ends With {1000} Ends With 9e12|$usn1[..$999][..0e0])._usn3! ={1000} Starts With {`1esn`}"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Create Constraint On(`7esn`:`6esn`)Assert [usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null].`1esn`! Is Unique"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Create Constraint On(`1esn`:`5esn`)Assert Exists((:#usn8:@usn6{`3esn`:$#usn7})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]->(@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0}).``?.#usn8)"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On()-[`6esn`:@usn6]-()Assert Exists(Filter(#usn7 In .0e-0 In 12 Where 123.654 Ends With {1000} Ends With 9e12).#usn8!.`6esn`)"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Drop Constraint On(#usn7:usn2)Assert (`2esn` :`4esn`:usn2{`8esn`:.9e-1 Contains .9e0 Contains ``,_usn4:8.1e1 Contains .9e-1 Contains false})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}).``.@usn5._usn3 Is Unique;"), + octest_legacy:ct_string("Cypher 999.123456789 With Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,999 Starts With 7.0e-0 Starts With true As _usn3 Order By 2.12[010..][{999}..] Descending Limit Shortestpath((:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})) Starts With {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF} Starts With Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})) Start `2esn`=Node:`8esn`('s_str') ,`1esn`=Rel:``({`4esn`}) With Distinct *,Any(usn2 In $`5esn`[{`4esn`}][{0}] Where .1e-1[2.9e1..][$`7esn`..]) Contains Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Contains Allshortestpaths((_usn3 :`4esn`:usn2)),9e1[...9e1][..$`6esn`] As `4esn`;"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Merge `7esn`=Shortestpath((_usn4 {`3esn`:.0e-0 In 12})) Detach Delete $12 Ends With {_usn4} Ends With $`8esn`,.1e1 Is Null Is Null Union All Unwind {@usn5} As _usn4 Load Csv From 's_str'[`2esn`][12.0] As @usn6 Union Unwind {`8esn`}[.0e0..][999..] As `1esn`"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Drop Constraint On()<-[usn2:#usn8]-()Assert Exists(Single(usn1 In \"d_str\" Contains {@usn6} Where {`1esn`} Is Null).@usn6!);"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(`3esn`:`3esn`)Assert Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})))).`5esn` Is Unique;"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Using Periodic Commit 00 Load Csv With Headers From 4.9e12[{_usn4}..] As _usn4 Fieldterminator \"d_str\" Foreach(`8esn` In {1000}[`2esn`...0e-0][9e-1..0X7]| Load Csv From usn2(Distinct $_usn3 =~'s_str' =~12) In (`` :usn1)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}) In Case When {_usn4}[{`6esn`}] Then 12e12 Is Not Null Is Not Null When #usn7 Is Null Is Null Then {`8esn`} Starts With .9e-1 Starts With 1000 End As usn2 ) Unwind 01 =~{_usn3} =~01 As _usn4;"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Detach Delete All(#usn8 In 07[..$`5esn`] Where $@usn6 Starts With 0xabc Starts With {`7esn`})[Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null|.0e0[usn1..7.0e-0][$`5esn`...9e-12])..],$`3esn` =~#usn8 =~0x0 Start usn2=Relationship:#usn8(usn2={@usn5}) Where `2esn`[`7esn`][1000] Match #usn8=Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789})),`4esn`=Allshortestpaths(((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null}))) Where .9e12 Contains 0 Contains $0;"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 With Distinct *,1.9e0[$`4esn`],All(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`]) Ends With Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e-12[9e1]) Merge ((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})) On Create Set (`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[? *..123456789{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:`7esn`{`5esn`:{`8esn`} Starts With .9e-1 Starts With 1000})._usn3._usn3?.`6esn`! =(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}) Is Not Null,#usn8 =0[4.9e12] Optional Match `7esn`=Shortestpath(((usn1 :_usn4:`2esn`)<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[?{#usn7:`2esn`,`7esn`:$@usn5 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))),Allshortestpaths((:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[_usn3?:`5esn`*..]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]})) Using Join On `5esn`,usn1,`7esn` Using Scan #usn8:`1esn` Where 8.1e1[..9.1e-1][...9e1] Union All Return Distinct false Contains {`7esn`},{0} Is Not Null As `` Order By [usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`|{#usn8}[..@usn5]][Case When .9e1 In {#usn7} In .9e-12 Then #usn7 Is Null Is Null End..] Asc,Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] Asc,(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[`3esn`?:`1esn`|:`1esn`]-({_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})[{@usn5:07[..$`5esn`]}..][$#usn8..] Descending Skip $7[.1e-1..{@usn6}][$7..{`1esn`}] Limit {``} Is Null Is Null Merge #usn8=Allshortestpaths((usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) On Match Set {#usn7:.9e1 In .1e-1,_usn4:{12}}.`8esn`!.@usn6!._usn4 =$`5esn` In $12 In `2esn`,`8esn` =Case When $123456789 Is Not Null Is Not Null Then $`5esn` Is Not Null End Ends With {_usn3:$12 Is Not Null Is Not Null} Ends With [`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 6.0e0 =~12.0 =~9e1|@usn6 Ends With $`2esn` Ends With 1.0] Start @usn5=Relationship:_usn3({`7esn`}) Where `5esn` Ends With Count(*)"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Merge usn2=(@usn6 {usn1:0Xa In 1.0 In $@usn5})-[#usn8?:`8esn`|:#usn8 *999..123456789]->(`3esn` :usn2) Start ``=Node( {#usn7}) With 1.0 In {usn1} As `5esn` Limit Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null"), + octest_legacy:ct_string("Profile Drop Constraint On(`8esn`:`2esn`)Assert #usn7($12[10.12e12][.1e1]).`6esn`!.usn2?.usn2! Is Unique"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On(@usn5:@usn5)Assert Exists([`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $`4esn`[usn2..]].`8esn`._usn4!)"), + octest_legacy:ct_string("Cypher 1000.999 Create Constraint On(`1esn`:_usn4)Assert Reduce(`7esn`={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],@usn6 In 9e12[..usn2][.._usn3]|10.12e12[usn2])._usn4! Is Unique"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Remove All(usn1 In $@usn6 Is Null Is Null Where _usn4 Is Not Null Is Not Null).`7esn`!.@usn5? Union Load Csv From .0e0 =~Case $`6esn` Starts With 0.0 When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] End =~All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}]) As #usn8 Match ((#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]})<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})) Using Index usn2:@usn6(@usn6) Create Unique Shortestpath(((@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})<-[? *999..123456789]->(@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1}))),Allshortestpaths((_usn3 {#usn7:$999 =~false =~{`8esn`}})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})) Union Delete $@usn5 Starts With #usn7,999 Starts With 7.0e-0 Starts With true,{`8esn`}[..999][.._usn3]"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On(#usn8:`5esn`)Assert None(usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF)._usn3! Is Unique"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` With @usn6[Reduce(`5esn`=_usn4['s_str'][8.1e1],_usn3 In `8esn`[_usn4]|$_usn3 =~'s_str' =~12)..][(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[`7esn`?]-(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})..],9e0 In {usn2} In {@usn6} As `8esn` Skip {#usn8:$`6esn`[..01][..{_usn3}]} Starts With Shortestpath(((`1esn` :`8esn`)-[`7esn`?:`2esn`|`5esn` *0]->(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))) Limit Single(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`)[(#usn7 {`2esn`:`8esn`[.12e12..],_usn3:usn1 =~0Xa =~0})<-[? *1000..]->({usn1:true In 0.0,@usn5:{`1esn`} Is Null})-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0})][Reduce(`2esn`=.9e0[07..][4.9e12..],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$``[9e0..][5.9e-12..])] Where {`4esn`} Ends With Count(*) With Distinct (`2esn` :`4esn`:usn2{`8esn`:.9e-1 Contains .9e0 Contains ``,_usn4:8.1e1 Contains .9e-1 Contains false})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Is Null Is Null As `1esn`,00 Is Not Null Is Not Null As `6esn`,{`5esn`} Ends With $`7esn` Ends With {@usn5} Order By {@usn6} =~Count ( * ) =~1.0 Desc,$`6esn` Contains All(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) Descending,`6esn`[0X0123456789ABCDEF..][`8esn`..] Ascending Limit None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Contains (`8esn` :@usn6:_usn3{_usn4:{#usn7} =~$@usn6 =~$7})<-[`1esn`? *0{usn2:.9e12[6.0e0..][@usn5..]}]->(usn2 :@usn6:_usn3)-[usn1:#usn7|:@usn5 *999..123456789]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7}) Where 4.9e12[{_usn4}..] Delete `1esn` Ends With 0.0 Ends With {`1esn`},Single(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Is Not Null Union With Distinct $7 In 1.0 In 01234567,.12e12[$`1esn`..0x0] As `4esn` Order By Filter(#usn7 In .0e-0 In 12 Where #usn7[123.654][{12}])[[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]..Reduce(`1esn`=`2esn`,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|.9e0 =~#usn7)] Desc,{0} =~{999} Desc,$999 =~0x0 Desc Skip `1esn`[..$1000] Limit 0e-0[#usn7..999];"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Remove Shortestpath(({@usn6:`3esn` Contains 01 Contains 01})<-[#usn8?]->(#usn8 {usn2:$0 Ends With 9e-12 Ends With $_usn4,`5esn`:0e-0[{@usn6}]})).`5esn`!.`5esn`?,{`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}.``!.`6esn`?,{`1esn`:{123456789} =~.9e1 =~$_usn3,#usn8:`5esn` Contains 0 Contains $12}.#usn8!.#usn8!.`1esn`? Union All Match `1esn`=((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})),`1esn`=((_usn4 )-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})) Remove Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where Null In {7}).#usn7?,Single(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).usn1!"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Create Constraint On()<-[`8esn`:_usn3]-()Assert Exists(Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 9e12 Is Null Is Null).`6esn`)"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On()-[#usn8:usn1]->()Assert Exists(Case #usn8 Is Null Is Null When $1000[..0e-0][..010] Then 010 Starts With 9e12 Starts With 1000 End.`8esn`!);"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Drop Constraint On()-[`1esn`:#usn7]->()Assert Exists([`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$usn2 Starts With $999 Starts With .0e0].usn1)"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Optional Match `7esn`=Allshortestpaths(((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}))) Using Index #usn8:`3esn`(@usn6) Create `8esn`=(({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})),Allshortestpaths((:`3esn`)) Union Return Distinct *,@usn6[Reduce(`5esn`=_usn4['s_str'][8.1e1],_usn3 In `8esn`[_usn4]|$_usn3 =~'s_str' =~12)..][(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[`7esn`?]-(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})..] As usn1 Skip {`6esn`} In .0e0 In $0 Limit (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])]"), + octest_legacy:ct_string("Cypher `6esn`=usn2 With `4esn` =~_usn4 =~0e-0 As `3esn`,$12[$`6esn`..][01..] Order By [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]][None(#usn7 In .0e-0 In 12 Where $12 In {usn2})..{`1esn`:{0} Is Null Is Null}][Extract(#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12|{`5esn`} Is Not Null Is Not Null)..Reduce(`7esn`=`7esn` Ends With 10.12e12,usn2 In $`5esn`[{`4esn`}][{0}]|@usn5[9e-1..{`1esn`}])] Descending,$usn2 Contains $`3esn` Contains 6.0e0 Asc Optional Match ``=Shortestpath((`1esn` :`2esn`:`4esn`)<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})),@usn5=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))) Where 01234567[10.12e12][0Xa] With $0 =~{@usn5} =~1e1,.1e-1[$@usn6] As `3esn` Order By {7} Is Not Null Descending Skip [`6esn` In 010[{`1esn`}..] Where {`4esn`}[00..]][Case $123456789[{usn1}][.12e-12] When .12e-12[9e1] Then 2.9e1[2.9e1..][`4esn`..] Else 00 =~`4esn` =~.9e-12 End..[usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF]];"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On()<-[`8esn`:`4esn`]-()Assert Exists({`6esn`:12[@usn6][{`2esn`}]}.@usn5!);"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Create Constraint On(#usn8:`4esn`)Assert Reduce(#usn7=$`8esn`[..5.9e-12][..`8esn`],#usn8 In 07[..$`5esn`]|$@usn5[``..]).`2esn`.usn2?.usn2! Is Unique;"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Create Allshortestpaths(((:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))),`6esn`=Shortestpath((((:`6esn`{`3esn`:9e12[..usn2][.._usn3]})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})<-[_usn4 *010..0{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}]-(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})))) Start `1esn`=Node( {`5esn`}) ,usn2=Node:_usn3(`7esn`='s_str')Where $12[$`6esn`..][01..]"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Load Csv From {`5esn`}[.1e-1..1e-1][999..{_usn3}] As _usn3 Fieldterminator 's_str' Match `2esn`=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))),Shortestpath((((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[`8esn`*]-(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)))) Using Scan #usn8:`8esn` Using Scan `4esn`:#usn7 Where 2.9e1 =~Count(*) =~{123456789} Union All Start _usn3=Relationship:`3esn`(#usn7={_usn3}) ,`1esn`=Rel:``({`4esn`});"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 With {`2esn`}[0x0..9e0] As `6esn`,{`8esn`} Ends With true Ends With {`3esn`} As `2esn` Skip {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null) Where 2.9e1 Ends With `5esn` Ends With 1000 Create `2esn`=(:@usn6:_usn3),(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})<-[`1esn`:#usn7|:@usn5 *..123456789]-({#usn7:{7}[0x0][1e1]}) Union All Merge usn1=Shortestpath((`1esn` :`7esn`{usn1:3.9e-1 Starts With .9e0 Starts With {#usn7}})<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`6esn` :`4esn`:usn2)-[`1esn`]-(`2esn` :`2esn`:`4esn`{#usn7:0 Starts With `7esn` Starts With 9e0})) On Match Set `1esn`+=[_usn3 In `8esn`[_usn4] Where {#usn7} Starts With .1e-1|`3esn` Is Null] Contains `5esn`({#usn8} Ends With _usn3 Ends With `2esn`,.9e0 =~#usn7),@usn6 =[`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0|{`4esn`} In 1000 In {@usn5}] Is Null,{`1esn`:$999 Is Not Null}.`6esn`? =Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) On Match Set `6esn`+=\"d_str\" Starts With ``,[usn1 In \"d_str\" Contains {@usn6} Where $`8esn`|$usn1 =~.0e0 =~{`4esn`}].`4esn`! =.9e0 Is Not Null,usn2 =Case When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else {123456789} Starts With `6esn` End =~Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where `4esn` Contains 0X0123456789ABCDEF Contains $usn2) =~Allshortestpaths((`7esn` :``{usn2:$7})) Merge Shortestpath(((:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})-[?:`4esn`|:`2esn`{usn1:{123456789} Starts With `6esn`,@usn5:9e1 Ends With 9e12 Ends With 0x0}]-(`2esn` :usn1))) On Create Set `3esn`+=12 Ends With 12e12,usn1+=Case 0e-0[$``..10.12e12] When $usn2 In #usn7 In #usn7 Then \"d_str\" In usn2 In $`7esn` When {`3esn`}[_usn4][2.9e1] Then `6esn` =~999 =~$999 End Ends With None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn5 Starts With #usn7) Ends With [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0X0123456789ABCDEF Ends With {1000}|Count ( * )[_usn4..]],`1esn` =0x0 Contains 7.0e-0 On Match Set `6esn` =(`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Is Not Null Is Not Null"), + octest_legacy:ct_string("Profile Foreach(`8esn` In `6esn` =~999 =~$999| Match (((`7esn` :usn1)<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})<-[`3esn`?:@usn6|:`4esn`]-(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))),``=((:_usn4:`2esn`{@usn5:1e-1[$`4esn`]})<-[? *0]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})) Using Scan ``:`1esn`) Unwind Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) As `4esn` Union All Foreach(`4esn` In .0e-0[..01234567]| Start _usn3=Relationship(0x0) ,``=Relationship( {@usn5})Where 0Xa In 1.0 In $@usn5 With Distinct {`6esn`} Starts With {`5esn`} Starts With 2.9e1 As _usn3,Case #usn8 Is Null Is Null When {`1esn`} Contains 1.0 Contains 4.9e12 Then 7 Is Null Is Null End[..Reduce(usn2=1.0 Is Null Is Null,`3esn` In 8.1e1 Contains .9e-1 Contains false|{`6esn`} =~2.12 =~123.654)][..{`3esn`:Count ( * )[_usn4..]}] As #usn8 Where 9e-1 Contains 3.9e-1);"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Create `2esn`=(({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})) Detach Delete None(`` In `7esn` =~#usn8 =~\"d_str\" Where $`4esn` In {999}) Starts With ({usn1:12[..$`5esn`]})-[:`1esn`|:`1esn` *999..123456789{@usn5:$999 Ends With `2esn` Ends With 12.0}]->(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}) Starts With Case When $#usn8 Is Not Null Is Not Null Then $#usn8[$0..`3esn`][1e-1..$7] When $`` Starts With $`4esn` Starts With `3esn` Then .12e12[$usn1..][{@usn6}..] End,{123456789} Contains $0,Filter(#usn7 In .0e-0 In 12 Where 00[$``])[[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $`4esn`[usn2..]|3.9e-1 Contains $@usn5]] Union All Unwind Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Is Null As #usn8"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Remove `8esn`(#usn7[$`8esn`][{`3esn`}],`6esn`[$@usn5][01]).usn1.@usn5.`4esn`?,({``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]}).`1esn`?,None(usn1 In \"d_str\" Contains {@usn6} Where false =~{`8esn`} =~00).`5esn`!.#usn8! Create Unique ((`4esn` :#usn7:`8esn`)<-[:`8esn`|:#usn8{_usn4:$#usn7 Ends With {`5esn`} Ends With 01}]-({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[usn1:#usn7|:@usn5 *999..123456789]->(`5esn` :``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})),(`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}) Foreach(`1esn` In None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..])| Create Unique (((@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?*..]-(`` {`6esn`:1000[{`1esn`}..][$`3esn`..]})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))),Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)))"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Create Constraint On(#usn8:`8esn`)Assert Exists(Reduce(`8esn`={0}[`4esn`..{`8esn`}],#usn8 In 07[..$`5esn`]|12e12 Contains {0}).`5esn`!.`6esn`);"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Using Periodic Commit 00 Load Csv With Headers From $999 =~false =~{`8esn`} As @usn6 Fieldterminator 's_str' Foreach(usn2 In 's_str'[$_usn3..][9.1e-1..]| Start `7esn`=Node( {999}) ,`5esn`=Node:_usn4(@usn5={`4esn`})Where $#usn7);"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(`5esn`:`7esn`)Assert Exists(Reduce(#usn7=9e1[0.0],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|0.0[$`4esn`]).#usn8!.`1esn`!.`1esn`?)"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On(`8esn`:`2esn`)Assert Reduce(``=$`3esn` =~#usn8 =~0x0,usn2 In $`5esn`[{`4esn`}][{0}]|_usn3 =~{7} =~123.654).usn1! Is Unique;"), + octest_legacy:ct_string("Cypher Cypher 1000.999 With *,Reduce(#usn7=$usn1 Ends With {`2esn`} Ends With $usn1,`6esn` In 010[{`1esn`}..]|.9e-12[.12e12..][0Xa..])[#usn7(8.1e1 Contains $@usn6,$12[$`6esn`..][01..])..Reduce(@usn5=`1esn` In 6.0e0 In 12,`` In `7esn` =~#usn8 =~\"d_str\"|$`6esn` =~$#usn7 =~$`4esn`)] Order By Allshortestpaths(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0}))[Reduce(@usn6=10.12e12 Starts With $`4esn` Starts With 0e0,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$1000 Contains $123456789 Contains #usn8)..Case 7[..123456789][..true] When $1000[..0e-0][..010] Then 999 Starts With 7.0e-0 Starts With true End][[`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]]..Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When 0.12[Count ( * )..Count ( * )][$999..`5esn`] Then $123456789[..$999][..`6esn`] Else 7[{`4esn`}..] End] Asc,{`3esn`} =~$`` =~$`8esn` Ascending Skip Reduce(`1esn`={`5esn`}[01234567..][5.9e-12..],usn1 In {#usn7} =~.12e12 =~9e0|$`6esn`[..01][..{_usn3}]) Ends With (`2esn` :usn1)<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-(_usn3 :`1esn`:``) Ends With {usn1:{12}[6.0e0..{usn2}][{_usn3}..{#usn7}]} Limit {`3esn`}[...1e1][..0] Where $7[.1e-1..{@usn6}][$7..{`1esn`}] Start ``=Node(00) ,`2esn`=Rel(07,0Xa) Union All With @usn5[{`1esn`}..][Count ( * )..] As `8esn` Limit Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Contains (:`2esn`:`4esn`{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``) Contains {@usn6:10.12e12 Contains .9e0,`3esn`:`6esn` =~999 =~$999} Where {`1esn`}[..$_usn4] Union Delete Filter(@usn6 In 9e12[..usn2][.._usn3] Where 1.9e0[..0][.._usn3]) Ends With {`6esn`:9e12 Ends With \"d_str\" Ends With 0X7,`3esn`:0X0123456789ABCDEF[1e1..]} Ends With Reduce(@usn5=`` Contains {`6esn`} Contains 123456789,`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|00[$``]) Foreach(`5esn` In 0 Contains {`2esn`}| Optional Match Allshortestpaths((:`3esn`)) Using Index `6esn`:usn1(`3esn`) Where {``} Is Null Is Null);"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Create Constraint On(usn1:`6esn`)Assert Exists([`7esn` In 0.12 Is Not Null Where 0X0123456789ABCDEF In false].`7esn`)"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Drop Constraint On(`7esn`:``)Assert {#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}._usn4! Is Unique"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Using Periodic Commit 0X0123456789ABCDEF Load Csv From 0x0[{`6esn`}..] As usn1 Fieldterminator 's_str'"), + octest_legacy:ct_string("Cypher 1000.999 Return `7esn` In _usn4 In $`7esn` Skip 's_str'[`3esn`..0x0] Union Detach Delete $7[999..10.12e12][$`1esn`..{usn1}];"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Create Constraint On(usn1:`1esn`)Assert Exists(Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]).#usn8.`5esn`!);"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On()<-[`6esn`:_usn4]-()Assert Exists(Case 0e-0 In 0X0123456789ABCDEF In `3esn` When $12[10.12e12][.1e1] Then usn1 Ends With 11.12e-12 Ends With 5.9e-12 Else {123456789} Starts With $_usn4 Starts With 0x0 End.`8esn`?.`7esn`?)"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Merge ``=((:`7esn`{`1esn`:$`8esn` Is Null Is Null,`1esn`:0.12 =~2.9e1 =~9e1})-[:#usn8|:``*{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]->(:``{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) On Match Set Reduce(`4esn`=.12e12[..$123456789],usn1 In $@usn6 Is Null Is Null|2.9e1 Ends With `5esn` Ends With 1000).#usn7.usn1 =Count(*)[@usn5..],_usn3 =0.12 Ends With 7 Ends With 12 On Create Set (:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}).usn2 =Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] Delete Filter(@usn6 In 9e12[..usn2][.._usn3] Where 1.9e0[..0][.._usn3]) Ends With {`6esn`:9e12 Ends With \"d_str\" Ends With 0X7,`3esn`:0X0123456789ABCDEF[1e1..]} Ends With Reduce(@usn5=`` Contains {`6esn`} Contains 123456789,`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|00[$``]),12.0 Starts With 00,Case #usn8 Is Null Is Null When {`1esn`} Contains 1.0 Contains 4.9e12 Then 7 Is Null Is Null End[..Reduce(usn2=1.0 Is Null Is Null,`3esn` In 8.1e1 Contains .9e-1 Contains false|{`6esn`} =~2.12 =~123.654)][..{`3esn`:Count ( * )[_usn4..]}]"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Create ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]}) Foreach(usn2 In $`7esn` Is Null Is Null| Optional Match `4esn`=Allshortestpaths((:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[*{usn1:{`6esn`} In .0e0 In $0,usn1:07[..$`5esn`]}]-(:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})) Using Join On `6esn`,_usn3 Where {`3esn`}[#usn7] Return Distinct Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]|0e-0[{@usn6}])[Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3))][Case When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] When {123456789} Starts With $_usn4 Starts With 0x0 Then 9e0[`3esn`][0] End] As `3esn`,Extract(#usn8 In 07[..$`5esn`] Where $usn2[..$999][..#usn8]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )])[Case {#usn7}[.12e-12] When $`4esn`[$@usn6...12e12] Then .12e-12[@usn6..'s_str'] Else .12e-12 Starts With .12e-12 End..(`` :``)-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})][Reduce(`5esn`=Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|{usn2}[9e-1])..All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}])] As @usn5,({`7esn`:{`3esn`}[$#usn8..],`4esn`:{`8esn`}[..999][.._usn3]})-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Contains Reduce(``=0xabc Starts With 12 Starts With 0e-0,_usn3 In `8esn`[_usn4]|12.0 Starts With 00) Contains Any(@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null) Order By usn2($usn1 =~.0e0 =~{`4esn`}) Contains Allshortestpaths(((#usn8 :@usn5)<-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 )<-[?:`1esn`|:`1esn`{`5esn`:9e1[0.0]}]->(`8esn` ))) Ascending Skip $_usn4 Ends With {#usn8}) Merge Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))) On Match Set Case .12e12 Ends With 07 Ends With 3.9e-1 When 0.12 In $`` Then 0e-0 In 0X0123456789ABCDEF In `3esn` When 01 Ends With .0e0 Ends With 7.0e-0 Then $`6esn`[@usn6...9e-12] End.`1esn`.`1esn` =1e-1 Starts With .1e1 Starts With 12.0 Union Start usn1=Rel:`7esn`(`8esn`={`3esn`}) ,`5esn`=Node:usn2(_usn4='s_str')Where {@usn5}[10.12e12..]"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Create Constraint On()<-[_usn4:`1esn`]-()Assert Exists((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})-[_usn4*{`3esn`:{``} Is Null Is Null}]-({`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}).`1esn`);"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Create Unique ``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))) Detach Delete 2.12[010..][{999}..],Reduce(usn2=`4esn` Ends With 9e12 Ends With {`5esn`},`6esn` In 010[{`1esn`}..]|$@usn5[.9e-1]) Starts With Reduce(`4esn`=.0e-0 In 12,`7esn` In 0.12 Is Not Null|1.0 Is Null Is Null),Filter(#usn7 In .0e-0 In 12 Where #usn7[123.654][{12}])[[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]..Reduce(`1esn`=`2esn`,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|.9e0 =~#usn7)] Union Foreach(#usn8 In Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000)| Match Shortestpath(((usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})-[{#usn7:1e-1[$`4esn`]}]->(_usn4 :`1esn`:``{`3esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}))),(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})<-[`5esn`:@usn6|:`4esn` *010..0{`8esn`:0xabc Starts With 12 Starts With 0e-0}]-(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})<-[?:@usn6|:`4esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]-(`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]}) Using Index `1esn`:`1esn`(`4esn`) Using Join On _usn4,usn2,``) Optional Match `1esn`=((usn2 :`2esn`:`4esn`{`7esn`:@usn5 =~$#usn7 =~{usn1}})<-[`1esn`:`4esn`|:`2esn`{`5esn`:$_usn3[usn2..][usn1..]}]->(:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})) Where 3.9e-1[{@usn6}..][01234567..] Start `7esn`=Node( {999}) Where #usn7[$`8esn`][{`3esn`}] Union All Optional Match usn1=Allshortestpaths(({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})<-[usn2:usn1|usn2]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null})) Using Index @usn5:usn1(`4esn`) Return *,07[9e-1..][1e1..] As @usn5 Order By 6.0e0 Is Null Desc,Any(`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]) In Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Asc,$12 Ends With 12.0 Ends With $`4esn` Asc Foreach(_usn4 In {#usn7}[..\"d_str\"][..#usn8]| Unwind .12e12[$usn1..][{@usn6}..] As `6esn` Remove Reduce(usn2=12.0[..Count ( * )][..@usn6],#usn8 In 07[..$`5esn`]|#usn8[\"d_str\"..usn2])._usn4?._usn4);"), + octest_legacy:ct_string("Cypher 1000.999 Create Constraint On()-[_usn3:`3esn`]->()Assert Exists(Any(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $usn1[..$999][..0e0]).`2esn`!);"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On(@usn5:`6esn`)Assert All(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 1.9e0[.12e-12][9e-12])._usn3!.`4esn`?.#usn7! Is Unique"), + octest_legacy:ct_string("Cypher 1000.999 Create Constraint On(`6esn`:`3esn`)Assert Exists(Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where 1e-1 =~$`7esn` =~1e1|{`6esn`}[@usn5..{@usn6}]).usn1!)"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Using Periodic Commit 0X7 Load Csv From Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]) In (`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) In `4esn`($#usn7[01..2.12][2.12..3.9e-1]) As _usn3 Fieldterminator 's_str';"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Unwind 9e0 In {usn2} In {@usn6} As @usn5 Start `2esn`=Relationship:_usn4(@usn6=\"d_str\") Union All Start `7esn`=Node:@usn6(`3esn`={``}) Start `3esn`=Node(0xabc,7,0Xa,01234567) Where $`8esn` Is Not Null Is Not Null Union Create Unique `7esn`=Shortestpath(((usn1 :_usn4:`2esn`)<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[?{#usn7:`2esn`,`7esn`:$@usn5 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))) Optional Match (({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 {#usn7:$999 =~false =~{`8esn`}})),(((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}))) Using Scan `4esn`:`1esn` Using Index `6esn`:`8esn`(`3esn`) Where $#usn7[01..2.12][2.12..3.9e-1]"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Create Constraint On()-[_usn3:#usn7]->()Assert Exists(None(usn1 In {#usn7} =~.12e12 =~9e0 Where {1000} Starts With 10.12e12 Starts With .0e-0).`7esn`?.usn2.`8esn`?);"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Load Csv With Headers From $0 Is Null As `7esn` Fieldterminator \"d_str\" Detach Delete $_usn3[0X0123456789ABCDEF..][0x0..],0[10.12e12];"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Using Periodic Commit 0X0123456789ABCDEF Load Csv From #usn7 Is Null Is Null As `2esn` Fieldterminator 's_str' Merge Shortestpath((((:`3esn`{usn2:01234567[10.12e12][0Xa]})-[_usn3?{`8esn`:{usn2} Is Not Null Is Not Null}]->({`7esn`:.9e12 Is Not Null Is Not Null})-[#usn8?:`4esn`|:`2esn` *7{`6esn`:{0} Ends With 0Xa,usn1:.9e1 Is Null Is Null}]->({`1esn`:01 =~{_usn3} =~01,`8esn`:{#usn7} Ends With 999 Ends With 12})))) On Create Set `4esn` =Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null,{``:`6esn` =~999 =~$999}.`3esn`! =.1e1 In $999 In {#usn8},@usn5 =9e1 In $1000"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Drop Constraint On(`7esn`:_usn3)Assert {@usn6:12e12[{`4esn`}..`4esn`][999..{@usn6}]}.usn1?.`8esn`? Is Unique"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Create Constraint On()-[``:_usn4]-()Assert Exists((:usn1{usn1:true In 0.0,@usn5:{`1esn`} Is Null})-[@usn6?:`4esn`|:`2esn`{`2esn`:Count ( * )[9e0..$``]}]-(:usn2{usn1:_usn4 Is Not Null Is Not Null}).usn2?.#usn8!)"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Drop Constraint On()-[`6esn`:@usn5]->()Assert Exists([`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {`7esn`} Is Not Null Is Not Null].`8esn`)"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Load Csv With Headers From $`8esn` Starts With {`7esn`} As #usn8 Fieldterminator \"d_str\" Union Merge @usn6=((`1esn` :`8esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})) On Create Set #usn7 =0.0[$`4esn`],count({123456789} Starts With $_usn4 Starts With 0x0).#usn7? =5.9e-12 Contains {12} Contains {#usn8} On Create Set `3esn` =$`1esn`[4.9e12..][_usn3..] Load Csv With Headers From 0Xa In 1.0 In $@usn5 As @usn5 Fieldterminator \"d_str\" Start @usn6=Relationship:usn2({usn2}) ,`7esn`=Node:#usn8(@usn5={@usn6}) Union Delete 1e-1 Contains 0.0,1e-1 Starts With .1e1 Starts With 12.0 With $@usn5[.9e-1],.1e1 In 12.0 In $``,@usn5[9e-1..{`1esn`}] As `` Order By Filter(usn1 In $@usn6 Is Null Is Null Where {`3esn`}[#usn7]) Is Null Is Null Desc,`4esn`[12.0..][9.1e-1..] Descending,$_usn3 In `2esn` In `3esn` Asc Limit 1.9e0 =~.0e0 =~0X7 Foreach(usn2 In (`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End]| Start _usn4=Relationship( {#usn8}) ,`4esn`=Node:usn2(usn1={_usn3}));"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Create Constraint On()-[`1esn`:`8esn`]-()Assert Exists(All(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .9e12 Is Not Null Is Not Null).`1esn`!)"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Detach Delete \"d_str\" Starts With ``,{12}[true..][7..] Start _usn3=Rel:`8esn`(usn1={#usn7}) ,`4esn`=Rel:_usn4(@usn5={#usn7})Where 6.0e0 =~12.0 =~9e1 Union Foreach(`1esn` In `5esn` Contains 0 Contains $12| Load Csv From $12 Contains false Contains {`1esn`} As _usn4 ) Unwind 9e-1[0.0..] As `7esn` Unwind Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`|.9e-12[.12e12..][0Xa..])[{#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}..] As `1esn` Union All Create Unique @usn6=(({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)) Start @usn6=Node:`2esn`(#usn7={`4esn`}) Unwind [`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] As @usn5;"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Drop Constraint On()<-[@usn6:_usn3]-()Assert Exists(exists(_usn3 =~{7} =~123.654,12e12 Contains {0}).`6esn`?);"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Create Constraint On()<-[`4esn`:`1esn`]-()Assert Exists(Case `1esn` In 6.0e0 In 12 When 2.9e1[2.12..1.9e0] Then {`1esn`}[{usn2}] Else 12e12 Ends With `5esn` Ends With .0e0 End.`8esn`.usn1);"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Detach Delete $usn1 Contains 4.9e12 Contains $`2esn`,Filter(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}]) Starts With Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3)) Starts With {@usn5:$123456789 Is Not Null Is Not Null},{#usn7} Is Not Null"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Optional Match #usn8=({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)}),((:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]})-[``:usn1|usn2{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]}]-(`7esn` {@usn5:Count ( * )[_usn4..]})-[usn2:_usn3 *0xabc..12]->(:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})) Using Scan ``:#usn8 Using Scan #usn7:`8esn` Match `3esn`=({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}),((:#usn7:`8esn`{@usn6:123456789[_usn4..`1esn`][$`6esn`..{@usn6}]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}})) Using Index `5esn`:`4esn`(_usn3) Union Delete Filter(@usn6 In 9e12[..usn2][.._usn3] Where 1.9e0[..0][.._usn3]) Ends With {`6esn`:9e12 Ends With \"d_str\" Ends With 0X7,`3esn`:0X0123456789ABCDEF[1e1..]} Ends With Reduce(@usn5=`` Contains {`6esn`} Contains 123456789,`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|00[$``]) Foreach(`5esn` In 0 Contains {`2esn`}| Optional Match Allshortestpaths((:`3esn`)) Using Index `6esn`:usn1(`3esn`) Where {``} Is Null Is Null);"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Foreach(@usn6 In ({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})-[`8esn`?:_usn3]->(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Ends With {_usn3:{123456789} Starts With `6esn`} Ends With {usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}| Unwind $`6esn` =~$#usn7 =~$`4esn` As usn1) Load Csv From Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)) Is Not Null Is Not Null As `1esn` Merge `8esn`=((`8esn` :`6esn`)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(@usn5 :@usn6:_usn3)) On Create Set ``+=12e12 Contains {0},`4esn`+=$`2esn` Contains {`4esn`} Union All Delete 9e12 Is Not Null Is Not Null,.9e1 Is Null Is Null Remove {@usn6:6.0e0[$#usn7..$1000]}.`8esn`?,{`3esn`:9e0[`3esn`][0],usn2:$`5esn` Is Not Null}.`8esn` Merge `2esn`=((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0})) On Create Set `2esn`+=9e1[0.0],#usn8+=.12e-12[@usn6..'s_str'],{`6esn`:4.9e12 Is Not Null Is Not Null,_usn4:`4esn`[9e-12..true]}.#usn8._usn3? =Shortestpath((((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))))[None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0.0[`7esn`])..Single(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])][`5esn`(Distinct .9e1[$`1esn`..][$``..])..Case When 12e12 Ends With `5esn` Ends With .0e0 Then .9e0 In 8.1e1 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else .9e1 Ends With 0x0 End] Union Return *,\"d_str\" In usn2 In $`7esn` As `5esn`,12[11.12e-12..][`4esn`..] Order By Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Is Null Ascending,'s_str'[$`8esn`..$999] Descending,$`2esn`[`8esn`..] Descending Remove Case 2.9e1 Ends With `5esn` Ends With 1000 When @usn6[999][1000] Then .0e0 =~0 =~.0e0 When {`4esn`} In 1000 In {@usn5} Then 123456789[_usn4..`1esn`][$`6esn`..{@usn6}] Else .12e12 Is Not Null End.`2esn`? Delete (usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..])"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Drop Constraint On()-[`8esn`:@usn5]-()Assert Exists(None(#usn7 In .0e-0 In 12 Where 0xabc[..{usn1}][..\"d_str\"]).usn1);"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Create Constraint On(`6esn`:``)Assert All(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 999 Starts With 7.0e-0 Starts With true).`7esn`!.usn2?.`6esn`? Is Unique"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Drop Constraint On(@usn5:`2esn`)Assert count(Distinct $`8esn` =~{`6esn`} =~12,0[..{#usn7}][..$_usn3]).#usn8 Is Unique"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Match Allshortestpaths((`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`)) Using Index usn1:``(@usn5) Union Unwind {`8esn`}[.0e0..][999..] As `1esn` Union All Remove All(`` In `7esn` =~#usn8 =~\"d_str\" Where 9e12 Ends With 9e-1 Ends With 9e1)._usn4?.`2esn`,#usn8({`4esn`} Ends With Count(*),`6esn`[3.9e-1..`8esn`][12.0..0.0]).`3esn`!.`6esn`? Remove Allshortestpaths(((`7esn` {#usn8:2.9e1[{`2esn`}]})-[?:`1esn`|:`1esn` *..0x0{@usn6:.0e-0 In 12}]-(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0})-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]-(`1esn` :_usn4:`2esn`))).`2esn`?.`7esn`.`5esn`,Shortestpath((`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]}))._usn3.`3esn`.`1esn`!,#usn7(Distinct \"d_str\" Is Not Null Is Not Null,$`6esn`[$_usn3..{1000}])._usn3!.#usn7?;"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 With Distinct $`8esn` Is Not Null Is Not Null As _usn3 Order By Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Descending,\"d_str\" In 7.0e-0 Desc Skip Reduce(_usn3=7.0e-0[$`6esn`..],`7esn` In 0.12 Is Not Null|false Starts With 0 Starts With 2.9e1) =~Case $`3esn` =~0x0 When $12[$@usn5] Then 11.12e-12 In {usn1} When 4.9e12[{_usn4}..] Then $@usn5 Contains _usn3 Else .12e-12 Starts With .12e-12 End =~Reduce(_usn4=_usn4 Is Not Null Is Not Null,`2esn` In $@usn5 Is Not Null Is Not Null|7.0e-0 Is Not Null) Limit {_usn3:.0e-0[..``][..$7]}[..(`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`)][..@usn5]"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Create Constraint On(usn1:`5esn`)Assert Filter(#usn7 In .0e-0 In 12 Where 123.654 Ends With {1000} Ends With 9e12).#usn8!.`6esn` Is Unique"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Create Constraint On()-[`6esn`:``]-()Assert Exists((:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})-[`3esn`? *..07]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]})._usn4?)"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Create ``=Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))) With Distinct 0.0[$`4esn`] As `4esn` Order By 9e1 Ends With `7esn` Ends With 2.12 Descending,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null Asc,{0} =~{999} Desc Skip 6.0e0[None(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0)..][[_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]]..] Limit [usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]] With *,_usn4['s_str'][8.1e1] Order By 999 Starts With 07 Ascending Where 1.0 Is Not Null Union Optional Match (:usn2)<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:#usn8|:``{#usn8:{_usn4} In 0X7 In 0e0,`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]-(@usn5 ) Union Return *,Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,Case \"d_str\"[0x0..{@usn6}][$@usn5..0] When 0e0 Contains {`2esn`} Then 0X0123456789ABCDEF[1e1..] Else .12e12 Starts With 5.9e-12 Starts With `4esn` End In {usn1:$#usn7[01..2.12][2.12..3.9e-1],`6esn`:.0e-0 Ends With $`2esn` Ends With `5esn`} Order By .9e12 Contains 5.9e-12 Contains 9e-1 Descending Skip $123456789[..$999][..`6esn`];"), + octest_legacy:ct_string("Cypher 999.123456789 Create Constraint On(@usn5:#usn7)Assert Any(_usn3 In `8esn`[_usn4] Where $_usn3[usn2..][usn1..]).`8esn`.`2esn`.#usn8! Is Unique"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Start `1esn`=Rel:`5esn`(@usn5=\"d_str\") ,`5esn`=Node:@usn6(#usn8='s_str') With Distinct 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Skip {usn1:$1000 Is Null}[Shortestpath((:usn1$1000))..][Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true)..] Where `3esn` Starts With 9.1e-1 Starts With .9e-1 Match ((`4esn` :`6esn`)<-[{``:7.0e-0 Is Not Null}]->(:#usn7:`8esn`{@usn5:{0} In {`1esn`}})-[``?{``:{#usn7} =~$@usn6 =~$7}]-(`3esn` :@usn5)) Using Join On #usn8 Union Foreach(`1esn` In $@usn6 Starts With 0xabc Starts With {`7esn`}| With Distinct *,7 Starts With 9e-12 As #usn7,$_usn3 In `2esn` In `3esn` Order By Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null Desc,0X7 Contains $12 Contains 0e0 Descending,{@usn5:5.9e-12 Is Null Is Null} Ends With Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where _usn4['s_str'][8.1e1]|0.12 =~2.9e1 =~9e1) Ends With All(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12) Descending Where {`1esn`} Contains 1.0 Contains 4.9e12) Union Match Shortestpath(((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999}))),_usn3=(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}) Using Join On `4esn`,`5esn`,@usn6 Where #usn8 =~{@usn5} Unwind {7} Is Not Null As _usn3"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Match `2esn`=Allshortestpaths(((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]}))),#usn8=((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})-[?:#usn7|:@usn5 *..00]-(:@usn5{`7esn`:01234567[\"d_str\"..][$`4esn`..]}))"), + octest_legacy:ct_string("Cypher 999.123456789 Using Periodic Commit 0xabc Load Csv With Headers From Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000 As `` Start `5esn`=Node:usn1(\"d_str\") Where $usn2 In #usn7 In #usn7 Remove Case $999 Is Not Null When 0e0 =~{12} =~{1000} Then $#usn8[$0..`3esn`][1e-1..$7] When `3esn` Contains 01 Contains 01 Then 9e-1 Contains 3.9e-1 Else ``[$#usn7] End.`7esn`!,_usn4:@usn5"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Drop Constraint On(#usn8:`2esn`)Assert Exists(Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $`4esn`[usn2..]|{`6esn`}[6.0e0..9e0][.9e1..12e12]).`2esn`)"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Start `1esn`=Rel:`2esn`(#usn8=\"d_str\") ,#usn8=Node( {123456789})Where .12e-12[@usn6..'s_str'] With Distinct .12e-12[@usn6..'s_str'],Allshortestpaths((((@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[``? *..00{@usn5:$`8esn` =~{`1esn`} =~$7,#usn7:.12e-12 Starts With .12e-12}]->({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]})-[:`8esn`|:#usn8 *01]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))))[..Case When {#usn7} Ends With 999 Ends With 12 Then {`3esn`}[999..$`4esn`] End],5.9e-12[01][`4esn`] As _usn4 Skip Single(`` In `7esn` =~#usn8 =~\"d_str\")[Reduce(`3esn`=1e1[$_usn3],`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1[..9.1e-1][...9e1])][[#usn7 In .0e-0 In 12 Where \"d_str\"[0x0..{@usn6}][$@usn5..0]|{7}[$@usn5..123456789][1e1..1.9e0]]] Union All Merge `5esn`=Shortestpath(((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`}))) On Create Set `4esn` =Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 7 In 1e1 In {``})[Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..])..@usn6(0xabc[..Count(*)][..$`5esn`])][$`6esn`..{#usn7:00 =~`4esn` =~.9e-12}] Return Distinct Allshortestpaths((({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)))[Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0])..][Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End..] As #usn8,{12} Ends With 1e1 As `8esn` Order By ``[$7..$_usn4] Asc Delete {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null),0.0[$`4esn`] Union All Merge `5esn`=Shortestpath(((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`}))) Return Null[{999}..$usn2] As `7esn`,{@usn6:$12 Is Null} In (`4esn` {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}) As usn2 Skip .12e-12[{`1esn`}][`1esn`] Remove (:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(`2esn` :@usn5)-[`8esn`:_usn4|:`1esn`]->({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`}).#usn7,Filter(#usn7 In .0e-0 In 12 Where _usn4 Is Not Null Is Not Null).#usn7!"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Create `3esn`=(`4esn` :`3esn`)-[`3esn`?:`1esn`|:`1esn`]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}),@usn6=Allshortestpaths(({_usn3:.9e12 Contains 0 Contains $0})) Union Foreach(`3esn` In {`8esn`} Ends With true Ends With {`3esn`}| Create (`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})))) Unwind 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As `1esn` Union All Return Distinct *,7[..123456789][..true] Limit Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Is Null Remove Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0).`8esn`!,Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0).``? Start @usn5=Node:usn1(_usn3={@usn6}) ,@usn5=Rel:#usn7(\"d_str\")Where .1e1 Ends With #usn7 Ends With {#usn7};"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Unwind $@usn5 =~{`3esn`} As `5esn` Union All Start #usn8=Relationship:``({7}) Union All Create Unique (({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`2esn` *7]->(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})),Allshortestpaths((:#usn7:`8esn`{`3esn`:0.12 In $``})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})<-[:#usn8|:`` *0]->({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})) Foreach(#usn7 In Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}])| Unwind 1e1 =~{@usn5} =~`7esn` As #usn8) Detach Delete 0.12[8.1e1..0Xa][Count ( * )..{_usn3}],7 Starts With `` Starts With usn2"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(@usn5:`1esn`)Assert Case {`6esn`}[6.0e0..9e0][.9e1..12e12] When 3.9e-1 Ends With {usn1} Ends With {`5esn`} Then 5.9e-12 Is Null Is Null When 7 Is Null Is Null Then 2.12[`4esn`][.9e-1] End.``?.#usn8?.`3esn`? Is Unique"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` With 9e1 =~$`8esn` =~10.12e12 Limit 5.9e-12[\"d_str\"..][{`6esn`}..] Where {`8esn`}[..999][.._usn3] Unwind Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[$usn1..])[..Shortestpath((((`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn2 *7]-(`8esn` {_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}))))][..{`3esn`:$`6esn` Starts With 0.0,#usn8:$usn1 =~.0e0 =~{`4esn`}}] As @usn6 Create Unique #usn7=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 ))) Union All With Distinct {@usn5} As usn1 Skip Shortestpath(((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(_usn3 :usn1)))[..{_usn4:.9e-1 Ends With .0e-0 Ends With {_usn3},_usn4:9e1 Ends With 9e12 Ends With 0x0}][..Reduce(#usn8=`8esn`[_usn4],`1esn` In $12 In {usn2}|$`4esn` Is Not Null)] Optional Match Shortestpath(((`7esn` {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))) Using Join On `2esn`,`6esn` Using Join On `4esn`,`2esn`,`` Where #usn8 Is Null Is Null Detach Delete {999} =~$`6esn` =~$`6esn`,9e0[`7esn`..][#usn8..],$`4esn` Contains `4esn` Contains .0e-0 Union All Optional Match Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),_usn3=(#usn7 :@usn6:_usn3)-[`6esn`?:@usn5|:#usn7{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}) Foreach(#usn7 In .0e0 Starts With $usn1 Starts With {`6esn`}| Load Csv From $1000[$`2esn`..] As `1esn` Create (:@usn5),_usn3=((`1esn` :`8esn`)<-[:usn1|usn2]-(`` :`4esn`:usn2)<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``)))"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(`4esn`:`5esn`)Assert Exists(Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn` =~999 =~$999|`1esn` In 6.0e0 In 12).usn1?.``);"), + octest_legacy:ct_string("Cypher 999.123456789 Unwind $`8esn`[0x0][.9e0] As `5esn`;"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Using Periodic Commit 0Xa Load Csv With Headers From $#usn7[01..2.12][2.12..3.9e-1] As usn2 Fieldterminator 's_str' Foreach(`` In [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01|_usn4 Ends With {`8esn`} Ends With usn2][Any(usn1 In $@usn6 Is Null Is Null Where `3esn` Is Null)..]| Return Distinct Count(*)[{12}..{#usn8}] As @usn6,$123456789 =~1e-1,`5esn`({`5esn`}[01234567..][5.9e-12..],5.9e-12 Is Null Is Null)[Reduce(#usn7={12} Ends With $`3esn` Ends With 0xabc,usn1 In $@usn6 Is Null Is Null|`1esn`[Null][{@usn6}])..@usn5(`3esn` Contains `2esn` Contains {_usn4},2.9e1 In {``})][Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789}))..Any(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`)] As _usn4 Order By ({`5esn`:$`4esn` Ends With .12e12 Ends With 123.654,@usn6:{123456789} Contains $0})-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 {`2esn`:5.9e-12[0x0..]})-[`5esn`?:@usn5|:#usn7{`4esn`:9e-12[$7..]}]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})[[`6esn` In 010[{`1esn`}..] Where $12 Ends With 7.0e-0 Ends With 9e-12]..Reduce(`6esn`=$@usn5[``..],usn1 In {#usn7} =~.12e12 =~9e0|0xabc[..Count(*)][..$`5esn`])][Case When .1e1 Is Not Null Is Not Null Then @usn6 Starts With #usn7 When {1000}[`2esn`...0e-0][9e-1..0X7] Then $`8esn`[..12][..9e12] End..{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}] Desc Limit 12[11.12e-12..][`4esn`..]) Start `6esn`=Rel(7,0X7,0,01) "), + octest_legacy:ct_string("Cypher `6esn`=usn2 Foreach(`7esn` In $`1esn`[..1000][..\"d_str\"]| Create Unique #usn8=((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) Create usn2=Allshortestpaths(((:`8esn`{@usn6:$`6esn`[$_usn3..{1000}],_usn3:0xabc[..{usn1}][..\"d_str\"]}))),#usn7=Shortestpath(()<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]-({`4esn`:.9e12[6.0e0..][@usn5..],``:1.0 Is Not Null})-[`3esn`? *..07]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}))) Optional Match ``=(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}) Using Scan `6esn`:#usn8 Using Index @usn5:@usn6(`5esn`) Union With Distinct [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End As `5esn` Order By `1esn` In 6.0e0 In 12 Descending Limit {`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}} Starts With Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999|$`1esn`[..12e-12][...9e12]) Starts With (`4esn` :`8esn`{12})<-[`2esn`?:`4esn`|:`2esn`]-(`4esn` {`8esn`:5.9e-12[0x0..]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}) Union All With Distinct *,$`5esn`[{@usn6}..{`7esn`}],.9e-12[.12e12..][0Xa..] As _usn3 Order By {12}[true..][7..] Ascending,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Asc,({#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]})<-[`8esn`*]-(#usn8 )[..Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn`[0X0123456789ABCDEF..][`8esn`..]|$_usn3 =~'s_str' =~12)][..`1esn`(Distinct .9e1[$`1esn`..][$``..])] Ascending Skip {#usn7} Is Not Null Start `5esn`=Node:#usn7({usn1}) Where {1000} =~4.9e12 =~9e1 Unwind Case When {usn2} In false Then {`3esn`} Is Not Null Is Not Null When 6.0e0 Is Null Then {`4esn`}[{`3esn`}][$`2esn`] End[exists(Distinct {`3esn`}[#usn7],@usn5 =~$#usn7 =~{usn1})..] As #usn8"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 With Distinct *,$`4esn`[#usn7][8.1e1] As `2esn` Skip .1e1 Contains 1e-1 Contains #usn8 Limit 9e1 Ends With `7esn` Ends With 2.12 Where .1e1 Is Not Null Is Not Null Detach Delete Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000),{`4esn`}[..{`2esn`}] Create Allshortestpaths(({`6esn`:8.1e1 Contains .9e-1 Contains false})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})),@usn6=Allshortestpaths(({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})<-[usn2:usn1|usn2]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null})) Union Start `6esn`=Rel:@usn6(`8esn`='s_str') Load Csv With Headers From {123456789} =~@usn5 As _usn4 Union All Unwind 4.9e12 In 9e12 In .9e-12 As `8esn` Optional Match usn1=((`4esn` :_usn4:`2esn`{#usn8:\"d_str\" Contains {@usn6}})<-[?{@usn5:@usn6[999][1000]}]->(`1esn` )) Detach Delete {`6esn`} In {_usn4} In $12,{``} Contains 0.0 Contains `4esn`,[`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0|$usn1[9e1][{999}]] In @usn5() In Case When $#usn7 Contains 3.9e-1 Then .12e12 Starts With 5.9e-12 Starts With `4esn` When {1000}[`2esn`...0e-0][9e-1..0X7] Then 010[...12e-12] End;"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Merge `4esn`=((_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[`3esn`?:usn2]-(:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})) On Create Set Case $`8esn` Is Not Null Is Not Null When #usn8[\"d_str\"..usn2] Then .12e-12 Is Null End.`1esn`?.`7esn`?.usn2? =Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End[(`4esn` :#usn7:`8esn`)-[_usn3?:@usn6|:`4esn`{_usn4:$12 Ends With 12.0 Ends With $`4esn`}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2)..][Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1)..] Remove Case $`8esn` Is Not Null Is Not Null When #usn8[\"d_str\"..usn2] Then .12e-12 Is Null End.@usn6? Union Merge ((:`1esn`:``{`8esn`:5.9e-12[0x0..]})) On Create Set #usn7 =usn1 =~false =~{999},Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}).`2esn`! =9e12 Is Null Is Null,`2esn`+=Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`}) Ends With Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))) Ends With Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1) On Create Set `3esn` =$7[.1e-1..{@usn6}][$7..{`1esn`}],None(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {0}[.1e-1..][_usn4..]).usn2 =$`7esn` In $`4esn`,usn1+=$`4esn` Ends With {999};"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Foreach(usn1 In \"d_str\" Is Not Null Is Not Null| Create #usn7=(((#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})-[?:@usn5|:#usn7 *0]->({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})-[:usn2{``:07 Ends With {1000} Ends With 01234567,`5esn`:999 Ends With {#usn8}}]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]}))) Unwind (@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[`8esn`?:_usn3 *12{usn1:#usn7[.9e0..`3esn`][{`6esn`}..1000],_usn4:$usn2 In #usn7 In #usn7}]-(_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(usn2 :`2esn`:`4esn`)[..Reduce(`2esn`={1000}[..{usn1}][..1e-1],_usn3 In `8esn`[_usn4]|Count(*)[$7])][..{_usn3}] As `6esn`) Create usn1=(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0}),(`` :`8esn`)"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Using Periodic Commit 07 Load Csv With Headers From _usn4[{`3esn`}][00] As `6esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Using Periodic Commit 999 Load Csv From (usn1 :usn1{#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[`3esn`?:_usn4|:`1esn`]->(`6esn` :`4esn`:usn2)[Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {@usn6} In 9e12)][(`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})] As `` Fieldterminator \"d_str\" Merge `5esn`=(:`3esn`{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}) On Create Set Allshortestpaths(((:usn1{#usn8:$`8esn` Is Not Null Is Not Null,`5esn`:3.9e-1 Starts With .9e0 Starts With {#usn7}})-[usn2 *7]-(`` )<-[``:usn1|usn2{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]}]->(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1}))).`4esn`!.`4esn`? =01[{usn2}..][1.9e0..],@usn5+=_usn3($`5esn`[$_usn3][$12])[None(#usn8 In 07[..$`5esn`])..][All(`` In `7esn` =~#usn8 =~\"d_str\" Where 12e12 Is Not Null Is Not Null)..],Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`|\"d_str\" In usn2 In $`7esn`).`1esn`! =(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])] On Match Set `6esn` =$`5esn`[$0],@usn5 =None(`` In `7esn` =~#usn8 =~\"d_str\" Where 1e-1 =~$`7esn` =~1e1) Is Not Null Is Not Null,`2esn` ={`8esn`} Starts With .9e-1 Starts With 1000 Return 00[..@usn6] As `6esn`,{`3esn`}[...1e1][..0],Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null As `2esn` Skip $usn2 Ends With 9e12 Ends With Count ( * ) Limit 0xabc Starts With {`3esn`} Starts With {``}"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Return Distinct {123456789} =~.9e1 =~$_usn3,12.0[..Count ( * )][..@usn6] Order By Any(`7esn` In 0.12 Is Not Null Where $0 Contains $7) Is Not Null Is Not Null Asc Limit Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Null Is Null Merge `6esn`=Shortestpath(((#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn4]-(`2esn` :`1esn`:``))) Return Distinct *,$`4esn`[#usn7][8.1e1] As `2esn` Skip [usn1 In \"d_str\" Contains {@usn6} Where 5.9e-12[0x0..]|4.9e12 Ends With $@usn6] =~(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) =~(`3esn` :#usn8:@usn6)-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[:`2esn`|`5esn` *01]-({@usn6:{_usn4} In 0X7 In 0e0}) Union Merge _usn4=((_usn3 :`6esn`)<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})) On Create Set `7esn`+=$``[Count(*)..{12}],@usn5 =All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))]"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Unwind Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 10.12e12[usn2]|usn1 Ends With 11.12e-12 Ends With 5.9e-12)[Reduce(usn1={usn1} Is Not Null,usn1 In \"d_str\" Contains {@usn6}|{`3esn`} =~$`` =~$`8esn`)..Single(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)][[usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 00 =~`4esn` =~.9e-12]..Single(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12)] As @usn5 Return *,$1000[..0e-0][..010] As _usn4,Any(usn1 In $@usn6 Is Null Is Null)[Case {_usn3}[{0}...9e-1][9e-1...0e0] When 010[..9e-1][..0X7] Then $0 Ends With $usn1 Ends With {``} End..Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]})))] As `4esn` Order By 9e-12[0e0..@usn5] Ascending,{``:01234567[10.12e12][0Xa]} Is Null Is Null Descending,{_usn3} In $#usn8 In $12 Asc Skip Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789)[..All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 1e1 =~{@usn5} =~`7esn`)][..Case 07[..$`5esn`] When 00[$_usn4][$`1esn`] Then {#usn7}[.12e-12] Else `5esn` Contains 0 Contains $12 End] Start ``=Node:_usn4({999}) ,``=Node:#usn8(usn2={@usn5}) Union All Foreach(`` In Filter(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Starts With (#usn7 :``)-[`3esn`{`4esn`:12e12[.9e12..07]}]-(`1esn` :``{_usn4:$@usn5 =~{`3esn`}})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}) Starts With Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)| Create ((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})),`4esn`=((`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[?$999]-(`8esn` :@usn6:_usn3)<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})) Start usn1=Rel:`8esn`({`3esn`}) ,#usn8=Rel:`1esn`(`4esn`={@usn5}));"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Drop Constraint On(#usn8:`7esn`)Assert Shortestpath(((:`1esn`:``{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`}))).`7esn`? Is Unique"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Create Constraint On()<-[#usn8:@usn6]-()Assert Exists(None(usn2 In .12e-12 Ends With `2esn` Where {``} Is Null Is Null).@usn6?.`4esn`?._usn4);"), + octest_legacy:ct_string("Cypher 999.123456789 Create `5esn`=(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})<-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-(@usn5 :@usn6:_usn3{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`2esn` *1000..{`2esn`:{@usn6} In 9e12}]->(:usn1{usn1:true In 0.0,@usn5:{`1esn`} Is Null}),@usn6=(`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[ *0X0123456789ABCDEF]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}) Merge ((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]}));"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On()-[`4esn`:#usn8]->()Assert Exists(Case When 's_str'[`2esn`][12.0] Then `8esn`[_usn4] Else .12e12 Starts With 5.9e-12 Starts With `4esn` End.`1esn`!);"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Foreach(@usn6 In 7.0e-0 Ends With 0e0 Ends With 3.9e-1| With Distinct 5.9e-12[01][`4esn`],$#usn8 Starts With 9.1e-1 Starts With {#usn7} As `8esn`,`5esn` Ends With 's_str' Ends With @usn5 As `1esn` Order By 's_str'[$_usn3..][9.1e-1..] Desc Where 1.0 Is Null Is Null Create Shortestpath((`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})),((_usn3 :`7esn`{@usn6:$`4esn` Ends With .12e12 Ends With 123.654})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)<-[#usn7? *0xabc..12]-(:`3esn`))) Optional Match @usn5=Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))),(@usn6 :_usn4:`2esn`) Using Join On `2esn`,`6esn` Using Scan #usn8:`1esn` Where 5.9e-12[12e-12][$`8esn`];"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Create Constraint On(#usn7:`3esn`)Assert [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where $`4esn`[usn2..]|$usn2[..$999][..#usn8]].@usn6?.``._usn4! Is Unique"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Create Constraint On()-[`4esn`:@usn5]-()Assert Exists(({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]})<-[usn1?{`5esn`:$0 Ends With 9e-12 Ends With $_usn4}]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})-[?:_usn3]->(_usn3 :`1esn`:``).`1esn`);"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Load Csv With Headers From Filter(#usn7 In .0e-0 In 12 Where 00[$``])[[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $`4esn`[usn2..]|3.9e-1 Contains $@usn5]] As usn1 Fieldterminator \"d_str\" Merge (({`3esn`:`5esn` Ends With Count(*)})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2)-[?:@usn5|:#usn7 *0]->({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})) On Create Set usn2+=Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null),#usn8 =None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) Merge `1esn`=Allshortestpaths((_usn3 {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})) On Match Set @usn6 =$@usn6[.1e-1][9e12] Union Delete $`1esn`[$`3esn`..`8esn`],Reduce(`6esn`=`2esn`[`7esn`][1000],usn2 In .12e-12 Ends With `2esn`|010[..9e-1][..0X7]) Contains `7esn` Contains Case When 9e1 Ends With 9e12 Ends With 0x0 Then {12} Ends With 1e1 Else `4esn` Contains 0X0123456789ABCDEF Contains $usn2 End Optional Match #usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2)))),(((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))) Using Scan `1esn`:`` Using Index _usn3:`3esn`(`4esn`) Return Distinct *,3.9e-1[{@usn6}..][01234567..] Skip 9e0[{7}...0e-0][Null..@usn5] Limit 0X0123456789ABCDEF[1e1..] Union All Match #usn8=Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[`7esn`:`4esn`|:`2esn`*{``:true Is Null,_usn3:$12 Ends With 7.0e-0 Ends With 9e-12}]->({`6esn`:3.9e-1[..$1000][..0.12]}))) Using Join On `4esn`,`2esn`,`` Remove {`8esn`:false Starts With 0 Starts With 2.9e1,@usn6:010 Starts With 9e12 Starts With 1000}.`3esn` Load Csv From (`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Is Not Null Is Not Null As `1esn` "), + octest_legacy:ct_string("Profile Unwind Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null As `2esn` Union All Remove `8esn`(#usn7[$`8esn`][{`3esn`}],`6esn`[$@usn5][01]).usn1.@usn5.`4esn`?,({``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]}).`1esn`?,None(usn1 In \"d_str\" Contains {@usn6} Where false =~{`8esn`} =~00).`5esn`!.#usn8! Create Unique ((`4esn` :#usn7:`8esn`)<-[:`8esn`|:#usn8{_usn4:$#usn7 Ends With {`5esn`} Ends With 01}]-({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[usn1:#usn7|:@usn5 *999..123456789]->(`5esn` :``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})),(`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}) Foreach(`1esn` In None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..])| Create Unique (((@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?*..]-(`` {`6esn`:1000[{`1esn`}..][$`3esn`..]})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))),Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`))) Union Delete @usn6[0x0..][$_usn4..],1e1 =~{@usn5} =~`7esn`,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]) Is Null;"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Remove Shortestpath((({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))).@usn5.`1esn`?,{@usn5:{0} In {`1esn`}}.#usn7?.`4esn`!"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Create Constraint On(usn1:@usn6)Assert {@usn5:999 Ends With {#usn8},_usn4:Null In {7}}.`7esn`? Is Unique"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Drop Constraint On(`5esn`:@usn6)Assert Exists(Case {`7esn`} Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] End.usn1.usn2!);"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Drop Constraint On()-[`6esn`:`5esn`]-()Assert Exists(Extract(usn2 In .12e-12 Ends With `2esn` Where `7esn`[1.9e0..5.9e-12][9e0..@usn5]).#usn7!.`3esn`?.`3esn`!);"), + octest_legacy:ct_string("Cypher 999.123456789 Unwind Single(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str') =~{``:01234567[10.12e12][0Xa]} As @usn6;"), + octest_legacy:ct_string("Profile Create Unique #usn8=({`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}) With *,$999 =~0e0 =~0X7 As `1esn` Skip {7} Is Not Null Optional Match (usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[``:`1esn`|:`1esn`{@usn5:999[..$@usn5][..``],@usn5:0xabc[..Count(*)][..$`5esn`]}]-(`1esn` :``{_usn4:$@usn5 =~{`3esn`}}) Using Index #usn7:`4esn`(@usn5) Where {`6esn`} =~2.12 =~123.654;"), + octest_legacy:ct_string("Cypher 999.123456789 Create Constraint On(_usn3:#usn7)Assert Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[..{0}][..true]|$`4esn` Is Null Is Null).`3esn`? Is Unique"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Create Constraint On()<-[`4esn`:`8esn`]-()Assert Exists({@usn6:$@usn5 Starts With #usn7,@usn6:$@usn5[.9e-1]}.@usn5)"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Drop Constraint On(_usn4:`6esn`)Assert Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {#usn8}[..@usn5]).`7esn`.@usn6 Is Unique"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On()<-[_usn4:``]-()Assert Exists(Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0).@usn5?)"), + octest_legacy:ct_string("Profile Match `4esn`=(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0}) Start `5esn`=Node:`8esn`('s_str') "), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Unwind {`3esn`}[..0xabc][..{`6esn`}] As `7esn` With *,Reduce(`4esn`={0} Is Not Null,#usn7 In .0e-0 In 12|12e12[{`4esn`}..`4esn`][999..{@usn6}]) Contains Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 0xabc[..{usn1}][..\"d_str\"]) Contains `3esn` As `5esn`,None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null) As _usn3 Order By {12}[true..][7..] Ascending,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Asc,({#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]})<-[`8esn`*]-(#usn8 )[..Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn`[0X0123456789ABCDEF..][`8esn`..]|$_usn3 =~'s_str' =~12)][..`1esn`(Distinct .9e1[$`1esn`..][$``..])] Ascending Skip 7[..123456789][..true] Where {#usn7}[.12e-12] Union Create `7esn`=(`3esn` :usn2) Union Load Csv With Headers From All(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999)[..Case $12[10.12e12][.1e1] When {999} Starts With $`4esn` Starts With $`1esn` Then $_usn3 In `2esn` In `3esn` End] As `` Fieldterminator \"d_str\" Create @usn5=(((`1esn` :usn2{`8esn`:12.0[...0e0]})-[`5esn`?:@usn5|:#usn7{`4esn`:9e-12[$7..]}]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]}))),Shortestpath((`6esn` :``)<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})) With Allshortestpaths((({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)))[Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0])..][Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End..] As #usn8,{12} Ends With 1e1 As `8esn` Order By ``[$7..$_usn4] Asc Where 0.0[`7esn`];"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Create Constraint On(@usn5:``)Assert [#usn7 In .0e-0 In 12 Where `8esn`[.12e12..]].usn1._usn3.`8esn` Is Unique"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Detach Delete All(_usn3 In `8esn`[_usn4] Where 5.9e-12[0x0..])[(`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})][Reduce(`8esn`=#usn7 =~$@usn5 =~{7},usn2 In $`5esn`[{`4esn`}][{0}]|{@usn5}[10.12e12..])] Return {#usn7}[.12e-12] As `1esn`,5.9e-12[\"d_str\"..][{`6esn`}..] As #usn7 Limit Case When #usn7 Contains .0e0 Contains $@usn6 Then .12e-12[@usn6..'s_str'] Else {0}[`4esn`..{`8esn`}] End Is Not Null Is Not Null Merge `2esn`=Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) On Create Set Case 0xabc[..Count(*)][..$`5esn`] When `6esn`[0X0123456789ABCDEF..][`8esn`..] Then `2esn`[`7esn`][1000] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} Else 12e12[{`4esn`}..`4esn`][999..{@usn6}] End.``!.#usn8! =Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})),(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})-[_usn4:_usn3{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]}).#usn7! =8.1e1 Contains .9e-1 Contains false,`5esn` =false Is Not Null Is Not Null;"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Start ``=Rel:`5esn`({`2esn`}) Remove Shortestpath((_usn4 {`3esn`:.0e-0 In 12})).`2esn`._usn4!,`4esn`:@usn5 Union Delete Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``}) In (_usn4 :_usn3)<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-({#usn7:12e12[.9e12..07]}) In @usn5({1000}[0..]),`8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End Union Create Unique Allshortestpaths(((({#usn7:{7}[0x0][1e1]})<-[{@usn5:0.12 =~`6esn` =~.9e-1}]->({_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[usn2?:`2esn`|`5esn`{``:{#usn7} =~$@usn6 =~$7}]->(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]}))))"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Drop Constraint On(@usn6:``)Assert Exists(None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0xabc[..{usn1}][..\"d_str\"]).`1esn`?)"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Create Constraint On(`6esn`:`7esn`)Assert All(`6esn` In 010[{`1esn`}..] Where {`4esn`}[00..]).`8esn`.`4esn`.`5esn`? Is Unique"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On(`8esn`:@usn5)Assert Exists(#usn7(.12e12 Is Not Null).@usn5?);"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Match ({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`}) Using Scan @usn5:usn1 Using Scan `4esn`:`1esn` Where usn2 Starts With $usn1 Starts With 10.12e12 Optional Match `4esn`=(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0}) Where 2.9e1 Ends With `5esn` Ends With 1000;"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Return Distinct $usn2[{`1esn`}] As `5esn`,[usn1 In $@usn6 Is Null Is Null Where 9e0[`4esn`..$_usn4][9.1e-1..0e0]][Any(`` In `7esn` =~#usn8 =~\"d_str\" Where 9e-12 Ends With 9e1 Ends With 4.9e12)][(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]})] As _usn3,0e0[2.9e1..][.12e-12..] As `2esn` Order By `6esn`[0X0123456789ABCDEF..][`8esn`..] Ascending,[usn2 In .12e-12 Ends With `2esn` Where @usn5 In Null|false =~{`8esn`} =~00][Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where Count ( * ) =~123456789 =~{@usn5})..Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)] Descending,usn2($usn1 =~.0e0 =~{`4esn`}) Contains Allshortestpaths(((#usn8 :@usn5)<-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 )<-[?:`1esn`|:`1esn`{`5esn`:9e1[0.0]}]->(`8esn` ))) Ascending Limit {`8esn`}[.0e0..][999..] Create Unique `1esn`=((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})),`1esn`=((_usn4 )-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]}));"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Using Periodic Commit 010 Load Csv From \"d_str\" Starts With `` As `4esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Cypher `6esn`=usn2 Drop Constraint On(@usn5:_usn3)Assert Exists({}._usn3!.usn2);"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Create Constraint On(usn2:``)Assert Exists(Any(usn2 In .12e-12 Ends With `2esn` Where `3esn` Contains 01 Contains 01).`5esn`!)"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Match _usn4=(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[:`6esn` *..0x0{``}]-(#usn8 :``{usn2:9e1 =~$`8esn` =~10.12e12}) Using Scan @usn5:`5esn` Where 's_str' =~$usn2 =~{7} Create Unique (`1esn` {usn2:.9e-12[.12e12..][0Xa..]}),Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})));"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Foreach(`` In Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null)| Start `7esn`=Rel:``('s_str') Where Null[$`3esn`..][`1esn`..]) With 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Order By $1000 Is Null Descending,7.0e-0 Ends With {123456789} Ends With @usn6 Descending Limit 1000[{`1esn`}..][$`3esn`..] Load Csv From 1.0 Is Not Null As usn2 Union Unwind $12[$`6esn`..][01..] As @usn6 Union Return *,9e1[12] As usn1,Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``})[`3esn`(Distinct 0 Starts With `7esn` Starts With 9e0,$`4esn` Is Null Is Null)][`7esn`(Distinct $`4esn` Ends With .12e12 Ends With 123.654)] Order By Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1) Starts With Case 7.0e-0[$`6esn`..] When \"d_str\"[0x0..{@usn6}][$@usn5..0] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else $`5esn`[{`4esn`}][{0}] End Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`) Asc,Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``})[`3esn`(Distinct 0 Starts With `7esn` Starts With 9e0,$`4esn` Is Null Is Null)][`7esn`(Distinct $`4esn` Ends With .12e12 Ends With 123.654)] Desc,{`5esn`} Asc Foreach(_usn4 In {`5esn`:$`6esn`[@usn6...9e-12]}[{usn1:$_usn3[0x0][{0}]}..Filter(_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`])][Case When .12e12 Ends With 07 Ends With 3.9e-1 Then 01234567[\"d_str\"..][$`4esn`..] End..Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End]| Start @usn6=Node:usn1({usn2}) ,`7esn`=Node:`5esn`({0})Where #usn7[123.654][{12}]) Create ``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))),``=Allshortestpaths(((@usn6 :@usn5)));"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On(_usn3:_usn4)Assert None(usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null).#usn8! Is Unique;"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Drop Constraint On(`8esn`:``)Assert Single(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 00 =~`4esn` =~.9e-12).@usn6!.`4esn`? Is Unique;"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Unwind {`8esn`}[.0e0..][999..] As `1esn` Union All Foreach(_usn3 In Null| Optional Match ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),_usn3=Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)))) Return *,$12 Is Null As #usn8 Order By ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[_usn3?:@usn5|:#usn7]->(`` :``)-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Starts With Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`) Ascending,{`8esn`} =~$#usn7 =~2.12 Desc,Count(*) Starts With 07 Starts With $#usn7 Desc Skip @usn6[true..] Create ({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12}),#usn8=Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))) Union All Foreach(`7esn` In 9e1[..@usn5][..$`5esn`]| Unwind $`5esn`[{@usn6}..{`7esn`}] As `8esn`) Merge ((({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[_usn3?:@usn5|:#usn7]->(@usn5 {`8esn`:123456789[#usn7..9e-1][10.12e12..{0}],@usn6:1.0 Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(`4esn` {`8esn`:5.9e-12[0x0..]}))) On Match Set [`6esn` In 010[{`1esn`}..] Where {`8esn`}[@usn5][$`2esn`]|$123456789[{usn1}][.12e-12]].@usn5?.`6esn`! =010[.0e-0..\"d_str\"][.9e0..123.654],_usn4 =0xabc[..Count(*)][..$`5esn`] With *,Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,Case \"d_str\"[0x0..{@usn6}][$@usn5..0] When 0e0 Contains {`2esn`} Then 0X0123456789ABCDEF[1e1..] Else .12e12 Starts With 5.9e-12 Starts With `4esn` End In {usn1:$#usn7[01..2.12][2.12..3.9e-1],`6esn`:.0e-0 Ends With $`2esn` Ends With `5esn`} Order By .9e12 Contains 5.9e-12 Contains 9e-1 Descending Skip $123456789[..$999][..`6esn`]"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(usn2:_usn3)Assert Exists(0.12.usn1)"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Drop Constraint On(`2esn`:`6esn`)Assert Exists(Extract(usn2 In .12e-12 Ends With `2esn` Where $999 Ends With `2esn` Ends With 12.0|{_usn3} Is Null Is Null).`3esn`!);"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Create Unique usn1=((@usn6 :`5esn`:`7esn`)-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)-[`3esn`:`6esn` *..0x0]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})),Shortestpath((:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[:`6esn` *999..123456789]->(:_usn3{@usn5:`2esn`[`7esn`][1000]})) Remove Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 6.0e0 =~12.0 =~9e1|1.9e0[..0][.._usn3]).``,{`6esn`:12e12[usn2..$`6esn`]}.`3esn`?,{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}}.`5esn` Delete {``:$`8esn`[..5.9e-12][..`8esn`]}[[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .9e12[6.0e0..][@usn5..]|2.9e1[2.9e1..][`4esn`..]]..][Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End..],010[...12e-12];"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 With Distinct *,#usn8[\"d_str\"..usn2] Order By {`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]} Starts With [`6esn` In 010[{`1esn`}..] Where `3esn` Starts With 9.1e-1 Starts With .9e-1] Starts With Case {`6esn`} In {_usn4} In $12 When {0} Is Not Null Then $12 In {usn2} Else $999 =~false =~{`8esn`} End Descending,Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Asc,{#usn8} Starts With {`2esn`} Ascending Skip Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) Return Distinct false Contains {`7esn`},{0} Is Not Null As `` Order By [usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`|{#usn8}[..@usn5]][Case When .9e1 In {#usn7} In .9e-12 Then #usn7 Is Null Is Null End..] Asc,Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] Asc,(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[`3esn`?:`1esn`|:`1esn`]-({_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})[{@usn5:07[..$`5esn`]}..][$#usn8..] Descending Skip $7[.1e-1..{@usn6}][$7..{`1esn`}] Limit {``} Is Null Is Null With Distinct 999 Ends With {#usn8},9e1[..@usn5][..$`5esn`],$@usn6[...9e-1] As `2esn` Limit $123456789 Is Not Null Is Not Null Where $7 Union All Create Unique ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})),``=Shortestpath((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) Start @usn5=Rel:`8esn`(usn1={#usn7}) ,``=Node:`7esn`({#usn7})Where 00[$``] Load Csv With Headers From Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] As usn1 "), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On()<-[``:`7esn`]-()Assert Exists(Extract(usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|{`3esn`}[..0xabc][..{`6esn`}]).`8esn`?)"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Drop Constraint On(usn2:`6esn`)Assert usn2($12 =~4.9e12).`4esn`! Is Unique"), + octest_legacy:ct_string("Cypher 1000.999 Create Unique ((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})-[{``:{`3esn`}[01234567][{#usn7}],_usn4:999 Is Null Is Null}]->(usn2 {``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})),``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))) Match @usn5=Allshortestpaths((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``))),_usn4=(({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[#usn8? *0Xa..12]->(`7esn` {#usn8:2.9e1[{`2esn`}]})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]})) Using Scan @usn5:`5esn` Using Scan `1esn`:`2esn` Where .12e-12[@usn6..'s_str'];"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Return Distinct Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null)[#usn7(`1esn`[..$1000])..][Reduce(`5esn`=$@usn5 =~{`3esn`},`1esn` In $12 In {usn2}|$`5esn` Ends With 's_str' Ends With $`6esn`)..] Skip @usn5[{`1esn`}..][Count ( * )..] Union All Create Unique usn1=((`4esn` :_usn4:`2esn`{#usn8:\"d_str\" Contains {@usn6}})<-[?{@usn5:@usn6[999][1000]}]->(`1esn` )) Union All Delete 9e12 Is Not Null Is Not Null,.9e1 Is Null Is Null Remove {@usn6:6.0e0[$#usn7..$1000]}.`8esn`?,{`3esn`:9e0[`3esn`][0],usn2:$`5esn` Is Not Null}.`8esn` Merge `2esn`=((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0})) On Create Set `2esn`+=9e1[0.0],#usn8+=.12e-12[@usn6..'s_str'],{`6esn`:4.9e12 Is Not Null Is Not Null,_usn4:`4esn`[9e-12..true]}.#usn8._usn3? =Shortestpath((((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))))[None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0.0[`7esn`])..Single(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])][`5esn`(Distinct .9e1[$`1esn`..][$``..])..Case When 12e12 Ends With `5esn` Ends With .0e0 Then .9e0 In 8.1e1 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else .9e1 Ends With 0x0 End];"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Return Distinct $`8esn`[..12][..9e12] As @usn5,_usn4[{`3esn`}][00] As usn2 Skip 0X0123456789ABCDEF Is Not Null Is Not Null Remove Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0[..{#usn7}][..$_usn3]).#usn7?,($12)<-[#usn8?{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(usn1 {@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}).#usn7!.@usn5._usn3? Remove Case #usn7[$`8esn`][{`3esn`}] When Count(*) =~01234567 =~.1e-1 Then 1000[{123456789}][usn1] End.`1esn`!,Reduce(`7esn`=12e12 Contains {0},`1esn` In $12 In {usn2}|{``} Is Null Is Null).@usn5"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Foreach(_usn3 In $0 =~{@usn5} =~1e1| Start @usn5=Relationship( {#usn8}) ,_usn3=Rel:`1esn`({0}) Unwind 01234567[10.12e12][0Xa] As `1esn`) Union All Optional Match (({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})<-[usn2:`4esn`|:`2esn` *0X7..0Xa]-(#usn7 :#usn7:`8esn`)) Using Join On ``,`4esn`,`7esn` Using Index `8esn`:#usn8(#usn8) Where 0xabc Starts With {`3esn`} Starts With {``} Unwind $`7esn` Ends With 7.0e-0 Ends With $usn2 As `5esn`"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Create Constraint On()-[#usn7:#usn8]->()Assert Exists(Allshortestpaths(((usn2 :``{#usn7:1e-1 =~$`7esn` =~1e1,`7esn`:{0}[`4esn`..{`8esn`}]})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(_usn4 :`1esn`:``{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}})<-[_usn3? *..123456789{`6esn`:.0e-0[..``][..$7],usn2:{usn2} Ends With {@usn6} Ends With 1000}]-(`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})))._usn4!);"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Drop Constraint On(`7esn`:`3esn`)Assert Exists(Shortestpath(((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})))).`4esn`?.``?._usn4!)"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Using Periodic Commit 0 Load Csv From Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000 As `4esn` ;"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(usn1:``)Assert None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789)._usn4!.@usn6 Is Unique"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Merge `3esn`=Allshortestpaths(((`4esn` :`8esn`{`4esn`:4.9e12 Starts With {``},`8esn`:$12 Ends With {_usn4} Ends With $`8esn`})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`)<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))) On Create Set usn1+=$`` Ends With 1e-1 Ends With $@usn6 Union Delete 0X0123456789ABCDEF,$usn1 =~9e1 =~$1000,{``} Contains $1000 Remove [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 01234567[1000..][$`8esn`..]|.9e-1 Is Not Null Is Not Null].@usn5!.``?.usn2!,Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))).`5esn`?.`8esn`?.@usn5?,Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null).@usn6! Detach Delete Reduce(`6esn`=`2esn`[`7esn`][1000],usn2 In .12e-12 Ends With `2esn`|010[..9e-1][..0X7]) Contains `7esn` Contains Case When 9e1 Ends With 9e12 Ends With 0x0 Then {12} Ends With 1e1 Else `4esn` Contains 0X0123456789ABCDEF Contains $usn2 End;"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Drop Constraint On()<-[usn2:`8esn`]-()Assert Exists(Shortestpath((({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]->(:`6esn`{`8esn`:{123456789} =~.9e1 =~$_usn3,#usn7:Count(*)[Null..][01234567..]}))).`4esn`?)"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Create Constraint On(`1esn`:usn1)Assert [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[01234567][{#usn7}]|$`8esn`[..5.9e-12][..`8esn`]].usn2.`2esn`!._usn3? Is Unique;"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Merge `2esn`=Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}})<-[?{@usn5:@usn6[999][1000]}]-(:usn1{#usn8:2.9e1[{`2esn`}]})) Load Csv From $@usn5 Starts With #usn7 As usn2 Return Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]|@usn5 =~$#usn7 =~{usn1}) In Case 9.1e-1 Contains {`3esn`} Contains $12 When {@usn6} In 9e12 Then 01[$`1esn`..$`7esn`][{usn2}..12.0] When {#usn8} In {12} In .9e12 Then @usn6 Starts With #usn7 End In All(usn1 In $@usn6 Is Null Is Null Where {7} Starts With 0x0 Starts With 9e1) As usn1 Skip Any(#usn8 In 07[..$`5esn`] Where .9e0[07..][4.9e12..]) =~_usn3 =~(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``) Union All Create `4esn`=(({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)) Load Csv From $`8esn` Starts With {`7esn`} As `8esn` Fieldterminator 's_str';"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Create Constraint On(_usn4:#usn7)Assert Exists(Shortestpath(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))).usn2!.``);"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On(@usn5:usn2)Assert Case Count ( * ) =~123456789 =~{@usn5} When 0e0 Contains {`2esn`} Then $`8esn`[..12][..9e12] When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End.`8esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Create Constraint On()-[`6esn`:`7esn`]->()Assert Exists(0Xa.@usn6._usn4!)"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Create Constraint On()-[#usn7:usn2]->()Assert Exists(Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})).`4esn`?.`2esn`?)"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Drop Constraint On(`5esn`:@usn5)Assert Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))).`6esn`? Is Unique;"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Create Constraint On(#usn8:usn2)Assert Reduce(usn2={1000}[`2esn`...0e-0][9e-1..0X7],#usn8 In 07[..$`5esn`]|{`3esn`}[..{`4esn`}][..usn2]).`4esn` Is Unique;"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Create Constraint On(`5esn`:`4esn`)Assert Allshortestpaths(((`1esn` :#usn8:@usn6{usn1:#usn8 Is Null Is Null,_usn3:{`4esn`} In 1000 In {@usn5}})<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654}))).`3esn`.@usn6? Is Unique;"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Using Periodic Commit 0Xa Load Csv From Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]) Is Not Null Is Not Null As #usn8 Create Unique @usn5=Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))),(@usn6 :_usn4:`2esn`)"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Drop Constraint On(usn1:_usn3)Assert Exists(All(`7esn` In 0.12 Is Not Null Where .12e-12[@usn6..'s_str']).`5esn`?.``!);"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Load Csv From $#usn8 Is Not Null Is Not Null As usn2 Fieldterminator 's_str'"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Create _usn4=({`5esn`:`1esn` In 010 In 1e-1})<-[?:@usn6|:`4esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]-(`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Drop Constraint On(`3esn`:_usn4)Assert Allshortestpaths(((usn1 :@usn6:_usn3)-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1}))).`1esn`! Is Unique;"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Unwind 0X0123456789ABCDEF[1e1..] As @usn5 Merge `2esn`=Shortestpath(((`4esn` :`3esn`))) Union Match _usn4=Shortestpath((_usn4 {`3esn`:.0e-0 In 12})),((`` :`4esn`:usn2)<-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]-(#usn7 {usn1:2.12[{12}]})) Start usn2=Node:_usn3(`7esn`='s_str') ,`8esn`=Rel:#usn7(\"d_str\")Where {`6esn`} Starts With @usn6;"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On(#usn8:_usn4)Assert (`` :``)-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]})<-[`4esn`?]-(:usn1{#usn8:2.9e1[{`2esn`}]}).`3esn`!.@usn6!.@usn6! Is Unique;"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Using Periodic Commit 01 Load Csv With Headers From None(`6esn` In 010[{`1esn`}..] Where 0 In 2.9e1 In 7) Ends With [@usn6 In 9e12[..usn2][.._usn3] Where .12e12 Ends With 07 Ends With 3.9e-1|$@usn5 Is Null Is Null] As _usn3 Create (({`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654})-[$#usn8]->({usn2:01[`4esn`..]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1})),@usn6=((:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[?:`5esn`]-(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}))"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Create Constraint On(usn1:@usn6)Assert (usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12})-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(`7esn` {@usn5:Count ( * )[_usn4..]}).`8esn`.``!.usn1? Is Unique;"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Return Distinct 01 Starts With 12 Starts With $`2esn` As usn1,{`8esn`} In {_usn3} In 6.0e0 Order By {`4esn`} Ends With Count(*) Asc,.0e0[{`5esn`}..3.9e-1] Descending,$999 Ends With `2esn` Ends With 12.0 Ascending Load Csv From {@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] As `5esn` Match `5esn`=(((`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[?:_usn3]->(`8esn` :usn1)-[?:`1esn`|:`1esn` *999..123456789]-(`8esn` :#usn7:`8esn`))),`5esn`=Shortestpath(((@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))) Using Scan `4esn`:#usn7 Using Scan `7esn`:`` Where .12e-12[@usn6..'s_str'];"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(#usn7:@usn6)Assert Case When 0X0123456789ABCDEF Ends With {1000} Then {0} Is Not Null When .12e12 Is Not Null Then {`6esn`} Starts With .12e-12 Else 7[{`4esn`}..] End.@usn6! Is Unique"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Unwind 8.1e1[..9.1e-1][...9e1] As @usn5 With 9e1 =~$`8esn` =~10.12e12 Limit 5.9e-12[\"d_str\"..][{`6esn`}..] Where {`8esn`}[..999][.._usn3];"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Foreach(#usn8 In .12e12 Is Not Null| Remove Reduce(`8esn`=1e1[$_usn3],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e-0[..``][..$7]).`6esn`.`8esn`?,[`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1].`2esn`! Return {#usn7}[.12e-12] As `1esn`,5.9e-12[\"d_str\"..][{`6esn`}..] As #usn7 Limit Case When #usn7 Contains .0e0 Contains $@usn6 Then .12e-12[@usn6..'s_str'] Else {0}[`4esn`..{`8esn`}] End Is Not Null Is Not Null);"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On(usn2:`6esn`)Assert All(`7esn` In 0.12 Is Not Null Where 01234567[1000..][$`8esn`..]).`1esn`!.usn1? Is Unique"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Drop Constraint On()-[@usn5:usn2]-()Assert Exists({usn1:.9e-1 Is Null Is Null}.usn1.usn2?);"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Using Periodic Commit 1000 Load Csv With Headers From #usn8 Is Null Is Null As _usn4 With *,$999 Ends With `2esn` Ends With 12.0 As #usn8,All(usn1 In $@usn6 Is Null Is Null Where $`1esn`[4.9e12..][_usn3..])[..@usn5(Count(*)[Count ( * )][{0}],`4esn` =~010)] As `3esn` With (`2esn` :`4esn`:usn2{`8esn`:.9e-1 Contains .9e0 Contains ``,_usn4:8.1e1 Contains .9e-1 Contains false})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Is Null Is Null As `1esn`,00 Is Not Null Is Not Null As `6esn`,{`5esn`} Ends With $`7esn` Ends With {@usn5} Order By {@usn6} =~Count ( * ) =~1.0 Desc,$`6esn` Contains All(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) Descending,`6esn`[0X0123456789ABCDEF..][`8esn`..] Ascending Limit None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Contains (`8esn` :@usn6:_usn3{_usn4:{#usn7} =~$@usn6 =~$7})<-[`1esn`? *0{usn2:.9e12[6.0e0..][@usn5..]}]->(usn2 :@usn6:_usn3)-[usn1:#usn7|:@usn5 *999..123456789]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7});"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Foreach(@usn6 In {`6esn`} Starts With 12e12 Starts With {`2esn`}| Delete {123456789} Contains $#usn7 Contains {#usn8} Load Csv From None(`1esn` In $12 In {usn2})[..Reduce(usn2=.9e0 In 8.1e1,`3esn` In 8.1e1 Contains .9e-1 Contains false|$_usn3 Is Not Null)] As #usn7 Fieldterminator 's_str');"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Using Periodic Commit 00 Load Csv From Single(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`)[Case When $999 Is Not Null Then {`3esn`} =~$@usn5 =~`2esn` Else .12e-12 Ends With `2esn` End][[`2esn` In $@usn5 Is Not Null Is Not Null Where $1000[..0e-0][..010]|00[$``]]] As _usn3 Fieldterminator 's_str' Create Unique Allshortestpaths((`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`)) Match ((`8esn` :`2esn`:`4esn`)-[?:#usn7|:@usn5 *12]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}));"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Create Constraint On()-[_usn4:`1esn`]-()Assert Exists(Case $@usn5[``..] When `6esn`[0X0123456789ABCDEF..][`8esn`..] Then `2esn`[`7esn`][1000] When {`6esn`} Starts With .12e-12 Then $`8esn` =~{`1esn`} =~$7 End.#usn7?)"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Drop Constraint On(`8esn`:#usn8)Assert Exists(None(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 0xabc[..{usn1}][..\"d_str\"]).``?.`2esn`!.`1esn`!);"), + octest_legacy:ct_string("Profile Drop Constraint On(@usn6:`8esn`)Assert All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]).#usn7!.`1esn`! Is Unique;"), + octest_legacy:ct_string("Profile Drop Constraint On()-[``:@usn5]->()Assert Exists(Filter(`7esn` In 0.12 Is Not Null Where .1e-1 Contains .12e-12)._usn3.`5esn`!)"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Return Distinct @usn5[9e-1..{`1esn`}] As ``,`1esn` Is Not Null As `6esn`,Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) Ends With `2esn` As @usn5 Order By {@usn5}[10.12e12..] Asc,{@usn5}[10.12e12..] Asc Limit Reduce(``=$`3esn` =~#usn8 =~0x0,usn2 In $`5esn`[{`4esn`}][{0}]|_usn3 =~{7} =~123.654) Contains [usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF] Contains Allshortestpaths(((`8esn` :`7esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 )));"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Load Csv With Headers From 0X0123456789ABCDEF In .9e-1 In 123456789 As _usn3 Load Csv With Headers From $`3esn` =~#usn8 =~0x0 As `3esn` Foreach(`3esn` In `5esn` Contains 0 Contains $12| Load Csv From [usn2 In .12e-12 Ends With `2esn` Where @usn5 In Null|false =~{`8esn`} =~00][Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where Count ( * ) =~123456789 =~{@usn5})..Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)] As @usn6 Remove usn1:@usn6:_usn3,Reduce(usn1=0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],#usn7 In .0e-0 In 12|{0} Is Not Null Is Not Null).`2esn`!.`4esn`!) Union Return Distinct _usn4[$_usn4] As _usn4,`3esn` Starts With 9.1e-1 Starts With .9e-1 As `8esn` Order By $`5esn`[{@usn6}..{`7esn`}] Ascending Skip [usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0|4.9e12 Is Not Null Is Not Null] =~Case {_usn3} In $#usn8 In $12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else 0[..{0}][..true] End =~Case Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else $_usn3 Starts With 010 End Create Shortestpath((_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})),Shortestpath(((@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})-[@usn5:`6esn` *..00]->(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Create ``=Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))) Union Detach Delete $@usn6[.1e-1][9e12] Remove count(Distinct 0e-0[..$usn2],12e12[{`4esn`}..`4esn`][999..{@usn6}]).`3esn`.`6esn`.`1esn`,[@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1|$`5esn` Ends With 's_str' Ends With $`6esn`].usn1?.#usn8?.usn1,{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1}.`3esn`!;"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Start `4esn`=Node:@usn6(\"d_str\") Where $usn2 Is Not Null Is Not Null Optional Match `3esn`=((:`1esn`:``{@usn6:$`7esn` Ends With 7.0e-0 Ends With $usn2})),#usn8=((`` {_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})) Using Join On usn2,`1esn` Where 12.0[...0e0] Remove {`6esn`:.12e-12 Ends With `2esn`}.usn2,(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}})<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})<-[usn1?:`3esn`|`3esn`*..]->(:usn1{#usn8:$`8esn` Is Not Null Is Not Null,`5esn`:3.9e-1 Starts With .9e0 Starts With {#usn7}}).`8esn`!.usn1?,Case .9e-1 Ends With .0e-0 Ends With {_usn3} When $12 Is Not Null Is Not Null Then {``}[$usn2..00][{_usn3}..123.654] When .1e-1 Starts With @usn6 Starts With _usn3 Then 9e0[{7}...0e-0][Null..@usn5] Else $12 =~4.9e12 End._usn4!;"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Drop Constraint On(@usn5:usn2)Assert [`1esn` In $12 In {usn2} Where {usn1} Is Not Null]._usn4!.`8esn`!.`6esn`! Is Unique;"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Drop Constraint On()-[_usn3:`5esn`]-()Assert Exists({_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}.`1esn`)"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Detach Delete $`5esn`[$_usn3][$12],.1e1 Ends With #usn7 Ends With {#usn7} Union All Merge `1esn`=Allshortestpaths(((:usn1{`6esn`:$_usn3[usn2..][usn1..],#usn7:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}))) On Create Set `7esn`+={`3esn`} =~$@usn5 =~`2esn` On Match Set {#usn8:$#usn7[01..2.12][2.12..3.9e-1],``:.9e0[$#usn8][Count ( * )]}.usn2! =Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]) Is Not Null Is Not Null Load Csv With Headers From 0e0 Contains {`2esn`} As `2esn` Fieldterminator \"d_str\" Merge `6esn`=(`4esn` :_usn3)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}) On Create Set @usn5 =Count(*)[$7] On Create Set usn1:`6esn`,{`7esn`:{#usn7}[.12e-12]}.@usn6!.#usn7?.`6esn`! ={12} Contains `8esn` Contains @usn5 Union All Merge `6esn`=(({`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654})-[$#usn8]->({usn2:01[`4esn`..]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1})) On Match Set `5esn` =({`4esn`:#usn8[\"d_str\"..usn2],`1esn`:12.0[..Count ( * )][..@usn6]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ) =~Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End =~{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} On Match Set @usn5 =$@usn5[`8esn`][12e12] Foreach(usn2 In Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Null Is Null| With Distinct *,$`1esn`[4.9e12..][_usn3..],Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End =~{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]} Order By Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) Descending,5.9e-12[01][`4esn`] Descending,[`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] Descending Skip Count(*) Is Not Null Is Not Null Limit 12e-12 =~$_usn3 Where false Contains {`7esn`} Create @usn6=(#usn7 {usn1:2.12[{12}]}))"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Load Csv With Headers From 0Xa In 1.0 In $@usn5 As @usn5 Fieldterminator \"d_str\" Union All Unwind {`6esn`} In 11.12e-12 In 2.9e1 As `5esn` Union All Create Unique (:usn1$1000);"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Drop Constraint On()-[_usn4:`3esn`]->()Assert Exists(Single(usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]).`8esn`?);"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Load Csv From `4esn`($@usn5[.9e-1],00[{1000}]) Ends With Reduce(`7esn`=0.0[00..][0xabc..],usn1 In {#usn7} =~.12e12 =~9e0|10.12e12 In Null In .12e12) As `5esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Create Constraint On()<-[@usn5:usn2]-()Assert Exists((`6esn` :usn2{`6esn`:{usn1}[7.0e-0..][3.9e-1..]})<-[#usn7?:_usn3 *999..123456789{@usn5:$12 In {usn2},usn1:5.9e-12 Is Null Is Null}]-(`3esn` :#usn7:`8esn`{`4esn`:$`5esn`[$_usn3][$12],#usn8:`8esn`[.12e12..]}).#usn7!)"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Drop Constraint On(@usn6:#usn8)Assert Exists(Any(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])._usn4._usn3!.usn1!);"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Merge Allshortestpaths(({`4esn`:{7}[0x0][1e1]})) On Create Set #usn8 =Null In {7} Match (((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))),Shortestpath(((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1))) Using Join On ``,usn1,`2esn` Using Index #usn7:`2esn`(`8esn`) Remove Case When 0.12 Is Not Null Then $`` =~$_usn3 When 00[$_usn4][$`1esn`] Then {#usn7}[.12e-12] End.usn2!.`3esn`! Union All Load Csv From false[9e12] As `2esn` With *,Allshortestpaths((_usn4 {`3esn`:.0e-0 In 12})) Is Null Is Null,{@usn6} Is Null As `5esn` Skip Shortestpath((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))[[`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`}[@usn5..{@usn6}]|{1000}[..`5esn`][..9e12]]..][{_usn4:`8esn`[.12e12..]}..] Where {@usn5}[10.12e12..] Optional Match `7esn`=(@usn5 :@usn5{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6})-[usn2?:`1esn`|:`1esn` *..123456789]-(:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[:_usn3]-(`3esn` ),(({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 {#usn7:$999 =~false =~{`8esn`}})) Where {#usn7} Starts With .1e-1 Union Create Unique _usn4=(((`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]}))) Unwind Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) As @usn6;"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Drop Constraint On(@usn5:`8esn`)Assert Case 01[`6esn`..][0e0..] When {0}[`4esn`..{`8esn`}] Then \"d_str\" In usn2 In $`7esn` When `8esn`[_usn4] Then $`4esn`[usn2..] End.#usn7! Is Unique;"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Create Constraint On(`2esn`:`6esn`)Assert Exists((:#usn7:`8esn`{@usn5:{0} In {`1esn`}})<-[$#usn8]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]})<-[`3esn`?:`6esn`{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(:`1esn`:``{`8esn`:5.9e-12[0x0..]}).``?);"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Create (_usn4 :`6esn`)<-[`2esn` *7]->(`4esn` :@usn5),_usn3=(_usn3 :`1esn`:``{`8esn`:{#usn8} In {12} In .9e12})<-[?:`3esn`|`3esn` *999..123456789{_usn3:$`4esn`[$@usn6...12e12]}]->(usn1 {#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}) Create Unique `7esn`=Shortestpath((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})-[:#usn7|:@usn5]-(:`1esn`:``{`8esn`:5.9e-12[0x0..]})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)),Allshortestpaths(((`` :`7esn`))) With Distinct Count(*)[Null..][01234567..] As `1esn`,{#usn7} Is Not Null As `7esn`,10.12e12[usn2];"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Create Constraint On(`3esn`:_usn4)Assert {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}.``? Is Unique;"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Load Csv From Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As #usn8 Optional Match `2esn`=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))) Using Join On _usn3,usn2 Using Index _usn4:`1esn`(@usn5) Where 0e0 Contains {`2esn`} Start @usn6=Relationship:usn2({usn2}) ,usn2=Node:`2esn`(_usn4={#usn7})Where `7esn`[1.9e0..5.9e-12][9e0..@usn5] Union Start _usn3=Rel:usn2(#usn7='s_str') ,_usn3=Node( {usn2}) Union All With *,$_usn3[.0e-0..999],0 In 2.9e1 In 7 As usn2 Skip #usn8 Contains 7 Contains {`4esn`} Limit Allshortestpaths((((@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[``? *..00{@usn5:$`8esn` =~{`1esn`} =~$7,#usn7:.12e-12 Starts With .12e-12}]->({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]})-[:`8esn`|:#usn8 *01]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))))[..Case When {#usn7} Ends With 999 Ends With 12 Then {`3esn`}[999..$`4esn`] End] Load Csv With Headers From $`1esn`[4.9e12..][_usn3..] As `2esn` Fieldterminator 's_str' Start `5esn`=Node:`1esn`(`4esn`={@usn5}) Where {`8esn`} In {_usn3} In 6.0e0"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Create Constraint On(`4esn`:_usn4)Assert Reduce(`7esn`=#usn7 =~$@usn5 =~{7},usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|3.9e-1[..$1000][..0.12]).`8esn`?.@usn6 Is Unique"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Drop Constraint On()-[`3esn`:``]->()Assert Exists([usn1 In $@usn6 Is Null Is Null Where {`3esn`}[#usn7]|#usn7[$`8esn`][{`3esn`}]]._usn4!)"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Start `2esn`=Rel( {``}) Where .9e1[$`1esn`..][$``..]"), + octest_legacy:ct_string("Cypher 999.123456789 Drop Constraint On(`4esn`:`2esn`)Assert Shortestpath((@usn5 :_usn4:`2esn`{@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})).`4esn`? Is Unique;"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Unwind 0.0[..9e1][..2.12] As _usn4 With Distinct Any(`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]) In Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Skip {usn2} Contains {0} Union All With Distinct $_usn3 Contains 1.0 Contains 0.12 As ``,0x0 Ends With #usn8 Ends With .9e-1 As _usn4 Order By All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3]) In Allshortestpaths((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]}))) In (`1esn` :`2esn`:`4esn`)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[#usn8]->(`2esn` :_usn3{`6esn`:_usn4[{``}..{`6esn`}][$7..$_usn3],`6esn`:$`4esn` Ends With {999}}) Descending Skip Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) Where 9e1 =~$`8esn` =~10.12e12 Remove Filter(`6esn` In 010[{`1esn`}..] Where Count(*) Starts With {usn2} Starts With `2esn`).`4esn`?,Case {`6esn`}[@usn5..{@usn6}] When _usn4 Ends With {`8esn`} Ends With usn2 Then $`8esn` Is Not Null Is Not Null When $999 =~0e0 =~0X7 Then $`7esn` Starts With 's_str' End.@usn5?.`7esn`!"), + octest_legacy:ct_string("Cypher 1000.999 Optional Match #usn8=Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))),Shortestpath(((@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})-[@usn5:`6esn` *..00]->(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Using Index `3esn`:_usn4(@usn6) Where @usn6[0x0..][$_usn4..] Load Csv From Any(usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-12[010..{#usn7}][{123456789}..7])[[usn1 In $@usn6 Is Null Is Null Where _usn3 =~{7} =~123.654|`1esn` =~{12} =~{999}]][(`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[#usn8?:`8esn`|:#usn8 *999..123456789]->(`3esn` :usn2)<-[{usn2:{1000}[..{usn1}][..1e-1]}]->(`4esn` {`6esn`})] As `4esn` Fieldterminator \"d_str\";"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Unwind {`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]} Contains Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 12e12 Ends With `5esn` Ends With .0e0) As usn1 Union All Merge Shortestpath((@usn5 :_usn4:`2esn`{@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})) Union All Delete `1esn`(Distinct) Contains All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 123.654 Ends With {1000} Ends With 9e12) Contains Case $0 Contains $7 When 9e0[`4esn`..$_usn4][9.1e-1..0e0] Then .1e1 Is Not Null Is Not Null When usn2[12e-12..{`8esn`}][.12e12..{123456789}] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else {usn1} In Count ( * ) In 12e12 End,{12} Ends With $`3esn` Ends With 0xabc,{0}[...9e1] Delete {``:$`8esn`[..5.9e-12][..`8esn`]}[[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .9e12[6.0e0..][@usn5..]|2.9e1[2.9e1..][`4esn`..]]..][Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End..],010[...12e-12] With Distinct Count ( * )[`5esn`..\"d_str\"][01234567..{1000}],$`8esn` Contains {@usn6} Contains `7esn`,5.9e-12[..9e0] As #usn8 Order By $`7esn` Contains .12e12 Ascending,Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where {7}[$@usn5..123456789][1e1..1.9e0]) Ends With (`3esn` :_usn3{@usn6:0.12 Is Not Null})-[#usn8:`5esn`]-({`6esn`:12[@usn6][{`2esn`}]}) Desc,$usn1[..$999][..0e0] Ascending Where $`6esn`[$_usn3..{1000}];"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Drop Constraint On()-[usn2:@usn5]->()Assert Exists(Any(#usn7 In .0e-0 In 12 Where {#usn8}[..@usn5]).`8esn`)"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Create Constraint On()-[usn2:@usn6]-()Assert Exists({`1esn`:$999 Is Not Null}.`6esn`?);"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Remove Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])._usn3 Start `1esn`=Node(0x0) ,``=Node( {#usn7})Where 00[Null..usn2];"), + octest_legacy:ct_string("Cypher 999.123456789 Start #usn7=Node:@usn6(#usn8='s_str') ,_usn4=Rel:`5esn`(@usn5=\"d_str\") Merge (@usn5 :`6esn`{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]})-[:usn1|usn2]->(`8esn` :`5esn`:`7esn`)-[:usn1|usn2{#usn7:{`3esn`}[#usn7],`4esn`:010[..9e-1][..0X7]}]-(_usn3 {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}) On Match Set Reduce(usn1={usn1} Contains `4esn`,_usn3 In `8esn`[_usn4]|{`8esn`}[..999][.._usn3]).`2esn` =Case When 9e-12[010..{#usn7}][{123456789}..7] Then $999 =~false =~{`8esn`} When {0}[.0e-0][$`2esn`] Then 12e12 Is Not Null Is Not Null Else false[..usn2][..999] End[Allshortestpaths(((({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(@usn6 :@usn5)-[`2esn`? *7{`5esn`:false[..usn2][..999]}]-(`4esn` :@usn6:_usn3))))..All(usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null)][.9e0..`4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`)],Reduce(_usn4=5.9e-12 Contains {12} Contains {#usn8},`7esn` In 0.12 Is Not Null|{`5esn`}[.1e-1..1e-1][999..{_usn3}]).#usn8.``? =$usn2[{`1esn`}],`5esn` =0[4.9e12] Return Distinct *,$12 Is Null Is Null As #usn8 Skip {@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] Union All With Distinct *,(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[`3esn` *..0x0]-(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:_usn4|:`1esn` *01]-(`4esn` {`3esn`:{`7esn`} =~\"d_str\" =~{``},`3esn`:{`1esn`} Contains 1.0 Contains 4.9e12}) =~Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 9e12 Is Null Is Null) =~(:@usn5{#usn7:Null,`5esn`:{@usn5} Ends With 0Xa Ends With .12e-12})-[:`3esn`|`3esn` *1000..]-(@usn6 ),(`2esn` :`4esn`:usn2{`8esn`:.9e-1 Contains .9e0 Contains ``,_usn4:8.1e1 Contains .9e-1 Contains false})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Is Null Is Null As `1esn` Skip _usn4['s_str'][8.1e1] Match `2esn`=(((:`7esn`{`4esn`:@usn5 =~$#usn7 =~{usn1}})<-[?:`1esn`|:`1esn`]-(usn2 :``{#usn7:1e-1 =~$`7esn` =~1e1,`7esn`:{0}[`4esn`..{`8esn`}]})<-[:`6esn` *1000..{#usn7:`2esn`,`7esn`:$@usn5 Is Not Null Is Not Null}]->(@usn5 {`8esn`:123456789[#usn7..9e-1][10.12e12..{0}],@usn6:1.0 Is Not Null}))),#usn7=Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)) Where 7[..123456789][..true] Start `4esn`=Node( {``}) ,@usn5=Relationship:``(`4esn`='s_str') Union All With *,$123456789[..$999][..`6esn`] As @usn5,Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07)[Case 9e-12 Ends With 9e1 Ends With 4.9e12 When `3esn` =~$#usn7 Then $@usn5 Starts With #usn7 When {`4esn`}[{`3esn`}][$`2esn`] Then #usn7[$`8esn`][{`3esn`}] Else 9e0[`4esn`..$_usn4][9.1e-1..0e0] End][[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]] Skip @usn5[9e-1..{`1esn`}] Limit 11.12e-12 Contains usn1 Delete $999 =~false =~{`8esn`},{0}[`4esn`..{`8esn`}],usn2[..$0][..`3esn`]"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Start ``=Rel:_usn3({7}) ,`1esn`=Rel:#usn8(`8esn`={123456789}) Merge ((`8esn` :`8esn`)-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`8esn`*]-(`7esn` :``{usn2:$7})) Unwind 0e-0[{12}] As #usn8 Union All Foreach(`7esn` In Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End =~{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}| Remove {`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}.`5esn`!) Unwind 9e12[..usn2][.._usn3] As @usn5 Load Csv From \"d_str\" Contains {@usn6} As `3esn` Fieldterminator 's_str' Union All Optional Match (`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5) Using Index _usn3:usn2(`4esn`) Using Index @usn5:`3esn`(`8esn`) Where $0 Contains $123456789 Contains {`3esn`} Return *,{`4esn`} In 1000 In {@usn5} Order By .0e-0[010..] Asc,6.0e0 In 9e-1 In 123456789 Ascending,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) Desc Limit Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]);"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Drop Constraint On()<-[#usn7:`6esn`]-()Assert Exists(usn1(Distinct 6.0e0[$#usn7..$1000],_usn4 Is Not Null Is Not Null).``?)"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Drop Constraint On(`1esn`:`3esn`)Assert Reduce(#usn8=$_usn3 In `2esn` In `3esn`,`2esn` In $@usn5 Is Not Null Is Not Null|5.9e-12[12e-12][$`8esn`])._usn4! Is Unique;"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Optional Match #usn7=((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})) Using Join On #usn8 Using Join On _usn4"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Constraint On(``:usn2)Assert Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where $7[.1e-1..{@usn6}][$7..{`1esn`}]).`7esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 1000.999 Using Periodic Commit 00 Load Csv From Extract(`1esn` In $12 In {usn2} Where 2.9e1 =~Count(*) =~{123456789})[{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}..][123.654..] As @usn6 Fieldterminator 's_str' Load Csv From $@usn6 Is Null As `1esn` "), + octest_legacy:ct_string("Profile Create Constraint On(`2esn`:`5esn`)Assert Exists(Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 999 Starts With 7.0e-0 Starts With true).@usn5?);"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Merge `5esn`=((#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[`3esn`:@usn6|:`4esn`]-(#usn8 :`7esn`{_usn4:07 Ends With {1000} Ends With 01234567})<-[$#usn8]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]})) On Create Set (:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}).usn2 =Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] On Match Set $`4esn`.@usn6? =0e-0[#usn7..999],`6esn` =.1e-1[$@usn6],_usn4+=All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Delete 5.9e-12[01][`4esn`],00[Null..usn2] Union All Foreach(#usn8 In $_usn4 =~$#usn8 =~{`4esn`}| Start _usn3=Relationship:usn2(`8esn`=\"d_str\") Where $1000[..0e-0][..010] With Distinct *,$`1esn`[4.9e12..][_usn3..],Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End =~{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]} Order By Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) Descending,5.9e-12[01][`4esn`] Descending,[`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] Descending Skip Count(*) Is Not Null Is Not Null Limit 12e-12 =~$_usn3 Where false Contains {`7esn`}) Union All Optional Match ((_usn3 :`7esn`{@usn6:$`4esn` Ends With .12e12 Ends With 123.654})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)<-[#usn7? *0xabc..12]-(:`3esn`)) Using Scan `4esn`:#usn7 Using Join On usn1 Where 0.12 In $`` Create Unique `1esn`=Allshortestpaths(((:usn1{`6esn`:$_usn3[usn2..][usn1..],#usn7:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}))),#usn8=Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789})) Merge `5esn`=Shortestpath(((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`}))) On Create Set `4esn` =Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 7 In 1e1 In {``})[Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..])..@usn6(0xabc[..Count(*)][..$`5esn`])][$`6esn`..{#usn7:00 =~`4esn` =~.9e-12}];"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Drop Constraint On(usn2:`1esn`)Assert Single(_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null).`4esn`? Is Unique;"), + octest_legacy:ct_string("Profile Foreach(`4esn` In 9e-12 Starts With {1000}| Unwind $`3esn`[..{`5esn`}] As @usn6 Match Shortestpath(((_usn3 :`7esn`{_usn4:$12[$`6esn`..][01..]})-[`4esn`{_usn3:010[..9e-1][..0X7]}]-(:`7esn`{#usn7:$999 =~false =~{`8esn`}})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3))),Allshortestpaths((:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[`7esn`?:`7esn`|usn1 *1000..{@usn6:#usn7 In 07,#usn8:$999[usn1..0e-0]}]->(#usn8 :`5esn`:`7esn`{usn2})-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})) Using Index #usn8:usn2(@usn5) Where {`6esn`} =~2.12 =~123.654) Match (:`4esn`:usn2{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[`3esn`?:`1esn`|:`1esn`]-(`7esn` :usn1)<-[:`4esn`|:`2esn`{usn1:3.9e-1 Contains $@usn5}]->(@usn6 {``:$`6esn` Starts With 0.0}) Load Csv With Headers From `2esn`[`7esn`][1000] As `2esn` Fieldterminator 's_str' Union Load Csv From Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where {7}[$@usn5..123456789][1e1..1.9e0]) Ends With (`3esn` :_usn3{@usn6:0.12 Is Not Null})-[#usn8:`5esn`]-({`6esn`:12[@usn6][{`2esn`}]}) As #usn8 Create Unique #usn7=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 ))) Delete $`4esn`[12e-12..$`1esn`][$`2esn`...9e12]"), + octest_legacy:ct_string("Profile Drop Constraint On()<-[``:usn2]-()Assert Exists(Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0).`1esn`?);"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Optional Match #usn8=({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)}),`7esn`=(((usn2 :`2esn`:`4esn`{`6esn`:Count(*)[$7]})<-[_usn3:@usn5|:#usn7 *..07]-({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000})<-[?:_usn3{#usn7:3.9e-1[..$1000][..0.12]}]-(_usn3 {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}))) Using Index @usn5:`5esn`(usn2) Union All Unwind {`8esn`} Contains $@usn5 As _usn4;"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Drop Constraint On(usn2:`6esn`)Assert Exists(Reduce(`7esn`=11.12e-12 Contains usn1,_usn3 In `8esn`[_usn4]|#usn7 =~$@usn5 =~{7}).`6esn`.`1esn`?.`5esn`!);"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Create Constraint On()-[``:usn1]->()Assert Exists({`5esn`:{`4esn`}[00..]}.#usn8)"), + octest_legacy:ct_string("Profile Delete None(`2esn` In $@usn5 Is Not Null Is Not Null Where {7}[$@usn5..123456789][1e1..1.9e0]) Ends With Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End Ends With {_usn3:$1000 Starts With {@usn6} Starts With $@usn5},Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End[(`4esn` :#usn7:`8esn`)-[_usn3?:@usn6|:`4esn`{_usn4:$12 Ends With 12.0 Ends With $`4esn`}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2)..][Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1)..] Union Create `4esn`=Shortestpath((:`6esn`{`3esn`:9e12[..usn2][.._usn3]})<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})<-[`2esn`?:`8esn`|:#usn8]->(:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})),#usn7=((`1esn` :usn2{`8esn`:12.0[...0e0]})) Optional Match Shortestpath(((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})))),_usn3=Allshortestpaths((((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999})<-[``?:@usn5|:#usn7 *..00{#usn8:$`8esn`[...1e-1]}]->(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]})))) Using Index `3esn`:`8esn`(`5esn`) Where .12e12 Ends With 07 Ends With 3.9e-1 Unwind 01234567 Ends With .0e0 Ends With 12e12 As `3esn` Union All Load Csv From $@usn5 Is Not Null Is Not Null As `7esn` Load Csv With Headers From {123456789} In \"d_str\" As `2esn` Remove ({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000})<-[`5esn` *01]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}).#usn7!,All(usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]).`8esn`!,`7esn`:usn2;"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Create Constraint On()-[`5esn`:`1esn`]-()Assert Exists(Single(`` In `7esn` =~#usn8 =~\"d_str\" Where 6.0e0[{`2esn`}..$``]).`1esn`!);"), + octest_legacy:ct_string("Cypher 1000.999 Unwind Allshortestpaths(((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}))) Is Null Is Null As usn2 Merge Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))) On Match Set Case .12e12 Ends With 07 Ends With 3.9e-1 When 0.12 In $`` Then 0e-0 In 0X0123456789ABCDEF In `3esn` When 01 Ends With .0e0 Ends With 7.0e-0 Then $`6esn`[@usn6...9e-12] End.`1esn`.`1esn` =1e-1 Starts With .1e1 Starts With 12.0 Delete false,$`6esn`[@usn6...9e-12],$`4esn` Contains `4esn` Contains .0e-0 Union All With Distinct 0.0[$`4esn`] As `4esn` Order By All(usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]) In Allshortestpaths(((`5esn` :`4esn`:usn2{_usn4:Count ( * ) Is Not Null Is Not Null,#usn8:`1esn`[{usn1}..]}))) In Filter(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Asc,{usn1}[9e-1][{@usn5}] Ascending,(`8esn` :@usn6:_usn3{`2esn`:#usn7 =~$@usn5 =~{7},`2esn`:{`3esn`}[..{`4esn`}][..usn2]})-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})[[`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where Count(*)[$7]|01[`6esn`..][0e0..]]..] Asc Skip 0X0123456789ABCDEF In $`2esn` In .9e-12 Limit $0 Ends With $usn1 Ends With {``} Create Unique Allshortestpaths((:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[`7esn`?:`7esn`|usn1 *1000..{@usn6:#usn7 In 07,#usn8:$999[usn1..0e-0]}]->(#usn8 :`5esn`:`7esn`{usn2})-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})) Optional Match (usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[``:`1esn`|:`1esn`{@usn5:999[..$@usn5][..``],@usn5:0xabc[..Count(*)][..$`5esn`]}]-(`1esn` :``{_usn4:$@usn5 =~{`3esn`}}) Using Scan `8esn`:`4esn` Where .9e12 Contains 0 Contains $0 Union Start usn2=Relationship(999,010,07,123456789) ,`7esn`=Node:`6esn`(@usn6='s_str')Where 123.654 Ends With {1000} Ends With 9e12;"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Start _usn3=Rel:`8esn`(usn1={#usn7}) Where $usn1 Contains 4.9e12 Contains $`2esn`;"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create Unique `4esn`=Shortestpath(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))),((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}));"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Return Distinct _usn4[$_usn4] As _usn4,`3esn` Starts With 9.1e-1 Starts With .9e-1 As `8esn` Order By $`5esn`[{@usn6}..{`7esn`}] Ascending Skip [usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0|4.9e12 Is Not Null Is Not Null] =~Case {_usn3} In $#usn8 In $12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else 0[..{0}][..true] End =~Case Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else $_usn3 Starts With 010 End Create Shortestpath((_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})),Shortestpath(((@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})-[@usn5:`6esn` *..00]->(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Create ``=Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))) Union All Detach Delete {_usn3} Is Null Is Null,Case {#usn7} =~.12e12 =~9e0 When `1esn`[{usn1}..] Then false =~$7 When 7 In 1e1 In {``} Then {0}[.0e-0][$`2esn`] End[`4esn`(Distinct \"d_str\" In usn2 In $`7esn`)],usn2[..$0][..`3esn`] Union All Merge @usn6=(({usn2:01[`4esn`..]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})-[`1esn`?:`3esn`|`3esn` *..00]-(`1esn` :usn2)) On Match Set `6esn`+=01[$`1esn`..$`7esn`][{usn2}..12.0],[usn1 In {#usn7} =~.12e12 =~9e0 Where $`4esn`[12e-12..$`1esn`][$`2esn`...9e12]|$`1esn`[4.9e12..][_usn3..]].#usn7 =9.1e-1[..Null][..#usn8] Return *,{`7esn`} =~\"d_str\" =~{``} Skip $_usn4 Ends With {#usn8} Limit $12 Is Not Null Is Not Null;"), + octest_legacy:ct_string("Cypher 999.123456789 Match @usn6=((({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(@usn6 :@usn5)-[`2esn`? *7{`5esn`:false[..usn2][..999]}]-(`4esn` :@usn6:_usn3))),(#usn7 :`6esn`{usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[`2esn`?:``|:`7esn` *1000..]-(:_usn3{@usn5:`2esn`[`7esn`][1000]}) Using Scan `3esn`:_usn3 Using Index `6esn`:`8esn`(`2esn`) Union Return Distinct .0e0[{#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]}][All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0)],$123456789[{usn1}][.12e-12] As `3esn`,Reduce(`2esn`=$@usn5[``..],`7esn` In 0.12 Is Not Null|$`4esn` Is Not Null) =~Any(_usn3 In `8esn`[_usn4] Where {`6esn`} In {_usn4} In $12) =~Reduce(`1esn`=false =~{`8esn`} =~00,`2esn` In $@usn5 Is Not Null Is Not Null|`1esn`[{@usn5}..][{_usn4}..]) As @usn6 Limit {``} Is Null Is Null Remove Extract(usn2 In .12e-12 Ends With `2esn` Where `3esn` Contains 01 Contains 01|.9e0[$#usn8][Count ( * )]).`4esn`,Reduce(#usn8={12} Contains `8esn` Contains @usn5,usn1 In \"d_str\" Contains {@usn6}|$12 =~4.9e12).``?,Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}}))).`2esn`?.`` Detach Delete Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] Union All Start `1esn`=Rel:`5esn`(@usn5=\"d_str\") ,`5esn`=Node:@usn6(#usn8='s_str') With Distinct 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Skip {usn1:$1000 Is Null}[Shortestpath((:usn1$1000))..][Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true)..] Where `3esn` Starts With 9.1e-1 Starts With .9e-1 Match ((`4esn` :`6esn`)<-[{``:7.0e-0 Is Not Null}]->(:#usn7:`8esn`{@usn5:{0} In {`1esn`}})-[``?{``:{#usn7} =~$@usn6 =~$7}]-(`3esn` :@usn5)) Using Join On #usn8"), + octest_legacy:ct_string("Cypher 1000.999 Foreach(`7esn` In 01 Contains Reduce(usn2=$1000[_usn4][{@usn5}],`8esn` In {usn1}[7.0e-0..][3.9e-1..]|9e-12 Ends With 9e1 Ends With 4.9e12) Contains usn2(Distinct `7esn` In _usn4 In $`7esn`,999 Is Null Is Null)| Start `1esn`=Rel:``(#usn8=\"d_str\") ,#usn8=Rel:#usn8(usn2='s_str')Where $`4esn` Ends With .12e12 Ends With 123.654 Unwind 11.12e-12 =~Count ( * ) As `8esn`) Create (_usn4 {`3esn`:.0e-0 In 12}),Shortestpath((@usn6 :_usn4:`2esn`)) Union Match usn2=((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})),Shortestpath(({`6esn`:3.9e-1[..$1000][..0.12]})<-[:`4esn`|:`2esn`{`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]}]-({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]-({`5esn`:$`4esn` Ends With .12e12 Ends With 123.654,@usn6:{123456789} Contains $0})) Using Index usn1:#usn7(usn1) Union All Detach Delete 7.0e-0[$`6esn`..],`1esn` =~{12} =~{999},{_usn3} =~$12 =~$7 Load Csv With Headers From {#usn7} Starts With .1e-1 As `3esn` "), + octest_legacy:ct_string("Profile Drop Constraint On()-[`3esn`:_usn4]->()Assert Exists((#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[`7esn`?]-(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}).`6esn`.#usn7._usn3!);"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Create Constraint On(@usn6:`3esn`)Assert Exists(Reduce(`6esn`=.9e-12[.12e12..][0Xa..],#usn8 In 07[..$`5esn`]|.9e-12[.12e12..][0Xa..]).`5esn`?);"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Remove (@usn5 :@usn6:_usn3{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`3esn`:`6esn` *..0x0]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}).`3esn`,count($`8esn`).@usn6 Create Shortestpath(((usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})-[{#usn7:1e-1[$`4esn`]}]->(_usn4 :`1esn`:``{`3esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}))) Detach Delete Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`) Is Null Is Null,6.0e0[$#usn7..$1000],$12 Is Not Null Is Not Null Union Remove `7esn`:`4esn`:usn2,Filter(usn2 In .12e-12 Ends With `2esn` Where $7).usn1.#usn7!.`5esn` Start `8esn`=Node( {`4esn`}) ,`3esn`=Node( {1000}) Union All Remove Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `6esn` Ends With 1e1 Ends With $#usn7).`8esn`!.`2esn`!.`1esn`!,Case When 0e-0[$``..10.12e12] Then 3.9e-1[{@usn6}..][01234567..] End.@usn5.`4esn`?.`3esn` With *,$123456789[..$999][..`6esn`] As @usn5,Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07)[Case 9e-12 Ends With 9e1 Ends With 4.9e12 When `3esn` =~$#usn7 Then $@usn5 Starts With #usn7 When {`4esn`}[{`3esn`}][$`2esn`] Then #usn7[$`8esn`][{`3esn`}] Else 9e0[`4esn`..$_usn4][9.1e-1..0e0] End][[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]] Skip @usn5[9e-1..{`1esn`}] Limit 11.12e-12 Contains usn1"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` With Distinct *,0X0123456789ABCDEF In .9e-1 In 123456789 Limit 1.9e0 =~.0e0 =~0X7"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Drop Constraint On(@usn5:`3esn`)Assert Exists(Reduce(@usn5=$0 Contains $123456789 Contains {`3esn`},usn2 In .12e-12 Ends With `2esn`|010[..9e-1][..0X7])._usn3!)"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Create Constraint On(`6esn`:@usn5)Assert (`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})<-[#usn8?:#usn7|:@usn5]-(`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}).usn1! Is Unique;"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Return {12}[6.0e0..{usn2}][{_usn3}..{#usn7}] As _usn4,usn1 =~0Xa =~0 As @usn5 Limit $usn2 Ends With 9e12 Ends With Count ( * ) Union All Return $`7esn` Is Null Is Null,$`5esn`[{0}][1.9e0],Reduce(`3esn`=`7esn`[1.9e0..5.9e-12][9e0..@usn5],`` In `7esn` =~#usn8 =~\"d_str\"|{_usn3}[{0}...9e-1][9e-1...0e0]) Ends With None(usn1 In $@usn6 Is Null Is Null Where $999 =~false =~{`8esn`}) Ends With Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})))) As `` Order By 123.654 Ends With {1000} Ends With 9e12 Descending,{`6esn`} Starts With 12e12 Starts With {`2esn`} Descending Limit Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`) Is Null Is Null Union All Return Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End In (:usn1)<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}) In [_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|usn2 Ends With $123456789 Ends With {999}] As _usn4 Skip $_usn3 Contains 1.0 Contains 0.12 Create Unique (`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]}),@usn6=Shortestpath((@usn6 :`5esn`:`7esn`)) Merge Allshortestpaths(((`4esn` :#usn7:`8esn`)<-[:`8esn`|:#usn8{_usn4:$#usn7 Ends With {`5esn`} Ends With 01}]-({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[usn1:#usn7|:@usn5 *999..123456789]->(`5esn` :``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})))"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Drop Constraint On()-[@usn5:`4esn`]->()Assert Exists(Reduce(`1esn`=12.0[..Count ( * )][..@usn6],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|5.9e-12 Contains {12} Contains {#usn8}).`8esn`)"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Drop Constraint On(_usn4:`8esn`)Assert Exists([@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`]].`2esn`);"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Create Constraint On(`1esn`:_usn3)Assert Exists(Allshortestpaths(((_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null})<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))).`3esn`?.usn2?);"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Drop Constraint On()-[`5esn`:``]-()Assert Exists(Single(#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0).usn1);"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Create Constraint On(@usn6:``)Assert Exists(Any(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]).`5esn`!.`7esn`!.#usn7);"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Delete .1e-1[2.9e1..][$`7esn`..],$1000[..0e-0][..010] Create (#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null}) Unwind Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn`) Contains (`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) Contains Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}) As `8esn` Union All Return Distinct usn2[12e-12..{`8esn`}][.12e12..{123456789}] As #usn8,Case When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] When {123456789} Starts With $_usn4 Starts With 0x0 Then 9e0[`3esn`][0] End[{`3esn`:false Starts With 0 Starts With 2.9e1,@usn6:9e-12 Ends With {1000}}..{`8esn`:_usn3[{#usn7}]}] As usn1 Skip Allshortestpaths((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))[usn1..] Limit usn2 Ends With $123456789 Ends With {999} Load Csv With Headers From [`6esn` In 010[{`1esn`}..] Where $`4esn` Is Null Is Null][..Case $`8esn`[0x0][.9e0] When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null Else $usn1 =~.0e0 =~{`4esn`} End][..Case When $`6esn` =~$#usn7 =~$`4esn` Then 2.9e1[2.12..1.9e0] When {`3esn`}[#usn7] Then 2.12[`4esn`][.9e-1] End] As usn2 Merge ({`1esn`:$`8esn` Is Null Is Null,`1esn`:0.12 =~2.9e1 =~9e1}) On Create Set _usn3+=Count ( * ) =~123456789 =~{@usn5} Union All Return Distinct *,{`3esn`}[#usn7] As _usn3 Skip {usn2}[..{@usn6}][..@usn5] Limit All(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Delete Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[..None(#usn7 In .0e-0 In 12 Where 0xabc =~123456789)][..11.12e-12],12e12[{`4esn`}..`4esn`][999..{@usn6}] Detach Delete .9e12 Ends With #usn8 Ends With {#usn7},2.9e1[2.12..1.9e0],.0e-0 In 12"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Merge `1esn`=(((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))) On Match Set `6esn` =(`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Is Not Null Is Not Null On Match Set `2esn` =7[{`4esn`}..],usn2 =$@usn5 Contains _usn3;"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Create Constraint On(usn1:`6esn`)Assert Case #usn8 Is Null Is Null When $1000[..0e-0][..010] Then 010 Starts With 9e12 Starts With 1000 End.`8esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 999.123456789 Merge (`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})<-[`6esn`?:@usn6|:`4esn` *12{`6esn`:{12} Starts With $`` Starts With 0X0123456789ABCDEF,@usn6:0 Starts With `7esn` Starts With 9e0}]->({_usn3:.9e12 Contains 0 Contains $0})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]}) On Create Set #usn8:`8esn` With 1.9e0 =~.0e0 =~0X7 As #usn7,0 Ends With .0e-0 Ends With false As _usn4,0X0123456789ABCDEF In .9e-1 In 123456789 Order By Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Desc,[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1][Shortestpath((({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})))..Shortestpath(((:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12})-[``?:#usn7|:@usn5{``:$usn1 Ends With {`2esn`} Ends With $usn1}]->(:`5esn`:`7esn`$usn2)-[{#usn8:\"d_str\" Contains {@usn6}}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12})))] Descending,$@usn5[.9e-1] Descending Skip Case When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 Else 9e-12 Ends With {1000} End[Shortestpath((:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[`1esn`:`4esn`|:`2esn`{`5esn`:$_usn3[usn2..][usn1..]}]->(:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`}))..] Where 2.9e1[Count ( * )..]"), + octest_legacy:ct_string("Profile Unwind #usn7 Is Null Is Null As usn1 Foreach(`4esn` In 11.12e-12 In {usn1}| Match Shortestpath((@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?:`8esn`|:#usn8 *999..123456789]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})),`3esn`=(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0})-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[usn1?:`3esn`|`3esn`*..]-(`1esn` ) Using Scan ``:#usn8 Remove ``(.9e-1 Is Null Is Null,{`8esn`}[@usn5][$`2esn`]).`1esn`._usn4) Union Create Unique `7esn`=Shortestpath((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})-[:#usn7|:@usn5]-(:`1esn`:``{`8esn`:5.9e-12[0x0..]})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)),Allshortestpaths(((`` :`7esn`)));"), + octest_legacy:ct_string("Profile Optional Match @usn5=(((`1esn` :usn2{`8esn`:12.0[...0e0]})-[`5esn`?:@usn5|:#usn7{`4esn`:9e-12[$7..]}]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]}))),Shortestpath((`6esn` :``)<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})) Where $@usn6 Is Null Optional Match (:_usn4:`2esn`{`8esn`:12.0[...0e0]}),(`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Using Join On @usn6,usn1,`5esn` Using Index @usn5:`3esn`(`8esn`) Create Unique ((`3esn` :#usn8:@usn6)) Union All Foreach(_usn3 In Null| Optional Match ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),_usn3=Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)))) Return *,$12 Is Null As #usn8 Order By ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[_usn3?:@usn5|:#usn7]->(`` :``)-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Starts With Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`) Ascending,{`8esn`} =~$#usn7 =~2.12 Desc,Count(*) Starts With 07 Starts With $#usn7 Desc Skip @usn6[true..] Create ({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12}),#usn8=Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))) Union Remove All(#usn7 In .0e-0 In 12 Where 0xabc =~123456789).@usn6.#usn8!.`7esn`,Case {_usn3} In $#usn8 In $12 When `3esn` Starts With 9.1e-1 Starts With .9e-1 Then $1000[_usn4][{@usn5}] Else 12[@usn6][{`2esn`}] End._usn3!.#usn8?.`7esn`?,Case 010[...12e-12] When .9e1[$`1esn`..][$``..] Then Count ( * ) Starts With 0.12 End.`8esn`!.#usn8 Remove Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}).`8esn`!._usn3!._usn3!,Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))).`5esn`?.`8esn`?.@usn5?,[usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-12[010..{#usn7}][{123456789}..7]|Count(*)[..{#usn7}]]._usn4! Load Csv From \"d_str\" Contains {@usn6} As `3esn` Fieldterminator 's_str';"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Using Periodic Commit 01 Load Csv With Headers From {@usn5} As `8esn` ;"), + octest_legacy:ct_string("Profile Create Constraint On()-[_usn4:`7esn`]->()Assert Exists(({``:true Is Null,_usn3:$12 Ends With 7.0e-0 Ends With 9e-12})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(:`6esn`{`2esn`:`5esn` Ends With Count(*)}).usn2)"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Using Periodic Commit 0 Load Csv With Headers From `2esn` As `4esn` Fieldterminator 's_str' Remove Allshortestpaths((_usn3 {#usn7:$999 =~false =~{`8esn`}})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})).#usn8,Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0).`8esn`!;"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On()<-[`1esn`:@usn6]-()Assert Exists(Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $12 Is Null Is Null).`4esn`)"), + octest_legacy:ct_string("Cypher 999.123456789 Merge usn1=Allshortestpaths(((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) On Create Set `5esn`+=Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] Detach Delete Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})[Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})<-[`5esn`?:`7esn`|usn1{@usn5:9e0[`3esn`][0]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )))..][Case When $#usn7 Contains 3.9e-1 Then .12e12 Starts With 5.9e-12 Starts With `4esn` When {1000}[`2esn`...0e-0][9e-1..0X7] Then 010[...12e-12] End..];"), + octest_legacy:ct_string("Cypher 1000.999 Drop Constraint On()-[`5esn`:#usn8]->()Assert Exists(None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .9e12 Is Not Null Is Not Null)._usn3!.``.usn1?)"), + octest_legacy:ct_string("Cypher 999.123456789 Unwind (`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Is Not Null Is Not Null As `2esn` Unwind Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]) Is Not Null Is Not Null As #usn8 Foreach(@usn5 In {`6esn`} Starts With 12e12 Starts With {`2esn`}| Load Csv With Headers From $`3esn` =~0x0 As usn1 Remove #usn7:`1esn`:``);"), + octest_legacy:ct_string("Profile Drop Constraint On(`8esn`:usn2)Assert Exists({@usn6:{123456789} Starts With `6esn`}.`2esn`?)"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Create Constraint On(`8esn`:`8esn`)Assert Exists((`6esn` :`4esn`:usn2)<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]-(`7esn` :#usn8:@usn6{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}).`6esn`);"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Create Constraint On(`6esn`:`1esn`)Assert Exists(Single(usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]).`8esn`?);"), + octest_legacy:ct_string("Cypher 1000.999 Unwind (:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 )[Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..][(#usn8 :`4esn`:usn2)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})..] As `3esn` Return Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999|{`6esn`} Starts With {`5esn`} Starts With 2.9e1) Is Not Null Is Not Null Foreach(`1esn` In {usn1} In Count ( * ) In 12e12| Return Distinct 01 Starts With 12 Starts With $`2esn` As usn1,{`8esn`} In {_usn3} In 6.0e0 Order By {`4esn`} Ends With Count(*) Asc,.0e0[{`5esn`}..3.9e-1] Descending,$999 Ends With `2esn` Ends With 12.0 Ascending) Union All Merge `3esn`=(usn1 :#usn8:@usn6) On Create Set (`3esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[?:`4esn`|:`2esn` *01]-(`` :``).`1esn`.@usn5! =None(`` In `7esn` =~#usn8 =~\"d_str\" Where $`4esn` In {999}) Starts With ({usn1:12[..$`5esn`]})-[:`1esn`|:`1esn` *999..123456789{@usn5:$999 Ends With `2esn` Ends With 12.0}]->(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}) Starts With Case When $#usn8 Is Not Null Is Not Null Then $#usn8[$0..`3esn`][1e-1..$7] When $`` Starts With $`4esn` Starts With `3esn` Then .12e12[$usn1..][{@usn6}..] End,Reduce(`7esn`=123.654[01..][Count(*)..],`6esn` In 010[{`1esn`}..]|0.0[$`4esn`]).`6esn` ={_usn4} Starts With `2esn`(Distinct .1e-1[..$_usn3][..0]) Starts With #usn7(Distinct usn1 =~false =~{999},{`3esn`} =~$@usn5 =~`2esn`) Unwind exists(usn1 Ends With 11.12e-12 Ends With 5.9e-12)[All(`7esn` In 0.12 Is Not Null Where 0X0123456789ABCDEF In false)..] As _usn4 Merge `3esn`=(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})<-[?:`5esn`]-($12)<-[?:@usn5|:#usn7 *0]-(`7esn` :`5esn`:`7esn`)"), + octest_legacy:ct_string("Cypher 1000.999 Foreach(#usn8 In `5esn`[9e-1][7.0e-0]| Load Csv From {usn1:$usn1[9e1][{999}],#usn8:0e-0[$``..10.12e12]}[Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End] As `8esn` ) Union All Match Shortestpath(((usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})-[{#usn7:1e-1[$`4esn`]}]->(_usn4 :`1esn`:``{`3esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}))),(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})<-[`5esn`:@usn6|:`4esn` *010..0{`8esn`:0xabc Starts With 12 Starts With 0e-0}]-(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})<-[?:@usn6|:`4esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]-(`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]}) Using Index `1esn`:`1esn`(`4esn`) Using Join On _usn4,usn2,`` Create `3esn`=(((`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}))),`6esn`=Shortestpath((`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})<-[`7esn`:`4esn`|:`2esn` *0X7..0Xa{_usn3:@usn6[0x0..][$_usn4..],`6esn`:9e-1[1.9e0]}]->(_usn3 :``)) With *,0e-0[_usn4..{`7esn`}][\"d_str\"..{`2esn`}] As `4esn`,$_usn4[..01234567][..$`6esn`]"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Create Constraint On()-[`2esn`:`1esn`]-()Assert Exists(Reduce(`7esn`=$usn2 Starts With $999 Starts With .0e0,@usn6 In 9e12[..usn2][.._usn3]|$@usn6 Is Null Is Null)._usn4?.usn1?)"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Unwind Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) As @usn6 Union All Optional Match (({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})) Using Index usn1:#usn7(usn1) Remove Reduce(`3esn`={0} Is Not Null,`` In `7esn` =~#usn8 =~\"d_str\"|01234567[\"d_str\"..][$`4esn`..])._usn4.@usn6;"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Detach Delete (`4esn` :`8esn`{12})<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:`6esn`]-({`6esn`:1000[{`1esn`}..][$`3esn`..]}) =~[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Is Not Null Is Not Null] =~Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true),$12 Contains false Contains {`1esn`} Union Merge Shortestpath((#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7})<-[_usn3?{`8esn`:{usn2} Is Not Null Is Not Null}]->(`7esn` {@usn5:Count ( * )[_usn4..]})<-[?:`3esn`|`3esn` *0X7..0Xa{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}]->(#usn8 :`8esn`)) On Match Set `6esn`(Distinct 1.0 In {usn1}).`5esn`! =.0e-0 Contains $1000,Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0).`1esn`! =`8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End,Reduce(`5esn`={``} Contains 0.0 Contains `4esn`,`2esn` In $@usn5 Is Not Null Is Not Null|0.0[`7esn`]).`2esn`.`8esn`!.`` =1.0 In {usn1} On Create Set ``+=12e12 Contains {0},`4esn`+=$`2esn` Contains {`4esn`} Union Unwind $`7esn` Ends With 7.0e-0 Ends With $usn2 As `5esn` With Distinct 0.0[$`4esn`] As `4esn` Order By 9e1 Ends With `7esn` Ends With 2.12 Descending,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null Asc,{0} =~{999} Desc Skip 6.0e0[None(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0)..][[_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]]..] Limit [usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]];"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On(`3esn`:`3esn`)Assert Reduce(@usn6=7.0e-0[$`6esn`..],`6esn` In 010[{`1esn`}..]|$``[9e12..])._usn4 Is Unique;"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` With Distinct All(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`]) Ends With Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e-12[9e1]),9e0[`3esn`][0] As #usn7,`1esn`[..$1000] As _usn3 Load Csv From (usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[_usn3?:@usn5|:#usn7]->(`2esn` :usn1)<-[?:usn1|usn2{#usn8:'s_str'[`2esn`][12.0]}]->(_usn3 :``)[[usn2 In .12e-12 Ends With `2esn` Where .9e0[07..][4.9e12..]|12.0[...0e0]]] As _usn4 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On()-[`8esn`:`4esn`]->()Assert Exists((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[_usn3?:`7esn`|usn1]-(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` ).`4esn`.`8esn`);"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Create Constraint On()<-[#usn7:`4esn`]-()Assert Exists(All(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[10.12e12]).usn1!);"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Start _usn3=Node( {123456789}) ,_usn3=Relationship(0x0)Where {0}[.0e-0][$`2esn`] Load Csv With Headers From {_usn3}[@usn6..] As `3esn` Fieldterminator \"d_str\" Return Distinct $7 In 1.0 In 01234567,2.9e1 =~{123456789} =~01 As usn1,Reduce(#usn7=#usn8[\"d_str\"..usn2],#usn7 In .0e-0 In 12|`` Ends With 1.0 Ends With usn1) Ends With [_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3]] Ends With Shortestpath((((:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[`2esn`?:`8esn`|:#usn8]->(`` )<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)))) Order By 5.9e-12 =~01234567 =~$`3esn` Ascending,[`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] Descending Skip `3esn`[{`4esn`}] Union All Create Unique `2esn`=((_usn3 :`6esn`{usn2:.9e1 In .1e-1,usn2:1e-1 Contains 0.0}))"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Merge @usn5=Allshortestpaths(((`8esn` :`8esn`)<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))) On Create Set {@usn5:$@usn5 Is Not Null Is Not Null}._usn3.`7esn` =(:`1esn`:``{`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]})-[:`1esn`|:`1esn` *999..123456789{@usn5:$999 Ends With `2esn` Ends With 12.0}]->(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}) Contains Case {`8esn`} In {_usn3} In 6.0e0 When 9e0[..{#usn7}][..`4esn`] Then .12e12 Is Not Null When #usn8[$`2esn`] Then 3.9e-1 Starts With .9e0 Starts With {#usn7} Else 8.1e1 Contains .9e-1 Contains false End Contains Extract(#usn7 In .0e-0 In 12 Where {0}[.0e-0][$`2esn`]) On Create Set usn2+=[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]][None(#usn7 In .0e-0 In 12 Where $12 In {usn2})..{`1esn`:{0} Is Null Is Null}][Extract(#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12|{`5esn`} Is Not Null Is Not Null)..Reduce(`7esn`=`7esn` Ends With 10.12e12,usn2 In $`5esn`[{`4esn`}][{0}]|@usn5[9e-1..{`1esn`}])] Start `2esn`=Rel( {``}) Where .9e1[$`1esn`..][$``..] Remove count(Distinct $1000 Starts With {@usn6} Starts With $@usn5)._usn3.usn1?,@usn5(Distinct $7[999..10.12e12][$`1esn`..{usn1}],$`5esn` Is Null).usn1.``?.#usn8 Union With {0} Is Not Null As ``,00 Is Not Null Is Not Null Limit Allshortestpaths((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) In Extract(#usn7 In .0e-0 In 12 Where {#usn8}[..@usn5]) In [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 10.12e12[usn2]|{1000} Starts With 10.12e12 Starts With .0e-0] Create Unique ``=Shortestpath((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})),`2esn`=Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}})<-[?{@usn5:@usn6[999][1000]}]-(:usn1{#usn8:2.9e1[{`2esn`}]})) Foreach(`2esn` In 010[.0e-0..\"d_str\"][.9e0..123.654]| Create Unique `6esn`=(@usn6 :`5esn`:`7esn`) Remove (:`1esn`:``{`8esn`:0X0123456789ABCDEF Ends With {1000}})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`6esn` :`4esn`:usn2).`2esn`!._usn4?.`4esn`!,Case `1esn` =~{12} =~{999} When .9e1[$`1esn`..][$``..] Then $12 Is Null Is Null When $#usn7[01..2.12][2.12..3.9e-1] Then $999 Ends With `2esn` Ends With 12.0 End.usn1!.`6esn`!.#usn7!) Union All Remove Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .12e12 Starts With 5.9e-12 Starts With `4esn`).`3esn`? Delete {`6esn`}[@usn5..{@usn6}],00[$_usn4][$`1esn`] Create @usn5=Allshortestpaths(({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})<-[#usn7?]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})),#usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))));"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Drop Constraint On()<-[@usn5:`3esn`]-()Assert Exists(_usn3(Distinct 9e1 Starts With $@usn6 Starts With 0e-0,0.12 =~`6esn` =~.9e-1).`8esn`)"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Detach Delete 0.12[Count ( * )..Count ( * )][$999..`5esn`],123.654 Contains true Contains 7.0e-0 Unwind 9e12[..usn2][.._usn3] As @usn5 Union All Match `2esn`=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))),((:`4esn`:usn2{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(_usn4 :usn2)) Using Join On `5esn`,`8esn`,#usn7;"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Start _usn4=Relationship:@usn6(\"d_str\") Where 07[{@usn5}..] Union All Unwind \"d_str\" In usn2 In $`7esn` As @usn6 Remove Filter(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12).`3esn`?.`7esn`?,Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0xabc[01234567][.12e-12]).`8esn`,Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`]).usn1 Union Load Csv From None(usn1 In \"d_str\" Contains {@usn6} Where $`5esn` =~Count(*) =~1.9e0) In [_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]] As @usn5 Fieldterminator \"d_str\" Start `4esn`=Rel:#usn8(usn2='s_str') ;"), + octest_legacy:ct_string("Profile Create (@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})<-[#usn7?:_usn3 *999..123456789{@usn5:$12 In {usn2},usn1:5.9e-12 Is Null Is Null}]->(`` {`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654}) Match `6esn`=(:`3esn`{@usn5:9e12[..usn2][.._usn3]}) Using Scan `5esn`:usn1 Using Join On `5esn`,usn1,`7esn` Where $@usn5 Contains _usn3 Load Csv With Headers From #usn7({12} Starts With $`` Starts With 0X0123456789ABCDEF)[Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where .12e-12[9e1])..] As @usn5 Fieldterminator \"d_str\";"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Create Constraint On(`2esn`:#usn8)Assert Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 9e1[$``.._usn4][999..`3esn`])._usn3!.#usn7! Is Unique"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Create Unique (@usn5 ) Delete $7 =~01234567 =~12.0,9e1 Starts With $@usn6 Starts With 0e-0 Union With Distinct *,9e1[12] As usn1 Limit 9.1e-1[..Null][..#usn8] Where $#usn8 Is Not Null Is Not Null Detach Delete 8.1e1[usn2..{1000}][0X7..9e12],$1000[_usn4][{@usn5}]"), + octest_legacy:ct_string("Profile Create ((`5esn` :_usn3)),Shortestpath(((:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})-[?:`4esn`|:`2esn`{usn1:{123456789} Starts With `6esn`,@usn5:9e1 Ends With 9e12 Ends With 0x0}]-(`2esn` :usn1))) Remove `3esn`:usn2,(:#usn7:`8esn`{`5esn`:false[..usn2][..999]})<-[`7esn`:`4esn`|:`2esn`*{``:true Is Null,_usn3:$12 Ends With 7.0e-0 Ends With 9e-12}]->(`` :`7esn`).`1esn` Remove Allshortestpaths(((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})-[_usn3:#usn8|:``{#usn8:{_usn4} In 0X7 In 0e0,`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]-(@usn5 )<-[?:#usn7|:@usn5 *12]-(_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null}))).``?.usn1.@usn6?,{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:{12}}.#usn7.``!,Case When $usn1 Contains 4.9e12 Contains $`2esn` Then {usn1} Contains `4esn` Else {0} Ends With 0Xa End.@usn5;"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Foreach(_usn4 In $_usn3 Contains 1.0 Contains 0.12| Create Unique #usn7=((:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}})<-[usn2? *0X0123456789ABCDEF]-($12)) Create Unique `7esn`=Shortestpath(((_usn3 {#usn7:$999 =~false =~{`8esn`}}))),#usn8=((#usn8 :@usn5)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Foreach(#usn7 In $999[9e0]| Start #usn8=Node:_usn4({_usn3}) ,`1esn`=Rel:@usn6(`2esn`='s_str')Where 0[..{0}][..true] Load Csv From Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where .9e1[$`1esn`..][$``..]) As `4esn` ) Create ((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})),((`5esn` :_usn3)) Union All Merge usn1=({#usn8:_usn4[$_usn4]})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7}) Optional Match (({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`2esn` *7]->(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})),Allshortestpaths((:#usn7:`8esn`{`3esn`:0.12 In $``})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})<-[:#usn8|:`` *0]->({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})) With Distinct 0xabc[..Count(*)][..$`5esn`],{12} Ends With 1e1 As `8esn`,{`4esn`} In 1000 In {@usn5} Order By {7} Ends With 999 Asc,_usn3 =~{`4esn`} Desc Skip [`1esn` In $12 In {usn2} Where 12e-12 Starts With $`7esn`][{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}..] Where Null In {7};"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Create Constraint On(@usn6:`3esn`)Assert [@usn6 In 9e12[..usn2][.._usn3]|$1000[_usn4][{@usn5}]].#usn8 Is Unique"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 With Distinct * Where $123456789[{usn1}][.12e-12];"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Create Constraint On(#usn8:`5esn`)Assert All(usn2 In $`5esn`[{`4esn`}][{0}] Where 7.0e-0 Is Not Null).`2esn` Is Unique"), + octest_legacy:ct_string("Cypher `1esn`=_usn3 Delete $7 In 1.0 In 01234567 Foreach(#usn8 In usn2 Starts With $usn1 Starts With 10.12e12| With {1000} Starts With 10.12e12 Starts With .0e-0 As `8esn`,Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) As _usn4 Skip Count ( * ) Starts With 0.12 Limit Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Create ``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0})))) Create Unique Shortestpath((:`7esn`{#usn7:$999 =~false =~{`8esn`}})-[:`6esn` *12{#usn7:`3esn` =~$#usn7,`8esn`:0e-0[{@usn6}]}]->(@usn5 :@usn6:_usn3)<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]-(usn2 :`5esn`:`7esn`{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})),`6esn`=((:#usn7:`8esn`{usn2:`1esn` =~{12} =~{999}})) Union With *,Extract(#usn8 In 07[..$`5esn`] Where $usn2[..$999][..#usn8]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )])[Case {#usn7}[.12e-12] When $`4esn`[$@usn6...12e12] Then .12e-12[@usn6..'s_str'] Else .12e-12 Starts With .12e-12 End..(`` :``)-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})][Reduce(`5esn`=Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|{usn2}[9e-1])..All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}])] As `8esn` Limit $`5esn`[..{0}][..7.0e-0];"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Create Constraint On(``:`1esn`)Assert Exists(Case {0} In {`1esn`} When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] End.`7esn`._usn3?.@usn5?);"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Create Unique @usn6=(:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5}) Union All Foreach(usn2 In 1e-1[$#usn8]| Create Shortestpath(((usn2 :`4esn`:usn2)-[?:#usn7|:@usn5 *..00]-(:@usn5{`7esn`:01234567[\"d_str\"..][$`4esn`..]})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))),`2esn`=Shortestpath((@usn6 :@usn5)) Create `2esn`=Allshortestpaths((:`3esn`{@usn5:9e12[..usn2][.._usn3]})),``=Shortestpath((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[ *0X0123456789ABCDEF]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Optional Match (`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5) Using Index _usn3:usn2(`4esn`) Using Index @usn5:`3esn`(`8esn`) Where $0 Contains $123456789 Contains {`3esn`} Match ((`4esn` :`6esn`)<-[{``:7.0e-0 Is Not Null}]->(:#usn7:`8esn`{@usn5:{0} In {`1esn`}})-[``?{``:{#usn7} =~$@usn6 =~$7}]-(`3esn` :@usn5)) Using Index usn1:#usn8(``) Using Index @usn5:@usn5(_usn4);"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Drop Constraint On()<-[usn2:_usn4]-()Assert Exists({`6esn`:{usn1}[7.0e-0..][3.9e-1..]}._usn4?);"), + octest_legacy:ct_string("Cypher 7.123456789 ``=`2esn` Create Constraint On()-[`5esn`:#usn8]-()Assert Exists(Case When 9e0[{7}...0e-0][Null..@usn5] Then $usn2 In #usn7 In #usn7 When 999 Ends With {#usn8} Then `1esn` =~{12} =~{999} Else {`1esn`} Is Null End.@usn6);"), + octest_legacy:ct_string("Cypher usn1=_usn3 usn2=`` Cypher `8esn`=_usn4 Drop Constraint On(`3esn`:usn2)Assert Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 9e-1 Is Not Null|$123456789 Is Not Null Is Not Null).usn2! Is Unique"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Drop Constraint On(_usn4:`5esn`)Assert Case When usn2[..$0][..`3esn`] Then $0 Contains $7 End.`3esn`! Is Unique;"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Create (((@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[`7esn`?:`2esn`|`5esn` *0]->({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000}))),((#usn8 :@usn5)<-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 )<-[?:`1esn`|:`1esn`{`5esn`:9e1[0.0]}]->(`8esn` )) Remove .1e-1._usn3"), + octest_legacy:ct_string("Profile Remove None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]).#usn8!.`6esn`.``?,`8esn`({0} In {`1esn`},.9e-1 Ends With .0e-0 Ends With {_usn3}).`6esn`!,None(`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0).`8esn`! Union Load Csv With Headers From Filter(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}]) Starts With Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3)) Starts With {@usn5:$123456789 Is Not Null Is Not Null} As `4esn` Load Csv From {`1esn`}[{usn2}] As @usn5 Fieldterminator 's_str' Union All Remove Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {#usn8}[..@usn5]|{0}[.0e-0][$`2esn`]).@usn6?.``?,(`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[?:`1esn`|:`1esn`]-(:@usn5{`1esn`:$999 =~0e0 =~0X7})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12}).`7esn`,{_usn4:$7}.@usn5 Return Distinct 0.12[{@usn6}..{#usn7}] Order By Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) Ascending,Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Descending,.9e-1[`1esn`][7] Ascending Limit {`4esn`}[{`3esn`}][$`2esn`];"), + octest_legacy:ct_string("Cypher _usn3=@usn5 ``=`2esn` Cypher `2esn`=`6esn` #usn7=`4esn` Drop Constraint On()-[`1esn`:`3esn`]->()Assert Exists(Filter(#usn8 In 07[..$`5esn`] Where 2.9e1 =~Count(*) =~{123456789}).`5esn`._usn4?);"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Drop Constraint On()<-[`5esn`:@usn5]-()Assert Exists([#usn7 In .0e-0 In 12 Where `8esn`[.12e12..]].usn1._usn3.`8esn`);"), + octest_legacy:ct_string("Cypher 12.123456789 #usn8=`7esn` Cypher 12.123456789 Create Constraint On()<-[`7esn`:@usn5]-()Assert Exists(({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000})<-[`7esn`{`7esn`:6.0e0 =~12.0 =~9e1}]-({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})-[:`8esn`|:#usn8 *01]-(usn2 :`2esn`:`4esn`).`6esn`!);"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Unwind Any(`7esn` In 0.12 Is Not Null Where $0 Contains $7) Is Not Null Is Not Null As `2esn` Start `3esn`=Node:`6esn`(#usn7={_usn4}) Match (({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})<-[usn2:`4esn`|:`2esn` *0X7..0Xa]-(#usn7 :#usn7:`8esn`)) Union All Unwind .0e-0 Contains $1000 As `` Start @usn5=Rel:`8esn`(usn1=\"d_str\") ,_usn3=Relationship(0x0)Where $@usn5 Is Null Is Null Union All Remove Filter(_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null).`6esn`,count(Distinct).`4esn`?.`2esn`,(@usn6 {usn1:0Xa In 1.0 In $@usn5})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]}).`8esn`! Return usn2[12e-12..{`8esn`}][.12e12..{123456789}] As #usn8,Case When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] When {123456789} Starts With $_usn4 Starts With 0x0 Then 9e0[`3esn`][0] End[{`3esn`:false Starts With 0 Starts With 2.9e1,@usn6:9e-12 Ends With {1000}}..{`8esn`:_usn3[{#usn7}]}] As usn1 Skip Allshortestpaths((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))[usn1..] Limit usn2 Ends With $123456789 Ends With {999} Create Shortestpath(((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})));"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Create Allshortestpaths((:`3esn`{usn2:01234567[10.12e12][0Xa]})),Shortestpath((@usn5 :_usn4:`2esn`{@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})) Foreach(`7esn` In 12.0[..Count ( * )][..@usn6]| Remove exists(usn1 =~false =~{999},.12e12[..$123456789]).`7esn`?,[`` In `7esn` =~#usn8 =~\"d_str\" Where @usn6 Starts With #usn7|$12 Is Null].`6esn`?,`4esn`(Distinct {`3esn`}[...1e1][..0]).usn2? Unwind .12e12[01..{1000}][8.1e1..Count ( * )] As `2esn`) Load Csv From $`5esn` Contains .9e12 As _usn4 "), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Merge #usn7=Shortestpath(((`8esn` :@usn6:_usn3{`2esn`:#usn7 =~$@usn5 =~{7},`2esn`:{`3esn`}[..{`4esn`}][..usn2]})-[`8esn`:`4esn`|:`2esn`]->(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1}))) On Match Set {#usn8:$#usn7[01..2.12][2.12..3.9e-1],``:.9e0[$#usn8][Count ( * )]}.usn2! =Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]) Is Not Null Is Not Null Merge Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))) On Match Set Case .12e12 Ends With 07 Ends With 3.9e-1 When 0.12 In $`` Then 0e-0 In 0X0123456789ABCDEF In `3esn` When 01 Ends With .0e0 Ends With 7.0e-0 Then $`6esn`[@usn6...9e-12] End.`1esn`.`1esn` =1e-1 Starts With .1e1 Starts With 12.0"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(`6esn`:`8esn`)Assert Exists({#usn8:{``}[usn1..][{`8esn`}..]}.@usn6?)"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Using Periodic Commit 0xabc Load Csv From $12 Contains false Contains {`1esn`} As usn1 Fieldterminator \"d_str\" Delete None(@usn6 In 9e12[..usn2][.._usn3] Where Count ( * )[_usn4..]) Is Null Is Null,{`5esn`}[.1e-1..1e-1][999..{_usn3}],$_usn3 Is Null Start `7esn`=Node:``(_usn3='s_str') Where 3.9e-1 Ends With {usn1} Ends With {`5esn`}"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Start `5esn`=Node:_usn4(`3esn`={_usn3}) Match ``=Allshortestpaths(((`8esn` :`8esn`)<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))) Using Scan @usn6:usn1 Using Index @usn5:`3esn`(_usn4) Load Csv From Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]) In (`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) In `4esn`($#usn7[01..2.12][2.12..3.9e-1]) As _usn3 Fieldterminator 's_str' Union All Unwind `3esn`[{`4esn`}] As #usn7 Foreach(`1esn` In 07 Ends With {@usn5:.1e1 Is Null Is Null} Ends With Filter(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 1.9e0[.12e-12][9e-12])| Unwind Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`|.9e-12[.12e12..][0Xa..])[{#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}..] As `1esn`) With 0xabc[..Count(*)][..$`5esn`],Case {1000}[..`5esn`][..9e12] When $`8esn` Then Null[$`3esn`..][`1esn`..] End =~None(`` In `7esn` =~#usn8 =~\"d_str\" Where 7 In 1e1 In {``}) =~{`6esn`:usn2 Contains `2esn` Contains {1000}} As `3esn` Order By Single(usn1 In $@usn6 Is Null Is Null Where 0X0123456789ABCDEF Ends With {1000}) In (`1esn` :#usn8:@usn6{usn1:#usn8 Is Null Is Null,_usn3:{`4esn`} In 1000 In {@usn5}})-[``:``|:`7esn`*{#usn8:{#usn7}[.12e-12],`3esn`:1.9e0[`6esn`][`7esn`]}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})-[usn1?:`3esn`|`3esn`*..]->(:usn1) In Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1) Ascending Skip $_usn3[.0e-0..999] Where 3.9e-1 Ends With {usn1} Ends With {`5esn`};"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Create Constraint On()-[usn2:`6esn`]-()Assert Exists(Reduce(`1esn`=.9e0[07..][4.9e12..],_usn3 In `8esn`[_usn4]|`3esn` =~$#usn7).`5esn`!);"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Drop Constraint On(`4esn`:`6esn`)Assert Exists(Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $0 Contains $123456789 Contains {`3esn`}).@usn6!);"), + octest_legacy:ct_string("Cypher 1000.999 Create Constraint On()<-[_usn3:`5esn`]-()Assert Exists(usn1(.9e-12[.12e12..][0Xa..],$`6esn` =~$#usn7 =~$`4esn`).`7esn`?)"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Foreach(usn2 In {#usn7}[.12e-12]| With $`7esn` In $@usn5,{999} =~$`6esn` =~$`6esn` As `1esn`,12[4.9e12..] As #usn8 Skip [@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null] Starts With Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789) Starts With All(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0) Where {_usn4} In 0X7 In 0e0 With $`1esn`[..12e-12][...9e12] As `7esn` Order By .12e12[01..{1000}][8.1e1..Count ( * )] Asc,{12} Starts With $`` Starts With 0X0123456789ABCDEF Asc,$_usn3[0x0][{0}] Descending Skip 9e1[..{usn1}]) Union Merge Shortestpath(((`7esn` {@usn5:Count ( * )[_usn4..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))) On Match Set Case 0xabc[..Count(*)][..$`5esn`] When `6esn`[0X0123456789ABCDEF..][`8esn`..] Then `2esn`[`7esn`][1000] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} Else 12e12[{`4esn`}..`4esn`][999..{@usn6}] End.``!.#usn8! =Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})),(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})-[_usn4:_usn3{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]}).#usn7! =8.1e1 Contains .9e-1 Contains false,`5esn` =false Is Not Null Is Not Null On Match Set @usn5+=Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null"), + octest_legacy:ct_string("Explain Cypher `2esn`=`6esn` #usn7=`4esn` Detach Delete $usn2 In #usn7 In #usn7 Union All Create Unique `2esn`=Allshortestpaths(((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]}))),#usn8=((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})-[?:#usn7|:@usn5 *..00]-(:@usn5{`7esn`:01234567[\"d_str\"..][$`4esn`..]})) Return Distinct 9e-1 Is Not Null,{`6esn`} In 11.12e-12 In 2.9e1 Order By `3esn` Is Null Is Null Asc,8.1e1[.1e1..][`4esn`..] Asc Skip @usn5[@usn6] Union All With Distinct *,$usn1[..$999][..0e0] As #usn7,.9e-12[{@usn5}] As `7esn` Order By 01 Ends With .0e0 Ends With 7.0e-0 Asc,Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]) Desc,.0e0[$usn1][0] Desc Skip 12e12[.9e12..07] Limit {`2esn`} Contains 0xabc Where 0X7[#usn7..][$@usn5..];"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Create Shortestpath((`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})),((_usn3 :`7esn`{@usn6:$`4esn` Ends With .12e12 Ends With 123.654})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)<-[#usn7? *0xabc..12]-(:`3esn`)) With {`2esn`}[0x0..9e0] As `6esn`,{`8esn`} Ends With true Ends With {`3esn`} As `2esn` Skip {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null) Where 2.9e1 Ends With `5esn` Ends With 1000;"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Create Constraint On()-[usn1:``]-()Assert Exists({@usn5:4.9e12 Ends With $@usn6,`2esn`:0e-0 In 0X0123456789ABCDEF In `3esn`}.`1esn`);"), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` Using Periodic Commit 0X7 Load Csv With Headers From $`1esn`[9e0..$12] As _usn3 Unwind .12e12[..7] As #usn8 Delete 1e1 Ends With 12 Ends With 999;"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Remove Extract(`7esn` In 0.12 Is Not Null Where #usn7 In 07|2.9e1[Count ( * )..])._usn4!,Reduce(`8esn`=.9e0 =~#usn7,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|#usn8 Is Null Is Null).`5esn`,(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})._usn4? Merge (_usn4 {#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12}) Create Unique Shortestpath((:_usn3{`6esn`:{`3esn`}[..{`4esn`}][..usn2]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]->(@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(usn2 {`7esn`:.9e12 Contains 0 Contains $0})) Union Foreach(#usn7 In Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1) Starts With Case 7.0e-0[$`6esn`..] When \"d_str\"[0x0..{@usn6}][$@usn5..0] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else $`5esn`[{`4esn`}][{0}] End Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`)| Start @usn5=Relationship:_usn3({`7esn`}) Detach Delete 1.9e0 In $@usn6 In $_usn3) Remove usn1:#usn7:`8esn`,0Xa.@usn6._usn4!,[`6esn` In 010[{`1esn`}..] Where `3esn` Starts With 9.1e-1 Starts With .9e-1].`5esn`!;"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Drop Constraint On(`8esn`:_usn4)Assert Exists(Reduce(_usn4=1e-1 =~$`7esn` =~1e1,usn2 In .12e-12 Ends With `2esn`|0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}]).usn2!);"), + octest_legacy:ct_string("Cypher 999.123456789 `4esn`=`8esn` Create Constraint On(#usn7:`4esn`)Assert Exists(Single(usn2 In .12e-12 Ends With `2esn` Where 1e-1 Contains 0.0).`2esn`?);"), + octest_legacy:ct_string("Cypher 12.123456789 Cypher 999.123456789 `4esn`=`8esn` Drop Constraint On(usn1:@usn5)Assert Case When .12e12[$usn1..][{@usn6}..] Then {1000}[..{usn1}][..1e-1] End._usn3! Is Unique"), + octest_legacy:ct_string("Cypher `7esn`=#usn8 Merge #usn7=Allshortestpaths(((_usn4 :`6esn`$_usn3)-[`8esn`? *0X7..0Xa{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}]-(:``{usn2:00 Is Not Null Is Not Null})<-[? *999..123456789]->(usn2 :@usn5{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Union All Foreach(`` In Shortestpath(((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(_usn3 :usn1)))[..{_usn4:.9e-1 Ends With .0e-0 Ends With {_usn3},_usn4:9e1 Ends With 9e12 Ends With 0x0}][..Reduce(#usn8=`8esn`[_usn4],`1esn` In $12 In {usn2}|$`4esn` Is Not Null)]| Start #usn7=Relationship:#usn8(usn2={12}) Where 01234567 Ends With .0e0 Ends With 12e12 Unwind `6esn`[0X0123456789ABCDEF..][`8esn`..] As _usn4) Merge ((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})) On Create Set Case When 01234567 Ends With .0e0 Ends With 12e12 Then 00[$``] End.`1esn` ={1000} Ends With .12e12 Ends With 010 Optional Match `6esn`=((`3esn` :#usn8:@usn6)) Using Join On `6esn`,`1esn`"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Drop Constraint On()<-[`3esn`:``]-()Assert Exists(Reduce(`8esn`=Count(*)[$7],`2esn` In $@usn5 Is Not Null Is Not Null|$@usn5 Contains _usn3).`6esn`!)"), + octest_legacy:ct_string("Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Using Periodic Commit 12 Load Csv From `1esn`[{@usn5}..][{_usn4}..] As `6esn` "), + octest_legacy:ct_string("Cypher 123456789.0 @usn6=#usn7 Cypher 7.123456789 ``=`2esn` With Distinct *,Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null Skip 0xabc Contains 12 Contains Null Limit $123456789 Contains 07 Contains 0.0 Load Csv From {_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}[Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)][[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1]] As `5esn` Fieldterminator 's_str' Union All Start `7esn`=Node:usn1(\"d_str\") ,`5esn`=Relationship(999,010,07,123456789) Union All Start #usn7=Node( {``}) Where $`6esn`[..01][..{_usn3}] Optional Match `7esn`=(@usn5 :@usn5{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6})-[usn2?:`1esn`|:`1esn` *..123456789]-(:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[:_usn3]-(`3esn` ),(({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 {#usn7:$999 =~false =~{`8esn`}})) Where {#usn7} Starts With .1e-1;"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Drop Constraint On(@usn6:``)Assert Single(`6esn` In 010[{`1esn`}..] Where {`3esn`} Is Not Null Is Not Null)._usn4 Is Unique;"), + octest_legacy:ct_string("Cypher _usn4=#usn8 Load Csv From Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] As `3esn` Fieldterminator \"d_str\" Union All Merge `3esn`=Allshortestpaths(((`4esn` :`8esn`{`4esn`:4.9e12 Starts With {``},`8esn`:$12 Ends With {_usn4} Ends With $`8esn`})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`)<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))) On Match Set `3esn` =0x0 Ends With #usn8 Ends With .9e-1,`7esn`+=`4esn` Ends With 9e12 Ends With {`5esn`} Load Csv From {@usn5:$@usn5 Is Not Null Is Not Null} Contains None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[..0xabc][..{`6esn`}]) As `6esn` Return Distinct Case When 9e-12[010..{#usn7}][{123456789}..7] Then $999 =~false =~{`8esn`} When {0}[.0e-0][$`2esn`] Then 12e12 Is Not Null Is Not Null Else false[..usn2][..999] End[Allshortestpaths(((({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(@usn6 :@usn5)-[`2esn`? *7{`5esn`:false[..usn2][..999]}]-(`4esn` :@usn6:_usn3))))..All(usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null)][.9e0..`4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`)] Order By $`5esn` Is Null Desc,8.1e1[..9.1e-1][...9e1] Ascending,[`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]) Asc Skip @usn5[{`1esn`}..][Count ( * )..] Union Start `5esn`=Node:`1esn`(@usn6={`4esn`}) ,`7esn`=Node:@usn6(`3esn`={``})Where {@usn6} In 9e12"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Load Csv From None(`2esn` In $@usn5 Is Not Null Is Not Null Where usn1 Ends With 11.12e-12 Ends With 5.9e-12) Is Not Null Is Not Null As `` Create Shortestpath(((`7esn` {@usn5:Count ( * )[_usn4..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))) Union Start @usn5=Rel:#usn7(usn1={`6esn`}) Where #usn7 Contains .0e0 Contains $@usn6 Return Count(*) Starts With {usn2} Starts With `2esn` As `3esn`,0.12 Ends With 7 Ends With 12,`5esn`({`5esn`}[01234567..][5.9e-12..],5.9e-12 Is Null Is Null)[Reduce(#usn7={12} Ends With $`3esn` Ends With 0xabc,usn1 In $@usn6 Is Null Is Null|`1esn`[Null][{@usn6}])..@usn5(`3esn` Contains `2esn` Contains {_usn4},2.9e1 In {``})][Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789}))..Any(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`)] As usn2 Delete $`8esn`[0x0][.9e0],12e12[usn2..$`6esn`]"), + octest_legacy:ct_string("Cypher 999.123456789 #usn7=`4esn` _usn3=@usn5 Cypher 7.123456789 `5esn`=`5esn` `2esn`=`6esn` Return * Foreach(usn2 In 9e12 =~12e-12| Remove Case When $usn2 Ends With 00 Ends With 9e12 Then $#usn7 Ends With 999 Ends With {12} Else 0e0 =~{12} =~{1000} End.@usn6.usn1?,None(@usn6 In 9e12[..usn2][.._usn3] Where {`8esn`}[@usn5][$`2esn`])._usn3!) Unwind Case false =~{`8esn`} =~00 When usn2 Starts With $usn1 Starts With 10.12e12 Then usn2 Starts With $usn1 Starts With 10.12e12 When {1000} =~4.9e12 =~9e1 Then `3esn` =~$#usn7 End Ends With All(usn2 In $`5esn`[{`4esn`}][{0}] Where 0e0 Contains {`2esn`}) Ends With [#usn7 In .0e-0 In 12 Where Count ( * ) Is Not Null Is Not Null|$`7esn` Starts With 's_str'] As `1esn` Union All Create Unique (`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]}),@usn6=Shortestpath((@usn6 :`5esn`:`7esn`)) Foreach(`2esn` In 010[.0e-0..\"d_str\"][.9e0..123.654]| Create Unique `6esn`=(@usn6 :`5esn`:`7esn`) Remove (:`1esn`:``{`8esn`:0X0123456789ABCDEF Ends With {1000}})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`6esn` :`4esn`:usn2).`2esn`!._usn4?.`4esn`!,Case `1esn` =~{12} =~{999} When .9e1[$`1esn`..][$``..] Then $12 Is Null Is Null When $#usn7[01..2.12][2.12..3.9e-1] Then $999 Ends With `2esn` Ends With 12.0 End.usn1!.`6esn`!.#usn7!) Union All With *,{`3esn`}[...1e1][..0],$12 Ends With 7.0e-0 Ends With 9e-12 As usn1 Order By (:`1esn`:``{`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]})-[:`1esn`|:`1esn` *999..123456789{@usn5:$999 Ends With `2esn` Ends With 12.0}]->(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}) Contains Case {`8esn`} In {_usn3} In 6.0e0 When 9e0[..{#usn7}][..`4esn`] Then .12e12 Is Not Null When #usn8[$`2esn`] Then 3.9e-1 Starts With .9e0 Starts With {#usn7} Else 8.1e1 Contains .9e-1 Contains false End Contains Extract(#usn7 In .0e-0 In 12 Where {0}[.0e-0][$`2esn`]) Descending,[`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null] =~`6esn`(Distinct 2.9e1[Count ( * )..]) Ascending,01234567[10.12e12][0Xa] Desc Skip {7} Is Not Null Where .1e-1[2.9e1..][$`7esn`..] Load Csv From {`7esn`}[$12..123456789] As _usn4 Fieldterminator \"d_str\";"), + octest_legacy:ct_string("Cypher Cypher 1000.999 Create Unique `2esn`=Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}})<-[?{@usn5:@usn6[999][1000]}]-(:usn1{#usn8:2.9e1[{`2esn`}]})),(((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(`2esn` :_usn3)<-[_usn3?{``:{1000} Starts With {`1esn`}}]->(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))) Foreach(`5esn` In {`6esn`} Contains 1e1 Contains ``| Unwind `8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End As @usn6 With Distinct 0.0[$999][`6esn`] Order By $`2esn`[`8esn`..] Descending,({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}) Contains Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Contains All(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]) Descending Limit $`5esn` =~Count(*) =~1.9e0) Union All Delete $1000[$`2esn`..] Detach Delete \"d_str\"[0x0..{@usn6}][$@usn5..0] Create Unique `7esn`=(`3esn` :usn2),#usn8=(({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[ *12{#usn8:0e0 =~{12} =~{1000}}]-(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})) Union Merge Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) On Match Set `6esn` =_usn4 Remove ``({1000}[..`5esn`][..9e12]).`4esn`!,Reduce(usn2=0xabc =~123456789,#usn8 In 07[..$`5esn`]|8.1e1[..9.1e-1][...9e1]).`6esn`.`1esn`?,None(`` In `7esn` =~#usn8 =~\"d_str\" Where {12} Starts With $`` Starts With 0X0123456789ABCDEF).@usn6!.``?;"), + octest_legacy:ct_string("Cypher `8esn`=_usn4 Merge (#usn7 {#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})<-[@usn5?:#usn7|:@usn5]->(:`8esn`{`2esn`:0[..{#usn7}][..$_usn3],#usn8:.9e-1 Is Null Is Null})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}) Start `2esn`=Relationship(0) Where $12 Ends With 12.0 Ends With $`4esn` Return .9e0 Ends With $0 As @usn6,$0[1e1][12e-12] As _usn3 Skip .12e12 Is Not Null Limit 0e-0 In 0X0123456789ABCDEF In `3esn`;"), + octest_legacy:ct_string("Cypher 1000.999 Delete {#usn7} Ends With 999 Ends With 12,\"d_str\"[0x0..{@usn6}][$@usn5..0],{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1] Optional Match `2esn`=Allshortestpaths(((:#usn8:@usn6{`3esn`:$#usn7}))) Using Join On `5esn`,`8esn`,#usn7 Using Join On usn1,`1esn`,_usn4 Where {@usn5}[10.12e12..] Union All Remove (_usn3 :#usn7:`8esn`)<-[? *0X7..0Xa]->(`1esn` ).`6esn`!.@usn5 Remove {`1esn`:$#usn7 Starts With $123456789,`4esn`:{_usn3}[{0}...9e-1][9e-1...0e0]}.`1esn`?.@usn6?.`8esn`!;"), + octest_legacy:ct_string("Cypher `6esn`=usn2 Drop Constraint On(#usn8:@usn6)Assert Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $#usn7[01..2.12][2.12..3.9e-1]).`3esn`!.`8esn`? Is Unique;"), + octest_legacy:ct_string("Cypher `2esn`=`6esn` #usn7=`4esn` Cypher 12.123456789 Merge ``=Shortestpath((`1esn` {`6esn`:{`5esn`},usn1:$`4esn` Ends With {999}})) On Match Set Shortestpath((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})-[`3esn`? *..07]-(#usn7 {_usn4:$12[$`6esn`..][01..]})).@usn6! =Single(usn1 In $@usn6 Is Null Is Null Where 0X0123456789ABCDEF Ends With {1000}) In (`1esn` :#usn8:@usn6{usn1:#usn8 Is Null Is Null,_usn3:{`4esn`} In 1000 In {@usn5}})-[``:``|:`7esn`*{#usn8:{#usn7}[.12e-12],`3esn`:1.9e0[`6esn`][`7esn`]}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})-[usn1?:`3esn`|`3esn`*..]->(:usn1) In Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1),Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When $1000[_usn4][{@usn5}] Then 4.9e12[{_usn4}..] End._usn3! =7[..123456789][..true] On Create Set `3esn` =$7[.1e-1..{@usn6}][$7..{`1esn`}],None(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {0}[.1e-1..][_usn4..]).usn2 =$`7esn` In $`4esn`,usn1+=$`4esn` Ends With {999}"). diff --git a/test/performance_query_SUITE.erl b/test/performance_query_SUITE.erl index 813dba0..e1b802b 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 : 15.12.2016 +%%% Created : 29.12.2016 %%%------------------------------------------------------------------- -module(performance_query_SUITE). @@ -38,1003 +38,1003 @@ all() -> %%-------------------------------------------------------------------- test_query(_Config) -> - 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"). + octest:ct_string("Remove `4esn`(12e12 In $`` In 6.0e0,.9e1[#usn7..]).`5esn`?,@usn6:@usn6:_usn4 Delete 's_str' Ends With $usn1 Merge `1esn`=(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))) On Create Set `8esn`+=Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),`8esn`+=0.0 Is Not Null Is Not Null On Create Set `2esn` =$999[$usn1...0e0] Union Merge #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})) Match ({`4esn`:7 Is Null Is Null})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})"), + octest:ct_string("With *,7.0e-0 Contains Count ( * ) Contains 0Xa As `7esn` Order By [_usn4 In Count(*)[9e1..][12e-12..] Where $_usn3[1e-1..]][[`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0]][None(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)] Ascending,9e0[$usn2][0] Ascending Skip 3.9e-1[010..][9e1..] Limit (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null Where $_usn4[Null]"), + octest:ct_string("Delete true In $0 In @usn5 With Distinct *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5[..1e-1] Merge ((_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null On Create Set `3esn`+=12e12 Is Not Null Union With #usn7[`5esn`..`2esn`][$`4esn`...1e1] As _usn4,8.1e1 Is Not Null,$_usn3 Is Not Null Skip usn2 Starts With usn1 Limit 00 Is Not Null Where `6esn`[0e0..`4esn`] Unwind Null Starts With 9e1 Starts With `` As `8esn`"), + octest:ct_string("Merge ((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) On Create Set `2esn` =(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)],`3esn` =9e1 Contains 4.9e12 Contains 123456789 Unwind 0.12 =~2.9e1 =~12e-12 As @usn5 Return Distinct *,@usn5 Ends With 's_str' Ends With 01 As _usn4,Null[.12e-12] Skip 's_str' Ends With $usn1 Union Return Distinct *,0 Starts With 0Xa Starts With $0 Limit Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}] Union All Delete 9e12 Contains $@usn6 Contains Count(*),All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)]"), + octest:ct_string("With Distinct (`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[:usn2|:``*..{`1esn`:3.9e-1[.0e0..][07..],`6esn`:$`6esn` Ends With 12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})[All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)..`1esn`(Distinct 01234567 Ends With $1000 Ends With $#usn7,$0[..0x0][..01234567])][_usn3(9e0[.0e-0])..[`5esn` In 12[0xabc..][$0..] Where $usn2[0e0][$7]|Count ( * )[`7esn`..]]] As `6esn` Order By #usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Ascending,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) Asc With Distinct *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip 0xabc =~7.0e-0 =~4.9e12 Limit Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))),(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}) Where $`3esn`[..`1esn`][..$`7esn`] Union All Create ((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]})) Return Distinct *,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]},00[$`6esn`] As `6esn` Order By [`7esn` In .12e12[Count(*)..] Where \"d_str\" =~9e-12 =~`5esn`] Is Null Is Null Asc Limit 123456789[.1e1..][$`5esn`..] Union Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set All(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null).usn1! =.12e12[`7esn`][#usn8],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `2esn` Starts With $`7esn` Starts With _usn4).`1esn`?.#usn8?.@usn6! =All(`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])[None(`` In $_usn3 Is Not Null)..][All(`8esn` In 01234567[..0.0][..false] Where .12e-12[$@usn6..5.9e-12])..]"), + octest:ct_string("With Distinct All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,usn2[..7.0e-0] As `1esn` Skip `2esn` =~usn1 Limit .1e-1[..12][.._usn4] Where 0e0 Is Null Is Null Create ((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),(((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]})))"), + octest:ct_string("Match `3esn`=((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})),_usn4=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[@usn6?:`5esn`]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) Union With *,.9e-12[9e1..6.0e0][`1esn`..9e0] As @usn6,$`6esn` In $`3esn` In 9e1 Order By 5.9e-12 Ends With 1e1 Ends With false Descending,$`2esn` Starts With .12e12 Starts With 3.9e-1 Ascending,`6esn`[`6esn`..] Descending Skip $_usn4 =~$_usn4 =~2.9e1 Where $`4esn` In 123456789 In `5esn`"), + octest:ct_string("With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Order By 12.0[.._usn4][..0X7] Descending,`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Ascending Skip 's_str' Ends With 0.0 Ends With .12e12 With *,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2 Order By .1e-1 Contains 1e1 Contains $`6esn` Asc,(_usn4 {`3esn`:1.9e0 Ends With 0Xa Ends With $12,@usn5:.9e12 Is Not Null Is Not Null})<-[`2esn`{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-(`3esn` {`7esn`:9.1e-1 =~@usn5 =~Count ( * )})<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) In None(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]) In `7esn`(12 Ends With $7 Ends With $#usn8) Desc Skip \"d_str\" =~`5esn` =~.12e-12 Limit .9e12[..$usn1][..10.12e12] Where $`6esn`[$_usn4][01] Unwind .9e1 Contains Null As _usn3"), + octest:ct_string("With 00 Starts With Count(*) Starts With 12e12 As `4esn`,(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})<-[?:usn1|:#usn8{`8esn`:`2esn` Is Not Null Is Not Null}]-({#usn8:1e1[Null..][.12..]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null As `3esn` Order By $@usn5 In .9e1 In $`` Ascending,$_usn3[.1e1..][$`1esn`..] Ascending,.1e1 In 9e12 Asc Skip 01 Is Null Where $123456789[$_usn3..][$usn2..] Detach Delete [usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},{`4esn`:5.9e-12[9e0..]} =~None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12),10.12e12 Ends With _usn3 Ends With `4esn` Union All Return Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] As `7esn`,12e12 Starts With `6esn` Starts With true As #usn8,$_usn4[1e-1..8.1e1][`1esn`..1.9e0] As `` Order By 9e-1 Contains $@usn5 Contains Count(*) Asc,\"d_str\"[12e12..][4.9e12..] Descending,12e-12 Ends With @usn5 Ends With $`2esn` Desc Skip `4esn`[0.0..][.1e-1..] Remove Any(`` In $`5esn` Starts With 0X7 Starts With 1e1).#usn7!,Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\").#usn7!,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`8esn` Is Null|`2esn` Starts With $`7esn` Starts With _usn4].usn2?.@usn5! Remove Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7]).#usn8?.`3esn`?.@usn5"), + octest:ct_string("With [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..] Delete Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null,0X0123456789ABCDEF Is Not Null Is Not Null Union All Match (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Create #usn8=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Return 0 Contains $`6esn` Contains #usn7 Limit usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) Union Create `5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)),``=(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`` :@usn6:_usn4)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})"), + octest:ct_string("Remove #usn8(Distinct .0e0 Contains `4esn` Contains Null,_usn4 Is Not Null Is Not Null).`3esn`!.`1esn`,usn1($usn2[1e-1])._usn3?.`1esn`?.`8esn`? Union All Merge usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) On Create Set usn2 =[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]|12e12 Is Not Null][{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]}],`5esn`+=.9e1[..`5esn`] Union Create ((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})),#usn8=(#usn7 :usn2)<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}) Optional Match (_usn4 :`7esn`{@usn6:.12e-12[999...12]}) Where Null Starts With 9e1 Starts With ``"), + octest:ct_string("Merge (`5esn` :`5esn`) On Match Set #usn8+=All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)]"), + octest:ct_string("Optional Match ((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Where 1e1[Null..][.12..] Union With Distinct _usn3[`2esn`..][0x0..] As usn1 Order By 01234567 Starts With `4esn` Starts With 10.12e12 Ascending,0Xa In 0.12 In $#usn7 Descending,$999 Is Not Null Desc Skip $@usn5 Ends With $@usn6 Ends With \"d_str\" Limit (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Union Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) Where _usn3 Starts With `2esn`"), + octest:ct_string("Return *,Null[...9e1],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Unwind 0.12 =~2.9e1 =~12e-12 As `6esn` Merge ((_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})) On Match Set (#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`3esn`?:usn1|:#usn8*..{usn1:.12e-12[999...12]}]->(#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]}).`7esn`? =12 Ends With $7 Ends With $#usn8 On Match Set usn2 =[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Union All Unwind 12[123456789][5.9e-12] As `5esn` With Distinct *,_usn3[`2esn`..10.12e12][9e1..true] Where .9e1[#usn7..] Union Remove [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|.9e1[..`5esn`]]._usn3!.`6esn`?.`3esn`?,(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )._usn4!.usn2.#usn7! Optional Match `7esn`=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}),((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Where .0e0 Is Null Is Null Create @usn5=({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})"), + octest:ct_string("Create #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})),``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Union Match (({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})),#usn7=(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[?{#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0}]-({`6esn`:07 Ends With @usn6 Ends With _usn3}) Return *,.12e-12 In 9e12 In 9e-12 As `5esn`,1e-1 Starts With usn2 Starts With 12e-12 As `` Order By 0[true..$7] Descending Skip (_usn4 :`2esn`:`8esn`)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})<-[`2esn`?:@usn5]-(`7esn` :usn1$`6esn`) =~(#usn8 {`3esn`:123456789 Contains .1e-1 Contains .12e12,`1esn`:$`3esn` =~4.9e12 =~$7})-[#usn7? *00..123456789]->(`8esn` :@usn5)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) Union All Detach Delete {`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)],Null Is Not Null Merge @usn6=(((@usn5 {``:.0e0[$`6esn`..]})-[?:usn2|:``]-(_usn4 :`4esn`:`7esn`{#usn7:0xabc Is Not Null,`4esn`:_usn3[`2esn`..10.12e12][9e1..true]})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(@usn5 :usn2))) On Match Set usn2 =$`8esn`[.9e-1][_usn3] On Match Set #usn7+=Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}],`8esn`(Distinct `2esn` Is Not Null Is Not Null,$``[4.9e12..2.9e1]).`6esn`.`1esn`! =.9e0 Is Not Null,usn1($@usn5[...9e-1][..$usn1],$`3esn` Ends With 010 Ends With $`7esn`).`3esn` =(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[? *07..{_usn4:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:$#usn8[...9e1]}]-({`1esn`:0X0123456789ABCDEF Contains 8.1e1})[Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`|$@usn6 =~$`2esn` =~9e1)..][[_usn4 In Count(*)[9e1..][12e-12..] Where $usn1 Starts With 12 Starts With 12e12|0e-0 Contains _usn4 Contains 1e-1]..] With Distinct *,#usn8 In $@usn6 As `8esn` Skip `1esn`[..0x0][..\"d_str\"]"), + octest:ct_string("Optional Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Where `` Ends With .9e-1 Ends With 9e-12 Union Merge _usn3=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Optional Match `2esn`=((@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]})) Where @usn5[...9e12] Unwind (`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As `7esn` Union Optional Match usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})),_usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]})))"), + octest:ct_string("Remove Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).`5esn`?,None(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).@usn5? Detach Delete .0e-0 =~12e-12,12e12[07..] Remove `2esn`:`7esn`,{`8esn`:`1esn` In 12e-12 In 1e-1}.`4esn`.`3esn`!.usn1!"), + octest:ct_string("Detach Delete 5.9e-12 Contains $`` Contains $`5esn`,#usn7 =~0.0 =~usn2,10.12e12[..10.12e12][..`6esn`] With 8.1e1 Is Null Is Null,Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` Is Null Is Null) Is Not Null Is Not Null As _usn4 Order By (`6esn` $@usn6)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]}) =~All(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~{``:7.0e-0 Is Null Is Null,@usn5:9e-12[$0][$`4esn`]} Asc,999 =~0Xa =~9e0 Asc Skip All(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])[..(:_usn4{`4esn`:9e1 Contains 4.9e12 Contains .9e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})][..(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)<-[?{_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})] Where 9e1 Ends With .9e0 Return Distinct *,@usn5 In $1000 In 07 Order By `5esn`[0X7..][12..] Asc Union All Return *,.12e-12 In 9e12 In 9e-12 As `5esn`,1e-1 Starts With usn2 Starts With 12e-12 As `` Order By 0[true..$7] Descending Skip (_usn4 :`2esn`:`8esn`)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})<-[`2esn`?:@usn5]-(`7esn` :usn1$`6esn`) =~(#usn8 {`3esn`:123456789 Contains .1e-1 Contains .12e12,`1esn`:$`3esn` =~4.9e12 =~$7})-[#usn7? *00..123456789]->(`8esn` :@usn5)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Union All Remove Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]).#usn8?"), + octest:ct_string("With Distinct Null[...9e1] As usn2 Union All Optional Match ((`7esn` :usn1$`6esn`)-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(`7esn` :`2esn`:`8esn`)-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1)),usn2=(`2esn` )-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}) Where 0[$999..] Optional Match (({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})) Where 5.9e-12 =~$@usn6 Remove [`` In $`5esn` Starts With 0X7 Starts With 1e1]._usn4?,[_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]].usn2"), + octest:ct_string("Return Distinct `8esn` Is Null As `6esn`,01234567 Starts With `4esn` Starts With 10.12e12,Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null As _usn3 Order By 01[7][`1esn`] Asc,Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null Descending,Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|.9e12 Starts With 6.0e0 Starts With .1e1) Is Null Is Null Asc Skip 1.9e0 =~0x0 Create @usn6=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})),@usn6=(#usn8 {#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[`8esn`?:`8esn`|:`2esn`]-(:usn1{``:.9e1[..`5esn`]})<-[:usn1|:#usn8{_usn4:$12[01]}]-(:`1esn`{`3esn`:#usn8[`2esn`]}) Union All Unwind (#usn7 :@usn6:_usn4)-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]->(:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(usn1 {`6esn`:$`5esn`[true],usn2:1e1 Is Not Null Is Not Null}) Ends With (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]})<-[`6esn`:`6esn`|#usn7*]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12}) Ends With Any(`5esn` In 12[0xabc..][$0..]) As `2esn` Delete $#usn7 =~8.1e1 Create usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))"), + octest:ct_string("Optional Match `7esn`=((#usn7 )) Where 0.12[07..3.9e-1] Create `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Union Detach Delete .1e1[..0][..010] Detach Delete ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]),`2esn` Starts With 12 Starts With 10.12e12,.12e-12[07] Return 1.9e0 Ends With Count ( * ) Ends With .12 As `4esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12),9e1 Is Not Null As #usn8 Order By $`4esn` Ends With 0e-0 Ascending,.9e-1 Contains .0e0 Contains usn1 Asc Skip None(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8) Is Null Is Null"), + octest:ct_string("Remove None(`5esn` In 12[0xabc..][$0..] Where .9e0 Is Null Is Null).`4esn`?.`7esn`!,{`4esn`:9.1e-1 Is Null}.`` Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})) Unwind $`6esn`[$`8esn`..][false..] As usn2 Union All Merge `7esn`=(((`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`))) On Match Set [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]|0x0 Contains $`1esn` Contains 0.0].@usn5.``?.`8esn` =All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] Create `5esn`=(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})"), + octest:ct_string("Detach Delete None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567) Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1) Starts With (:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`),All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] Union Unwind .0[01234567][$#usn8] As `2esn` Merge `6esn`=(({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Create Set All(usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]).`2esn`? =0Xa[$usn2..],`3esn`:usn1,`1esn` =$``[`6esn`][00] Union With Distinct `5esn`[$`4esn`] As @usn6,.0e0 Is Null Is Null As _usn4,1.9e0 Starts With .9e0 Order By @usn5 Contains _usn3 Contains 00 Descending,$`6esn` Ends With 12 Ascending"), + octest:ct_string("Create ((`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})<-[`8esn`?:`3esn`|:_usn3*..{@usn5:$0 Starts With 010}]-(`3esn` :@usn5)<-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(`1esn` )) Union Merge @usn5=(({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})-[:``|:`3esn` *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})) On Match Set #usn7 ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0} =~Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]),`8esn` =`5esn`(Distinct 123456789 Ends With 8.1e1,01234567[6.0e0][$usn2])[{@usn5:usn1 Is Not Null,usn2:0xabc[7.0e-0..][12e12..]}..][(_usn3 :_usn3:_usn3)<-[`6esn`?:``|:`3esn`]-(:@usn6:_usn4$`6esn`)<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})..] On Create Set [usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]].`4esn`?.usn2?.usn2! =[@usn6 In .9e12 Starts With #usn8 Starts With 00|9e12 Contains $@usn6 Contains Count(*)][(`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]})][Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null)],Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654).`4esn`? =Count ( * )[0e-0..01],#usn7+={usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])]"), + octest:ct_string("Create ((:@usn6:_usn4$`6esn`)<-[_usn3:_usn3|`2esn`{`7esn`:0X7[_usn4..1.9e0][Count ( * )..false],_usn4:.9e-12[9e1..8.1e1]}]-({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})<-[`2esn`?:usn2|:`` *0Xa..7]->(`` :`5esn`)) Create (({_usn4:01234567[6.0e0][$usn2]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})),(`7esn` :`8esn`:#usn7{`4esn`:`8esn` =~.1e1 =~.0}) Union All Remove (_usn3 {`5esn`:`8esn` =~.1e1 =~.0})-[?{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]}]-({_usn3:$`8esn` Is Null})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`).@usn6.``! Return Distinct *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By 01 Ends With \"d_str\" Asc,$_usn3[$`8esn`..$`4esn`] Descending,Null[12e-12..] Desc Skip None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) =~[@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] Limit $``[0.12..] Union Remove (`` :`3esn`{`5esn`:``[$``..]})-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}).`7esn`,[`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$`` Is Not Null].`8esn`._usn3?,(`` :usn2)-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}).usn1! Delete None(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Is Not Null"), + octest:ct_string("Merge `6esn`=((#usn7 )) On Match Set `1esn`().`` =$`2esn`[$1000..][$@usn5..] Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As #usn7"), + octest:ct_string("Remove (:@usn6:_usn4$`6esn`)<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)<-[`7esn`?]-({usn2:#usn7[10.12e12..][\"d_str\"..]}).`6esn`!.`3esn`.`1esn`!,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0 Starts With 0Xa Starts With $0|#usn8 =~.9e-12 =~$usn1].`4esn`,{#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}.`7esn` Return Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 123456789 Ends With _usn4) =~{usn2:$``[`6esn`][00],#usn7:.12e12[$12..4.9e12][11.12e-12..9e12]} =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`5esn` Is Null Is Null),1e1 Skip 8.1e1 Starts With 9e-12 Starts With $1000 Remove [`8esn` In 12.0 Contains $_usn4 Contains $usn2|#usn8 Starts With 11.12e-12 Starts With $`3esn`].`6esn`.`6esn`!.`5esn` Union Unwind _usn3(0x0 Starts With 1000,.1e1[.0e0..])[[`` In $_usn3 Is Not Null Where 7.0e-0 =~$123456789 =~`8esn`|999[...12e12][..0]]..``(Distinct)][(`2esn` :`1esn`)-[?{@usn5:6.0e0 Is Not Null}]->({`8esn`:$`7esn` Is Not Null,`5esn`:01234567 Starts With `4esn` Starts With 10.12e12})<-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]->(`` )..({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)] As `4esn`"), + octest:ct_string("Remove All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9e12[$#usn8..9e-1][$999..$`4esn`]).``?.`8esn`!,{`8esn`:9e-1 Starts With 123.654 Starts With .9e1}._usn3!._usn3?.#usn8,(`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``! Union Remove {`4esn`:#usn8[..#usn7][..@usn6],`4esn`:8.1e1 Ends With $0 Ends With 6.0e0}.@usn6!.``! Return Distinct `8esn` Is Null As `6esn`,01234567 Starts With `4esn` Starts With 10.12e12,Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null As _usn3 Order By 01[7][`1esn`] Asc,Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null Descending,Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|.9e12 Starts With 6.0e0 Starts With .1e1) Is Null Is Null Asc Skip 1.9e0 =~0x0"), + octest:ct_string("Remove Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12).`5esn`?,(`7esn` :@usn5{usn2:$`8esn`[#usn7][.9e1],`7esn`:@usn5[$``]})<-[:`1esn`{`8esn`:0xabc[7.0e-0..][12e12..]}]->(:`6esn`:`3esn`{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12}).`6esn`!,Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]).usn1!._usn3?._usn3? Create `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}))"), + octest:ct_string("Merge _usn3=(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})<-[`1esn` *0..010]-(usn2 :``:usn1)<-[?:usn2|:`` *..0X7]-(#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})"), + octest:ct_string("Optional Match ((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Optional Match `3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})),`6esn`=((#usn7 )) Where 9.1e-1 In #usn8 Remove Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $@usn5 =~.12e-12).`4esn`?,Single(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]).`8esn`? Union All Remove {`4esn`:`8esn` =~.1e1 =~.0,`4esn`:Count(*) Starts With $_usn4}.@usn5?,count(Distinct 9.1e-1 =~@usn5 =~Count ( * )).`2esn`,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7).#usn7! Union With *,Count(*)[..Count(*)][..9e0] Order By 07 Starts With usn1 Starts With 010 Ascending,7.0e-0[..$`7esn`][..Null] Descending,$usn2[8.1e1...9e-1][.1e-1..11.12e-12] Desc Skip Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] Limit 999 Ends With $123456789 Ends With $_usn4"), + octest:ct_string("Remove [`5esn` In 12[0xabc..][$0..]].#usn8!,[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]|$`3esn` In 's_str' In $#usn7]._usn4!.#usn8?,Filter(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)._usn3!.@usn5! With *,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"] Starts With ``(12.0[`8esn`],4.9e12 In 5.9e-12 In .9e0) Starts With Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]),$12 Contains $#usn8 Contains 01 Unwind Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) As `6esn` Union Return Distinct *,Null[...9e1] As `2esn` Order By 10.12e12 =~12e-12 =~0X0123456789ABCDEF Descending,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) Asc,8.1e1 Starts With .9e12 Starts With `7esn` Desc"), + octest:ct_string("Remove None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`8esn`?.`3esn`?.@usn6?,Extract(`5esn` In 12[0xabc..][$0..] Where `7esn` Ends With 9e12).`8esn` Optional Match `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Where 0e0 Starts With $1000 Starts With `2esn` Match @usn6=(((`3esn` :`4esn`:`7esn`)<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(usn1 :`2esn`:`8esn`))) Union Return Distinct Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],(`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As `6esn`,$123456789 Is Not Null Order By $usn1 Contains `7esn` Contains .9e12 Ascending Limit `6esn` In 9e-12 Merge ((`7esn` {usn2:12.0[..123456789][..01]})-[_usn3{#usn7:Count(*)}]->(`2esn` :_usn3:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})) On Create Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Union All Return *,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null As `6esn`,01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..] Skip [_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789|0e-0 Contains _usn4 Contains 1e-1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567) Limit @usn5[``..][12e-12..] Detach Delete 12e-12 Starts With .9e12 Starts With 0.12,9e-12 Ends With `7esn`,010"), + octest:ct_string("Unwind $`6esn` Ends With 12 As @usn6 Delete 01[7][`1esn`],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|$@usn5 In .9e1 In $``) Contains (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null}),07[$`1esn`..$999] Merge `7esn`=((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)) On Match Set Filter(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).``.`8esn` =Count ( * )[..`8esn`],usn1 =123456789 Contains .1e-1 Contains .12e12,`8esn`+=`7esn` Ends With _usn4 On Match Set `6esn` ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])],All(`5esn` In 12[0xabc..][$0..] Where _usn3 Ends With 01 Ends With .1e-1).`6esn`? =12.0[..Count(*)][..5.9e-12] Union All Create `7esn`=((:_usn4{#usn7:.0e0[1e1..][01234567..],@usn5:`2esn` Is Not Null Is Not Null})-[? *0X0123456789ABCDEF..0]-({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})),`8esn`=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2})) Create `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),((_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))"), + octest:ct_string("Detach Delete 9e1 Ends With 123456789,usn1 Ends With .9e-12,9e-12[$0][$`4esn`]"), + octest:ct_string("Create (`1esn` :`6esn`:`3esn`),(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Union All With Distinct $#usn7 Is Not Null Skip 12e-12 Contains .9e-1 Contains 9e-1 Unwind .12e12[Count(*)..] As `5esn`"), + octest:ct_string("Unwind .9e1 Is Null As `4esn`"), + octest:ct_string("With count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0])[_usn3(8.1e1[usn2..$1000][$7..0x0],false[..12e-12][...9e1])..] As @usn6,.0e-0[0e0..00][.9e1..12] As `1esn`,Count ( * ) Starts With 10.12e12 Starts With `` As `5esn` Order By 5.9e-12[9e0..] Ascending,0x0 Asc Skip 0Xa[$usn2..] Where $``[`6esn`][00] Delete 12e12[..123456789][..false] Union Create @usn5=({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Detach Delete {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null,$`4esn` =~0e0 Delete 10.12e12[0Xa..999][1000..Count(*)],2.9e1 Union With $0 =~01234567 As `2esn`,07[.0e0][3.9e-1] Skip Extract(`7esn` In .12e12[Count(*)..] Where true Starts With 2.9e1 Starts With 9e1|12[0xabc..][$0..]) Starts With Extract(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12|0.12[3.9e-1]) Starts With ``(12e12[true..][$`2esn`..]) Limit [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]] Where 5.9e-12[`4esn`..12e12][0x0..1.9e0] Return #usn7[`5esn`..`2esn`][$`4esn`...1e1] As _usn4,8.1e1 Is Not Null,$_usn3 Is Not Null Order By $`6esn`[.9e1..][`5esn`..] Ascending,#usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Desc,Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Ascending"), + octest:ct_string("Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|.1e1 In 9e12).``,{`2esn`:.0,`5esn`:$`3esn` =~4.9e12 =~$7}.`1esn`!.@usn5!,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`).#usn8? With Distinct *,$`2esn`[$1000..][$@usn5..] As #usn8 Order By .9e0 Is Null Asc,0 Is Not Null Desc Skip #usn7[5.9e-12][00] Where 12e12[..$`8esn`][...0e-0] Union All Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set `6esn` =.1e1 =~10.12e12 On Match Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] Create (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}) Unwind _usn4['s_str'..] As `6esn` Union Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``]|`4esn` Starts With $_usn3 Starts With .9e-12].@usn5!._usn4?.`1esn`?,All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where true In $0 In @usn5).`3esn`"), + octest:ct_string("Detach Delete 010 Is Not Null Is Not Null,None(`8esn` In 01234567[..0.0][..false] Where `7esn`) Is Not Null Is Not Null,07[.0e0][3.9e-1]"), + octest:ct_string("Delete $usn1[$7..][$0..]"), + octest:ct_string("Unwind 12[0..usn2] As `7esn`"), + octest:ct_string("Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Where 4.9e12 In 5.9e-12 In .9e0 Union Merge ((:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})-[usn2?:@usn6|:_usn3]->({usn1:01[.9e-12..],@usn6:$`5esn` Ends With $#usn7 Ends With .0e-0})) On Create Set @usn5:usn2,None(`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]).`5esn`? =#usn7 Is Null,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where .9e1[#usn7..]).`8esn` =$`8esn` In 9e-12 In 3.9e-1 On Create Set @usn5 =0.12 Is Not Null Is Not Null,`3esn`+=11.12e-12 Is Null,`` =Count ( * )[..2.9e1] Union All Delete [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]],All(`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])[None(`` In $_usn3 Is Not Null)..][All(`8esn` In 01234567[..0.0][..false] Where .12e-12[$@usn6..5.9e-12])..] Match usn1=((`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[?{_usn3:Null Starts With 9e1 Starts With ``}]->({`1esn`:0X0123456789ABCDEF Contains 8.1e1})-[_usn3:_usn4|`1esn`{`2esn`:123456789 In 9e-12 In false}]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]})) With Distinct *,$usn1 Contains `7esn` Contains .9e12,$`2esn` In 0X7 In 3.9e-1 As #usn7"), + octest:ct_string("With 3.9e-1[0.12..] Order By 123456789 =~6.0e0 Ascending,Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Ascending,1.9e0 Starts With 's_str' Starts With 9.1e-1 Descending Where $123456789 Starts With Count ( * ) Union All Return Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null As `6esn`,`` Contains 12.0 As usn1,.1e-1 Ends With $_usn3 As @usn6 Order By $@usn6 =~$`2esn` =~9e1 Ascending,0Xa[9e0] Desc Limit .0e0[$`1esn`][.9e-12] Delete $usn1[$7..][$0..]"), + octest:ct_string("With #usn7[10.12e12..][\"d_str\"..] As `1esn`,9e-1 Contains $@usn5 Contains Count(*),`` Is Not Null Is Not Null As usn1 Order By @usn6 In 3.9e-1 In 9e-12 Asc,1.9e0[$12][``] Desc,12e12 =~#usn7 =~.9e-1 Asc Limit 0X7 =~$123456789 =~$`` Where $1000[$1000...9e0] Match `1esn`=((({``:_usn3[$_usn3][usn1]})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(#usn8 {_usn3:$usn2 In usn1 In 1e-1})<-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(_usn3 :#usn8))) Union All Detach Delete Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})],$`1esn` =~0.0,8.1e1 Is Not Null Union With Distinct *,Null[12e-12..] As _usn4,$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Skip Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`])[0x0..[`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`]] Create `6esn`=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0})))"), + octest:ct_string("Remove ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(usn1 :usn1)<-[@usn5?:`8esn`|:`2esn` *0..010]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}).`5esn`!.usn2!.`1esn`! Remove `2esn`(usn1[12e-12])._usn4.@usn5!.`6esn`?,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2).`8esn`?._usn3!.`8esn`,[usn1 In 7.0e-0[.._usn4][..0X7] Where 12.0[..Count(*)][..5.9e-12]|.1e-1 Ends With $`8esn` Ends With .9e0].usn2 With Distinct *,Null[12e-12..] As _usn4,$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Skip Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`])[0x0..[`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`]]"), + octest:ct_string("Remove `8esn`:`4esn`:`7esn`,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1])._usn4?.`8esn`,(`6esn` :`2esn`:`8esn`{`6esn`:.1e-1[..12e12]})<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}).@usn5? Create usn1=({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}),#usn8=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Optional Match ((#usn8 {_usn3:$usn2 In usn1 In 1e-1})),usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union Create (`1esn` :`5esn`)-[:#usn8|:`4esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}]-(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}),_usn4=(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}) With Distinct *,.0e-0[0e0..00][.9e1..12] Order By 4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Ascending Skip 0x0 Starts With $`5esn` Starts With 9e-12 Detach Delete #usn7 Ends With Count ( * ) Ends With @usn6,Extract(usn2 In .0e0[$`6esn`..] Where 010|0e-0 Contains _usn4 Contains 1e-1)[{#usn7:_usn4 Ends With .0 Ends With 7,#usn8:`` Ends With .9e-1 Ends With 9e-12}],`5esn` Contains 1.9e0 Contains 9e0 Union Merge #usn7=((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?]->(:@usn5{usn2:$usn1[$12..]})) On Create Set [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]].`8esn`.@usn6? =07[..@usn6][..$`4esn`],Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]).`3esn` =Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07),usn1:`8esn`:#usn7 On Match Set usn2+=#usn7 Ends With $#usn7 Ends With #usn7,`5esn` =Count ( * )[7],`4esn` =123456789 =~2.9e1 =~@usn5 Merge #usn7=((:`4esn`:`7esn`{`7esn`:9e-12 In usn2,usn2:0x0[`5esn`][$`5esn`]})) On Create Set `2esn` =(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)],`3esn` =9e1 Contains 4.9e12 Contains 123456789 On Create Set `6esn` =.1e1 =~10.12e12 Return *,0Xa[$usn2..] As #usn8,#usn7 =~0.0 =~usn2 As _usn4 Skip 123456789[Count(*)] Limit false Is Not Null Is Not Null"), + octest:ct_string("With *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5 Is Null Union Match `3esn`=(({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[``?:``|:`3esn` *01234567]->(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})),((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) Merge ((`` )<-[?]->(_usn4 :@usn5)) On Create Set @usn6 =123.654 Ends With 0Xa Ends With .12e12,`` =.0e-0 Starts With $#usn7 Starts With _usn3 Remove [`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12].`2esn`?.@usn6!,(:#usn8)<-[`3esn`?:`2esn`|`7esn`*..]-(usn2 :`1esn`{@usn5:Count(*)[.0e0]})<-[_usn4?:`4esn`|:@usn5 *1000]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})._usn4,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null).`2esn`! Union Detach Delete Count(*)[9e-12..0Xa][$123456789..0.0]"), + octest:ct_string("Optional Match `3esn`=((#usn7 :usn2{@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-({`6esn`:07 Ends With @usn6 Ends With _usn3})),`3esn`=({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}) Union All Optional Match `1esn`=(((@usn5 :usn2)-[`4esn`?:_usn3|`2esn`]-(:#usn7:_usn3)<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) Union All Create #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]})-[`3esn`? *..0xabc{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`}) Create `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`}))"), + octest:ct_string("Detach Delete 1e1[3.9e-1][.9e-1],$@usn6 Is Not Null Is Not Null,true[9e-12...0e-0][`5esn`.._usn4]"), + octest:ct_string("Unwind usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12)[{_usn4:@usn6 In 3.9e-1 In 9e-12}][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]|10.12e12[12e12..0X7])] As `7esn` Delete {@usn5:$0 Starts With 010} In usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]),123.654 In $`5esn` In 9e-1 Union Optional Match `2esn`=(_usn3 :_usn3:_usn3{@usn6:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Delete @usn5[$``],$`5esn`[7..]"), + octest:ct_string("Remove `1esn`.#usn8 Union Match (`1esn` :_usn3:_usn3$0)-[`7esn`?:`5esn`]->(`1esn` :`6esn`:`3esn`)-[ *0x0..{`3esn`:$@usn6 Is Not Null Is Not Null}]-(usn1 :@usn6:_usn4),`6esn`=(:`1esn`)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`) Where `8esn` =~.1e1 =~.0 Match (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Merge usn2=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}) Union Return *,$12[.9e-1] As `6esn`,`6esn`[010...9e-12] As `5esn` Order By 123456789[\"d_str\"..] Descending,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending,12e-12[`7esn`..][5.9e-12..] Asc Create ((`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})<-[`8esn`?:`3esn`|:_usn3*..{@usn5:$0 Starts With 010}]-(`3esn` :@usn5)<-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(`1esn` )) Remove Filter(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]).``,{@usn5:6.0e0 Is Not Null}.usn1"), + octest:ct_string("Optional Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Optional Match ``=((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})-[{usn2:$`8esn`[#usn7][.9e1],`7esn`:@usn5[$``]}]->(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})) Where .9e-1 Is Null"), + octest:ct_string("Unwind Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null As #usn7"), + octest:ct_string("Match ((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})),``=((({`4esn`:$`2esn` Ends With $`8esn`})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})-[``]-(:_usn4{#usn8:.0e0[1e1..][01234567..],#usn7:1e-1[..2.9e1]}))) Where $123456789 =~12 =~7 Return 12 Contains usn2 Contains $usn2 As ``,Count ( * )[12e-12] As #usn7 Skip .0 Detach Delete .12e12 =~$#usn7,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] Union All Remove Extract(_usn3 In ``[$``..] Where 0xabc[7.0e-0..][12e12..]|123456789 =~6.0e0).``.`1esn`.@usn5!,`6esn`(Distinct).`2esn` Return Distinct [`` In 0.12[3.9e-1] Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`|Null[10.12e12..]] In {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] As `7esn`"), + octest:ct_string("Remove (usn2 :@usn6:_usn4{usn1:9e12 Contains $@usn6 Contains Count(*)})-[usn2:`4esn`|:@usn5 *01234567]->(:`5esn`{`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567})<-[`4esn`?:_usn3|`2esn`]-(`8esn` {``:$123456789[$_usn3..][$usn2..]}).`6esn`!,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1).`1esn`?.``.usn1,{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}._usn3!.`6esn` Remove ``:`3esn`"), + octest:ct_string("Match (((_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})<-[`4esn`?:_usn3|`2esn` *0..010]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`}))),`2esn`=(({_usn4:01234567[6.0e0][$usn2]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})) Unwind 5.9e-12 Ends With 1e1 Ends With false As _usn3 Remove ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(usn1 :usn1)<-[@usn5?:`8esn`|:`2esn` *0..010]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}).`5esn`!.usn2!.`1esn`! Union All Remove @usn5:@usn5,All(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1).`8esn`.`4esn`! With Distinct *,9.1e-1 =~.12 =~0e-0 As `1esn` Order By 9e-1 Starts With 123.654 Starts With .9e1 Descending,$`8esn`[$``..$`1esn`][9e-12..$7] Descending Skip \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"] Limit $`5esn` Is Not Null Where .9e1[#usn7..] With *,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"] Starts With ``(12.0[`8esn`],4.9e12 In 5.9e-12 In .9e0) Starts With Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]),$12 Contains $#usn8 Contains 01 Where $`4esn` =~0e0"), + octest:ct_string("Return Distinct *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Return Distinct *,$7 Contains _usn4 Contains $`1esn`,0e-0[$`2esn`][8.1e1] As @usn5 Unwind false[..12e-12][...9e1] As #usn8 Union All Remove #usn8(Distinct .0e0 Contains `4esn` Contains Null,_usn4 Is Not Null Is Not Null).`3esn`!.`1esn`,usn1($usn2[1e-1])._usn3?.`1esn`?.`8esn`?"), + octest:ct_string("Unwind .12e-12[999...12] As `2esn` Detach Delete Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})],$`1esn` =~0.0,8.1e1 Is Not Null Union Unwind `5esn` Contains 1.9e0 Contains 9e0 As #usn7 Create ``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]}))"), + octest:ct_string("Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) Union All Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] Ascending,1e-1[..$`6esn`] Ascending Skip (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Remove {usn2:`3esn` In 0X7,usn2:7 Is Null Is Null}.`4esn`.@usn6!,{@usn6:.9e-12[..$`7esn`][...9e-1]}.usn2 Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1"), + octest:ct_string("Detach Delete Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8),Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]) Ends With Extract(`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0|12e12[..$`8esn`][...0e-0]) Ends With _usn3(Distinct 5.9e-12[`4esn`..12e12][0x0..1.9e0],`6esn`[..$@usn6][..$`1esn`]) Detach Delete Filter(`2esn` In .9e-12[0e0...9e-1] Where .9e-1 Is Not Null Is Not Null)[Any(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1])..(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})][(`7esn` :#usn7:_usn3{`3esn`:00[0e-0...9e-1][1e-1..``]})<-[_usn3:_usn3|`2esn`{`7esn`:0X7[_usn4..1.9e0][Count ( * )..false],_usn4:.9e-12[9e1..8.1e1]}]-({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]})..Single(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..])],8.1e1 Is Null Is Null,`7esn`(7.0e-0[.._usn4][..0X7],$`5esn`[7..]) Contains [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]] Union Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null"), + octest:ct_string("Merge `2esn`=((:`3esn`{_usn3:10.12e12 In `3esn` In $usn2})<-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]->(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})) Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12|.1e-1).`1esn`?,All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]).`7esn`!,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).usn1? Union All Create #usn7=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Union All Merge ((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) On Create Set [_usn3 In ``[$``..] Where $_usn3[.1e1..][$`1esn`..]].`8esn`.`4esn`! =None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} Detach Delete _usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null Unwind 1.9e0 =~$`8esn` =~01234567 As usn2"), + octest:ct_string("Unwind `6esn` In 9e-12 As _usn4 Create usn1=(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})"), + octest:ct_string("Return Distinct *,0e0[`4esn`] As `6esn`,9.1e-1[.1e-1] Create _usn4=(`` :usn1)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`) Return Distinct *,All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1) =~_usn3(Distinct 5.9e-12[9e0..],$@usn5 Is Null),{_usn4:1.9e0 =~$`8esn` =~01234567}[All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Ends With [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|$999 Ends With .9e-12] Ends With [usn2 In .0e0[$`6esn`..] Where usn2 Ends With .0] Desc Skip $_usn3 Ends With Count(*) Ends With $`` Limit All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0)[..[@usn6 In 00 =~.9e-12 =~usn1 Where 0.0[$1000][3.9e-1]|$usn2 =~$`2esn` =~\"d_str\"]]"), + octest:ct_string("Create _usn3=(((:``:usn1{_usn3:00[$`6esn`]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :``:usn1{usn2:12.0[..123456789][..01]})<-[`7esn`:`8esn`|:`2esn`]-(:``:usn1{_usn3:00[$`6esn`]}))) With *,$`5esn`[true],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Skip $`1esn` =~0.0 Where 07[.0e0][3.9e-1] With Distinct All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,usn2[..7.0e-0] As `1esn` Order By $_usn3 Contains 1e1 Contains .12 Ascending,.0e0 Is Null Is Null Descending,.0e0 Starts With $@usn6 Starts With Null Descending Limit 's_str' Ends With 0.0 Ends With .12e12"), + octest:ct_string("With *,12.0[..123456789][..01] Limit $usn1 Starts With usn1 Starts With 1e-1 Union Optional Match `2esn`=(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where $usn1 Is Null"), + octest:ct_string("Unwind $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] As `4esn` Create @usn5=({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Union Unwind 0e0 Ends With `7esn` Ends With usn1 As #usn7 Return Distinct {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As ``,$`8esn`[12.0..][4.9e12..],.1e-1 Ends With @usn6 As @usn6 Order By false Starts With 3.9e-1 Asc,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Descending With *,#usn7[12e-12..][$`2esn`..] As @usn6,$`` Contains 00 Contains 123456789 As `3esn` Limit All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0)[Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"])..Single(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1])][{usn1:9e-1 Starts With 123.654 Starts With .9e1,#usn8:$_usn4 Is Not Null}..(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})]"), + octest:ct_string("Optional Match ((usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})) Where Null[12e-12..] Unwind `1esn`[9.1e-1] As #usn8 Union Match (:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567}) With Distinct *,Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) As #usn7,.12e-12 Ends With $`7esn` Where .9e-1 Ends With `8esn` Remove [`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|`1esn`[Count ( * )][5.9e-12]].@usn5,Filter(`8esn` In 01234567[..0.0][..false] Where 6.0e0 Is Not Null).usn1 Union All Optional Match `5esn`=(((`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`))),#usn8=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Optional Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Where .0e0[1e1..][01234567..]"), + octest:ct_string("Merge `1esn`=({`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]})-[`3esn`?:`1esn`]-(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) On Match Set (@usn6 :usn1{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(`7esn` :`2esn`:`8esn`).`4esn`! =01[..0Xa],#usn7 =$999[.1e1..0.0],`3esn`+=Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null On Match Set `6esn`+=[usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null]][(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})..] With *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5 Is Null Remove {@usn6:0X7 Starts With 1e1 Starts With $12}.#usn8?.usn1.@usn5!,Extract(usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|0e0 Ends With 1e1 Ends With 0Xa).``?,@usn5:`3esn` Union With Distinct *,Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn` Order By _usn3[`2esn`..10.12e12][9e1..true] Descending Limit `6esn`[0x0..@usn5][$1000...9e-12] Where $@usn6 Contains Count ( * ) Unwind {`5esn`:false,_usn3:.9e-12 Starts With .0e-0 Starts With usn2} Is Null As `3esn` Remove {`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1}.usn2!.`1esn`.usn2?,Filter(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8).@usn5?,Any(@usn6 In 00 =~.9e-12 =~usn1 Where `` Ends With .9e-1 Ends With 9e-12)._usn4!.`2esn`._usn4 Union Create _usn4=((`5esn` {`2esn`:`1esn` =~0 =~_usn4})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[usn2?{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3}]-(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})),((usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})) Return Distinct *,`7esn` Ends With `7esn` Ends With $`3esn` Order By `1esn`[11.12e-12..] Asc Limit All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1) =~_usn3(Distinct 5.9e-12[9e0..],$@usn5 Is Null)"), + octest:ct_string("Remove All(`` In $_usn3 Is Not Null Where $123456789 =~12 =~7).``! Merge usn1=((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})) Delete 9e12[.0e-0]"), + octest:ct_string("Merge (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))) On Match Set `4esn`+=.9e0 =~`6esn` =~2.9e1,`` =_usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null With 3.9e-1 Is Null As usn1 Unwind ``[..$#usn7] As @usn5 Union Create _usn3=(((:``:usn1{_usn3:00[$`6esn`]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :``:usn1{usn2:12.0[..123456789][..01]})<-[`7esn`:`8esn`|:`2esn`]-(:``:usn1{_usn3:00[$`6esn`]}))) With *,$`5esn`[true],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Skip $`1esn` =~0.0 Where 07[.0e0][3.9e-1] With Distinct All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,usn2[..7.0e-0] As `1esn` Order By $_usn3 Contains 1e1 Contains .12 Ascending,.0e0 Is Null Is Null Descending,.0e0 Starts With $@usn6 Starts With Null Descending Limit 's_str' Ends With 0.0 Ends With .12e12 Union With Distinct *,9.1e-1 =~.12 =~0e-0 As `1esn` Order By 9e-1 Starts With 123.654 Starts With .9e1 Descending,$`8esn`[$``..$`1esn`][9e-12..$7] Descending Skip \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"] Limit $`5esn` Is Not Null Where .9e1[#usn7..] With *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5 Is Null With Distinct *,All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Starts With 10.12e12 Starts With #usn7(false =~4.9e12),0e0[`4esn`] Where 1e1 Ends With Null Ends With `7esn`"), + octest:ct_string("Create ((usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]->(:usn1{usn1:Count(*)[0.12..2.9e1]})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})) Create usn1=({`5esn`:07 Starts With usn1 Starts With 010})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}),_usn3=({usn1:usn2 Ends With 10.12e12})"), + octest:ct_string("Merge `8esn`=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) On Create Set ``:_usn4 On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null Remove (:@usn6:_usn4$`6esn`)<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)<-[`7esn`?]-({usn2:#usn7[10.12e12..][\"d_str\"..]}).`6esn`!.`3esn`.`1esn`!,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0 Starts With 0Xa Starts With $0|#usn8 =~.9e-12 =~$usn1].`4esn`,{#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}.`7esn` Match ((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`2esn`=((`7esn` :usn1)<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3)) Union Detach Delete .9e-12[12e12][.0e0],'s_str' Is Null,$`2esn` Ends With $`8esn` Union Remove All(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1).usn1!.`7esn`.`2esn`!,Filter(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8).@usn5?,(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})._usn3.@usn6!.@usn5 Match _usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))) Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As `8esn`"), + octest:ct_string("Return Distinct $12[.9e-1] As `4esn`,.12e12 =~$#usn7,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) As `8esn` Order By 5.9e-12[2.9e1][9e0] Desc Skip 1e-1[...0e-0][...0] Union All Create `1esn`=((`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[?{_usn3:Null Starts With 9e1 Starts With ``}]->({`1esn`:0X0123456789ABCDEF Contains 8.1e1})-[_usn3:_usn4|`1esn`{`2esn`:123456789 In 9e-12 In false}]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]})),((@usn5 {_usn4:$usn1[$7..][$0..],#usn8:9e0[..1e1]})-[:usn2|:``]-(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})) Return Distinct Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Limit ()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] Merge `7esn`=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) On Create Set {@usn5:12e-12 Starts With .9e12 Starts With 0.12}.`1esn`? =`3esn`[$0..][.9e1..] Union All Merge (`8esn` {``:$123456789[$_usn3..][$usn2..]}) On Create Set None(usn1 In 7.0e-0[.._usn4][..0X7] Where 9.1e-1 Contains 0xabc).@usn6.#usn7!.@usn5 =01234567[..Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null)][..999] Unwind .1e1[1e-1..][1.9e0..] As _usn3 Create ({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})-[`4esn`?:`6esn`|#usn7]->($@usn6),(((@usn6 {`8esn`:999[..@usn5][..`1esn`]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]})))"), + octest:ct_string("Return Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]) Limit $#usn7 Starts With 10.12e12 Union Unwind #usn8[3.9e-1.._usn3] As usn2 Return Distinct (`2esn` :`6esn`:`3esn`)<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789)..Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1])][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]]..Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 9.1e-1 Is Null|9e1 Contains 4.9e12 Contains .9e0)],00 As `8esn`,_usn3 Ends With .12 Ends With `6esn` Order By Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2|0e-0[...9e12])[All(`2esn` In .9e-12[0e0...9e-1] Where .9e-1 Is Not Null Is Not Null)] Descending Limit `4esn` Starts With $_usn3 Starts With .9e-12 Union Unwind Count ( * )[0e-0..01] As `3esn` Unwind .12e-12 Starts With 's_str' Starts With 123.654 As `2esn` Unwind $usn1[$12..] As ``"), + octest:ct_string("Detach Delete 0x0[#usn8...1e-1]['s_str'..$`6esn`] Create ({`4esn`:7 Is Null Is Null})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}) Detach Delete $@usn5 =~.12e-12,1e1[Null..][.12..],(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Starts With `7esn`(Distinct $`5esn` Is Null Is Null,$`4esn` Ends With 0e-0) Starts With Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 5.9e-12 Ends With 1e1 Ends With false) Union All Unwind Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7)[{usn2:`8esn` Is Null}..[@usn6 In .9e12 Starts With #usn8 Starts With 00]][(:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null})..{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}] As `1esn` Union All Optional Match _usn3=((@usn6 {`8esn`:1.9e0 Is Null Is Null})) With {`6esn`:.1e-1[..12e12]} As @usn5,Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]) In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $`6esn`[$_usn4][01]) As _usn3,$12[$12..] As `4esn` Skip 07 Ends With 0X7 Ends With 's_str' With _usn4(0[true..$7]) =~Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`) =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0) As _usn3,Null Is Not Null Is Not Null"), + octest:ct_string("Create (@usn6 :_usn4) Remove Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..]).`1esn`.`8esn`?.`2esn`!,@usn5(Distinct 1e-1[..$@usn5][..0xabc]).`3esn`!,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12e12 Starts With 4.9e12 Starts With 0e0).@usn6!.`8esn`?"), + octest:ct_string("Detach Delete #usn7 Ends With Count ( * ) Ends With @usn6,`8esn` Is Null,`7esn` Contains $7 Contains 07 Unwind Count(*)[0e0..] As `7esn` Union All Remove All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0)._usn3? Unwind $@usn5[..1e-1] As _usn4 With 1000[Null..] As `1esn`,.1e1 Starts With $7 Order By Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Ascending,$`7esn` Contains 0X7 Asc,$_usn4 Is Not Null Ascending Limit .0e0[$`1esn`][.9e-12] Union Merge (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}) On Create Set Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`).`3esn`!.`5esn`!.`1esn` =(:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null),None(`7esn` In .12e12[Count(*)..] Where `4esn` Starts With $_usn3 Starts With .9e-12).@usn5._usn3!.@usn5 =Extract(`5esn` In 12[0xabc..][$0..] Where 9e-1[0X0123456789ABCDEF][0]|.9e1[..Count(*)][..7.0e-0]) Is Null Is Null On Match Set usn2 =8.1e1 Is Null,`1esn` =$_usn4 Contains .12e-12 Create (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))),`2esn`=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})))"), + octest:ct_string("Create (:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[`6esn`?:`4esn`|:@usn5{usn1:00,`1esn`:.0e0[1e1..][01234567..]}]->(`3esn` ),usn1=((:_usn3:_usn3{usn1:.9e1[12]}))"), + octest:ct_string("Remove {_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}.`1esn` Union All Delete .1e1 In 9e12 Match (`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null})"), + octest:ct_string("Delete $12 Is Null Is Null,3.9e-1 Contains 9.1e-1 Contains `8esn` Union All With 0X0123456789ABCDEF Contains 8.1e1 As `6esn`,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,.9e0 Is Not Null Is Not Null As `5esn` Skip .1e-1 Where .0e0[$`1esn`][.9e-12] Remove `5esn`:``:usn1,{#usn7:.9e1[Count(*)..$`3esn`]}.#usn8?.usn1?.`2esn`?,{`5esn`:.1e-1 Starts With 1000 Starts With $`1esn`,`5esn`:Count(*)}.``? Merge ((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`3esn`? =0.12[3.9e-1],_usn4 =Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],[`` In $_usn3 Is Not Null Where 12 =~$@usn5|$`2esn` In 0X7 In 3.9e-1].`8esn`.`5esn`? =12e-12[9e0..1.9e0] On Create Set `1esn` =.1e-1[..12][.._usn4],_usn4 =usn2[..7.0e-0],`5esn` =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1}"), + octest:ct_string("Merge #usn8=(((_usn4 :`2esn`:`8esn`)-[ *07..{#usn8:`1esn`[1000][Null]}]-(usn1 :`2esn`:`8esn`)<-[?:`4esn`|:@usn5]-(`4esn` :`3esn`))) Return Distinct *,Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn` Order By _usn3[`2esn`..10.12e12][9e1..true] Descending Limit `6esn`[0x0..@usn5][$1000...9e-12] Union All Unwind All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0)[..[@usn6 In 00 =~.9e-12 =~usn1 Where 0.0[$1000][3.9e-1]|$usn2 =~$`2esn` =~\"d_str\"]] As `6esn` Merge ({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) On Create Set #usn7 =Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Null Is Null,`4esn`+=$_usn4 =~$_usn4 =~2.9e1 Union Delete {#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0} Is Null Is Null,`3esn` In 0X7 Return *,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] As `7esn` Skip Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12) In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null|.12e12[$12..4.9e12][11.12e-12..9e12]) In {`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``} Match ``=((@usn6 :`5esn`{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *0x0..{`3esn`:12[0xabc..][$0..],@usn5:`6esn` Is Not Null Is Not Null}]->({#usn8:7.0e-0[3.9e-1..`1esn`],usn1:.0e0[..1e1][..$1000]})-[:`4esn`|:@usn5 *01234567$_usn4]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})),(((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})))"), + octest:ct_string("Return $`6esn`[..12e12][.._usn3] As `5esn`,($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]) As _usn4 Unwind .12[.0e-0..] As `3esn` Union All With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Order By 12.0[.._usn4][..0X7] Descending,`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Ascending Skip 's_str' Ends With 0.0 Ends With .12e12 With *,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2 Order By .1e-1 Contains 1e1 Contains $`6esn` Asc,(_usn4 {`3esn`:1.9e0 Ends With 0Xa Ends With $12,@usn5:.9e12 Is Not Null Is Not Null})<-[`2esn`{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-(`3esn` {`7esn`:9.1e-1 =~@usn5 =~Count ( * )})<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) In None(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]) In `7esn`(12 Ends With $7 Ends With $#usn8) Desc Skip \"d_str\" =~`5esn` =~.12e-12 Limit .9e12[..$usn1][..10.12e12] Where $`6esn`[$_usn4][01] Unwind .9e1 Contains Null As _usn3"), + octest:ct_string("Return Distinct $1000[$1000...9e0] As `2esn`,$_usn3[1e-1..],`5esn` Contains `6esn` As `4esn` Order By {`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"} Is Not Null Is Not Null Ascending,{`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] Descending,{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"} Is Not Null Is Not Null Asc Skip @usn6[usn1..][`1esn`..] Limit 01 Ends With \"d_str\""), + octest:ct_string("Match ((`4esn` )<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})),`1esn`=(:usn1{usn1:Count(*)[0.12..2.9e1]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}) Remove All(`5esn` In 12[0xabc..][$0..] Where .0e0[1e1..][01234567..]).#usn8!,Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]).`6esn`,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 's_str'[12][00]|$`8esn`[#usn7][.9e1]].#usn7?.`4esn`? Match (@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})) Union Remove {#usn7:11.12e-12 Contains 9e-12}.`4esn`!.`7esn`! Unwind 9e1 Is Not Null As #usn8 Return Count(*)[8.1e1..],Any(`` In $_usn3 Is Not Null Where 12e12[true..][$`2esn`..]) =~{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12} =~{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3} As `3esn` Skip 12 Contains $usn1 Contains 0 Union All Create @usn6=(((@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[#usn7? *00..123456789]->(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}))),`4esn`=(((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Merge (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})"), + octest:ct_string("Merge `1esn`=(`4esn` :`5esn`) On Match Set `8esn`+=[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1) Ends With Filter(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7]),usn2+=(:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] Union All Unwind 123456789 Ends With _usn4 As `8esn` Remove [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )].`5esn`.`7esn`? Union Return {`8esn`:$`` Is Null Is Null}[Extract(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..])..][Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)])..] Unwind $`6esn`[$`8esn`..][false..] As usn2"), + octest:ct_string("Detach Delete `3esn` Contains 01234567 Contains .9e-12,`1esn`[..0x0][..\"d_str\"] Union Merge ((:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})-[usn2?:@usn6|:_usn3]->({usn1:01[.9e-12..],@usn6:$`5esn` Ends With $#usn7 Ends With .0e-0})) On Match Set {@usn5:12e-12 Contains .9e-1 Contains 9e-1}.``! =usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]),@usn6 =0.0 Is Not Null Is Not Null,[`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0]._usn3?._usn3? =.1e1 Starts With .1e-1 On Match Set `8esn`+=Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\"),`1esn`+=4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12),(`` {_usn4:9e0[..1e1]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(@usn5 :@usn6:_usn4).#usn8.`1esn`.usn1! =00[0e-0...9e-1][1e-1..``] Unwind $`5esn` Contains `2esn` Contains 9e1 As `1esn` Union All Remove {`3esn`:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7],@usn6:01[..0.12]}._usn4!,_usn3:`8esn`:#usn7,None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`5esn` Starts With 0X7 Starts With 1e1).@usn5? Match `1esn`=(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})))"), + octest:ct_string("Detach Delete {#usn7:$usn2[1e-1]}[(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)..][(usn1 :`2esn`:`8esn`)<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]})..] Unwind Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] As `` Remove [`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]].`8esn`? Union All Unwind 5.9e-12[$`4esn`] As usn1 Create `5esn`=(((@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-(`6esn` :`8esn`:#usn7{`1esn`:.9e-1 Contains .0e0 Contains usn1})<-[`3esn`?:@usn5{@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7}]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]}))),usn2=(`2esn` :`6esn`:`3esn`)-[`5esn`:usn2|:``]->(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})"), + octest:ct_string("Delete .12e12[$0],$#usn8[$1000..] Match (((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) Match (`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Union Optional Match #usn7=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union All With Distinct *,(`6esn` $@usn6)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]}) =~All(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~{``:7.0e-0 Is Null Is Null,@usn5:9e-12[$0][$`4esn`]} As usn2 Where $_usn4 Is Not Null"), + octest:ct_string("Remove `7esn`:#usn7:_usn3 Create `5esn`=(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[:#usn8|:`4esn`{_usn3:'s_str' Is Null,#usn7:#usn7[..0X0123456789ABCDEF]}]->(`` {`2esn`:.1e-1[2.9e1..][12..]}),((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})))"), + octest:ct_string("Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Where $`6esn` Starts With `4esn` Union All Detach Delete None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),12e12[07..]"), + octest:ct_string("Remove Filter(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`]).`8esn`.@usn5! Union All Optional Match (`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]}),(#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`}) Where $`3esn` In 's_str' In $#usn7"), + octest:ct_string("Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),(({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})<-[`4esn`:_usn4|`1esn` *123456789..0x0{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})-[_usn3 *..7]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})) Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),(usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}) Return Distinct 9e-12 In 5.9e-12 As ``,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0x0 Contains $`1esn` Contains 0.0) In None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0) As `5esn` Order By 0e0 Ends With 0X7 Ends With .1e1 Desc,(#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Asc,0x0 =~$7 =~Null Desc Union All Detach Delete 00[0e-0...9e-1][1e-1..``],9e12[...12e12][..$`2esn`],7.0e-0 Contains Count ( * ) Contains 0Xa Union With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2 In usn1 In 1e-1) =~{#usn8:00[0e-0...9e-1][1e-1..``]} As #usn8,$@usn5[$#usn8..][_usn3..] As `8esn`,1.9e0 Starts With 's_str' Starts With 9.1e-1 As _usn4 Where 's_str' Is Null Delete {@usn6:\"d_str\" =~9e-12 =~`5esn`}[#usn8(Distinct 999 Starts With .9e12 Starts With 3.9e-1,true Contains 0x0)..[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010]][All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)..{`4esn`:0 Starts With 0Xa Starts With $0}] Unwind $12[.9e-1] As @usn5"), + octest:ct_string("With Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07),{@usn6:8.1e1[$`5esn`][0e0],`5esn`:$`8esn` Starts With `2esn`}[[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]] As ``,false[12e-12..][usn1..] Order By 12[0..usn2] Descending Skip Null[12e-12..] Limit $@usn5[true..][$usn1..] Union Create @usn6=((:_usn3:_usn3{usn1:.9e1[12]})) With Distinct *,$`` Is Not Null Is Not Null,12e12[..123456789][..false] Skip 12e-12 Ends With @usn5 Ends With $`2esn` Limit .9e-12[..$`7esn`][...9e-1] Union All Optional Match `2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),usn2=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Create (((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))),(`5esn` :`5esn`)"), + octest:ct_string("Optional Match (`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]}),(#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`}) Where $`3esn` In 's_str' In $#usn7 Union All Unwind `5esn` Contains 1.9e0 Contains 9e0 As `4esn`"), + octest:ct_string("Detach Delete .1e1[..0][..010] Detach Delete ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]),`2esn` Starts With 12 Starts With 10.12e12,.12e-12[07] Return 1.9e0 Ends With Count ( * ) Ends With .12 As `4esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12),9e1 Is Not Null As #usn8 Order By $`4esn` Ends With 0e-0 Ascending,.9e-1 Contains .0e0 Contains usn1 Asc Skip None(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8) Is Null Is Null Union Delete $@usn5[true..][$usn1..] Return Distinct $`` Ends With 6.0e0,$`6esn` In `2esn`,\"d_str\" Starts With `6esn` Starts With 1.9e0 As _usn3 Order By true Is Null Is Null Descending,(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] Descending,{usn1:`7esn` Is Not Null}[Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8)..{`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3}][Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 9.1e-1[.1e-1])..{usn2:1e1[3.9e-1][.9e-1]}] Descending Skip 010[11.12e-12..] Union Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where ``[..$#usn7]|2.9e1).`1esn`?,None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]).`3esn`?"), + octest:ct_string("With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Skip usn2 Starts With $_usn3 Where 10.12e12[12e12..0X7] Unwind Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) As usn2 Unwind Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) As #usn8 Union All Delete Extract(usn2 In .0e0[$`6esn`..]|$@usn6 Contains Count ( * ))[`2esn`(usn1[12e-12])..][(`8esn` :usn2)<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})..],8.1e1 Is Null Optional Match @usn5=((@usn6 :`6esn`:`3esn`)<-[`6esn`? *..0xabc{``:$_usn4[Null]}]->(:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Where .12e12[`7esn`][#usn8] Optional Match `7esn`=(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]}) Where #usn8[7..@usn5] Union All Create usn2=(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null}) Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Unwind 1e1 Is Not Null As `4esn`"), + octest:ct_string("Merge ((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) On Create Set #usn8 =usn2 Ends With 10.12e12 On Match Set {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}.@usn6 =07[.0e0][3.9e-1],`5esn`:`3esn` Return *,true Is Null Limit `6esn`[010...9e-12] With $0 =~01234567 As `2esn`,07[.0e0][3.9e-1] Skip Extract(`7esn` In .12e12[Count(*)..] Where true Starts With 2.9e1 Starts With 9e1|12[0xabc..][$0..]) Starts With Extract(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12|0.12[3.9e-1]) Starts With ``(12e12[true..][$`2esn`..]) Limit [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]] Where 5.9e-12[`4esn`..12e12][0x0..1.9e0] Union With Distinct 0Xa Ends With #usn8 Ends With usn2 As `6esn`,$7 Starts With Null Starts With `6esn` Order By 0xabc[$`4esn`..][`8esn`..] Desc,0 Is Not Null Descending Unwind $`2esn`[$1000..][$@usn5..] As `5esn` With Distinct *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Skip `` =~123456789 Limit Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Where 12 In 1000 In \"d_str\""), + octest:ct_string("Remove All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`2esn`[010..`5esn`][``..0.12]).@usn5?,(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})-[`6esn`:`6esn`|#usn7*]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5}).`3esn`?"), + octest:ct_string("Unwind $@usn6 Is Not Null Is Not Null As `3esn` Create ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})),_usn3=((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Merge `1esn`=((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null On Create Set #usn7+=(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] Union All Merge (`8esn` {`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) On Match Set (`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8,_usn3+=Null[..07] On Match Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] Union All Return 9e12[7.0e-0] As #usn7 Skip Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Limit $usn2[4.9e12..false][.0e-0..00]"), + octest:ct_string("Unwind 9e1 Is Not Null As #usn8 Unwind 01234567[..Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null)][..999] As usn2 With *,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] As usn1 Limit `3esn`[$0..][.9e1..] Union Match `7esn`=((`8esn` {@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})),({_usn3:$`5esn`[7..]})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})-[#usn7?:`2esn`|`7esn` *..7]-(`3esn` {`6esn`:$`8esn`[..1e1][..``],`8esn`:$usn2 In usn1 In 1e-1}) Detach Delete (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] Union Detach Delete 1000[_usn3..`8esn`] Optional Match usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})),_usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Where $_usn4 Starts With 0e-0 Starts With 1e-1"), + octest:ct_string("Merge ((`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010})) On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] With 11.12e-12 Is Null Is Null As `4esn`,#usn8 Starts With 11.12e-12 Starts With $`3esn` As `2esn` Skip 123.654 Ends With 0Xa Ends With .12e12 Union Optional Match (`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[_usn3:usn1|:#usn8 *07..]-({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}),`7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) Union All Return Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1]"), + octest:ct_string("Create (({`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]})-[#usn8:`2esn`|`7esn`{`5esn`:07 Starts With usn1 Starts With 010}]-(`5esn` :`4esn`:`7esn`)),`8esn`=((`` )<-[?]->(_usn4 :@usn5)) Remove [usn1 In 7.0e-0[.._usn4][..0X7] Where .9e12[$usn2..][7..]|$_usn3 In 123.654 In $`8esn`].`8esn`!,{`8esn`:1.9e0 =~$`8esn` =~01234567,usn1:.0e-0[3.9e-1][.12e12]}.`3esn`? Union Merge `3esn`=(@usn5 :`7esn`) Remove `6esn`(1e1 Is Not Null Is Not Null,$`1esn` Starts With Count(*) Starts With $`8esn`).`7esn`,{`3esn`:.0,`5esn`:Count ( * )[..`8esn`]}.``?.`6esn`.@usn5?,Any(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`).#usn7?.usn2._usn4? With *,None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]) Is Null Is Null,$`3esn` =~00 =~9.1e-1 Skip `2esn` Starts With 12 Starts With 10.12e12 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1"), + octest:ct_string("Delete usn2[Count ( * )..07],None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn`[..0x0][..\"d_str\"])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1])..Single(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])] Match (((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Where 5.9e-12 =~$@usn6 Detach Delete {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})"), + octest:ct_string("Create _usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))),@usn6=(@usn5 {_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) Union All Detach Delete _usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null Union All Merge ((usn1 )-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0}))"), + octest:ct_string("Create `7esn`=((`2esn` :usn2)-[usn2:`4esn`|:@usn5 *01234567]->(:`5esn`{`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567})<-[:#usn8|:`4esn`{usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})),@usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Merge `6esn`=((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) On Create Set `2esn`+=Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],#usn8 =.9e-12[0e0...9e-1] Union Merge ({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) On Create Set #usn7 =Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Null Is Null,`4esn`+=$_usn4 =~$_usn4 =~2.9e1 Merge `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Union Unwind 1.9e0 =~$`8esn` =~01234567 As usn2 Create ((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))"), + octest:ct_string("Unwind $`8esn`[.._usn4(Null[..07],123.654)] As _usn4 Remove (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[``? *07..{`8esn`:$usn2[0e0][$7],_usn3:.9e-12[0e0...9e-1]}]-(`1esn` :`5esn`)<-[? *0X0123456789ABCDEF..0{`1esn`:$`2esn` Ends With $`8esn`}]-(`4esn` {@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}).@usn6? Remove Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).`5esn`?,None(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).@usn5? Union Unwind $usn1[$12..] As `` Unwind All(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]) Starts With Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) As `3esn` Merge ``=((@usn6 :`5esn`)<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}))"), + octest:ct_string("Optional Match (#usn8 :#usn8)<-[`5esn`?:``|:`3esn` *..0xabc]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[{#usn8:.0e0[1e1..][01234567..],`6esn`:123.654 Ends With 0Xa Ends With .12e12}]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12}) Union All Delete All(`8esn` In 01234567[..0.0][..false] Where 07 Ends With @usn6 Ends With _usn3) In (:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})<-[`3esn`?:`1esn`]-(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[usn2:@usn6|:_usn3 *123456789..0x0$_usn3]->(:`8esn`:#usn7{``:$7 Starts With Null Starts With `6esn`,`4esn`:#usn8[..#usn7][..@usn6]}) In Null Merge (`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[_usn3:usn1|:#usn8 *07..]-({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}) On Match Set `6esn`:`6esn`:`3esn`,`8esn`:`7esn` On Match Set {#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}.`6esn`!.`3esn`! =5.9e-12[$`4esn`],_usn3:`2esn`:`8esn`,#usn7(0e0 Starts With $1000 Starts With `2esn`,Count ( * )[..`8esn`]).@usn5? =.0e0 =~5.9e-12 =~`7esn` Union Return *,0X0123456789ABCDEF Contains 8.1e1 As `6esn`,.1e1 =~`1esn` Order By All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])[..{#usn8:.12e12[Count(*)..]}][.._usn4(Distinct `2esn` Starts With 999,$`5esn` Starts With 0X7 Starts With 1e1)] Descending,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] Ascending,.9e1[12] Desc Limit 01234567 Ends With 2.9e1 Ends With 9.1e-1 Create `7esn`=((#usn7 )) With Distinct *,`8esn` Is Null As `6esn` Order By [usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc,0x0 =~$7 =~Null Desc,12e-12[9e0..1.9e0] Asc Where `` =~$`5esn`"), + octest:ct_string("Detach Delete $123456789[$_usn3..][$usn2..],12e12 Ends With usn1,.9e1[11.12e-12] Union All Return Distinct Null[`2esn`..] Order By Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null Descending Limit {_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Merge #usn8=(`6esn` :``:usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[_usn4:`6esn`|#usn7]-(`8esn` $12) On Match Set _usn4:#usn7:_usn3,Extract(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0|`6esn` In 9e-12)._usn4? =0Xa Ends With #usn8 Ends With usn2 Remove {usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}._usn4!"), + octest:ct_string("Delete ({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null},Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`])[0x0..[`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`]] Delete #usn8 In $#usn8 In \"d_str\",01[..01] Create `4esn`=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1}) Union Optional Match `3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})),`6esn`=((#usn7 )) Where 9.1e-1 In #usn8 With Distinct *,{`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null) Order By 4.9e12 Contains .12e12 Contains 0xabc Asc,$usn1 Is Not Null Desc Skip {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null) Where _usn4[9e0..$#usn8] Remove {usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7}.`3esn`!,(:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}).`3esn`?,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where usn2 Ends With 10.12e12).`3esn`!"), + octest:ct_string("With {@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2} Is Not Null Where `1esn`[11.12e-12..] Merge ((`5esn` :`2esn`:`8esn`)<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})) Union Detach Delete ({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null},Count(*) =~Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7),{@usn5:true Contains 0x0} In Extract(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$1000[..01234567][..0X0123456789ABCDEF]) Merge usn2=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Remove ({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})<-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(`4esn` :usn1{`1esn`:0X0123456789ABCDEF Contains 8.1e1}).`4esn` Union Delete usn2[Count ( * )..07],None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn`[..0x0][..\"d_str\"])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1])..Single(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])] Match (((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Where 5.9e-12 =~$@usn6 Detach Delete {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})"), + octest:ct_string("Unwind \"d_str\" =~9e-12 =~`5esn` As `8esn` Return *,_usn4['s_str'..] As `2esn`,Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Order By .0e0[1e1..][01234567..] Descending,5.9e-12[2.9e1][9e0] Desc Skip Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7) Detach Delete .1e-1[$`2esn`..][$`1esn`..] Union Remove _usn3(Distinct Null =~true =~.1e-1).`7esn`? Return 10.12e12 Starts With .9e12 As #usn7,_usn4['s_str'..] As `2esn`,false[12e-12..][usn1..] Order By 123456789[Count ( * )..] Desc,``(Distinct `4esn`[$1000..$``][$_usn4..$_usn4],.1e-1 Starts With 1000 Starts With $`1esn`) In [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|`4esn` Starts With $_usn3 Starts With .9e-12] In {`6esn`:``[$``..]} Desc,[usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc Skip .1e-1 Is Null Limit All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0)[Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"])..Single(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1])][{usn1:9e-1 Starts With 123.654 Starts With .9e1,#usn8:$_usn4 Is Not Null}..(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})] Union All Delete Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12),$usn2[4.9e12..false][.0e-0..00],usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})"), + octest:ct_string("Unwind .1e1[1e-1..][1.9e0..] As _usn3"), + octest:ct_string("Unwind [`5esn` In 12[0xabc..][$0..] Where $123456789 Is Not Null] Starts With Any(`7esn` In .12e12[Count(*)..] Where 's_str' Ends With 0.0 Ends With .12e12) As `2esn` Detach Delete Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null Union All Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1 Union With Distinct `5esn`[$`4esn`] As @usn6,.0e0 Is Null Is Null As _usn4,1.9e0 Starts With .9e0 Order By @usn5 Contains _usn3 Contains 00 Descending,$`6esn` Ends With 12 Ascending"), + octest:ct_string("With *,$#usn7[$_usn4..][.12e-12..] As `6esn`,5.9e-12 =~$@usn6 As `7esn` Limit usn1[12e-12] Merge ((`6esn` :`7esn`)-[`7esn`?:`5esn`]->(#usn8 )<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})) On Match Set #usn8 =_usn4['s_str'..],`7esn` =$usn1[$12..] On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 Union Remove Any(`` In $`5esn` Starts With 0X7 Starts With 1e1).usn2?,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5[$``]].`6esn`!,Single(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12).`7esn`! Union Match ((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1))),_usn4=((_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))"), + octest:ct_string("Detach Delete $`6esn` Starts With `4esn` Remove (#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *01234567]->(`5esn` :`2esn`:`8esn`).#usn7!.`3esn`!.@usn6!"), + octest:ct_string("Match (`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1}),({@usn5:$12 Contains $`7esn` Contains .0})<-[usn2 *..0xabc]->(:@usn5{`7esn`:7.0e-0[`6esn`..]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1}) Where $`6esn` Starts With `4esn` Match `8esn`=(`3esn` :#usn7:_usn3)<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(`2esn` :usn2)<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}),`4esn`=(((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})))"), + octest:ct_string("Remove `2esn`(Distinct 12 Is Null Is Null)._usn3! Create @usn6=((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`6esn`:`6esn`|#usn7*]->(`3esn` {_usn4:$`2esn` Starts With 0x0})-[#usn8 *010..{@usn5:6.0e0 Is Not Null}]->(@usn5 :`7esn`))"), + octest:ct_string("Unwind Extract(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``]|$_usn4[..usn2]) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) Starts With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null|`4esn` Is Not Null Is Not Null) As `4esn` Match (_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}),((`6esn` :usn1)) Where 9.1e-1 In #usn8 Remove `6esn`(1e1 Is Not Null Is Not Null,$`1esn` Starts With Count(*) Starts With $`8esn`).`7esn`,{`3esn`:.0,`5esn`:Count ( * )[..`8esn`]}.``?.`6esn`.@usn5?,Any(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`).#usn7?.usn2._usn4? Union Delete None(_usn3 In ``[$``..] Where .0e0 In 10.12e12 In $`5esn`) Is Null Is Null,@usn5 Is Null Is Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)],Null[...9e1] Delete {@usn5:$`2esn`[8.1e1]}[None(`7esn` In .12e12[Count(*)..] Where .9e1[12])..Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1)][`6esn`(Distinct 0e0 In $_usn4 In `2esn`)..{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]}] Union All Remove Single(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12).`6esn`,(:@usn5{`4esn`:.0e0[$`6esn`..]})-[? *0X0123456789ABCDEF..0]-({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`)._usn3._usn3!.`4esn`?,{@usn5:'s_str' Is Null,`3esn`:Count(*)[12..][0X0123456789ABCDEF..]}.`6esn` Remove Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|$_usn3 Is Not Null).`5esn`!,count(Distinct $`3esn` Starts With 0Xa).#usn7"), + octest:ct_string("Detach Delete .0e-0 =~12e-12,12e12[07..] Union All Unwind 5.9e-12 Ends With 1e1 Ends With false As _usn3 Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where ``[..$#usn7]|2.9e1).`1esn`?,None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]).`3esn`? Merge ``=((#usn8 {_usn3:$_usn4 Contains .12e-12})) Union Delete Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),All(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)[`3esn`(Distinct 0[true..$7],`3esn`[$0..][.9e1..])..] Merge (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) On Match Set Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12).`4esn`!.#usn8?.`1esn` =1.9e0 =~$`8esn` =~01234567,`1esn` =1000[$`6esn`..12.0]['s_str'..$`3esn`],@usn5 =9e0[$usn2][0] Merge ``=(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`` :@usn6:_usn4)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})"), + octest:ct_string("Detach Delete {`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)],Null Is Not Null Merge @usn6=(((@usn5 {``:.0e0[$`6esn`..]})-[?:usn2|:``]-(_usn4 :`4esn`:`7esn`{#usn7:0xabc Is Not Null,`4esn`:_usn3[`2esn`..10.12e12][9e1..true]})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(@usn5 :usn2))) On Match Set usn2 =$`8esn`[.9e-1][_usn3] On Match Set #usn7+=Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}],`8esn`(Distinct `2esn` Is Not Null Is Not Null,$``[4.9e12..2.9e1]).`6esn`.`1esn`! =.9e0 Is Not Null,usn1($@usn5[...9e-1][..$usn1],$`3esn` Ends With 010 Ends With $`7esn`).`3esn` =(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[? *07..{_usn4:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:$#usn8[...9e1]}]-({`1esn`:0X0123456789ABCDEF Contains 8.1e1})[Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`|$@usn6 =~$`2esn` =~9e1)..][[_usn4 In Count(*)[9e1..][12e-12..] Where $usn1 Starts With 12 Starts With 12e12|0e-0 Contains _usn4 Contains 1e-1]..] With Distinct *,#usn8 In $@usn6 As `8esn` Skip `1esn`[..0x0][..\"d_str\"] Union All Detach Delete _usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null"), + octest:ct_string("Merge ((#usn7 :usn2{@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-({`6esn`:07 Ends With @usn6 Ends With _usn3})) On Match Set Any(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..])._usn3?._usn3!.#usn7! =$`8esn` =~$0 =~`` On Create Set `6esn`+=$#usn7[..$`8esn`][..2.9e1],[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0X7[Count(*)][.9e0]|$`8esn`[$``..$`1esn`][9e-12..$7]].`7esn` =(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )[{usn2:7.0e-0 =~$12 =~5.9e-12}..][Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)..],`6esn` =Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null Union Create #usn7=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Union Match ``=((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),(((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})))"), + octest:ct_string("Create `3esn`=(@usn5 :`7esn`),(`8esn` {usn1:Count ( * )[..2.9e1],_usn3:07 Starts With usn1 Starts With 010}) Union Match (`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]}),(#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`}) Merge usn1=((`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})) On Match Set #usn7:usn2,({usn1:usn2 Ends With 10.12e12})<-[`8esn` *1000]->(#usn8 ).usn2! =$`` In `2esn` In 07,`5esn` =`8esn`[6.0e0..][$`1esn`..] Union Match `7esn`=((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)) Where $_usn4[Null] Create usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})),_usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Merge usn1=(`` {_usn4:9e0[..1e1]})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}) On Create Set `5esn`(Distinct $`2esn`[8.1e1],Count ( * ) Is Null Is Null).`7esn`!.`8esn`? =$``[7..]"), + octest:ct_string("Detach Delete `4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Ends With None(`` In $_usn3 Is Not Null Where .9e1[...12e12]),`5esn`[0X7..][12..] Remove None(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]).#usn8,{@usn5:$`1esn` Starts With Count(*) Starts With $`8esn`}._usn3! Optional Match ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})) Union Remove [`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1|`6esn`[..$@usn6][..$`1esn`]].`8esn`?,None(`8esn` In 01234567[..0.0][..false] Where 5.9e-12[.1e1][$#usn8])._usn4! Detach Delete 2.9e1[...9e-12][..0]"), + octest:ct_string("Unwind .9e-1[3.9e-1]['s_str'] As `7esn` Detach Delete $`2esn`[010..`5esn`][``..0.12] Return Distinct *,(`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As @usn6 Skip `7esn`[.1e1..][`8esn`..] Limit Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12)[Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12)..][`4esn`(Distinct)..] Union All Remove {`7esn`:.0[usn2.._usn4],`5esn`:9.1e-1 Is Null}.@usn6?,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Starts With 9e1 Starts With $`4esn`).`2esn`!,{_usn4:$12 Contains $`7esn` Contains .0}.#usn8!.`8esn` Create `6esn`=(((#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`3esn` {#usn8:`7esn` Is Null})-[@usn6?:@usn5]-(`4esn` :usn1{`1esn`:0X0123456789ABCDEF Contains 8.1e1}))),(($@usn6)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[#usn8?:#usn7|:`8esn` *..0X7]->(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999})) Union Remove (#usn8 :#usn8)-[`` *..0X7]->(usn2 :#usn8).#usn8,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`).#usn8?,[@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]]._usn3?.`4esn`?.@usn5? Return *,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) As `7esn`,$`3esn` Starts With 0Xa As @usn6 Order By true Starts With 2.9e1 Starts With 9e1 Asc,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending Skip 12 =~$@usn5"), + octest:ct_string("Optional Match `3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where @usn5[$_usn3..] Return Distinct $#usn7 =~8.1e1 As #usn7,`4esn`[$1000..$``][$_usn4..$_usn4] Skip $`2esn` In 0X7 In 3.9e-1 Union All Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Where 's_str' Is Null Union All Remove Single(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12).`6esn`"), + octest:ct_string("Match ``=(#usn8 :`3esn`)<-[`2esn`?:usn2|:`` *010..{`5esn`:$`4esn` Ends With 0e-0}]->(:`8esn`:#usn7{#usn8:_usn4 Ends With .0 Ends With 7,`6esn`:0X7 Starts With 1e1 Starts With $12})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-($`2esn`)"), + octest:ct_string("Return Distinct *,.0e0 Is Null Is Null As _usn4,[_usn4 In Count(*)[9e1..][12e-12..] Where $_usn3[1e-1..]][[`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0]][None(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)] As `6esn` Order By [usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|9e0 =~9e1 =~.12e12] Is Null Is Null Asc,_usn3(Distinct $_usn4 Is Not Null,9e1 Ends With 123456789)[{`8esn`:$`` Is Null Is Null}] Desc Skip All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Limit [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]} Union Merge (({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) On Match Set .9e-12.`3esn`?.`3esn`.`7esn`? =Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) Union All Optional Match (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Remove Single(usn1 In 7.0e-0[.._usn4][..0X7] Where .9e12[$usn2..][7..])._usn3.`3esn`?"), + octest:ct_string("Unwind $``[`5esn`..][`2esn`..] As `8esn` Merge `4esn`=((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) Union All Return Distinct $`8esn`[12.0..][4.9e12..] Limit 0x0 =~0x0 Union All With Distinct *,$0[$`7esn`..$`3esn`]['s_str'...0],usn1 Ends With 12 Order By Count ( * )[0..][010..] Desc Limit 12.0 Starts With 07 Starts With $`3esn` Where @usn6[usn1..][`1esn`..] Match `3esn`=(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}),usn2=((:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}))"), + octest:ct_string("With Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1] Detach Delete {#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}[{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}..]"), + octest:ct_string("Remove All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0)._usn3? Unwind $@usn5[..1e-1] As _usn4 With 1000[Null..] As `1esn`,.1e1 Starts With $7 Order By Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Ascending,$`7esn` Contains 0X7 Asc,$_usn4 Is Not Null Ascending Limit .0e0[$`1esn`][.9e-12] Union Return $@usn6 =~$`2esn` =~9e1 As `1esn` Order By 4.9e12 In 5.9e-12 In .9e0 Desc With *,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] As usn1 Limit `3esn`[$0..][.9e1..] Union All Return 1.9e0 Ends With Count ( * ) Ends With .12 As `4esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12),9e1 Is Not Null As #usn8 Order By $`4esn` Ends With 0e-0 Ascending,.9e-1 Contains .0e0 Contains usn1 Asc Skip None(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8) Is Null Is Null"), + octest:ct_string("With Distinct {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})] Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] Descending Detach Delete 0x0,$``[`6esn`][00],'s_str' Ends With $usn1 Unwind Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3) Starts With `2esn`(Distinct) Starts With (`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}) As `6esn` Union All Delete `7esn`[.1e1..][`8esn`..],9e12 Ends With 07,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..])[..{`4esn`:0 Starts With 0Xa Starts With $0}][..Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``)]"), + octest:ct_string("Return 6.0e0 In 12 As usn1 Limit $#usn7 Starts With 10.12e12 Match (((:#usn8{`8esn`:usn1[12e-12],@usn6:Count ( * ) In 999})<-[`8esn`? *0x0..]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})<-[@usn6?:`5esn`]->(`8esn` {`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}))) Where 0[$999..] Return 12e12 =~#usn7 =~.9e-1,.1e1 Starts With 9e0 Order By None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) In (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]}) In [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] Ascending,.9e0 Is Null Asc,.12[$`2esn`..usn2][.9e-1.._usn3] Ascending Limit 2.9e1 Starts With 12e-12 Starts With 0.0"), + octest:ct_string("Remove `2esn`(Distinct .9e-12 Ends With `1esn` Ends With 123.654).`7esn` Unwind .9e-12[_usn4..#usn8][9.1e-1..0.12] As #usn8 Union Optional Match @usn6=(((@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[#usn7? *00..123456789]->(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}))),`3esn`=((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Where .9e12 =~`5esn` =~07 Return ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]) Order By `2esn` Starts With 12 Starts With 10.12e12 Desc,0e0[..'s_str'] Descending Skip $`1esn` Starts With Count(*) Starts With $`8esn` Unwind 9e1 Is Not Null As #usn8"), + octest:ct_string("Create `3esn`=((@usn6 :`6esn`:`3esn`)<-[`1esn`? *0X0123456789ABCDEF..0{`4esn`:9e1 Ends With .9e0}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})),({usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) Unwind 5.9e-12[`1esn`][usn2] As #usn8"), + octest:ct_string("Unwind `1esn`[9.1e-1] As #usn8 Union All Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})) Merge `6esn`=(usn2 {_usn4:$999 Ends With .9e-12})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``}) On Create Set Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3|`4esn` Starts With .0e0 Starts With usn2).`3esn`?.`4esn`!.`8esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct),_usn4+=0X7[$999...12e12][12..`2esn`],`7esn` =6.0e0 In 12 On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} Optional Match (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),`1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) Where `1esn` Starts With 999 Starts With 3.9e-1 Union All With Distinct $_usn3 Contains usn2 Contains 0xabc Order By $`` =~$_usn3 Desc,$0 Contains .12e-12 Descending"), + octest:ct_string("Unwind $`` Ends With `8esn` Ends With 9e-12 As `3esn` Return Distinct $7 Is Null Is Null As usn1,07[\"d_str\"..]['s_str'..],All(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[..Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`])] As _usn3 Order By Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} Descending,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``]|$_usn4[..usn2]) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) Starts With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null|`4esn` Is Not Null Is Not Null) Descending,$`` Is Not Null Ascending Merge `1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) Union All Remove {`4esn`:01[..01]}.`8esn`?.`8esn`?.usn1?,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`2esn`[010..`5esn`][``..0.12]).`4esn`"), + octest:ct_string("With Distinct *,(`2esn` :`6esn`:`3esn`)<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789)..Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1])][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]]..Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 9.1e-1 Is Null|9e1 Contains 4.9e12 Contains .9e0)] Skip $#usn7[..$`8esn`][..2.9e1] Limit Extract(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..]|.9e12[..$usn1][..10.12e12]) Starts With Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..])"), + octest:ct_string("Remove `3esn`($`5esn`[7..],9e-1[0X0123456789ABCDEF][0]).usn2,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 11.12e-12 Is Null Is Null).`6esn`?,{#usn8:_usn4 Ends With .0 Ends With 7,`6esn`:0X7 Starts With 1e1 Starts With $12}.@usn5! Create @usn5=(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}),#usn8=({_usn3:$`8esn` Is Null}) Create `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Union Delete _usn3 Ends With 01 Ends With .1e-1,All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7])[..Extract(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..])],Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]) With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],.1e-1 Is Null,.9e12[$usn2..][7..] As `2esn` Limit _usn4 Is Null Is Null Where .12e-12 Ends With $`7esn` Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Union All Remove (`` :`3esn`{`5esn`:``[$``..]})-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}).`7esn`,(`8esn` {#usn8:1e1[Null..][.12..]})-[`2esn`?{@usn5:`6esn` Is Not Null Is Not Null,_usn4:9e12 Contains $@usn6 Contains Count(*)}]->({usn1:`6esn`[0x0..@usn5][$1000...9e-12]}).``?.``!.`8esn`!,{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}.@usn5? Detach Delete $0[9e1],Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] Delete 12e12 Starts With 4.9e12 Starts With 0e0,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]) Ends With (:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null}) Ends With [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]|0x0 Contains $`1esn` Contains 0.0],0 Starts With 0Xa Starts With $0"), + octest:ct_string("With Distinct \"d_str\" Starts With `6esn` Starts With 1.9e0 As #usn8,Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]) Ends With usn2(0.0[$1000][3.9e-1],0e0[.12..][3.9e-1..]) Ends With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Skip Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) Where 1e1 In .1e-1 In .0 Union All Merge usn1=((:_usn3:_usn3{usn1:.9e1[12]})) Create _usn3=(({_usn3:00[$`6esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`7esn` {usn2:12.0[..123456789][..01]})),((usn1 :#usn8))"), + octest:ct_string("Create `7esn`=(#usn8 :#usn8)<-[`5esn`?:``|:`3esn` *..0xabc]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[{#usn8:.0e0[1e1..][01234567..],`6esn`:123.654 Ends With 0Xa Ends With .12e12}]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12}),_usn4=((`5esn` {`2esn`:`1esn` =~0 =~_usn4})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[usn2?{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3}]-(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})) Remove Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..]).`1esn`.`8esn`?.`2esn`!,@usn5(Distinct 1e-1[..$@usn5][..0xabc]).`3esn`!,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12e12 Starts With 4.9e12 Starts With 0e0).@usn6!.`8esn`? With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12)[Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12)..][`4esn`(Distinct)..] As `5esn`,.0e0[8.1e1..0.12] Skip .0[...12e12][..`7esn`] Union Remove `8esn`:`3esn` With Distinct *,Count(*)[..Count(*)][..9e0] Order By 07 Starts With usn1 Starts With 010 Ascending,7.0e-0[..$`7esn`][..Null] Descending,$usn2[8.1e1...9e-1][.1e-1..11.12e-12] Desc Skip Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] Limit 999 Ends With $123456789 Ends With $_usn4 Where 10.12e12[Count(*)..] Return *,.9e0 Is Null As _usn4 Order By {`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-12 Is Not Null Is Not Null)..None(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)][[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']|12e12[..$`8esn`][...0e-0]]..`4esn`(_usn4 Is Not Null Is Not Null,_usn4['s_str'..])] Descending,.9e-12[0e0...9e-1] Asc"), + octest:ct_string("Detach Delete (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1) Ends With Filter(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7]) Optional Match ((#usn8 {_usn3:$usn2 In usn1 In 1e-1})),usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union Delete .0e0[..1e1][..$1000] Delete 1000 Is Not Null Is Not Null,'s_str' Ends With 0.0 Ends With .12e12"), + octest:ct_string("Create (((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))) Unwind 1.9e0 =~0x0 As @usn5 Union All Remove None(_usn3 In ``[$``..] Where 0xabc[7.0e-0..][12e12..]).`3esn`.usn2?.@usn5!,Filter(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])._usn3? Create (usn1 :`2esn`:`8esn`)-[`7esn`?:`5esn`]->(`1esn` :`6esn`:`3esn`) Return 0 Ends With 2.9e1 Ends With 1000,$`` In $usn2,None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) Contains [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0] As @usn6 Skip usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) Union All Create _usn4=((`4esn` {usn2:$`7esn`[..12.0][..0e0]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}))"), + octest:ct_string("Detach Delete {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null,$`4esn` =~0e0 Delete $12[$12..],usn2 Ends With 10.12e12,1.9e0[$12][``] Remove `3esn`:`7esn`,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}._usn3 Union Unwind Extract(usn2 In .0e0[$`6esn`..] Where 9.1e-1[Count(*)..][5.9e-12..]) =~#usn8(5.9e-12 Contains $`` Contains $`5esn`) As `7esn` Unwind $999[$usn1...0e0] As `3esn` Remove (_usn3 :_usn4)-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)._usn4?,(usn2 :`1esn`$7)<-[_usn3{`8esn`:0e0[..'s_str']}]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`1esn`{`7esn`:8.1e1 Ends With $0 Ends With 6.0e0})._usn4? Union Delete .9e-1 Ends With `8esn` Return Distinct *,_usn4['s_str'..] As `2esn`,Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7)"), + octest:ct_string("Detach Delete 7.0e-0 Contains Count ( * ) Contains 0Xa,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]],`2esn`[..9.1e-1][..0xabc] Merge #usn7=(`2esn` :``:usn1)-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) On Create Set @usn6+=01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..] Merge `8esn`=(`6esn` :``:usn1) On Create Set usn2 =[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]|12e12 Is Not Null][{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]}],`5esn`+=.9e1[..`5esn`] On Create Set `1esn` =@usn5[6.0e0][Count ( * )] Union All Create `7esn`=(`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Optional Match `3esn`=(@usn5 :`7esn`),((#usn8 {_usn3:$usn2 In usn1 In 1e-1})) Where usn2[..10.12e12][..$`7esn`] Create ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((`` :``:usn1)) Union All Unwind {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null As `5esn`"), + octest:ct_string("Unwind $12[.9e-1] As @usn5 With Distinct Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3) Starts With `2esn`(Distinct) Starts With (`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}),9e1 Contains 4.9e12 Contains 123456789 Order By 0e-0 Contains 11.12e-12 Contains $`4esn` Asc Limit Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] Where 0e0 Ends With 1e1 Ends With 0Xa Match `5esn`=(`5esn` :`1esn`),(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))) Where 9e-1 Starts With 123.654 Starts With .9e1"), + octest:ct_string("Create `8esn`=((`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})),`7esn`=({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) With Null =~9e12 As #usn7,.0[usn2.._usn4] As `8esn` Order By $`5esn`[true] Descending,`7esn` Contains $7 Contains 07 Asc,3.9e-1[..$7] Desc Where $@usn6 Contains Count ( * ) Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Union Match (((`2esn` :`6esn`:`3esn`{@usn5:Count(*)[.0e0]})-[usn1?:usn1|:#usn8*..]-(`7esn` {`3esn`:.9e-1 Is Null})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))),@usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}) Where Count(*) In .9e-12 In $usn1 Create (:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[`7esn`*..]->({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[`8esn`:`3esn`|:_usn3 *123456789..0x0{`8esn`:$`3esn` Ends With 010 Ends With $`7esn`,usn2:7.0e-0[$usn2..0.12][$``..0]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010}) Union Return Distinct $123456789 Starts With Count ( * ) As `1esn` Order By usn1 Ends With 12 Ascending,.0[01..`5esn`] Asc,00 Is Not Null Desc Skip 0e0[.12..][3.9e-1..] Limit Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null"), + octest:ct_string("Unwind Null Starts With 9e1 Starts With `` As `8esn` Detach Delete `4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Ends With None(`` In $_usn3 Is Not Null Where .9e1[...12e12]),`5esn`[0X7..][12..] Unwind _usn4['s_str'..] As `6esn`"), + octest:ct_string("Detach Delete Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Union With Distinct .1e-1[..12e12] Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null Desc Limit 's_str' In `7esn` In .9e-12 Return .1e1 =~`1esn`,Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],$#usn7 Is Not Null Order By All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Desc,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] Ascending,.9e0 In 9.1e-1 In $123456789 Desc"), + octest:ct_string("Merge `1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) On Create Set `6esn` =Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,_usn4+=8.1e1 Starts With .9e12 Starts With `7esn`,All(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null).usn1! =$`6esn`[.9e1..][`5esn`..] Merge (`2esn` :`6esn`:`3esn`)-[`5esn`:usn2|:``]->(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}) Create (usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]-(:_usn4{_usn3:010 Starts With 0.0 Starts With .0e0})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}) Union Detach Delete $`8esn` In .1e1 In 010 Union Merge #usn8=((usn2 {`4esn`:12e12 Is Not Null})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4})) On Match Set #usn7:usn2,({usn1:usn2 Ends With 10.12e12})<-[`8esn` *1000]->(#usn8 ).usn2! =$`` In `2esn` In 07,`5esn` =`8esn`[6.0e0..][$`1esn`..]"), + octest:ct_string("Return All(`` In 0.12[3.9e-1] Where `7esn`)[(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(`4esn` :_usn3:_usn3)<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999})][`8esn`(#usn7 Ends With $#usn7 Ends With #usn7,7.0e-0[`6esn`..])],01234567 Ends With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 0[true..$7]) Ends With {`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]} As #usn7,Count ( * )[..1.9e0][..`8esn`] Skip 010 Is Not Null Is Not Null Limit 123456789 Ends With _usn4"), + octest:ct_string("With @usn6[.9e12] As ``,01234567 Starts With `4esn` Starts With 10.12e12 Order By $`7esn` Is Null Is Null Descending,Any(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1) Asc,#usn8[usn1] Asc Where .9e1[...12e12] Union All Unwind .12e12[Count(*)..] As `5esn` Return Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,9e-1 Starts With 123.654 Starts With .9e1 As `6esn`,.9e0 Is Null Is Null Skip usn1(07 Ends With @usn6 Ends With _usn3,$`2esn` In 0X7 In 3.9e-1) Contains [`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|9e0 =~9e1 =~.12e12] Limit $7 Starts With Null Starts With `6esn` Remove 123.654.#usn7.`5esn`?,count(Distinct $`3esn` Starts With 0Xa).#usn7,`1esn`:`2esn`:`8esn`"), + octest:ct_string("Return Distinct *,#usn7[12e-12..][$`2esn`..] As @usn6,$`` Contains 00 Contains 123456789 As `3esn` Limit All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0)[Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"])..Single(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1])][{usn1:9e-1 Starts With 123.654 Starts With .9e1,#usn8:$_usn4 Is Not Null}..(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})] With Distinct Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null"), + octest:ct_string("Unwind .9e-1 Is Null As @usn6 With *,`3esn`[.12e-12..] As `7esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4 Return #usn8[7..@usn5],00 Is Null Is Null Order By 0Xa Starts With .0 Desc,01234567[$#usn7][.0] Desc Skip $`4esn`[..2.9e1][..07] Limit .9e-1[12.0] Union All Match `2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Where 0x0 Starts With $`5esn` Starts With 9e-12 Return Count ( * )[..1.9e0][..`8esn`] As `1esn`,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] As @usn6,01[1e-1] Order By Extract(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``]|$_usn4[..usn2]) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) Starts With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null|`4esn` Is Not Null Is Not Null) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} Descending Skip (:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})<-[``:`8esn`|:`2esn` *12..0Xa]-(usn2 :@usn5{`3esn`:$usn1 Is Null})[..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 8.1e1 Is Null)][..#usn7(Distinct usn2 Ends With .0)]"), + octest:ct_string("Remove {`1esn`:@usn5[$_usn3..]}.`5esn`!"), + octest:ct_string("Merge `3esn`=(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Create `1esn`=(((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[:_usn3|`2esn` *010..]-(`` :usn1)<-[@usn5?:@usn6|:_usn3 *07..{_usn3:$`3esn` Is Not Null Is Not Null,#usn8:usn1[0.12..1000]}]->(`3esn` {usn2:$`7esn`[..12.0][..0e0]}))),#usn7=(`4esn` {@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[@usn5?:`8esn`|:`2esn`]->(_usn4 ) With 8.1e1 Is Null Is Null,Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` Is Null Is Null) Is Not Null Is Not Null As _usn4 Order By (`6esn` $@usn6)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]}) =~All(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~{``:7.0e-0 Is Null Is Null,@usn5:9e-12[$0][$`4esn`]} Asc,999 =~0Xa =~9e0 Asc Skip All(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])[..(:_usn4{`4esn`:9e1 Contains 4.9e12 Contains .9e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})][..(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)<-[?{_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})] Where 9e1 Ends With .9e0 Union All Create `4esn`=((`6esn` :usn1)<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]})) Detach Delete .9e-12[12e12][.0e0],'s_str' Is Null,$`2esn` Ends With $`8esn`"), + octest:ct_string("Detach Delete 010[11.12e-12..] Create (({usn2:#usn7[10.12e12..][\"d_str\"..]})-[?:`8esn`|:`2esn` *..7]-(`4esn` :#usn8{#usn8:_usn4[7][8.1e1],#usn7:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})),(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}))) Union Remove {_usn3:true[9e-12...0e-0][`5esn`.._usn4]}.usn1.`6esn`?.`2esn`,[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010].`5esn`!.`1esn`?,`7esn`(Distinct $usn2[1e-1])._usn3!.@usn5 With Distinct *,`` Is Not Null Is Not Null As usn1 Order By (:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[`7esn`?]->(`5esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(#usn8 {_usn3:$_usn4 Contains .12e-12}) Ends With `4esn`($usn2 In usn1 In 1e-1,01[Count(*)..0e-0][7..$`2esn`]) Desc,7.0e-0 =~$123456789 =~`8esn` Descending Unwind false Is Not Null Is Not Null As _usn4 Union Match `3esn`=(({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[``?:``|:`3esn` *01234567]->(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})),((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) Merge ((`` )<-[?]->(_usn4 :@usn5)) On Create Set @usn6 =123.654 Ends With 0Xa Ends With .12e12,`` =.0e-0 Starts With $#usn7 Starts With _usn3 Remove [`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12].`2esn`?.@usn6!,(:#usn8)<-[`3esn`?:`2esn`|`7esn`*..]-(usn2 :`1esn`{@usn5:Count(*)[.0e0]})<-[_usn4?:`4esn`|:@usn5 *1000]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})._usn4,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null).`2esn`!"), + octest:ct_string("Create (((:_usn4{_usn3:010 Starts With 0.0 Starts With .0e0})-[_usn4?:``|:`3esn`]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(usn1 {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}))),`1esn`=({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(_usn3 :`6esn`:`3esn`) Union All Unwind (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] As `7esn`"), + octest:ct_string("Remove Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12 Contains 0e-0 Contains .0).`8esn`,All(`7esn` In .12e12[Count(*)..] Where 's_str' Ends With 0.0 Ends With .12e12).#usn8? Merge (({`8esn`:$`` Is Null Is Null})) On Match Set usn1 =$0[$`7esn`..$`3esn`]['s_str'...0],[@usn6 In 00 =~.9e-12 =~usn1 Where $123456789 Starts With Count ( * )].`1esn`? =usn2 Ends With .0,`8esn` =010[..@usn5][.._usn4] Return *,`3esn`[.12e-12..] As `7esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4 Union Merge `7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) On Match Set (`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8,_usn3+=Null[..07] Unwind 5.9e-12 =~$@usn6 As `2esn` Return 1.9e0 Starts With 's_str' Starts With 9.1e-1,8.1e1 Is Null,.1e1 Starts With .1e-1 Order By 1.9e0 In $0 Desc,7.0e-0 =~$123456789 =~`8esn` Asc,#usn7[10.12e12..][\"d_str\"..] Desc"), + octest:ct_string("Remove None(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]).``?,{`8esn`:usn1 Ends With 12}.`8esn`!.@usn5.usn2!,{`7esn`:.0[usn2.._usn4],`5esn`:9.1e-1 Is Null}.@usn6? Detach Delete Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Union Detach Delete .1e-1[$`2esn`..][$`1esn`..] Match ((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2})),@usn5=({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3}) Where $usn2 =~$`2esn` =~\"d_str\" With Distinct *,`2esn` Is Not Null Is Not Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Order By {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} Desc,{`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]] Ascending Where $``[4.9e12..2.9e1]"), + octest:ct_string("Merge ({_usn4:$`3esn` In 's_str' In $#usn7}) Create `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Union All Return Distinct *,0e0 Starts With $1000 Starts With `2esn` As #usn7 Skip .9e1[..Count(*)][..7.0e-0] Limit $_usn4 =~`7esn`"), + octest:ct_string("Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]|$_usn3 Is Not Null).usn2!.#usn7!.`8esn`! Union All Unwind .1e1 Starts With $`7esn` As usn1 Detach Delete $usn1[$7..][$0..] Delete 0Xa Ends With #usn8 Ends With usn2,#usn8[3.9e-1.._usn3],_usn4 In `3esn` In 7.0e-0"), + octest:ct_string("Delete 123.654,$_usn4 =~`7esn` Remove Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]).#usn8? Create `7esn`=(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]}) Union All Create `6esn`=(((#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`3esn` {#usn8:`7esn` Is Null})-[@usn6?:@usn5]-(`4esn` :usn1{`1esn`:0X0123456789ABCDEF Contains 8.1e1}))),(($@usn6)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[#usn8?:#usn7|:`8esn` *..0X7]->(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999})) Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0).`5esn`?,.9e-1.`6esn`?,Any(_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]).usn1.@usn6?.#usn8! Delete 's_str' Ends With $usn1"), + octest:ct_string("With *,7.0e-0[3.9e-1..`1esn`] As `8esn`,$`6esn` In `2esn` Limit $`1esn` Starts With Count(*) Starts With $`8esn` Where 1.9e0 =~$`8esn` =~01234567 Return $``[7..] As #usn8 Merge #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})) On Match Set All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 999 =~0Xa =~9e0).`1esn`?.`2esn`? =()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] On Create Set Any(`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]).usn1!.``?.``? =false =~4.9e12,usn1 =7.0e-0[3.9e-1..`1esn`]"), + octest:ct_string("Detach Delete 1.9e0 Ends With 0Xa Ends With $12,.9e-12[9e1..8.1e1] Optional Match _usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))),`2esn`=(usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2}) Where `4esn` Is Not Null Is Not Null Union All Create (((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})))"), + octest:ct_string("Remove Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0).usn2!.``!.`3esn`?,(#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0).#usn7?.usn2?,`6esn`(Distinct 5.9e-12 Contains $`` Contains $`5esn`,.1e1 Ends With `2esn` Ends With $`1esn`).#usn7.#usn8!.usn1 Union Return Distinct *,All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1) =~_usn3(Distinct 5.9e-12[9e0..],$@usn5 Is Null),{_usn4:1.9e0 =~$`8esn` =~01234567}[All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Ends With [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|$999 Ends With .9e-12] Ends With [usn2 In .0e0[$`6esn`..] Where usn2 Ends With .0] Desc Skip $_usn3 Ends With Count(*) Ends With $`` Limit All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0)[..[@usn6 In 00 =~.9e-12 =~usn1 Where 0.0[$1000][3.9e-1]|$usn2 =~$`2esn` =~\"d_str\"]] Match (:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567}) Match ``=((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),(((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})))"), + octest:ct_string("Merge (usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]}) On Match Set `6esn`(010[@usn5..123.654],0X0123456789ABCDEF Contains $`6esn` Contains $123456789).usn1 =Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],`6esn` =Null[..07],Single(`5esn` In 12[0xabc..][$0..] Where .1e1 Starts With $7).@usn6?.`8esn` ={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) On Match Set #usn8+=_usn4[9e0..$#usn8],`2esn`+=$`2esn` Contains false Contains 123456789,`6esn`+=0x0 Contains $`1esn` Contains 0.0 Union All Remove _usn4:`5esn` Remove @usn6:usn1,Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $@usn6 Contains Count ( * )).`4esn`? Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12|.1e-1).`1esn`?,All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]).`7esn`!,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).usn1?"), + octest:ct_string("With Distinct _usn3[`2esn`..][0x0..] As usn1 Order By 01234567 Starts With `4esn` Starts With 10.12e12 Ascending,0Xa In 0.12 In $#usn7 Descending,$999 Is Not Null Desc Skip $@usn5 Ends With $@usn6 Ends With \"d_str\" Limit (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Union All Return Distinct *,Null[12e-12..] As _usn4,$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Create #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]})-[`3esn`? *..0xabc{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`}) Remove #usn7:`4esn`:`7esn` Union All Unwind `1esn`[9.1e-1] As #usn8"), + octest:ct_string("Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Remove All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`4esn`?.#usn7!,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|$_usn3 Is Not Null).`5esn`! Union All Create ((:_usn3:_usn3{usn1:.9e1[12]})),@usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Remove 8.1e1.#usn8,None(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null).`5esn`!,{`5esn`:_usn3 Starts With `2esn`,usn1:4.9e12[..Null]}.`5esn`!.@usn5!.usn2 Create ({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}) Union All Return *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn`"), + octest:ct_string("Remove `7esn`:`3esn` Union All Unwind Filter(`` In $_usn3 Is Not Null Where 7 Is Null Is Null) =~{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} As `2esn` Union Unwind .0 Is Null Is Null As _usn4 Remove usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4!,@usn6($`3esn`,$`1esn`[`3esn`..]).``?,`7esn`($`3esn` Ends With 010 Ends With $`7esn`,01234567[6.0e0][$usn2])._usn3!.@usn5.`5esn`? Match (:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]})"), + octest:ct_string("Return *,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] As `7esn` Skip Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12) In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null|.12e12[$12..4.9e12][11.12e-12..9e12]) In {`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``} Detach Delete .1e-1[@usn6..] Unwind 2.9e1[...9e-12][..0] As usn2 Union All Remove `4esn`(12e12 In $`` In 6.0e0,.9e1[#usn7..]).`5esn`?,@usn6:@usn6:_usn4 Delete 's_str' Ends With $usn1 Merge `1esn`=(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))) On Create Set `8esn`+=Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),`8esn`+=0.0 Is Not Null Is Not Null On Create Set `2esn` =$999[$usn1...0e0]"), + octest:ct_string("Match `7esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Return *,.9e0 Is Null As _usn4 Order By {`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-12 Is Not Null Is Not Null)..None(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)][[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']|12e12[..$`8esn`][...0e-0]]..`4esn`(_usn4 Is Not Null Is Not Null,_usn4['s_str'..])] Descending,.9e-12[0e0...9e-1] Asc Optional Match `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),((_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))"), + octest:ct_string("Remove _usn4:`5esn` Remove @usn6:usn1,Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $@usn6 Contains Count ( * )).`4esn`? Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12|.1e-1).`1esn`?,All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]).`7esn`!,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).usn1? Union Create ``=((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})),_usn3=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Remove {usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`}.`1esn`!.usn1!,(`2esn` :``:usn1)<-[`6esn`? *..0xabc{``:$_usn4[Null]}]->(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]}).#usn7?.`3esn` Unwind {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} As usn1 Union All Optional Match `8esn`=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Detach Delete (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)] Unwind 123.654 Starts With Count ( * ) As `5esn`"), + octest:ct_string("With Distinct $`2esn` Contains 123.654,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] As usn2,.9e-12[01][Count(*)] Order By (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] Ascending Skip $`3esn` Ends With 010 Ends With $`7esn`"), + octest:ct_string("Return *,.0e0 Is Null Is Null As _usn4,[_usn4 In Count(*)[9e1..][12e-12..] Where $_usn3[1e-1..]][[`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0]][None(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)] As `6esn` Skip 1000[..0e0][..$`6esn`] Limit usn1[..10.12e12][..7] Detach Delete {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} =~Filter(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]),2.9e1[0..$@usn5][`7esn`..$`1esn`],All(usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null])[``($_usn3[1e-1..],.12e12[Count(*)..])][None(_usn4 In Count(*)[9e1..][12e-12..] Where 123456789 Ends With _usn4)] Remove `3esn`($`5esn`[7..],9e-1[0X0123456789ABCDEF][0]).usn2,`6esn`(Distinct $_usn3 In 123.654 In $`8esn`,$@usn5[$#usn8..][_usn3..]).usn1?.`4esn`?.`8esn`?,`7esn`(Distinct $`3esn` =~4.9e12 =~$7,0xabc[$`4esn`..][`8esn`..]).`8esn`!.``?.#usn8! Union All Remove `3esn`($`5esn`[7..],9e-1[0X0123456789ABCDEF][0]).usn2,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 11.12e-12 Is Null Is Null).`6esn`?,{#usn8:_usn4 Ends With .0 Ends With 7,`6esn`:0X7 Starts With 1e1 Starts With $12}.@usn5! Create @usn5=(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}),#usn8=({_usn3:$`8esn` Is Null}) Create `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}))"), + octest:ct_string("With Distinct *,123.654,9e-1 Starts With 123.654 Starts With .9e1 As `6esn` Order By $`8esn`[.._usn4(Null[..07],123.654)] Desc Skip 123456789[\"d_str\"..] Where $`2esn` Contains false Contains 123456789 Match `3esn`=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) Where $usn1 Starts With 12 Starts With 12e12 Union Merge ((`6esn` :`7esn`)-[`7esn`?:`5esn`]->(#usn8 )<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})) On Match Set #usn8 =_usn4['s_str'..],`7esn` =$usn1[$12..] On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 Return Distinct $usn1 Is Not Null Is Not Null As `5esn`,#usn7 =~0.0 =~usn2 As _usn4 Skip _usn4 In `3esn` In 7.0e-0 Return Distinct *,true Is Null Is Null As _usn3 Order By 12e12 Is Not Null Desc,0.0[$1000][3.9e-1] Ascending Skip {`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]} =~[usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|.9e1[..`5esn`]] Limit .0e0 =~5.9e-12 =~`7esn` Union All Create `6esn`=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Create (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),`1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) Unwind {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null As ``"), + octest:ct_string("Unwind (:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )[{usn2:7.0e-0 =~$12 =~5.9e-12}..][Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)..] As `3esn` Union Match `5esn`=((`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]})-[:`6esn`|#usn7{usn1:$`2esn` Contains $1000,`7esn`:`7esn`[.1e1..][`8esn`..]}]-(#usn8 {`2esn`:usn2 Ends With .0})) Where 999 Starts With .9e12 Starts With 3.9e-1 Create (_usn4 :`7esn`{@usn6:.12e-12[999...12]}),_usn4=(({_usn3:$`5esn`[7..]})) Union All Return Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1]"), + octest:ct_string("Optional Match `5esn`=(((:@usn5{usn2:$usn1[$12..]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)<-[`8esn`?:`7esn`|@usn6 *..7]->(`5esn` {`2esn`:`1esn` =~0 =~_usn4}))),`3esn`=(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))) Union With Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],.0e0 In 10.12e12 In $`5esn` As #usn8,4.9e12[..Null] As `7esn` Skip $`1esn`[.9e0][$_usn3] Limit [`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] In Any(`7esn` In .12e12[Count(*)..] Where 0Xa[9e0]) In [usn2 In .0e0[$`6esn`..] Where .12e12[`7esn`][#usn8]|7 Is Null Is Null] Where Count(*)[.0e0] Detach Delete (`8esn` {`3esn`:#usn8[`2esn`]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null,Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null),9e-1 Starts With 123.654 Starts With .9e1"), + octest:ct_string("Detach Delete 12 Contains _usn3,$usn2[.12e12],$@usn5[$#usn8..][_usn3..] Remove All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`).`3esn`?._usn4!._usn4,Filter(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])._usn4? With (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7),Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),12.0 =~$@usn5 =~8.1e1 Order By Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] Ascending Limit $@usn6 Contains Count ( * )"), + octest:ct_string("Delete .1e-1[2.9e1..][12..],12e-12[..$7][..$0] Union Merge ((#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[`3esn`?:`5esn`]->(`2esn` )) On Match Set `7esn`+=$`` In $7 In 9e-1,usn1+=$12 Starts With 1e-1 Starts With $@usn5,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).`2esn`?.#usn8! =Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null Union Delete [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1) Ends With Filter(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7]),Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null,`3esn` Starts With 's_str' With Distinct *,Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As `5esn`,0xabc =~7.0e-0 =~4.9e12 Order By (#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Desc Where @usn6[.9e12..0e0]"), + octest:ct_string("Unwind [usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|`3esn` Ends With 010 Ends With 9.1e-1][(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})-[`7esn`?:`5esn`]->(#usn8 )..None(_usn4 In Count(*)[9e1..][12e-12..] Where 7 Contains $#usn7)] As `8esn` Return $`4esn` Contains $12 Contains .9e-1,.1e-1[@usn6..] As `4esn`,`2esn` =~usn1 As `6esn` Skip 0xabc[7.0e-0..][12e12..] Limit .12e12 =~$#usn7 Union All Detach Delete (`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})-[`6esn`? *123456789..0x0]->({`6esn`:$usn1 Starts With usn1 Starts With 1e-1,#usn8:$#usn7 Starts With 10.12e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}) Is Null,_usn4 Is Null Is Null Optional Match #usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})))"), + octest:ct_string("Delete `3esn` Ends With 010 Ends With 9.1e-1 Detach Delete 999[...12e12][..0] Delete .12e12[Count(*)..],123.654[...9e12][..#usn8],Null =~true =~.1e-1 Union Create `5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)),``=(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`` :@usn6:_usn4)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}) Union Merge _usn4=((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) Merge _usn4=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[@usn6?:`5esn`]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]})"), + octest:ct_string("Create @usn5=(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}),(((_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`1esn`{`7esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]}))) Merge usn1=(`5esn` :`1esn`)"), + octest:ct_string("Match ((_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})),#usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) With 1e-1 Starts With usn2 Starts With 12e-12 As _usn4 Order By 's_str'[0Xa..12e-12][.9e1..0xabc] Descending,{#usn7:01 Ends With \"d_str\",_usn4:`3esn` In 0X7}[All(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12])..Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]|999[..@usn5][..`1esn`])][Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1)..Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)] Descending Skip Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Limit 12e12 Is Null Is Null Where 9.1e-1 Is Null With Distinct *,0Xa Ends With #usn8 Ends With usn2 As `6esn` Union Merge _usn4=((`5esn` {`2esn`:`1esn` =~0 =~_usn4})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[usn2?{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3}]-(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))"), + octest:ct_string("Return Distinct *,9e1 Contains 4.9e12 Contains 123456789 As _usn4,01[..0Xa] Skip Count ( * )[12e12][$_usn4] Limit 999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] Create `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Create `7esn`=(`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Union With $`` In $7 In 9e-1,$@usn5[$#usn8..][_usn3..] As `8esn`,0xabc[7.0e-0..][12e12..] Limit Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 07[.0e0][3.9e-1]) Contains Extract(`` In $_usn3 Is Not Null) Return *,#usn8 In $#usn8 In \"d_str\",`` Is Not Null Is Not Null Order By `3esn`[`4esn`..Null][$usn1..`5esn`] Desc,`5esn` Contains `6esn` Asc,9e-12 In 5.9e-12 Asc Limit .1e1 Starts With 9e0 Union All Delete Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]),.9e1[Count(*)..$`3esn`] Return `5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]],Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null As usn2 Order By $@usn5[`8esn`..$#usn7] Asc Skip {`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])]"), + octest:ct_string("Optional Match ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})) Optional Match (:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}),((#usn8 :`3esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(:`6esn`:`3esn`{_usn3:Count ( * )[7]})) Where 010[9e0..9e1][$_usn4..$12] Unwind Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) As `5esn`"), + octest:ct_string("Merge ``=((#usn8 {_usn3:$_usn4 Contains .12e-12})) With 1000 In 123.654 In $`8esn`,[_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null,_usn4(0[true..$7]) =~Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`) =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0) As _usn3 Order By $_usn3 Contains 1e1 Contains .12 Asc,9e12 Asc,0e0[`3esn`..][.9e-1..] Descending Merge `8esn`=(`3esn` {`2esn`:01[1e-1]}) On Match Set [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12]].@usn6 =$`8esn`[.9e-1][_usn3] On Create Set usn2 =8.1e1 Is Null,`1esn` =$_usn4 Contains .12e-12 Union All Return Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] As `7esn`,12e12 Starts With `6esn` Starts With true As #usn8,$_usn4[1e-1..8.1e1][`1esn`..1.9e0] As `` Optional Match @usn6=(((@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[#usn7? *00..123456789]->(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}))),`4esn`=(((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Where 01[Count(*)..0e-0][7..$`2esn`] Union All Create ((:usn2{@usn6:`3esn` Ends With `6esn`,`1esn`:$`2esn` Starts With 0x0})<-[`4esn`]->(#usn7 :_usn3:_usn3)),`4esn`=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1}) Optional Match ``=((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})),(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}) Where 0[true..$7] Remove Extract(_usn3 In ``[$``..] Where 01234567 Ends With 2.9e1 Ends With 9.1e-1|$`3esn`).`6esn`.`1esn`!"), + octest:ct_string("Match `2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),usn2=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where 12 Contains usn2 Contains $usn2 Union Unwind 0Xa Contains $999 Contains 0Xa As _usn4 With All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Where .9e1 Contains Null Union All Unwind (:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] As `3esn`"), + octest:ct_string("Optional Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Where .0e0[1e1..][01234567..] Match (((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Union All Unwind 0x0 =~$7 =~Null As #usn7 Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`}))"), + octest:ct_string("Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),(usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1})"), + octest:ct_string("Remove usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4!,@usn6($`3esn`,$`1esn`[`3esn`..]).``?,`7esn`($`3esn` Ends With 010 Ends With $`7esn`,01234567[6.0e0][$usn2])._usn3!.@usn5.`5esn`? Unwind Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null As @usn5"), + octest:ct_string("With $`4esn` Contains $12 Contains .9e-1,.1e-1[@usn6..] As `4esn`,`2esn` =~usn1 As `6esn` Skip 0xabc[7.0e-0..][12e12..] Limit .12e12 =~$#usn7 Where Count ( * )[`7esn`..] Remove Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 01234567[6.0e0][$usn2]).`3esn`!.usn1! Return Distinct *,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null As usn2,1.9e0[$12][``] As `5esn`"), + octest:ct_string("Create #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Unwind Filter(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) Starts With All(`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]) Starts With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`) As `` Remove {`4esn`:$123456789[$_usn3..][$usn2..]}.usn1"), + octest:ct_string("Create #usn7=(`2esn` :``:usn1)-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}),#usn7=(`8esn` {``:$123456789[$_usn3..][$usn2..]}) Match `8esn`=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``]|`4esn` Starts With $_usn3 Starts With .9e-12].@usn5!._usn4?.`1esn`? Union All Unwind .12e12 =~$#usn7 As `7esn` Unwind `2esn`(Distinct) Starts With Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]) Starts With (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}) As _usn4 Create ((:_usn3:_usn3{usn1:.9e1[12]})),@usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Union Merge ((#usn8 :`3esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(:`6esn`:`3esn`{_usn3:Count ( * )[7]})) On Create Set `7esn` =`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)],@usn6(Distinct true Starts With 2.9e1 Starts With 9e1).@usn5.`2esn` =07[usn1..]"), + octest:ct_string("Delete Extract(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|Count(*) Is Not Null Is Not Null)[(_usn4 {#usn7:$`5esn` Is Null Is Null})-[_usn3:usn1|:#usn8 *07..]->(`4esn` :#usn8{#usn8:_usn4[7][8.1e1],#usn7:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})][Filter(`5esn` In 12[0xabc..][$0..] Where .12e-12[$@usn6..5.9e-12])],123.654 Merge (`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[_usn3:usn1|:#usn8 *07..]-({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}) On Match Set `6esn`:`6esn`:`3esn`,`8esn`:`7esn` On Match Set {#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}.`6esn`!.`3esn`! =5.9e-12[$`4esn`],_usn3:`2esn`:`8esn`,#usn7(0e0 Starts With $1000 Starts With `2esn`,Count ( * )[..`8esn`]).@usn5? =.0e0 =~5.9e-12 =~`7esn` With Distinct 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] Ascending,1e-1[..$`6esn`] Ascending Skip (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Where #usn7 Ends With $#usn7 Ends With #usn7 Union All Remove `5esn`(123456789 =~$`1esn` =~#usn7,$0[$`7esn`..$`3esn`]['s_str'...0]).#usn7?"), + octest:ct_string("Create ((`` :usn1)-[ *0..010]->(_usn4 :`5esn`)),(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) Union All Create (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Union All Remove None(_usn3 In ``[$``..] Where 0xabc[7.0e-0..][12e12..]).`3esn`.usn2?.@usn5!,Filter(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])._usn3? Create (usn1 :`2esn`:`8esn`)-[`7esn`?:`5esn`]->(`1esn` :`6esn`:`3esn`) Return 0 Ends With 2.9e1 Ends With 1000,$`` In $usn2,None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) Contains [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0] As @usn6 Skip usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})"), + octest:ct_string("Detach Delete 0Xa[$usn2..],$@usn5[...9e-1][..$usn1],12e12[..123456789][..false] Remove Filter(`7esn` In .12e12[Count(*)..] Where @usn5[$_usn3..]).usn2?,[`5esn` In 12[0xabc..][$0..] Where .12e12[$12..4.9e12][11.12e-12..9e12]|Count(*)[9e-12..0Xa][$123456789..0.0]].@usn5,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where #usn8[7..@usn5]).usn2? Union All Merge (_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ) Remove {#usn8:0xabc[7.0e-0..][12e12..],_usn3:#usn8 Starts With 11.12e-12 Starts With $`3esn`}.`4esn`!,{`3esn`:$@usn6 Is Not Null Is Not Null,@usn5:0X7[Count(*)][.9e0]}.`5esn`!.`3esn`!,All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]).@usn5!._usn4!.#usn8? Unwind false[12e-12..][usn1..] As `6esn` Union Create ((`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})<-[`8esn`?:`3esn`|:_usn3*..{@usn5:$0 Starts With 010}]-(`3esn` :@usn5)<-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(`1esn` )),(({`3esn`:.0e-0 Starts With $#usn7 Starts With _usn3,usn2:`6esn` In 9e-12})-[ *0..010]->(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})-[`5esn`:`2esn`|`7esn` *..0X7]-(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12}))"), + octest:ct_string("Delete {`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Union All Create @usn5=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Unwind 1.9e0 =~0x0 As @usn5 Create @usn5=(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}),#usn8=({_usn3:$`8esn` Is Null})"), + octest:ct_string("Create #usn7=((`4esn` {_usn3:@usn6 In 3.9e-1 In 9e-12})<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4)) Optional Match #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),`8esn`=(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})))"), + octest:ct_string("Return *,.12e-12 In 9e12 In 9e-12 As `5esn`,1e-1 Starts With usn2 Starts With 12e-12 As `` Order By 0[true..$7] Descending Skip (_usn4 :`2esn`:`8esn`)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})<-[`2esn`?:@usn5]-(`7esn` :usn1$`6esn`) =~(#usn8 {`3esn`:123456789 Contains .1e-1 Contains .12e12,`1esn`:$`3esn` =~4.9e12 =~$7})-[#usn7? *00..123456789]->(`8esn` :@usn5)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Union Optional Match (`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[_usn3:usn1|:#usn8 *07..]-({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}),`7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) Union All Delete Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]),.9e1[Count(*)..$`3esn`] Return `5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]],Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null As usn2 Order By $@usn5[`8esn`..$#usn7] Asc Skip {`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])]"), + octest:ct_string("Return Distinct ``[..$#usn7],$`6esn`[$`8esn`..][false..] As _usn3 Order By (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})[Extract(`` In $_usn3 Is Not Null Where _usn4[7][8.1e1])..None(usn1 In 7.0e-0[.._usn4][..0X7] Where .9e-1 =~.9e-1)] Desc Limit $0 In Count ( * ) In .1e1 Delete Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12),$usn2[4.9e12..false][.0e-0..00],usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) With *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Where Null[`2esn`..] Union All Merge ((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`3esn`? =0.12[3.9e-1],_usn4 =Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],[`` In $_usn3 Is Not Null Where 12 =~$@usn5|$`2esn` In 0X7 In 3.9e-1].`8esn`.`5esn`? =12e-12[9e0..1.9e0] On Create Set `1esn` =.1e-1[..12][.._usn4],_usn4 =usn2[..7.0e-0],`5esn` =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1} Unwind `2esn` Starts With 12 Starts With 10.12e12 As `5esn` Optional Match (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[:usn1|:#usn8]-(:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`}) Where 123456789 Contains .1e-1 Contains .12e12 Union Merge ((_usn4 )-[usn2?:@usn6|:_usn3]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`4esn`?:_usn3|`2esn`]-(`8esn` {``:$123456789[$_usn3..][$usn2..]})) On Create Set None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null).``.`1esn` ={@usn6:8.1e1[$`5esn`][0e0],`5esn`:$`8esn` Starts With `2esn`}[[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]],_usn3 =5.9e-12[9e0..]"), + octest:ct_string("Merge `7esn`=(@usn5 :usn1{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(@usn5 {#usn8:_usn3 Ends With 01 Ends With .1e-1}) With 12 Contains usn2 Contains $usn2 As ``,Count ( * )[12e-12] As #usn7 Skip .0 Union All Optional Match usn1=(@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),#usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Union Optional Match `2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Delete $@usn5 Is Null Is Null Unwind $`` Contains 00 Contains 123456789 As `4esn`"), + octest:ct_string("Optional Match `7esn`=({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}),`2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Delete 0X7 Starts With 1e1 Starts With $12,$#usn7 Is Not Null Is Not Null,{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null"), + octest:ct_string("Optional Match usn1=((`8esn` :_usn3:_usn3)<-[_usn4? *..7{#usn7:Count ( * )[7]}]->(`6esn` :`7esn`)<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)) Where .9e-12[_usn4..#usn8][9.1e-1..0.12] Remove None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 01 Ends With \"d_str\").@usn6?,`2esn`:_usn3:_usn3,{`7esn`:.1e1 Starts With $`7esn`}.`6esn`! Union Merge usn1=((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})) Remove {usn1:usn2[..7.0e-0]}.`2esn`.`2esn`?.usn1,(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6?,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e12 Is Not Null Is Not Null).#usn8? Union Remove Filter(usn2 In .0e0[$`6esn`..] Where $123456789 Is Not Null)._usn4.`1esn`!.`1esn`!,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`).`5esn`!.`7esn`,_usn3:#usn8 Unwind (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] As `2esn`"), + octest:ct_string("Return Distinct *,0 Starts With 0Xa Starts With $0 Skip Null Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null) Remove None(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]).#usn8,{@usn5:$`1esn` Starts With Count(*) Starts With $`8esn`}._usn3! Optional Match (`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Union All Detach Delete 123.654 In $`5esn` In 9e-1,999[..@usn5][..`1esn`],12.0[`8esn`] Delete {usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Delete 0X7[Count(*)][.9e0],`1esn` In 12e-12 In 1e-1,010 Union All Remove {@usn6:0X7 Starts With 1e1 Starts With $12}.#usn8?.usn1.@usn5!,Extract(usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|0e0 Ends With 1e1 Ends With 0Xa).``?,@usn5:`3esn`"), + octest:ct_string("Match (:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}) Delete (`8esn` :_usn3:_usn3{`6esn`:9e0[..1e1],@usn6:0x0 =~$7 =~Null})<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`8esn` *1000]->(usn1 :_usn4) In Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where ``[$``..]) In {usn2:.9e-1 Is Not Null Is Not Null},1e1 Starts With `8esn` Starts With .9e0 Match (((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) Union Remove {usn1:usn2[..7.0e-0]}.`2esn`.`2esn`?.usn1 With *,$12 Contains $#usn8 Contains 01 As usn1 Order By 0X7[`4esn`..][`3esn`..] Ascending,$#usn7 In .12e-12 Ascending,$`6esn` In `2esn` Ascending Where $0 =~01234567 Return *,`6esn`[010...9e-12] As `5esn`"), + octest:ct_string("Unwind $usn1 Is Null As `2esn` Unwind 0.0[$1000][3.9e-1] As #usn8 With 6.0e0 Is Null Is Null As @usn6 Limit Count ( * ) Starts With 10.12e12 Starts With `` Where `3esn`[3.9e-1..$`5esn`] Union All Remove None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`8esn`?.`3esn`?.@usn6?,Extract(`5esn` In 12[0xabc..][$0..] Where `7esn` Ends With 9e12).`8esn` Optional Match `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Where 0e0 Starts With $1000 Starts With `2esn` Match @usn6=(((`3esn` :`4esn`:`7esn`)<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(usn1 :`2esn`:`8esn`))) Union All Return Distinct Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,9e-1 Starts With 123.654 Starts With .9e1 As `6esn`,.9e0 Is Null Is Null Skip usn1(07 Ends With @usn6 Ends With _usn3,$`2esn` In 0X7 In 3.9e-1) Contains [`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|9e0 =~9e1 =~.12e12] Limit $7 Starts With Null Starts With `6esn`"), + octest:ct_string("Optional Match _usn4=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[@usn6?:`5esn`]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) Where Count(*)[.0e0..][#usn7..] Create @usn5=((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})-[`6esn`? *..0xabc{``:$_usn4[Null]}]->({usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`6esn` {_usn3:$_usn4 Contains .12e-12})) Union All With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Limit #usn7[10.12e12..][\"d_str\"..] Where 9e12[...12e12][..$`2esn`] Union Remove _usn3(Distinct Null =~true =~.1e-1).`7esn`? Return 10.12e12 Starts With .9e12 As #usn7,_usn4['s_str'..] As `2esn`,false[12e-12..][usn1..] Order By 123456789[Count ( * )..] Desc,``(Distinct `4esn`[$1000..$``][$_usn4..$_usn4],.1e-1 Starts With 1000 Starts With $`1esn`) In [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|`4esn` Starts With $_usn3 Starts With .9e-12] In {`6esn`:``[$``..]} Desc,[usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc Skip .1e-1 Is Null Limit All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0)[Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"])..Single(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1])][{usn1:9e-1 Starts With 123.654 Starts With .9e1,#usn8:$_usn4 Is Not Null}..(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})]"), + octest:ct_string("Match #usn8=((_usn4 {`3esn`:1.9e0 Ends With 0Xa Ends With $12,@usn5:.9e12 Is Not Null Is Not Null})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})) Delete $0[9e1],9e1 Contains 4.9e12 Contains .9e0 Merge ((`3esn` {#usn8:`7esn` Is Null})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})) On Create Set {`1esn`:$`1esn`[.9e0][$_usn3]}.`8esn`? =`1esn`[Count ( * )][5.9e-12],`8esn`+=123.654 Ends With Count(*) Union All Optional Match `3esn`=((@usn6 :`6esn`:`3esn`)<-[`1esn`? *0X0123456789ABCDEF..0{`4esn`:9e1 Ends With .9e0}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})),(((`3esn` {_usn4:$`2esn` Starts With 0x0})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})-[{usn1:$#usn8[...9e1]}]->({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null}))) Return *,#usn7 =~0.0 =~usn2 As `1esn` Order By Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]) Desc,$0[..0x0][..01234567] Ascending,`3esn`(Distinct 12 Ends With $7 Ends With $#usn8,$`` =~$_usn3) Contains _usn3(Distinct #usn8[..#usn7][..@usn6]) Contains Filter(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]) Asc"), + octest:ct_string("Return \"d_str\" Starts With `6esn` Starts With 1.9e0 As #usn8,Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]) Ends With usn2(0.0[$1000][3.9e-1],0e0[.12..][3.9e-1..]) Ends With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Skip $_usn4 =~$_usn4 =~2.9e1 With 0e0[`4esn`] As `6esn`,$_usn3 In $`7esn` In $`3esn` As `` Limit Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Where @usn5[...9e12] Remove All(`2esn` In .9e-12[0e0...9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4)._usn3!.`1esn`? Union All Unwind 11.12e-12 Is Null As usn1 Return *,_usn4(Distinct 1e-1 =~0.0 =~9.1e-1) =~None(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~(`2esn` {usn2:7.0e-0 Starts With $7 Starts With true})-[`2esn`:`5esn`{usn2:Count(*)[12..][0X0123456789ABCDEF..]}]-({_usn4:$`3esn` In 's_str' In $#usn7})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12}) As ``,`3esn` Ends With true Limit {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})"), + octest:ct_string("Create (:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Unwind 12e12 =~#usn7 =~.9e-1 As #usn8 Remove {#usn7:11.12e-12 Contains 9e-12}.`4esn`!.`7esn`!"), + octest:ct_string("Create ((:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})<-[_usn4:`6esn`|#usn7]-(`8esn` $12)) Union All Return Distinct *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Order By .9e-12[12e12][.0e0] Asc,0.0[4.9e12..][00..] Ascending,$`1esn` Starts With Count(*) Starts With $`8esn` Ascending Skip {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Count(*)[9e-12..0Xa][$123456789..0.0])..Any(`2esn` In .9e-12[0e0...9e-1] Where `3esn` Contains 01234567 Contains .9e-12)][All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e0 In 9.1e-1 In $123456789)..Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)] Unwind Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) As `6esn` Match `5esn`=(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}),((`6esn` :_usn4)<-[`7esn`*..]->(`` :@usn6:_usn4)-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Union All Remove (`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``!,usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4!"), + octest:ct_string("Remove None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 01 Ends With \"d_str\").@usn6?,`2esn`:_usn3:_usn3,{`7esn`:.1e1 Starts With $`7esn`}.`6esn`! Merge `5esn`=((`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]})-[:`6esn`|#usn7{usn1:$`2esn` Contains $1000,`7esn`:`7esn`[.1e1..][`8esn`..]}]-(#usn8 {`2esn`:usn2 Ends With .0})) On Match Set [_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8].`5esn`! ={_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12),#usn8 =(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] On Match Set {@usn5:12e-12 Contains .9e-1 Contains 9e-1}.``! =usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]),@usn6 =0.0 Is Not Null Is Not Null,[`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0]._usn3?._usn3? =.1e1 Starts With .1e-1 Unwind All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..] As ``"), + octest:ct_string("With Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)[{_usn3:$0 Starts With 010}] Order By 12e12 Is Not Null Desc,0.0[$1000][3.9e-1] Ascending Skip 's_str'[1e-1] Limit 1e1 In .1e-1 In .0 Where $@usn5 In .9e1 In $``"), + octest:ct_string("Return 00[$`6esn`] As `6esn`,Count ( * )[12e-12] As #usn7,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] Order By .9e1[Count(*)..$`3esn`] Asc Unwind true Starts With 2.9e1 Starts With 9e1 As _usn4"), + octest:ct_string("Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),`5esn`=(`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Where .9e-1 =~.9e-1 With Distinct _usn4 In `3esn` In 7.0e-0 As #usn7 Order By $`` Ends With 6.0e0 Descending,$1000[..01234567][..0X0123456789ABCDEF] Ascending Limit .1e-1[.9e12..usn2][`4esn`..$_usn3] Where $_usn4 Contains 123456789 Union Delete .1e-1[..12][.._usn4],[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]} Union Unwind $`` In $@usn6 In 3.9e-1 As _usn3"), + octest:ct_string("Merge `3esn`=((`7esn` :usn1)-[? *0X0123456789ABCDEF..0]-(:`8esn`:#usn7)<-[?:@usn6|:_usn3 *07..]-({_usn4:01234567[6.0e0][$usn2]})) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Union Return *,`2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,Null =~9e12 As #usn7 Order By .0e0[..12.0][...1e-1] Descending,5.9e-12 =~$@usn6 Asc"), + octest:ct_string("Unwind {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) As `5esn` Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),(usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}) Return Distinct ({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)[{``:.1e-1 Ends With $`8esn` Ends With .9e0,`7esn`:.9e-12 Is Not Null Is Not Null}][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])],Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) Union Optional Match `2esn`=((@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]}))"), + octest:ct_string("Create ((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Create `8esn`=((`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})),`7esn`=({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) Union With Distinct *,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Skip $_usn4[..usn2] Limit $`8esn` In 9e-12 In 3.9e-1 Detach Delete ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]),`2esn` Starts With 12 Starts With 10.12e12,.12e-12[07] Union All Remove {#usn7:.0e0[1e1..][01234567..],@usn5:`2esn` Is Not Null Is Not Null}.#usn8?.`7esn`?,`1esn`:``:usn1,$12.`8esn`!.usn2!._usn4"), + octest:ct_string("Unwind Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()] As `8esn` Delete \"d_str\"[12e12..][4.9e12..] Match `3esn`=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) Where $usn1 Starts With 12 Starts With 12e12 Union All Unwind #usn8[`2esn`] As _usn3 Merge (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}) On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1]"), + octest:ct_string("Merge (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) On Create Set Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])._usn3 =_usn4[7][8.1e1],#usn7+=Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()],`1esn`:#usn7:_usn3 Unwind 123456789[Count ( * )..] As `6esn` Union All Remove (usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2})-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12}).@usn5,count(Distinct $`6esn` In $`3esn` In 9e1,.9e1[12]).`4esn` Delete 1000[$#usn7][$``],$`5esn` Contains `2esn` Contains 9e1 Return $`7esn` Contains 0X7 As usn2,$`8esn` Starts With `2esn`"), + octest:ct_string("Remove All(`2esn` In .9e-12[0e0...9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4)._usn3!.`1esn`? Union All Delete .9e1 In 9e-1 In `4esn`,010[..@usn5][.._usn4] Match (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))),`2esn`=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))) Detach Delete Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null)[[`2esn` In .12e-12[$@usn6..5.9e-12] Where 00]][Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12])]"), + octest:ct_string("Match `3esn`=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) Where $usn1 Starts With 12 Starts With 12e12 Unwind $#usn8[...9e1] As `7esn` Optional Match `5esn`=(({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})-[:``|:`3esn` *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})),``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Where .9e-1 Contains .0e0 Contains usn1 Union All Unwind 9e-1 =~6.0e0 =~`` As _usn4 Merge `8esn`=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2})) On Match Set ``+=0.12['s_str'] With All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Union All Return 00[$`6esn`] As `6esn` Order By 10.12e12[Count(*)..] Descending,01[Count(*)..0e-0][7..$`2esn`] Desc,Count ( * ) Ends With `6esn` Ends With .12e12 Ascending Limit `3esn` In 0X7 With Distinct *,true Is Null Is Null As _usn3,All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn` Skip All(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Starts With Filter(_usn3 In ``[$``..] Where .0e0[1e1..][01234567..]) Starts With `3esn`(Distinct) Limit Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Where 123456789 Ends With _usn4"), + octest:ct_string("Delete #usn8(Distinct false[$1000..$@usn6][7..12],123456789 In 9e-12 In false) Starts With `4esn`(Distinct 0e0 Is Null Is Null),.0 Optional Match (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))),(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Where .9e1[Count(*)..$`3esn`] Union All Merge usn1=(:#usn7:_usn3{#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) On Match Set `7esn`+=$`` In $7 In 9e-1,usn1+=$12 Starts With 1e-1 Starts With $@usn5,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).`2esn`?.#usn8! =Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null"), + octest:ct_string("Create ((`3esn` {#usn8:`7esn` Is Null})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})),#usn7=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Optional Match `2esn`=(`` :usn2),((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})) Create ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?]->(:@usn5{usn2:$usn1[$12..]})) Union Optional Match usn1=((#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})<-[#usn8?{`3esn`:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7],@usn6:01[..0.12]}]-(`3esn` :_usn3:_usn3)),(((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}))) Union Merge ((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set @usn6+=123456789[Count ( * )..],`8esn`+=Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * ))[{`4esn`:12e-12 Starts With .9e12 Starts With 0.12}..(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})],#usn7+=12e-12 Starts With .9e12 Starts With 0.12 Merge `5esn`=((({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))) On Match Set Extract(`` In $_usn3 Is Not Null Where $_usn3 In 123.654 In $`8esn`|$`8esn`[$usn2..]).`6esn`!.``! =_usn4 In `3esn` In 7.0e-0 On Create Set {`1esn`:$`1esn`[.9e0][$_usn3]}.`8esn`? =`1esn`[Count ( * )][5.9e-12],`8esn`+=123.654 Ends With Count(*) Detach Delete 9e12[.0e-0],12.0[$1000..][123456789..],Extract(`` In 0.12[3.9e-1]|0X7 Starts With 1e1 Starts With $12)[`7esn`(9.1e-1 Contains 0xabc)..][Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3])..]"), + octest:ct_string("Remove count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0]).#usn8?.#usn8.`` Delete 10.12e12[..1.9e0][..Null] Remove [`2esn` In .9e-12[0e0...9e-1] Where $usn1 =~$999 =~$7].@usn5.``!.`6esn`!"), + octest:ct_string("Delete 0.0[0x0..0.12]['s_str'..false]"), + octest:ct_string("Unwind 00 Is Not Null Is Not Null As `2esn` Return Distinct $123456789[#usn8][.9e-12],All(`` In 0.12[3.9e-1] Where `7esn`)[(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(`4esn` :_usn3:_usn3)<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999})][`8esn`(#usn7 Ends With $#usn7 Ends With #usn7,7.0e-0[`6esn`..])] As `2esn`,.9e12[$usn2..][7..] As `2esn` Order By #usn8[..#usn7][..@usn6] Ascending,{#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}[{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}..] Ascending,.9e-1[12.0] Desc Skip Extract(`` In 0.12[3.9e-1]|0X7 Starts With 1e1 Starts With $12)[`7esn`(9.1e-1 Contains 0xabc)..][Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3])..] Limit false[$1000..$@usn6][7..12] Optional Match (_usn4 :``:usn1) Union All Merge (usn2 :@usn5{`3esn`:$usn1 Is Null})-[_usn3:`2esn`|`7esn`*..{#usn8:`1esn` =~0 =~_usn4,`2esn`:0e-0 In $1000 In .9e1}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}) On Create Set @usn5 ={``:`1esn` In 12e-12 In 1e-1,usn2:_usn3[`2esn`..10.12e12][9e1..true]}[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )]..][Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`])..],`6esn` =usn2['s_str'...9e-1][$7..Count ( * )] On Create Set None(`8esn` In 01234567[..0.0][..false] Where $_usn3 Contains 1e1 Contains .12).``.`8esn`? =8.1e1[$`5esn`][0e0] Return Distinct @usn6[.9e12] As ``,01234567 Starts With `4esn` Starts With 10.12e12 Order By $`7esn` Is Null Is Null Descending,Any(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1) Asc,#usn8[usn1] Asc Remove {_usn3:true[9e-12...0e-0][`5esn`.._usn4]}.usn1.`6esn`?.`2esn`,[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010].`5esn`!.`1esn`?,`7esn`(Distinct $usn2[1e-1])._usn3!.@usn5 Union Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) Where _usn3 Starts With `2esn`"), + octest:ct_string("Match ({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) Union All Merge ((usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]->(:usn1{usn1:Count(*)[0.12..2.9e1]})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})) On Match Set `6esn`:`6esn`:`3esn`,`8esn`:`7esn` On Match Set [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12]].@usn6 =$`8esn`[.9e-1][_usn3] Remove Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`8esn` Starts With `2esn`)._usn3?.#usn8 Union All Create `2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))),#usn7=(({`5esn`:8.1e1 Ends With $0 Ends With 6.0e0,@usn5:9e0[..1e1]})-[`5esn`?:`3esn`|:_usn3{`3esn`:1.9e0 Is Null Is Null,``:$usn2 Ends With `8esn` Ends With _usn3}]-(:``:usn1{_usn3:$#usn7[$_usn4..][.12e-12..],`1esn`:false})<-[`2esn`:`5esn`{usn2:Count(*)[12..][0X0123456789ABCDEF..]}]->(`1esn` {`5esn`:0X7[_usn4..1.9e0][Count ( * )..false],@usn5:123456789 Ends With _usn4}))"), + octest:ct_string("With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],.1e-1 Is Null,.9e12[$usn2..][7..] As `2esn` Limit _usn4 Is Null Is Null Where .12e-12 Ends With $`7esn` Union Create ((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1))),_usn4=((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) With Distinct *,0Xa Ends With #usn8 Ends With usn2 As `6esn` Delete #usn8(Distinct false[$1000..$@usn6][7..12],123456789 In 9e-12 In false) Starts With `4esn`(Distinct 0e0 Is Null Is Null),.0"), + octest:ct_string("Create _usn4=({usn1:usn2 Ends With 10.12e12}),`3esn`=(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))) Union All With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Order By 12.0[.._usn4][..0X7] Descending,`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Ascending Skip 's_str' Ends With 0.0 Ends With .12e12 With *,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2 Order By .1e-1 Contains 1e1 Contains $`6esn` Asc,(_usn4 {`3esn`:1.9e0 Ends With 0Xa Ends With $12,@usn5:.9e12 Is Not Null Is Not Null})<-[`2esn`{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-(`3esn` {`7esn`:9.1e-1 =~@usn5 =~Count ( * )})<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) In None(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]) In `7esn`(12 Ends With $7 Ends With $#usn8) Desc Skip \"d_str\" =~`5esn` =~.12e-12 Limit .9e12[..$usn1][..10.12e12] Where $`6esn`[$_usn4][01] Unwind .9e1 Contains Null As _usn3 Union Unwind Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) As _usn4 Remove ({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})<-[`3esn`?:`5esn`]->(`2esn` ).``!,$12.`8esn`!.usn2!._usn4,None(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]).`3esn`?.@usn6!._usn3! With Distinct *,$7 Contains _usn4 Contains $`1esn`,0e-0[$`2esn`][8.1e1] As @usn5 Order By 123456789[\"d_str\"..] Asc,9.1e-1[$`4esn`..][$`4esn`..] Ascending"), + octest:ct_string("Remove (`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}).#usn7? Merge ((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Match `7esn`=((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})),usn1=((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})) Where 1.9e0 Ends With Count ( * ) Ends With .12 Union Match ((_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})),#usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) With 1e-1 Starts With usn2 Starts With 12e-12 As _usn4 Order By 's_str'[0Xa..12e-12][.9e1..0xabc] Descending,{#usn7:01 Ends With \"d_str\",_usn4:`3esn` In 0X7}[All(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12])..Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]|999[..@usn5][..`1esn`])][Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1)..Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)] Descending Skip Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Limit 12e12 Is Null Is Null Where 9.1e-1 Is Null With Distinct *,0Xa Ends With #usn8 Ends With usn2 As `6esn` Union Merge ((`5esn` :`2esn`:`8esn`)<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})) On Match Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Remove (`` :@usn6:_usn4{`4esn`:00 Is Not Null Is Not Null})-[`1esn`:usn1|:#usn8]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}).`6esn`!.@usn5?._usn4?,@usn5:_usn4,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]).`2esn`!.`8esn`!._usn3!"), + octest:ct_string("Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set All(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null).usn1! =.12e12[`7esn`][#usn8],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `2esn` Starts With $`7esn` Starts With _usn4).`1esn`?.#usn8?.@usn6! =All(`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])[None(`` In $_usn3 Is Not Null)..][All(`8esn` In 01234567[..0.0][..false] Where .12e-12[$@usn6..5.9e-12])..] Union Optional Match @usn6=(((@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[#usn7? *00..123456789]->(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}))),`3esn`=((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Where .9e12 =~`5esn` =~07 Return ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]) Order By `2esn` Starts With 12 Starts With 10.12e12 Desc,0e0[..'s_str'] Descending Skip $`1esn` Starts With Count(*) Starts With $`8esn` Unwind 9e1 Is Not Null As #usn8"), + octest:ct_string("Return Distinct {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null),010 As ``,`1esn`[..0x0][..\"d_str\"] With *,{`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] As `2esn` Order By Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) Ascending Limit $_usn4[1e-1..8.1e1][`1esn`..1.9e0] Union All Merge (((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))),(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}) Where 01234567[6.0e0][$usn2]"), + octest:ct_string("Unwind $`` In $7 In 9e-1 As @usn5 Union All Unwind .9e0 Is Null Is Null As `5esn` Union Remove Any(`8esn` In 01234567[..0.0][..false] Where 12e-12 Contains .9e-1 Contains 9e-1).#usn7,{_usn3:$`8esn` Is Null}.usn2._usn4? Unwind $1000[.._usn3][..#usn7] As `5esn`"), + octest:ct_string("Delete {`3esn`:`1esn`[9.1e-1]} Ends With {`2esn`:7.0e-0[3.9e-1..`1esn`],`7esn`:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]} Ends With None(`5esn` In 12[0xabc..][$0..] Where 1e1 Starts With `8esn` Starts With .9e0),_usn3[$_usn3][usn1] Remove {_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null}._usn4!.`5esn`._usn3"), + octest:ct_string("Unwind $usn2[4.9e12..false][.0e-0..00] As `5esn` Merge _usn4=((`` :usn1)<-[``?:_usn3|`2esn` *0X0123456789ABCDEF..0{`5esn`:`4esn`[0.0..][.1e-1..]}]->({`7esn`:0[$`1esn`..`8esn`]})) On Create Set #usn7+=(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] On Match Set (@usn6 :usn1{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(`7esn` :`2esn`:`8esn`).`4esn`! =01[..0Xa],#usn7 =$999[.1e1..0.0],`3esn`+=Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null"), + octest:ct_string("Merge (`5esn` :`5esn`) On Create Set _usn3 =5.9e-12 Contains `3esn` Contains Null Unwind Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3) Starts With `2esn`(Distinct) Starts With (`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}) As `6esn` Create `5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})),(`1esn` :``:usn1{_usn4:.1e1 Is Null Is Null})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}) Union Create (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[{#usn8:.0e0[1e1..][01234567..],`6esn`:123.654 Ends With 0Xa Ends With .12e12}]-(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})"), + octest:ct_string("Return Distinct Null[`2esn`..] Order By Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null Descending Limit {_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Merge #usn8=(`6esn` :``:usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[_usn4:`6esn`|#usn7]-(`8esn` $12) On Match Set _usn4:#usn7:_usn3,Extract(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0|`6esn` In 9e-12)._usn4? =0Xa Ends With #usn8 Ends With usn2 Remove {usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}._usn4! Union Return *,#usn8 In $#usn8 In \"d_str\",`` Is Not Null Is Not Null Order By `3esn`[`4esn`..Null][$usn1..`5esn`] Desc,`5esn` Contains `6esn` Asc,9e-12 In 5.9e-12 Asc Limit .1e1 Starts With 9e0 Unwind `4esn`(Distinct `1esn`[..0x0][..\"d_str\"],false[..12e-12][...9e1]) Is Null Is Null As `3esn` Merge #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})) On Match Set All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 999 =~0Xa =~9e0).`1esn`?.`2esn`? =()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] On Create Set Any(`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]).usn1!.``?.``? =false =~4.9e12,usn1 =7.0e-0[3.9e-1..`1esn`] Union All Detach Delete Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null)[[`2esn` In .12e-12[$@usn6..5.9e-12] Where 00]][Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12])] Delete Null Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null),None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4),$usn1 Starts With 00 With Distinct *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Order By .9e-12[12e12][.0e0] Asc,0.0[4.9e12..][00..] Ascending,$`1esn` Starts With Count(*) Starts With $`8esn` Ascending Skip {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Count(*)[9e-12..0Xa][$123456789..0.0])..Any(`2esn` In .9e-12[0e0...9e-1] Where `3esn` Contains 01234567 Contains .9e-12)][All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e0 In 9.1e-1 In $123456789)..Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)] Where .0 Is Null Is Null"), + octest:ct_string("Unwind {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null As `5esn` Union Create (`1esn` :`5esn`)-[:#usn8|:`4esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}]-(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}),_usn4=(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}) With Distinct *,.0e-0[0e0..00][.9e1..12] Order By 4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Ascending Skip 0x0 Starts With $`5esn` Starts With 9e-12 Detach Delete #usn7 Ends With Count ( * ) Ends With @usn6,Extract(usn2 In .0e0[$`6esn`..] Where 010|0e-0 Contains _usn4 Contains 1e-1)[{#usn7:_usn4 Ends With .0 Ends With 7,#usn8:`` Ends With .9e-1 Ends With 9e-12}],`5esn` Contains 1.9e0 Contains 9e0 Union With *,{`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As #usn7,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Limit [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]][{`2esn`:$`8esn` In 9e-12 In 3.9e-1}..{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}][Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..])..Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Merge (((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))) On Create Set `7esn` =$`7esn` Is Null Is Null,Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1]|12 Contains usn2 Contains $usn2).usn2? =`1esn` Ends With 7.0e-0 Ends With $usn1,None(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12)._usn4 =.1e-1[@usn6..]"), + octest:ct_string("Create (:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}) Delete 12.0[$1000..][123456789..] With Distinct 11.12e-12 =~{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]} =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|0[..$@usn5]),$123456789 Is Not Null,1000 Starts With 11.12e-12 Starts With 01234567 Skip 12 In 1000 In \"d_str\" Limit All(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])[..(:_usn4{`4esn`:9e1 Contains 4.9e12 Contains .9e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})][..(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)<-[?{_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})] Where 12.0 Contains $_usn4 Contains $usn2 Union Unwind 123456789[Count(*)] As usn1"), + octest:ct_string("Optional Match (`` :`3esn`)-[@usn6:#usn7|:`8esn` *0Xa..7]-(:`2esn`:`8esn`{`6esn`:7.0e-0 Is Null Is Null,`6esn`:999[0.12..8.1e1]})<-[`8esn` *1000]->(#usn8 ),`1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) Where 0Xa In 0.12 In $#usn7 Remove {#usn8:_usn4 Ends With .0 Ends With 7,`6esn`:0X7 Starts With 1e1 Starts With $12}.@usn5!,Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`).`6esn` Return *,`3esn` Contains 01234567 Contains .9e-12 Skip Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]) In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )] In `8esn`(Distinct $_usn3 Contains 1e1 Contains .12) Limit $1000 Union Merge ((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) On Create Set #usn7+=$#usn7 Starts With #usn7,_usn3 =`5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]],`8esn` =07 Ends With @usn6 Ends With _usn3 On Match Set #usn7+=10.12e12[Count(*)..],#usn8 =@usn6[.9e12..0e0] Optional Match @usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),`3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})) Union All Detach Delete {#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}[{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}..] Merge #usn7=((:`4esn`:`7esn`{`7esn`:9e-12 In usn2,usn2:0x0[`5esn`][$`5esn`]})) On Create Set _usn4+=\"d_str\"[$123456789..][0X7..],[`8esn` In 12.0 Contains $_usn4 Contains $usn2].`1esn`? =None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567) Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1) Starts With (:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Create Set _usn3:#usn7:_usn3 Optional Match usn1=(:`3esn`{_usn4:7.0e-0 =~$12 =~5.9e-12}) Where $12 Contains $`7esn` Contains .0"), + octest:ct_string("Create `3esn`=(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`),(((:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]})-[`8esn` *..7{usn2:12.0 Contains $_usn4 Contains $usn2}]-(`8esn` :`7esn`{`6esn`:_usn4 Is Not Null Is Not Null})))"), + octest:ct_string("Return Distinct *,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"] Starts With ``(12.0[`8esn`],4.9e12 In 5.9e-12 In .9e0) Starts With Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]),$12 Contains $#usn8 Contains 01 Unwind 9e12[.0e0..] As `5esn` Match ``=((@usn6 :`5esn`{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *0x0..{`3esn`:12[0xabc..][$0..],@usn5:`6esn` Is Not Null Is Not Null}]->({#usn8:7.0e-0[3.9e-1..`1esn`],usn1:.0e0[..1e1][..$1000]})-[:`4esn`|:@usn5 *01234567$_usn4]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})),(((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))) Union Merge _usn4=((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Match Set Extract(`` In $_usn3 Is Not Null Where $_usn3 In 123.654 In $`8esn`|$`8esn`[$usn2..]).`6esn`!.``! =_usn4 In `3esn` In 7.0e-0"), + octest:ct_string("Remove `6esn`($12 Contains $#usn8 Contains 01).`3esn`?.@usn6?,Single(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1).#usn8!,{@usn5:$`5esn` Is Null Is Null,#usn8:$@usn5[..1e-1]}.`5esn`!.usn1 Create `5esn`=(`5esn` :`1esn`),(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))) Merge `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})) Union Return *,`3esn` Contains 01234567 Contains .9e-12 Skip Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]) In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )] In `8esn`(Distinct $_usn3 Contains 1e1 Contains .12) Limit $1000 Unwind $`6esn` In `2esn` As _usn4"), + octest:ct_string("Return *,`8esn` Is Null As `1esn` Union All Merge `6esn`=((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) On Create Set `2esn`+=Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],#usn8 =.9e-12[0e0...9e-1] Union Merge (`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[_usn3:usn1|:#usn8 *07..]-({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}) On Create Set `2esn` =$999[$usn1...0e0] On Match Set All(`` In $_usn3 Is Not Null Where $`` =~$_usn3).`3esn`? =$`8esn`[$usn2..] Return Distinct 7.0e-0 Is Null Is Null,0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7] As `5esn`,usn1(Distinct true Starts With 2.9e1 Starts With 9e1)[Extract(usn2 In .0e0[$`6esn`..] Where 9.1e-1[Count(*)..][5.9e-12..]|.0e0[$`1esn`][.9e-12])..][Extract(`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6|$_usn4 Contains 123456789)..] Skip (`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :``:usn1{usn2:12.0[..123456789][..01]}) Contains {`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12} Contains {`7esn`:`3esn` Starts With _usn4} Limit {@usn5:.0 Is Null Is Null}[Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0|01 Ends With \"d_str\")][[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|0X0123456789ABCDEF[1.9e0]]] Delete ``(0X0123456789ABCDEF Contains 8.1e1,Count ( * )[..123456789][...0e0])[..All(usn2 In .0e0[$`6esn`..] Where .0e0 In 10.12e12 In $`5esn`)][..(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})],All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)],`2esn` Starts With $`7esn` Starts With _usn4"), + octest:ct_string("With _usn4 In `3esn` In 7.0e-0,`7esn` Is Not Null Is Not Null,`8esn` As usn2 Order By [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null Ascending,$usn1[$usn1..] Descending,9e-12 In 0X0123456789ABCDEF In $999 Descending Remove ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(usn1 :usn1)<-[@usn5?:`8esn`|:`2esn` *0..010]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}).`5esn`!.usn2!.`1esn`! Match (`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Union All With {usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])],@usn5 Ends With 's_str' Ends With 01 As `7esn` Limit 1000[_usn3..`8esn`] Remove [`` In 0.12[3.9e-1] Where 07 =~7.0e-0 =~`8esn`].`8esn`"), + octest:ct_string("Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Unwind {@usn6:\"d_str\" =~9e-12 =~`5esn`}[#usn8(Distinct 999 Starts With .9e12 Starts With 3.9e-1,true Contains 0x0)..[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010]][All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)..{`4esn`:0 Starts With 0Xa Starts With $0}] As `8esn` Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Where $`6esn` Starts With `4esn`"), + octest:ct_string("Unwind Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] As `` Union Match `3esn`=((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})),_usn4=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[@usn6?:`5esn`]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) Union All Unwind .9e12 =~`5esn` =~07 As `5esn` Remove Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2|0e-0[...9e12]).@usn5?,All(`` In 0.12[3.9e-1]).#usn8!.@usn5!.`2esn`!,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7).``!.`7esn`?.`6esn`! Optional Match `5esn`=((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]})),@usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))) Where $@usn5 In .9e1 In $``"), + octest:ct_string("Unwind $123456789 Starts With Count ( * ) As `8esn`"), + octest:ct_string("Return Distinct `2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,1e1 In .1e-1 In .0 Order By Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) Asc Skip 00 =~.9e-12 =~usn1 Limit 12e12 Ends With usn1 Union With Distinct $`` In $@usn6 In 3.9e-1 As usn1 Order By (:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] Desc,[`2esn` In .12e-12[$@usn6..5.9e-12] Where $`6esn` Starts With `4esn`|@usn6 In 's_str'] Ends With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Asc,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]) Descending Skip Null[..123456789][..`8esn`] Where $`8esn`[$``..$`1esn`][9e-12..$7] With Distinct *,Count(*)[..Count(*)][..9e0] Order By 07 Starts With usn1 Starts With 010 Ascending,7.0e-0[..$`7esn`][..Null] Descending,$usn2[8.1e1...9e-1][.1e-1..11.12e-12] Desc Skip Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] Limit 999 Ends With $123456789 Ends With $_usn4 Where 10.12e12[Count(*)..] Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By $7 In .9e1 In $`` Desc,$`6esn` Starts With `4esn` Descending,8.1e1 Starts With .9e12 Starts With `7esn` Desc Skip 12.0 Is Null Is Null Union Delete .9e12 Starts With .9e12 Starts With `7esn`,$#usn7 Is Not Null Detach Delete .0e-0[3.9e-1][.12e12] Merge ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})) On Create Set @usn5+=_usn4 Ends With .0 Ends With 7,None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0e-0 Contains _usn4 Contains 1e-1).`6esn`! =Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) On Create Set [_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8].`5esn`! ={_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12),#usn8 =(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..]"), + octest:ct_string("Optional Match `7esn`=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}),((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Where .0e0 Is Null Is Null Union Delete Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),usn2 =~`7esn` =~11.12e-12,1.9e0[$12][``]"), + octest:ct_string("Unwind 0e0 In 1e1 In 8.1e1 As #usn8 Optional Match `3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where .12e-12[$@usn6..5.9e-12]"), + octest:ct_string("Unwind @usn5 Ends With 's_str' Ends With 01 As `7esn` With .9e0 Is Null Is Null As #usn7,$12[`1esn`][1e1] As @usn6,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2 Order By 9e-1 =~6.0e0 =~`` Descending,999[0.12..8.1e1] Ascending Limit (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null Where .9e1[...12e12] With 1e-1 =~0.0 =~9.1e-1 As usn1,Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null,Count(*) In .9e-12 In $usn1 As _usn4 Order By $`7esn`[..12.0][..0e0] Asc,.9e0[$7][1e1] Descending,8.1e1[usn2..$1000][$7..0x0] Descending Skip Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] Limit `1esn`[11.12e-12..] Where $`2esn` Contains false Contains 123456789 Union Delete [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..],.12e12 Starts With 0xabc Starts With 12.0,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..]|$`5esn` Starts With 0X7 Starts With 1e1) Is Null Is Null Create (usn1 :`2esn`:`8esn`)-[`7esn`?:`5esn`]->(`1esn` :`6esn`:`3esn`)"), + octest:ct_string("Optional Match `7esn`=((`7esn` {`3esn`:.9e-1 Is Null})<-[`2esn`? *..7]->(#usn8 {_usn3:$_usn4 Contains .12e-12})) Merge (usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2}) Delete $usn1[$7..][$0..]"), + octest:ct_string("Return *,$12[.9e-1] As `6esn`,`6esn`[010...9e-12] As `5esn` Order By 123456789[\"d_str\"..] Descending,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending,12e-12[`7esn`..][5.9e-12..] Asc Create ((`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})<-[`8esn`?:`3esn`|:_usn3*..{@usn5:$0 Starts With 010}]-(`3esn` :@usn5)<-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(`1esn` )) Remove Filter(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]).``,{@usn5:6.0e0 Is Not Null}.usn1"), + octest:ct_string("Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Optional Match `7esn`=((#usn7 )) Where 0.12[07..3.9e-1] Unwind 0X0123456789ABCDEF Contains $`6esn` Contains $123456789 As usn2 Union Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Optional Match `7esn`=((#usn7 )) Where 0.12[07..3.9e-1] Unwind 0X0123456789ABCDEF Contains $`6esn` Contains $123456789 As usn2 Union All Delete All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)],#usn7[10.12e12..][\"d_str\"..],(#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Unwind 123456789 Contains .1e-1 Contains .12e12 As `6esn`"), + octest:ct_string("Create #usn8=(usn1 :_usn3:_usn3) Remove `3esn`($`5esn`[7..],9e-1[0X0123456789ABCDEF][0]).usn2,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 11.12e-12 Is Null Is Null).`6esn`?,{#usn8:_usn4 Ends With .0 Ends With 7,`6esn`:0X7 Starts With 1e1 Starts With $12}.@usn5! Union Unwind {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null As `` Remove (`8esn` {`3esn`:#usn8[`2esn`]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1).`1esn`!.`5esn`?.@usn5! Union All Remove Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]).`2esn`,All(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]).`3esn`._usn3!,Single(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]).`3esn`.`7esn` Delete 123.654 Ends With 0Xa Ends With .12e12,0X7[$7..] With $_usn3 In 123.654 In $`8esn` As `2esn`,@usn5[$_usn3..],.1e-1 Contains 1e1 Contains $`6esn` As `5esn` Order By $usn1 Contains `7esn` Contains .9e12 Ascending,8.1e1 Ends With $0 Ends With 6.0e0 Descending,9e12[...12e12][..$`2esn`] Descending Limit `3esn`[`4esn`..Null][$usn1..`5esn`]"), + octest:ct_string("Create `8esn`=(({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),usn1=((@usn5 :usn1{usn1:.9e1[12]})) Delete Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null)[#usn7(`4esn`[0.0..][.1e-1..])..@usn6(_usn4 Is Not Null Is Not Null)],[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12]][None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null)..[`5esn` In 12[0xabc..][$0..] Where .12e12[$12..4.9e12][11.12e-12..9e12]]] Remove .12e-12.`2esn`"), + octest:ct_string("Remove {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}.usn2!,{``:7.0e-0 Is Null Is Null,@usn5:9e-12[$0][$`4esn`]}.`1esn`?.`3esn` With _usn3[`2esn`..][0x0..] As usn1 Order By 01234567 Starts With `4esn` Starts With 10.12e12 Ascending,0Xa In 0.12 In $#usn7 Descending,$999 Is Not Null Desc Skip $@usn5 Ends With $@usn6 Ends With \"d_str\" Limit (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Where 11.12e-12 =~$`4esn` =~.12e12 Return Distinct *,9e0[.0e-0] As _usn4 Skip 0X7[`4esn`..][`3esn`..] Union All Optional Match ((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})),(((`2esn` :`6esn`:`3esn`{@usn5:Count(*)[.0e0]})-[usn1?:usn1|:#usn8*..]-(`7esn` {`3esn`:.9e-1 Is Null})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))) Where 0x0 =~$7 =~Null Merge `1esn`=(((`8esn` {@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})-[`3esn`?:`2esn`|`7esn`*..]-(:_usn4)<-[``?:#usn8|:`4esn`]-(:usn1{@usn5:Count(*)}))) On Create Set All(_usn4 In Count(*)[9e1..][12e-12..] Where #usn8[7..@usn5]).`2esn`?.#usn7!.#usn7 =_usn4 Ends With .0 Ends With 7 On Match Set _usn3+=`1esn` =~0 =~_usn4,`3esn` =`5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]] Remove {_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}.`1esn`"), + octest:ct_string("Create _usn3=(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Unwind 0x0[01234567..'s_str'] As `` Create ((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Union Unwind .0 Is Null Is Null As _usn4 Remove usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4!,@usn6($`3esn`,$`1esn`[`3esn`..]).``?,`7esn`($`3esn` Ends With 010 Ends With $`7esn`,01234567[6.0e0][$usn2])._usn3!.@usn5.`5esn`? Match (:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}) Union Remove Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12).`5esn`? Merge usn2=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}) Merge _usn4=(({_usn3:$`5esn`[7..]}))"), + octest:ct_string("Detach Delete 9e-12 In usn2 Unwind [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) As usn1 Return Distinct Null[.12e-12] As #usn7 Order By {`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] Descending,[_usn4 In Count(*)[9e1..][12e-12..] Where $_usn3[1e-1..]][[`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0]][None(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)] Ascending,(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[`7esn`?]->(`5esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(#usn8 {_usn3:$_usn4 Contains .12e-12}) Ends With `4esn`($usn2 In usn1 In 1e-1,01[Count(*)..0e-0][7..$`2esn`]) Desc Skip 12e12 Is Not Null Limit 0x0 =~$7 =~Null Union All Create #usn8=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]}))"), + octest:ct_string("Detach Delete 0e0 Ends With 0X7 Ends With .1e1,0[true..$7],[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null Create @usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),`5esn`=(((:@usn5{usn2:$usn1[$12..]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)<-[`8esn`?:`7esn`|@usn6 *..7]->(`5esn` {`2esn`:`1esn` =~0 =~_usn4}))) Unwind Filter(`` In $_usn3 Is Not Null Where 7 Is Null Is Null) =~{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} As `2esn` Union All Return Distinct *,`7esn` Ends With `7esn` Ends With $`3esn` Order By `1esn`[11.12e-12..] Asc Limit All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1) =~_usn3(Distinct 5.9e-12[9e0..],$@usn5 Is Null)"), + octest:ct_string("Match #usn7=(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[?{#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0}]-({`6esn`:07 Ends With @usn6 Ends With _usn3}) Where $`5esn`[true] Create ({`5esn`:07 Starts With usn1 Starts With 010})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}),({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) Union All Create @usn5=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Unwind 1.9e0 =~0x0 As @usn5 Create @usn5=(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}),#usn8=({_usn3:$`8esn` Is Null})"), + octest:ct_string("Unwind @usn5 In $1000 In 07 As #usn7 Union All Merge (_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ) On Create Set `2esn`+=Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],#usn8 =.9e-12[0e0...9e-1] On Create Set ``+=.1e1[..0][..010],`1esn` ={`8esn`:$`` Is Null Is Null}[Extract(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..])..][Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)])..],`4esn` =#usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null"), + octest:ct_string("Merge `8esn`=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2})) On Create Set `3esn` =.9e-12[9e1..8.1e1],Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]).#usn7.@usn6._usn3! =$`8esn`[.9e-1][_usn3] On Create Set [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]].`8esn`.@usn6? =07[..@usn6][..$`4esn`],Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]).`3esn` =Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07),usn1:`8esn`:#usn7 Merge #usn7=((:`4esn`:`7esn`{`7esn`:9e-12 In usn2,usn2:0x0[`5esn`][$`5esn`]})) On Create Set `2esn` =(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)],`3esn` =9e1 Contains 4.9e12 Contains 123456789 On Create Set `6esn` =.1e1 =~10.12e12 Union All Create (`1esn` :`6esn`:`3esn`) Detach Delete 0Xa Starts With .0,$`1esn`[.9e0][$_usn3],$`2esn`[8.1e1] Remove [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]].usn2,Extract(usn2 In .0e0[$`6esn`..] Where $123456789 =~12 =~7).`4esn`.`2esn`!.@usn6!"), + octest:ct_string("Delete .1e-1 Ends With $_usn3,.0e0[8.1e1..0.12]"), + octest:ct_string("Return Distinct $usn1 Is Not Null Is Not Null As `5esn`,#usn7 =~0.0 =~usn2 As _usn4 Skip _usn4 In `3esn` In 7.0e-0"), + octest:ct_string("With Distinct $`` In $@usn6 In 3.9e-1 As usn1 Order By (:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] Desc,[`2esn` In .12e-12[$@usn6..5.9e-12] Where $`6esn` Starts With `4esn`|@usn6 In 's_str'] Ends With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Asc,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]) Descending Skip Null[..123456789][..`8esn`] Where $`8esn`[$``..$`1esn`][9e-12..$7] With Distinct *,Count(*)[..Count(*)][..9e0] Order By 07 Starts With usn1 Starts With 010 Ascending,7.0e-0[..$`7esn`][..Null] Descending,$usn2[8.1e1...9e-1][.1e-1..11.12e-12] Desc Skip Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] Limit 999 Ends With $123456789 Ends With $_usn4 Where 10.12e12[Count(*)..] Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By $7 In .9e1 In $`` Desc,$`6esn` Starts With `4esn` Descending,8.1e1 Starts With .9e12 Starts With `7esn` Desc Skip 12.0 Is Null Is Null Union Optional Match (({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) Union Optional Match `2esn`=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))),((`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010})) Where `` Contains 12.0"), + octest:ct_string("With Distinct $``[7..] As #usn8 Order By All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Desc,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] Ascending,.9e0 In 9.1e-1 In $123456789 Desc Where $`1esn`[`3esn`..] With Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]) As #usn7,Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]) As usn2 Where #usn7[..0X0123456789ABCDEF] Union All With Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]) As #usn7,$@usn5[..1e-1] As @usn5 Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,12e12[..2.9e1][...12e12] Asc Skip $_usn4 Is Not Null Where `4esn`[$1000..$``][$_usn4..$_usn4]"), + octest:ct_string("Unwind $`` =~$_usn3 As @usn5 Union All Unwind .9e1 Contains `8esn` As `1esn` Union All Create ((usn1 :usn2{``:$`` Is Not Null})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})),((`7esn` {usn2:12.0[..123456789][..01]})-[_usn3{#usn7:Count(*)}]->(`2esn` :_usn3:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``}))"), + octest:ct_string("Return Distinct 0[..$@usn5] As `` Skip $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Limit 1e1 Is Not Null Is Not Null"), + octest:ct_string("With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2 In usn1 In 1e-1) =~{#usn8:00[0e-0...9e-1][1e-1..``]} As #usn8,$@usn5[$#usn8..][_usn3..] As `8esn`,1.9e0 Starts With 's_str' Starts With 9.1e-1 As _usn4 Where 's_str' Is Null Delete {@usn6:\"d_str\" =~9e-12 =~`5esn`}[#usn8(Distinct 999 Starts With .9e12 Starts With 3.9e-1,true Contains 0x0)..[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010]][All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)..{`4esn`:0 Starts With 0Xa Starts With $0}] Unwind $12[.9e-1] As @usn5 Union All Optional Match `2esn`=(((usn2 {_usn4:$999 Ends With .9e-12})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]}))),(((`5esn` :`2esn`:`8esn`)-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(`3esn` {_usn4:$`2esn` Starts With 0x0}))) Where _usn4 Ends With .0 Ends With 7 Remove Any(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`).`2esn`?.`6esn`,All(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count ( * ) Ends With `6esn` Ends With .12e12).@usn5.#usn7!.@usn6! Unwind All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) As `1esn`"), + octest:ct_string("With Distinct *,false[$1000..$@usn6][7..12],.0e0[8.1e1..0.12] Where $`3esn` Is Not Null Is Not Null Union All Unwind 12[0..usn2] As `7esn` Union Optional Match @usn5=((@usn6 :`6esn`:`3esn`)<-[`6esn`? *..0xabc{``:$_usn4[Null]}]->(:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Where .12e12[`7esn`][#usn8] Match @usn6=(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]}),`8esn`=(`` {_usn4:9e0[..1e1]}) Delete None(_usn3 In ``[$``..] Where .0e0 In 10.12e12 In $`5esn`) Is Null Is Null,@usn5 Is Null Is Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})"), + octest:ct_string("Detach Delete 9e12[.0e-0],12.0[$1000..][123456789..],Extract(`` In 0.12[3.9e-1]|0X7 Starts With 1e1 Starts With $12)[`7esn`(9.1e-1 Contains 0xabc)..][Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3])..] Remove All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]).@usn5!._usn4!.#usn8? Union All Remove @usn5().@usn5,5.9e-12.``!.`6esn`!,Extract(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]).usn1"), + octest:ct_string("Create `6esn`=(((#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`3esn` {#usn8:`7esn` Is Null})-[@usn6?:@usn5]-(`4esn` :usn1{`1esn`:0X0123456789ABCDEF Contains 8.1e1}))),(($@usn6)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[#usn8?:#usn7|:`8esn` *..0X7]->(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999})) Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0).`5esn`?,.9e-1.`6esn`?,Any(_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]).usn1.@usn6?.#usn8! Delete 's_str' Ends With $usn1 Union Create ``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Remove Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1).`1esn`?.``.usn1,Single(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1])._usn3.`2esn`,_usn3(.12[.0e-0..],1000[Null..]).#usn7 Delete .9e12 Is Not Null Is Not Null Union All Match `7esn`=((`8esn` {@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})),({usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))"), + octest:ct_string("Remove All(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null).`3esn`!.`4esn`? Remove None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).``.`3esn`? Union Remove count().`1esn`!._usn4?.`7esn`!,None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12).@usn5!.`2esn`!,[`5esn` In 12[0xabc..][$0..] Where $usn2[0e0][$7]|Count ( * )[`7esn`..]].``._usn4!.`5esn`"), + octest:ct_string("Merge (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))) On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 Union All With Distinct *,Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null,$`7esn` Contains 0X7 As usn2 Order By Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Limit All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..])[`8esn`()] Where #usn7[10.12e12..][\"d_str\"..] Return $`7esn` Contains 0X7 As usn2,$`8esn` Starts With `2esn` Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})),((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3))"), + octest:ct_string("Unwind 0e0 Ends With `7esn` Ends With usn1 As #usn7 Return Distinct {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As ``,$`8esn`[12.0..][4.9e12..],.1e-1 Ends With @usn6 As @usn6 Order By false Starts With 3.9e-1 Asc,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Descending With *,#usn7[12e-12..][$`2esn`..] As @usn6,$`` Contains 00 Contains 123456789 As `3esn` Limit All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0)[Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"])..Single(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1])][{usn1:9e-1 Starts With 123.654 Starts With .9e1,#usn8:$_usn4 Is Not Null}..(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})]"), + octest:ct_string("Unwind usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]) As usn2 Return Distinct {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null),010 As ``,`1esn`[..0x0][..\"d_str\"] Optional Match (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Where 999[0.12..8.1e1] Union With *,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"] Starts With ``(12.0[`8esn`],4.9e12 In 5.9e-12 In .9e0) Starts With Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]),$12 Contains $#usn8 Contains 01 Where $`4esn` =~0e0 Optional Match (((:@usn5)-[#usn8 *0..010{_usn4:Count(*)[.0e0..][#usn7..]}]->(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[?:``|:`3esn`{#usn8:.9e1[Count(*)..$`3esn`]}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}))),_usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`)"), + octest:ct_string("Unwind $`2esn`[$1000][2.9e1] As usn2"), + octest:ct_string("With .0e0 Is Null Is Null As _usn4,`6esn`(usn1 Is Not Null,123456789 =~6.0e0)[Single(_usn3 In ``[$``..] Where Null[..07])..][{_usn3:010[9e0..9e1][$_usn4..$12],`3esn`:7.0e-0[$usn2..0.12][$``..0]}..] As usn1,#usn8 In $@usn6 Order By 8.1e1 Ends With $0 Ends With 6.0e0 Descending,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null Ascending,Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\") Ascending Skip $`2esn` In 0X7 In 3.9e-1 Limit 0x0[`5esn`][$`5esn`] Create ((#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})) Union Remove `8esn`:`4esn`:`7esn`,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1])._usn4?.`8esn`,(`6esn` :`2esn`:`8esn`{`6esn`:.1e-1[..12e12]})<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}).@usn5? Create usn1=({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}),#usn8=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Optional Match ((#usn8 {_usn3:$usn2 In usn1 In 1e-1})),usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union Create (({@usn6:0Xa[9e0]})) Merge (((`` :`5esn`)-[?:@usn6|:_usn3 *999..]->(:`5esn`{`1esn`:.1e1 Starts With `1esn` Starts With 6.0e0})-[_usn3:_usn4|`1esn`{`2esn`:123456789 In 9e-12 In false}]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}))) On Match Set `8esn`:#usn8,Filter(`` In $_usn3 Is Not Null Where 7 Is Null Is Null).#usn7! ={`5esn`:false,_usn3:.9e-12 Starts With .0e-0 Starts With usn2} Is Null On Match Set (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]->(:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}).`3esn`!.#usn7._usn3! =`5esn`[$`4esn`] With Distinct 5.9e-12[.1e1][$#usn8] As `5esn`,`4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Ends With None(`` In $_usn3 Is Not Null Where .9e1[...12e12]) As _usn4,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) Limit 1e1 Ends With Null Ends With `7esn` Where $0 Contains .12e-12"), + octest:ct_string("Merge ((:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]})) With Distinct *,$12 Contains $#usn8 Contains 01 As usn1 Order By 0X7[`4esn`..][`3esn`..] Ascending,$#usn7 In .12e-12 Ascending,$`6esn` In `2esn` Ascending Create (`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),((`6esn` :_usn4)<-[`7esn`*..]->(`` :@usn6:_usn4)-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Union All Return Distinct 10.12e12[12e12..0X7] As #usn8,.9e-12[01][Count(*)] As _usn3 Union All Remove Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]).`2esn`,All(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]).`3esn`._usn3!,Single(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]).`3esn`.`7esn` Delete 123.654 Ends With 0Xa Ends With .12e12,0X7[$7..] With $_usn3 In 123.654 In $`8esn` As `2esn`,@usn5[$_usn3..],.1e-1 Contains 1e1 Contains $`6esn` As `5esn` Order By $usn1 Contains `7esn` Contains .9e12 Ascending,8.1e1 Ends With $0 Ends With 6.0e0 Descending,9e12[...12e12][..$`2esn`] Descending Limit `3esn`[`4esn`..Null][$usn1..`5esn`]"), + octest:ct_string("With Distinct *,Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) As #usn7,.12e-12 Ends With $`7esn` Where .9e-1 Ends With `8esn` Optional Match ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),@usn5=((:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(`4esn` :`2esn`:`8esn`)-[`8esn`:`4esn`|:@usn5{#usn7:Count(*)}]-({`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Union All With *,(:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})<-[``:`8esn`|:`2esn` *12..0Xa]-(usn2 :@usn5{`3esn`:$usn1 Is Null})[..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 8.1e1 Is Null)][..#usn7(Distinct usn2 Ends With .0)],Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]) Skip Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) Where 1000[$`6esn`..12.0]['s_str'..$`3esn`] Create `7esn`=((`2esn` :usn2)-[usn2:`4esn`|:@usn5 *01234567]->(:`5esn`{`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567})<-[:#usn8|:`4esn`{usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})),@usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) Where _usn3 Starts With `2esn` Union Remove [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where true Contains 0x0|$@usn6 Is Not Null Is Not Null].`8esn`,`2esn`:`3esn`,[`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1|`6esn`[..$@usn6][..$`1esn`]].`8esn`? With Distinct *,[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},07 =~_usn4 =~.9e12 As `` Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending Where .9e-1[12.0] Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) On Match Set `5esn` =$`2esn` Starts With #usn7 Starts With 12e12,#usn7(07[.0e0][3.9e-1]).`3esn` =$``[`6esn`][00] On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1"), + octest:ct_string("Optional Match @usn5=($`8esn`)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[``?:@usn5]->(_usn3 :#usn8),(((_usn3 :_usn3:_usn3)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})-[#usn7? *00..123456789]->(usn1 :@usn6:_usn4))) Where 0[$999..] Unwind $`1esn`[.9e0][$_usn3] As `4esn`"), + octest:ct_string("Unwind true[`6esn`..10.12e12] As `7esn` With [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Order By Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Desc Limit .0e0 Is Null Is Null Where 7.0e-0 Is Null Is Null Unwind 9e12 Is Null Is Null As `8esn` Union All Detach Delete 123.654 In $`5esn` In 9e-1,999[..@usn5][..`1esn`],12.0[`8esn`] Delete {usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Delete 0X7[Count(*)][.9e0],`1esn` In 12e-12 In 1e-1,010 Union All Remove {`3esn`:$`` Is Null Is Null}.`1esn`!.`2esn`.`7esn`?"), + octest:ct_string("With $`2esn`[$1000..][$@usn5..],`7esn` Ends With `7esn` Ends With $`3esn` Limit $0 =~01234567 Where 9e1 Ends With .9e0 Merge `2esn`=((`5esn` :`4esn`:`7esn`)) On Create Set Any(`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]).usn1!.``?.``? =false =~4.9e12,usn1 =7.0e-0[3.9e-1..`1esn`] Union All With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null)[[`2esn` In .12e-12[$@usn6..5.9e-12] Where 00]][Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12])] Limit [usn1 In 7.0e-0[.._usn4][..0X7]|7.0e-0 Is Null Is Null] =~#usn7 =~`4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Union All With Distinct *,(`2esn` {usn2:7.0e-0 Starts With $7 Starts With true})-[{usn2:$`8esn`[#usn7][.9e1],`7esn`:@usn5[$``]}]->(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}) Is Not Null Is Not Null,{`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null) As `8esn` Skip .0 Where 8.1e1 Is Null Is Null"), + octest:ct_string("Merge `7esn`=(`7esn` :usn1)-[`6esn`? *0Xa..7{`4esn`:$`2esn` Ends With $`8esn`}]->({usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]-(`1esn` :``:usn1{_usn4:.1e1 Is Null Is Null}) On Match Set `6esn`+=$`2esn` Starts With .12e-12 Starts With .0e-0,_usn4+='s_str' Ends With $usn1,#usn8:_usn4 On Match Set Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 999 Starts With .9e12 Starts With 3.9e-1).`6esn`.@usn6!._usn4? =`4esn`[0.0..][.1e-1..],Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).@usn5! =9e1 Contains 4.9e12 Contains .9e0,`1esn`+=00[0e-0...9e-1][1e-1..``] Union Return *,Extract(`5esn` In 12[0xabc..][$0..] Where 9e-1[0X0123456789ABCDEF][0]|.9e1[..Count(*)][..7.0e-0]) Is Null Is Null As _usn3 Order By {`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] Ascending Limit 123.654 In $`5esn` In 9e-1 Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Where 0X7[$999...12e12][12..`2esn`] With All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Where .9e1 Contains Null Union All Detach Delete `` =~$`5esn`,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12)[{_usn4:@usn6 In 3.9e-1 In 9e-12}][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]|10.12e12[12e12..0X7])],`` Ends With .9e-1 Ends With 9e-12"), + octest:ct_string("Merge ((@usn6 {#usn8:12 Contains usn2 Contains $usn2})) On Match Set `3esn`+=123456789 Ends With _usn4,`7esn` =`1esn` Ends With 7.0e-0 Ends With $usn1,usn1 =Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null On Create Set `5esn` =(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[`7esn`?]->(`5esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(#usn8 {_usn3:$_usn4 Contains .12e-12}) Ends With `4esn`($usn2 In usn1 In 1e-1,01[Count(*)..0e-0][7..$`2esn`]) Return *,123456789 =~6.0e0 As usn1,Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) As #usn7 Limit 999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] With Distinct 2.9e1 As usn2,.1e-1[$`2esn`..][$`1esn`..] Order By `2esn` Starts With $`7esn` Starts With _usn4 Ascending,0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7] Asc,.12e12[$0] Asc Skip All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..])[`8esn`()] Where 8.1e1 Contains 0e-0 Contains $_usn3"), + octest:ct_string("Remove @usn6:usn1,Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $@usn6 Contains Count ( * )).`4esn`? Create `1esn`=(((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[:_usn3|`2esn` *010..]-(`` :usn1)<-[@usn5?:@usn6|:_usn3 *07..{_usn3:$`3esn` Is Not Null Is Not Null,#usn8:usn1[0.12..1000]}]->(`3esn` {usn2:$`7esn`[..12.0][..0e0]}))),#usn7=(`4esn` {@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[@usn5?:`8esn`|:`2esn`]->(_usn4 ) Union Delete Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7)[{usn2:`8esn` Is Null}..[@usn6 In .9e12 Starts With #usn8 Starts With 00]][(:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null})..{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}],999 Ends With $123456789 Ends With $_usn4 Create (`1esn` :`6esn`:`3esn`) Remove (`` :`3esn`{`5esn`:``[$``..]})-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}).`7esn`,[`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$`` Is Not Null].`8esn`._usn3?,(`` :usn2)-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}).usn1! Union With *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Where Null[`2esn`..] Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) Unwind 07[\"d_str\"..]['s_str'..] As usn1"), + octest:ct_string("Create #usn7=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Union All Create `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),_usn4=((`6esn` :#usn7:_usn3)<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Unwind .1e1[.0e0..] As `` Union Remove {`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}.``,`7esn`:_usn4,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0).`6esn`? With Distinct *,$7 Contains _usn4 Contains $`1esn`,9e-12 In 5.9e-12 As `` Skip 3.9e-1 Contains 9.1e-1 Contains `8esn` Limit Count ( * )[7] Where 11.12e-12 In $`1esn` In 9e12"), + octest:ct_string("Optional Match `1esn`=(#usn8 :#usn7:_usn3) Create `2esn`=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))),((`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010})) Union All Detach Delete 123456789 Contains .1e-1 Contains .12e12 With *,{_usn4:$1000 Contains 01234567 Contains 0X7} Is Null Is Null As `1esn`,`5esn`[$`4esn`] Order By Count ( * )[..`8esn`] Asc,3.9e-1[..$7] Desc Limit #usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Where 1000[..0e0][..$`6esn`] Merge ((usn2 )-[#usn8?:usn1|:#usn8 *0X0123456789ABCDEF..0]->(`` :`8esn`:#usn7)<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})) On Match Set usn1+=Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1])"), + octest:ct_string("Delete (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)],0.12 Is Not Null Is Not Null Detach Delete (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Starts With `7esn`(Distinct $`5esn` Is Null Is Null,$`4esn` Ends With 0e-0) Starts With Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 5.9e-12 Ends With 1e1 Ends With false),`3esn` Contains $`8esn` Contains 0e0,4.9e12 Contains .12e12 Contains 0xabc Union All Optional Match `3esn`=(@usn5 :`7esn`),((#usn8 {_usn3:$usn2 In usn1 In 1e-1})) Where usn2[..10.12e12][..$`7esn`]"), + octest:ct_string("Delete ()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)],.9e-1 Is Null,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 123456789 Ends With _usn4) =~{usn2:$``[`6esn`][00],#usn7:.12e12[$12..4.9e12][11.12e-12..9e12]} =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`5esn` Is Null Is Null)"), + octest:ct_string("Remove `8esn`:`1esn` Detach Delete ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]),`2esn` Starts With 12 Starts With 10.12e12,.12e-12[07] Union Unwind .0[01234567][$#usn8] As `2esn` Merge `6esn`=(({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Create Set All(usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]).`2esn`? =0Xa[$usn2..],`3esn`:usn1,`1esn` =$``[`6esn`][00]"), + octest:ct_string("With Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) As `1esn`,0[..$@usn5] As `` Order By Extract(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]|$`5esn` Ends With 9e-1 Ends With $#usn8)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\")..[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0X7[Count(*)][.9e0]|$`8esn`[$``..$`1esn`][9e-12..$7]]][{usn1:`6esn` Is Not Null}..``(.9e-1 =~.9e-1,$_usn4 Starts With 0e-0 Starts With 1e-1)] Descending,12.0[..123456789][..01] Ascending,(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[`7esn`?]->(`5esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(#usn8 {_usn3:$_usn4 Contains .12e-12}) Ends With `4esn`($usn2 In usn1 In 1e-1,01[Count(*)..0e-0][7..$`2esn`]) Desc Limit Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null Where 5.9e-12 Contains $`` Contains $`5esn` Create (@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})) Union All Merge (#usn8 {`2esn`:usn2 Ends With .0})<-[#usn8? *0x0..]-(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})-[:`6esn`|#usn7{usn1:$`2esn` Contains $1000,`7esn`:`7esn`[.1e1..][`8esn`..]}]-(#usn8 {`2esn`:usn2 Ends With .0}) On Match Set `` =_usn3(Distinct $_usn4 Is Not Null,9e1 Ends With 123456789)[{`8esn`:$`` Is Null Is Null}] On Create Set usn1+=$`3esn` In 's_str' In $#usn7 Return Distinct All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7)"), + octest:ct_string("Optional Match ({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}) Where .0[usn2.._usn4] Delete 1.9e0 =~0x0,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]),{_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12) Remove {@usn6:\"d_str\" =~9e-12 =~`5esn`}.@usn5?,None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).@usn6!._usn3?._usn4!,None(_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]).usn1.``?.usn2 Union Remove Filter(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..])._usn4!,All(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]).`6esn`!.usn1!,Filter(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12).`6esn` Delete 1e1[3.9e-1][.9e-1] Create `5esn`=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}),#usn8=((`3esn` {#usn8:`7esn` Is Null})-[_usn4 *999..]->(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]}))"), + octest:ct_string("Match (((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999}))),(`` :``:usn1{usn2:12.0[..123456789][..01]}) Merge ((@usn6 :usn1{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})) Detach Delete None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4) Union All Unwind .9e12 Starts With .9e12 Starts With `7esn` As _usn4 Merge ((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) On Create Set (`6esn` :usn1)<-[usn1{`2esn`:usn2 Ends With .0}]->(_usn3 :_usn3:_usn3)-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})._usn3? =Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}],@usn5 =.9e1[...12e12] Merge (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) On Match Set Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12).`4esn`!.#usn8?.`1esn` =1.9e0 =~$`8esn` =~01234567,`1esn` =1000[$`6esn`..12.0]['s_str'..$`3esn`],@usn5 =9e0[$usn2][0]"), + octest:ct_string("Return Distinct 8.1e1 Is Null Is Null,5.9e-12[$`4esn`] Order By `6esn` Is Not Null Ascending,`6esn` Is Not Null Desc,(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})[{`5esn`:8.1e1 Ends With $0 Ends With 6.0e0,@usn5:9e0[..1e1]}..None(`` In $_usn3 Is Not Null Where $@usn6 =~$`2esn` =~9e1)] Descending Skip Null In 0Xa In .9e-1 Unwind $usn1 Is Not Null Is Not Null As `5esn` Delete true Is Null Is Null Union All Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})),((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) With [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..] Where $1000 Contains 01234567 Contains 0X7 Create ((usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]->(:usn1{usn1:Count(*)[0.12..2.9e1]})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})),(:usn1{``:.9e1[..`5esn`]})"), + octest:ct_string("Optional Match (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Where 999[0.12..8.1e1] Union All Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7]).`5esn`,@usn6:``:usn1,{`4esn`:.0e0[$`6esn`..]}.#usn8._usn3 Unwind true Is Null As #usn8 Union Unwind 0X7 As `3esn` Merge ((#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set `8esn`+=Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\"),`1esn`+=4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12),(`` {_usn4:9e0[..1e1]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(@usn5 :@usn6:_usn4).#usn8.`1esn`.usn1! =00[0e-0...9e-1][1e-1..``] On Create Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] With Distinct [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1|.9e1[12]] Is Null Is Null As #usn8 Order By $usn1 Contains `7esn` Contains .9e12 Ascending Skip $usn1 Is Not Null Is Not Null Limit {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})] Where 010"), + octest:ct_string("Create #usn8=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})),`3esn`=(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set usn1+=9e0[..1e1] On Match Set usn1+=Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],@usn6+={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) Union All Merge usn1=(:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}) On Create Set None(`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0).`8esn`? =[`5esn` In 12[0xabc..][$0..] Where $123456789 Is Not Null] Starts With Any(`7esn` In .12e12[Count(*)..] Where 's_str' Ends With 0.0 Ends With .12e12),``+={`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])] On Create Set #usn7:`4esn`:`7esn`,{`7esn`:$`5esn`[7..],`5esn`:`5esn` Contains `6esn`}.#usn8?.usn2.@usn5! =usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]],@usn6 =\"d_str\" =~9e-12 =~`5esn` Merge usn1=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})) On Match Set `4esn` =$`` =~$_usn3,`7esn` =\"d_str\" Ends With `5esn` Ends With 7 Union Remove (:`7esn`{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[#usn8?:`4esn`|:@usn5]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})._usn3!,Any(`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0).usn1"), + octest:ct_string("Create `3esn`=((:`2esn`:`8esn`)<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}))) Optional Match (@usn5 {_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2)-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]-(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12}),((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})) Where 12.0 Contains $_usn4 Contains $usn2"), + octest:ct_string("Return Distinct (`8esn` {`3esn`:#usn8[`2esn`]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null As @usn5 Order By 123456789[Count ( * )..] Asc,01[..0.12] Asc Skip .0e0[$@usn5..$`8esn`][0X7..$usn1] Limit 8.1e1[usn2..$1000][$7..0x0] With Distinct `2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,1e1 In .1e-1 In .0 Order By Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) Asc Skip 00 =~.9e-12 =~usn1 Limit 12e12 Ends With usn1 Where 12[123456789][5.9e-12] With Distinct *,Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) In {`5esn`:$`` =~$_usn3,`4esn`:`7esn`} In `3esn` Order By [usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|`3esn` Ends With 010 Ends With 9.1e-1][(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})-[`7esn`?:`5esn`]->(#usn8 )..None(_usn4 In Count(*)[9e1..][12e-12..] Where 7 Contains $#usn7)] Ascending Limit 0xabc[$`4esn`..][`8esn`..] Union Return `7esn` Ends With `7esn` Ends With $`3esn`,12e-12[`7esn`..][5.9e-12..] Order By 01[..0.12] Ascending Skip (`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] Detach Delete .1e-1 Ends With @usn6,Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Null Is Null,$`2esn` Contains false Contains 123456789 Return $_usn3 In 123.654 In $`8esn` As `2esn`,@usn5[$_usn3..],.1e-1 Contains 1e1 Contains $`6esn` As `5esn` Order By $usn1 Contains `7esn` Contains .9e12 Ascending,8.1e1 Ends With $0 Ends With 6.0e0 Descending,9e12[...12e12][..$`2esn`] Descending Limit `3esn`[`4esn`..Null][$usn1..`5esn`] Union Optional Match ({`4esn`:$@usn5[$#usn8..][_usn3..]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})"), + octest:ct_string("Optional Match usn2=(`4esn` :`6esn`:`3esn`) Where 999 =~0Xa =~9e0 Return *,Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07) Order By usn2[Count ( * )..07] Descending Limit .12e12 Ends With #usn7 Ends With 2.9e1 Optional Match `3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Union All Merge usn2=({``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[_usn3:_usn4|`1esn`{`2esn`:123456789 In 9e-12 In false}]-(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]}) On Match Set Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12).`4esn`!.#usn8?.`1esn` =1.9e0 =~$`8esn` =~01234567,`1esn` =1000[$`6esn`..12.0]['s_str'..$`3esn`],@usn5 =9e0[$usn2][0] Create (`1esn` :`6esn`:`3esn`) Union All Delete {`8esn`:$`` Is Null Is Null}[Extract(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..])..][Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)])..],$`6esn`[..12e12][.._usn3],$_usn4 Starts With 0e-0 Starts With 1e-1 With `2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,1e1 In .1e-1 In .0 Order By 1000 Contains Null Contains 9e1 Desc,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null Descending,$`7esn`[..12.0][..0e0] Asc Limit 11.12e-12 Is Null Where 's_str' Ends With 0.0 Ends With .12e12 Match `5esn`=((`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]})-[:`6esn`|#usn7{usn1:$`2esn` Contains $1000,`7esn`:`7esn`[.1e1..][`8esn`..]}]-(#usn8 {`2esn`:usn2 Ends With .0})) Where 999 Starts With .9e12 Starts With 3.9e-1"), + octest:ct_string("Delete 00 Is Not Null Merge @usn5=(#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})-[`1esn`*..{usn2:$1000[.._usn3][..#usn7]}]-(:`3esn`{_usn4:7.0e-0 =~$12 =~5.9e-12}) Match @usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))),(({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)) Union Remove Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12).`5esn`?,(`7esn` :@usn5{usn2:$`8esn`[#usn7][.9e1],`7esn`:@usn5[$``]})<-[:`1esn`{`8esn`:0xabc[7.0e-0..][12e12..]}]->(:`6esn`:`3esn`{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12}).`6esn`!,Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]).usn1!._usn3?._usn3? Create `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}))"), + octest:ct_string("Merge `8esn`=((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) On Match Set _usn3+=$usn2[12.0..],`7esn`+=false[..12e-12][...9e1]"), + octest:ct_string("Remove All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where true In $0 In @usn5).`4esn`.`4esn`?.`3esn`,Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where #usn7[10.12e12..][\"d_str\"..]).@usn6.`7esn`!,Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567).`4esn`!.`8esn`!.`4esn` Optional Match `4esn`=(((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})<-[`8esn`?:usn2|:``]->(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})-[`3esn`?:`5esn` *07..{#usn7:9e-1 =~6.0e0 =~``}]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))),((@usn6 )<-[`2esn`{`4esn`:.0e0[$`6esn`..]}]->({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})-[`6esn`:#usn7|:`8esn` *01234567]-(`5esn` :`2esn`:`8esn`)) Where 0xabc Is Not Null Create `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Union All Delete \"d_str\" Contains 4.9e12 Contains 7.0e-0,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])]"), + octest:ct_string("Return Distinct [`` In 0.12[3.9e-1] Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`|Null[10.12e12..]] In {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] As `7esn` Order By 00 Ascending Skip 12.0 Contains $_usn4 Contains $usn2 Limit .9e1 Starts With `4esn` Detach Delete 01[Count(*)..0e-0][7..$`2esn`],@usn6[usn1..][`1esn`..]"), + octest:ct_string("Return Distinct *,@usn5 In $1000 In 07 Union Merge (`2esn` :`6esn`:`3esn`)-[`5esn`:usn2|:``]->(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}) Union Unwind 0e0 In 1e1 In 8.1e1 As #usn8 Optional Match `3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where .12e-12[$@usn6..5.9e-12]"), + octest:ct_string("With 1000[Null..] As `1esn`,`8esn`[..7.0e-0][..0xabc] As _usn3 Skip 0e-0 Contains 11.12e-12 Contains $`4esn` Where Null[10.12e12..] Union All With Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1] Detach Delete {#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}[{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}..]"), + octest:ct_string("Unwind `3esn` Ends With true As @usn6"), + octest:ct_string("With Distinct .1e-1[$`2esn`..][$`1esn`..] Order By `7esn` Ends With 9e-1 Ends With usn1 Ascending,5.9e-12[`4esn`..12e12][0x0..1.9e0] Ascending,$#usn7 In .12e-12 Ascending Skip Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Limit Count ( * ) In 999 Where 010 Create `8esn`=(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}))),usn1=(`` {_usn4:9e0[..1e1]})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}) Union Create usn1=(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}),`5esn`=(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Unwind None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} As `7esn`"), + octest:ct_string("With *,`` Is Not Null Is Not Null As usn1 Limit Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Where $1000[..01234567][..0X0123456789ABCDEF] Unwind 1.9e0 =~0x0 As @usn5 Union Return `1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `4esn` Unwind $usn1[$12..] As `7esn` Merge ((:`2esn`:`8esn`{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3}))"), + octest:ct_string("Unwind 11.12e-12 Is Null As usn1 Return *,_usn4(Distinct 1e-1 =~0.0 =~9.1e-1) =~None(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~(`2esn` {usn2:7.0e-0 Starts With $7 Starts With true})-[`2esn`:`5esn`{usn2:Count(*)[12..][0X0123456789ABCDEF..]}]-({_usn4:$`3esn` In 's_str' In $#usn7})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12}) As ``,`3esn` Ends With true Limit {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) Union With Distinct *,123.654,9e-1 Starts With 123.654 Starts With .9e1 As `6esn` Order By $`8esn`[.._usn4(Null[..07],123.654)] Desc Skip 123456789[\"d_str\"..] Where $`2esn` Contains false Contains 123456789 Match `3esn`=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) Where $usn1 Starts With 12 Starts With 12e12 Union Remove [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|.9e1[..`5esn`]]._usn3!.`6esn`?.`3esn`?,(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )._usn4!.usn2.#usn7! Optional Match `7esn`=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}),((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Where .0e0 Is Null Is Null Create @usn5=({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})"), + octest:ct_string("Merge @usn5=(({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})-[:``|:`3esn` *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})) On Match Set #usn7 ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0} =~Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]),`8esn` =`5esn`(Distinct 123456789 Ends With 8.1e1,01234567[6.0e0][$usn2])[{@usn5:usn1 Is Not Null,usn2:0xabc[7.0e-0..][12e12..]}..][(_usn3 :_usn3:_usn3)<-[`6esn`?:``|:`3esn`]-(:@usn6:_usn4$`6esn`)<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})..] On Create Set [usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]].`4esn`?.usn2?.usn2! =[@usn6 In .9e12 Starts With #usn8 Starts With 00|9e12 Contains $@usn6 Contains Count(*)][(`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]})][Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null)],Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654).`4esn`? =Count ( * )[0e-0..01],#usn7+={usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])] Union Unwind $usn1 Is Not Null Is Not Null As `2esn`"), + octest:ct_string("Optional Match usn1=(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}),@usn5=({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}) Where 7.0e-0[3.9e-1..`1esn`] Union All With Distinct [@usn6 In .9e12 Starts With #usn8 Starts With 00|9e12 Contains $@usn6 Contains Count(*)][(`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]})][Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null)] As @usn5,12 =~9e0 =~$#usn8 Skip 5.9e-12[`1esn`][usn2]"), + octest:ct_string("Create ``=((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})),#usn8=((`3esn` {#usn8:`7esn` Is Null})-[_usn4 *999..]->(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]})) Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where $usn1 =~$999 =~$7|$_usn3 Is Not Null Is Not Null).`4esn`!.#usn8,Filter(`` In 0.12[3.9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4).usn1 Union All Remove {`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null}.@usn5?.#usn8!.`8esn`?,_usn4:_usn4,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]|Count(*) Starts With $_usn4).`8esn`! Unwind {usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) As usn2"), + octest:ct_string("Create usn1=({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}),#usn8=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Unwind `7esn` Ends With _usn4 As _usn3"), + octest:ct_string("Unwind 1e1 Ends With Null Ends With `7esn` As `3esn`"), + octest:ct_string("Merge `8esn`=(`6esn` :``:usn1) On Create Set usn2 =[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]|12e12 Is Not Null][{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]}],`5esn`+=.9e1[..`5esn`] On Create Set `1esn` =@usn5[6.0e0][Count ( * )] Match `2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),usn2=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where 12 Contains usn2 Contains $usn2 Union All Return *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Return *,$0[$`7esn`..$`3esn`]['s_str'...0],usn1 Ends With 12 Order By $#usn7 Starts With #usn7 Descending,9e12[.0e-0] Descending,01[..01] Descending Limit (usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})-[`4esn`?:`6esn`|#usn7]->(`1esn` )[[`2esn` In .12e-12[$@usn6..5.9e-12]|$#usn7 Starts With 10.12e12]..] Create (`1esn` :`5esn`)-[:#usn8|:`4esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}]-(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}),_usn4=(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}) Union Delete Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),All(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)[`3esn`(Distinct 0[true..$7],`3esn`[$0..][.9e1..])..] Merge (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) On Match Set Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12).`4esn`!.#usn8?.`1esn` =1.9e0 =~$`8esn` =~01234567,`1esn` =1000[$`6esn`..12.0]['s_str'..$`3esn`],@usn5 =9e0[$usn2][0] Merge ``=(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`` :@usn6:_usn4)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})"), + octest:ct_string("Match (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[:usn1|:#usn8]-(:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`}),`2esn`=((_usn4 {#usn7:$`5esn` Is Null Is Null})-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})) Union Remove Filter(usn2 In .0e0[$`6esn`..] Where $123456789 Is Not Null)._usn4.`1esn`!.`1esn`!,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`).`5esn`!.`7esn`,_usn3:#usn8 Unwind (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] As `2esn`"), + octest:ct_string("Merge `1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) On Match Set #usn7 =[usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|9e0 =~9e1 =~.12e12] Is Null Is Null,`8esn`+=123.654 Is Not Null Is Not Null,`3esn`+=_usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null Delete `3esn`[.12e-12..]"), + octest:ct_string("Detach Delete (:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]),Count(*) Starts With $_usn4 Merge `2esn`=((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Union All Return Distinct *,Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn` Order By _usn3[`2esn`..10.12e12][9e1..true] Descending Limit `6esn`[0x0..@usn5][$1000...9e-12] With 8.1e1 Is Null Is Null,Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` Is Null Is Null) Is Not Null Is Not Null As _usn4 Order By (`6esn` $@usn6)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]}) =~All(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~{``:7.0e-0 Is Null Is Null,@usn5:9e-12[$0][$`4esn`]} Asc,999 =~0Xa =~9e0 Asc Skip All(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])[..(:_usn4{`4esn`:9e1 Contains 4.9e12 Contains .9e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})][..(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)<-[?{_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})] Where 9e1 Ends With .9e0 Match `6esn`=({_usn3:$`5esn`[7..]})<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}),((_usn4 )-[usn2?:@usn6|:_usn3]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`4esn`?:_usn3|`2esn`]-(`8esn` {``:$123456789[$_usn3..][$usn2..]})) Where $@usn5[usn1..][$`8esn`..] Union All With {`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]],_usn4[.0e-0][010],Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]] As `3esn` Order By .1e-1[..12][.._usn4] Descending Return [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..] Create (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999})"), + octest:ct_string("Unwind .0 Is Null Is Null As _usn4 Remove usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4!,@usn6($`3esn`,$`1esn`[`3esn`..]).``?,`7esn`($`3esn` Ends With 010 Ends With $`7esn`,01234567[6.0e0][$usn2])._usn3!.@usn5.`5esn`? Match (:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]})"), + octest:ct_string("With Distinct *,$7 Contains _usn4 Contains $`1esn`,9e-12 In 5.9e-12 As `` Skip 3.9e-1 Contains 9.1e-1 Contains `8esn` Limit Count ( * )[7] Where 11.12e-12 In $`1esn` In 9e12 Detach Delete 9e12[1e1...9e-12] Detach Delete 5.9e-12 Ends With 1e1 Ends With false Union Create #usn7=((`4esn` {_usn3:@usn6 In 3.9e-1 In 9e-12})<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4)) Optional Match #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),`8esn`=(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})))"), + octest:ct_string("With Distinct None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]) Is Null Is Null,Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()] As #usn7 Skip Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..])"), + octest:ct_string("Match ((:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[? *12..0Xa]-(`2esn` :#usn7:_usn3)<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})) Remove [#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1].`6esn`._usn4?._usn4!,{`3esn`:#usn8[..#usn7][..@usn6]}.#usn8? Union All Unwind Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) As `5esn` Optional Match (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}),`1esn`=(((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[:_usn3|`2esn` *010..]-(`` :usn1)<-[@usn5?:@usn6|:_usn3 *07..{_usn3:$`3esn` Is Not Null Is Not Null,#usn8:usn1[0.12..1000]}]->(`3esn` {usn2:$`7esn`[..12.0][..0e0]}))) Where .0e0[$`1esn`][.9e-12] Union With Distinct *,Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As `5esn`,0xabc =~7.0e-0 =~4.9e12 Order By (#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Desc Where @usn6[.9e12..0e0] Unwind $_usn3 Is Not Null As `5esn`"), + octest:ct_string("Delete \"d_str\" Contains 4.9e12 Contains 7.0e-0,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])]"), + octest:ct_string("Unwind #usn8[7..@usn5] As `` With 9e12[7.0e-0] As #usn7 Order By $_usn4 Contains .12e-12 Descending Where #usn7[..0X0123456789ABCDEF] Merge (((`5esn` :#usn8)<-[`4esn`?:_usn3|`2esn` *0..010]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]}))) On Create Set Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12|.1e-1).`1esn`? =0.12 Is Not Null Is Not Null,(`2esn` :``:usn1)-[?:``|:`3esn` *12..0Xa]-(@usn6 :`7esn`{`6esn`:``[$``..]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:@usn5)._usn4! =1000 Contains Null Contains 9e1 On Match Set `6esn`(010[@usn5..123.654],0X0123456789ABCDEF Contains $`6esn` Contains $123456789).usn1 =Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],`6esn` =Null[..07],Single(`5esn` In 12[0xabc..][$0..] Where .1e1 Starts With $7).@usn6?.`8esn` ={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) Union Remove count(.12e12[$0]).`4esn`!,`2esn`(Distinct 9e-12 In 0X0123456789ABCDEF In $999).`1esn`!,[_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12|@usn5[...9e12]]._usn3"), + octest:ct_string("With Distinct *,2.9e1 As usn2 Skip Extract(usn2 In .0e0[$`6esn`..]|$@usn6 Contains Count ( * ))[`2esn`(usn1[12e-12])..][(`8esn` :usn2)<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})..] Where 999 =~0Xa =~9e0 Create (#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`) Merge `8esn`=(`3esn` :#usn7:_usn3)<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(`2esn` :usn2)<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}) Union Match `6esn`=({_usn3:$`5esn`[7..]})<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}),((_usn4 )-[usn2?:@usn6|:_usn3]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`4esn`?:_usn3|`2esn`]-(`8esn` {``:$123456789[$_usn3..][$usn2..]})) Where $@usn5[usn1..][$`8esn`..] Delete {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) Optional Match `2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),usn2=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where 0e0[.12..][3.9e-1..] Union Remove Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12 Contains 0e-0 Contains .0).`8esn`,All(`7esn` In .12e12[Count(*)..] Where 's_str' Ends With 0.0 Ends With .12e12).#usn8? Merge (({`8esn`:$`` Is Null Is Null})) On Match Set usn1 =$0[$`7esn`..$`3esn`]['s_str'...0],[@usn6 In 00 =~.9e-12 =~usn1 Where $123456789 Starts With Count ( * )].`1esn`? =usn2 Ends With .0,`8esn` =010[..@usn5][.._usn4] Return *,`3esn`[.12e-12..] As `7esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4"), + octest:ct_string("Return Distinct Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As #usn7 Order By $_usn4 Contains .12e-12 Desc Skip Extract(`8esn` In 01234567[..0.0][..false] Where .9e12 =~`5esn` =~07|07[.0e0][3.9e-1]) Is Not Null Is Not Null Limit `7esn` Is Null Delete 0Xa Ends With #usn8 Ends With usn2 Union All Detach Delete None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) Contains [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0],{usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) Union Create `4esn`=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6),`3esn`=((`6esn` {`4esn`:$@usn5[$#usn8..][_usn3..]})<-[`8esn`?:`7esn`|@usn6 *..7]->(`5esn` {`2esn`:`1esn` =~0 =~_usn4}))"), + octest:ct_string("Detach Delete Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null Union With Distinct 0e0 Is Null Is Null,None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[..Filter(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0)][..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] Order By .9e-12[0e0...9e-1] Ascending,.1e1 Starts With .1e-1 Asc Skip 0.12 Ends With $123456789 Ends With `7esn` Where 07 In $usn1 In 12 Remove {usn1:usn2[..7.0e-0]}.`2esn`.`2esn`?.usn1,(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6?,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e12 Is Not Null Is Not Null).#usn8? Return Distinct *,0e0[`4esn`] As `6esn`,9.1e-1[.1e-1]"), + octest:ct_string("Unwind Single(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]) In All(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1]) In (`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}) As `8esn` Unwind None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] As `3esn` Union Remove Filter(`7esn` In .12e12[Count(*)..] Where @usn5[$_usn3..]).usn2?,[`5esn` In 12[0xabc..][$0..] Where .12e12[$12..4.9e12][11.12e-12..9e12]|Count(*)[9e-12..0Xa][$123456789..0.0]].@usn5,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where #usn8[7..@usn5]).usn2? Merge `8esn`=((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) On Match Set _usn3+=$usn2[12.0..],`7esn`+=false[..12e-12][...9e1] Remove Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).`5esn`!.`3esn`.usn2!,Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])._usn3!.`7esn`.`4esn`!,Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]).@usn5.usn2 Union Return $`4esn` Contains $12 Contains .9e-1,.1e-1[@usn6..] As `4esn`,`2esn` =~usn1 As `6esn` Skip 0xabc[7.0e-0..][12e12..] Limit .12e12 =~$#usn7 Remove {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}.`7esn`,(`5esn` :`2esn`:`8esn`)-[`6esn`:`6esn`|#usn7*]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})._usn4 Remove `2esn`(Distinct 12 Is Null Is Null)._usn3!"), + octest:ct_string("Create @usn5=((#usn8 :usn1)<-[`2esn`?:usn2|:`` *010..{`5esn`:$`4esn` Ends With 0e-0}]->(:usn1{`3esn`:$0 =~01234567,@usn5:7 Is Null Is Null})-[@usn5?:usn1|:#usn8 *01234567{`1esn`:7.0e-0[3.9e-1..`1esn`]}]-({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) With 11.12e-12 Is Null Is Null As `4esn`,#usn8 Starts With 11.12e-12 Starts With $`3esn` As `2esn` Skip 123.654 Ends With 0Xa Ends With .12e12 Union All Unwind All(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]) Starts With Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) As `3esn` Return *,_usn4['s_str'..] As `2esn`,Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Order By .0e0[1e1..][01234567..] Descending,5.9e-12[2.9e1][9e0] Desc Skip Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7)"), + octest:ct_string("Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]|$`2esn` Starts With .12e12 Starts With 3.9e-1]._usn3?._usn3!.`6esn`,[`2esn` In .9e-12[0e0...9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4].`6esn`?,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$123456789[$_usn3..][$usn2..]).`7esn` Create ((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Create `6esn`=((#usn7 :_usn3:_usn3)<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null})"), + octest:ct_string("Return #usn8[`2esn`] As `5esn`,Count ( * ) Ends With $`4esn` Ends With 123456789 As #usn8 Order By {`4esn`:5.9e-12[9e0..]} =~None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12) Desc,Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]) Desc Skip $`1esn`[.9e0][$_usn3] Limit 0.12[3.9e-1] Remove Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 01[..0Xa]).`1esn`!.`1esn`!"), + octest:ct_string("Remove _usn3(`2esn` =~usn1)._usn3 Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Return [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..]"), + octest:ct_string("Optional Match `4esn`=(#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]}) Return _usn3[`2esn`..][0x0..] As usn1 Order By 123456789[\"d_str\"..] Descending,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending,12e-12[`7esn`..][5.9e-12..] Asc Limit All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..])[`8esn`()] Detach Delete 12e12[11.12e-12],false Starts With 3.9e-1 Union All Remove All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0)._usn3? Unwind $@usn5[..1e-1] As _usn4 With 1000[Null..] As `1esn`,.1e1 Starts With $7 Order By Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Ascending,$`7esn` Contains 0X7 Asc,$_usn4 Is Not Null Ascending Limit .0e0[$`1esn`][.9e-12]"), + octest:ct_string("Delete Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null)[#usn7(`4esn`[0.0..][.1e-1..])..@usn6(_usn4 Is Not Null Is Not Null)],[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12]][None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null)..[`5esn` In 12[0xabc..][$0..] Where .12e12[$12..4.9e12][11.12e-12..9e12]]] Union All Unwind $`2esn` Contains false Contains 123456789 As `8esn` Detach Delete .1e-1[@usn6..] Union All With Distinct *,$#usn7 Is Not Null As `7esn`,2.9e1 As usn2 Skip Extract(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..]|.9e12[..$usn1][..10.12e12]) Starts With Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]) Limit $#usn7 Starts With 10.12e12 Create usn2=(#usn7 :_usn3:_usn3)<-[#usn8?:`4esn`|:@usn5]-(#usn8 :_usn3:_usn3) Merge ((:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null})-[:_usn4|`1esn` *00..123456789]-(`2esn` :`1esn`)-[@usn6:#usn7|:`8esn` *0Xa..7]-(`8esn` {@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) On Create Set Filter(`` In $_usn3 Is Not Null Where 7 Is Null Is Null).#usn7! ={`5esn`:false,_usn3:.9e-12 Starts With .0e-0 Starts With usn2} Is Null On Match Set `4esn`+=1000[Null..],{`4esn`:0e0 Is Null Is Null,`8esn`:1.9e0 Is Null Is Null}.`6esn`? =$`2esn` In 0 In 0Xa,`3esn` =_usn4['s_str'..]"), + octest:ct_string("Unwind $@usn6 =~$`2esn` =~9e1 As usn1 Union All Remove {usn2:`3esn` In 0X7,usn2:7 Is Null Is Null}.`4esn`.@usn6!,{@usn6:.9e-12[..$`7esn`][...9e-1]}.usn2 With Distinct *,$usn2[1e-1],8.1e1[usn2..$1000][$7..0x0] As _usn3 Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) Asc,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1) Ends With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) Ascending Skip .0 Is Null Is Null Where 7.0e-0[0X7..$`2esn`][`4esn`..`7esn`] Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set _usn3 =12e-12[.0..],_usn4+=.0e0[..12.0][...1e-1],usn1 =({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null} Union All Return 1.9e0 Starts With 's_str' Starts With 9.1e-1,8.1e1 Is Null,.1e1 Starts With .1e-1 Order By 1.9e0 In $0 Desc,7.0e-0 =~$123456789 =~`8esn` Asc,#usn7[10.12e12..][\"d_str\"..] Desc Create `2esn`=((`5esn` :`1esn`))"), + octest:ct_string("With Distinct *,8.1e1 Ends With .1e-1,$#usn7 =~8.1e1 As #usn7 Order By false =~4.9e12 Asc Skip 0x0 =~0x0 Limit $_usn4[1e-1..8.1e1][`1esn`..1.9e0] Where 5.9e-12[.1e1][$#usn8] Union All Delete $0[9e1],01 Contains 12.0,0.12[.12e-12] Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Union All Remove Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0).`6esn`?.`2esn`!,{``:@usn6 In 3.9e-1 In 9e-12,`3esn`:$`` Is Not Null Is Not Null}.@usn5?.`3esn`!.`2esn`,Filter(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).``.`8esn` Remove Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where ``[..$#usn7]).usn1?,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})-[`8esn`:`3esn`|:_usn3*..{`2esn`:.9e-1 Ends With `8esn`,``:0[..$@usn5]}]-(`5esn` :`7esn`{`7esn`:$_usn3[.1e1..][$`1esn`..],`5esn`:.12e-12 =~9e12 =~1e-1}).`4esn`!.#usn8"), + octest:ct_string("Merge `5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Merge (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) On Match Set Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12).`4esn`!.#usn8?.`1esn` =1.9e0 =~$`8esn` =~01234567,`1esn` =1000[$`6esn`..12.0]['s_str'..$`3esn`],@usn5 =9e0[$usn2][0] With @usn6[.9e12] As ``,01234567 Starts With `4esn` Starts With 10.12e12 Order By $`7esn` Is Null Is Null Descending,Any(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1) Asc,#usn8[usn1] Asc Where .9e1[...12e12] Union Create usn1=(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})"), + octest:ct_string("Return Distinct *,Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,`3esn` Contains 01234567 Contains .9e-12 Order By 12 =~$@usn5 Desc,0Xa In 0.12 In $#usn7 Descending With Distinct [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null,Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,1.9e0 Starts With .9e0 Skip Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4])[..{_usn3:.1e-1 Ends With $`8esn` Ends With .9e0}] Limit Null Is Not Null Is Not Null Optional Match ((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})),`4esn`=(((`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})-[``]-(`7esn` :``:usn1{`1esn`:0e0 Starts With $1000 Starts With `2esn`,@usn6:@usn6 In 3.9e-1 In 9e-12})-[@usn5*{`7esn`:`3esn` Starts With _usn4}]->(#usn8 :_usn4{_usn3:.0 Is Null Is Null})))"), + octest:ct_string("Unwind {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null) As #usn8 Optional Match `7esn`=(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}),(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Where 01234567[...0e-0][..12] Remove `6esn`:`2esn`:`8esn`,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]).@usn6!.usn2?.`4esn`!,(`2esn` :`1esn`)<-[?:#usn8|:`4esn` *1000]-({_usn3:$0 Starts With 010})<-[``?:@usn5]-(`2esn` :usn2).`3esn`.@usn5? Union All Merge (`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1}) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7]"), + octest:ct_string("Detach Delete ()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 ) Contains Any(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]) Contains All(@usn6 In 00 =~.9e-12 =~usn1),Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .12[.0e-0..]|$`8esn`[$usn2..]) Is Null Is Null,usn1[..10.12e12][..7] Return count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0])[_usn3(8.1e1[usn2..$1000][$7..0x0],false[..12e-12][...9e1])..] As @usn6,.0e-0[0e0..00][.9e1..12] As `1esn`,Count ( * ) Starts With 10.12e12 Starts With `` As `5esn` Union All Detach Delete $`8esn`[$``..$`1esn`][9e-12..$7],Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]),.9e-1 Ends With `8esn` Delete `1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)],_usn4 In `3esn` In 7.0e-0,'s_str' =~.9e1 =~3.9e-1 Merge ((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2))"), + octest:ct_string("Create (#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`) Match `3esn`=(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))),_usn4=((`6esn` :#usn7:_usn3)<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Optional Match `7esn`=((`7esn` {`3esn`:.9e-1 Is Null})<-[`2esn`? *..7]->(#usn8 {_usn3:$_usn4 Contains .12e-12})) Union Merge @usn5=(({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})-[:``|:`3esn` *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})) On Match Set #usn7 ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0} =~Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]),`8esn` =`5esn`(Distinct 123456789 Ends With 8.1e1,01234567[6.0e0][$usn2])[{@usn5:usn1 Is Not Null,usn2:0xabc[7.0e-0..][12e12..]}..][(_usn3 :_usn3:_usn3)<-[`6esn`?:``|:`3esn`]-(:@usn6:_usn4$`6esn`)<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})..] On Create Set [usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]].`4esn`?.usn2?.usn2! =[@usn6 In .9e12 Starts With #usn8 Starts With 00|9e12 Contains $@usn6 Contains Count(*)][(`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]})][Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null)],Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654).`4esn`? =Count ( * )[0e-0..01],#usn7+={usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])]"), + octest:ct_string("Unwind Count ( * )[0e-0..01] As `3esn` Unwind .12e-12 Starts With 's_str' Starts With 123.654 As `2esn` Unwind $usn1[$12..] As `` Union All Optional Match _usn3=(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Where .9e-12[1000..$`3esn`] With Distinct *,`8esn` Is Null As `6esn` Order By [usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc,0x0 =~$7 =~Null Desc,12e-12[9e0..1.9e0] Asc Where `` =~$`5esn` Create ((`6esn` :usn1)) Union With *,_usn3[`2esn`..][0x0..] As usn1,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,usn1() In Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) In (`7esn` :usn1)-[usn2:`4esn`|:@usn5 *01234567]->(_usn4 )-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]}) Desc,``[..$#usn7] Asc Limit 07 Ends With @usn6 Ends With _usn3 Where $7 Contains 0e-0 Contains .0e-0"), + octest:ct_string("Detach Delete (`3esn` :#usn7:_usn3)<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) Ends With [_usn3 In ``[$``..] Where @usn5 Ends With 0],Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1])[[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null|`3esn`[3.9e-1..$`5esn`]]..][All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `8esn` Is Null)..],$1000 Contains 01234567 Contains 0X7 Merge `1esn`=((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) On Create Set `6esn`+=$#usn7[..$`8esn`][..2.9e1],[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0X7[Count(*)][.9e0]|$`8esn`[$``..$`1esn`][9e-12..$7]].`7esn` =(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )[{usn2:7.0e-0 =~$12 =~5.9e-12}..][Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)..],`6esn` =Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null Union All Return Distinct *,.9e0 Is Null As _usn4 Skip 's_str' Ends With $usn1 Limit 123456789 Ends With 8.1e1 Remove (`1esn` )-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :``:usn1{usn2:12.0[..123456789][..01]})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}).@usn6!,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .12[$`2esn`..usn2][.9e-1.._usn3]).`3esn`,[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]|$@usn5 In .9e1 In $``].@usn6"), + octest:ct_string("Unwind $7 Is Null Is Null As `` Detach Delete 's_str' =~.9e1 =~3.9e-1 Unwind 010 Starts With 0.0 Starts With .0e0 As `3esn` Union All Remove None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])._usn4._usn4,Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where usn1[..10.12e12][..7]).``? Union All Merge `4esn`=((@usn5 :usn1{usn1:.9e1[12]})) On Match Set _usn3 =12e-12[.0..],_usn4+=.0e0[..12.0][...1e-1],usn1 =({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null} On Match Set `8esn`+=Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\"),`1esn`+=4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12),(`` {_usn4:9e0[..1e1]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(@usn5 :@usn6:_usn4).#usn8.`1esn`.usn1! =00[0e-0...9e-1][1e-1..``]"), + octest:ct_string("Unwind Count(*) In .9e-12 In $usn1 As `5esn` Detach Delete .12e12 =~$#usn7,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] With *,Null[...9e1] As `2esn` Order By 10.12e12 =~12e-12 =~0X0123456789ABCDEF Descending,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) Asc,8.1e1 Starts With .9e12 Starts With `7esn` Desc Union Optional Match _usn4=(:_usn4),`3esn`=(({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[``?:``|:`3esn` *01234567]->(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})) Where $12[01] Detach Delete All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Delete ``(Distinct #usn7 =~`5esn` =~``)[Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..])..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)],4.9e12[1e1..'s_str'][Count(*)..0X7] Union All Merge (((_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})<-[`4esn`?:_usn3|`2esn` *0..010]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`}))) On Create Set `6esn` =.1e1 =~10.12e12 Remove _usn3:#usn8,`5esn`(Distinct $`8esn` =~.9e12 =~010,$#usn8[$1000..]).`3esn`?,Extract(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`]|$`3esn`[..`1esn`][..$`7esn`]).@usn6!"), + octest:ct_string("With Distinct *,0X0123456789ABCDEF Contains 8.1e1 As @usn5 Order By (#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})[Any(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)..][Single(_usn3 In ``[$``..] Where Null[`2esn`..])..] Asc Limit _usn3[`2esn`..10.12e12][9e1..true] Remove Extract(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]).`1esn`?.`6esn`.`3esn`?,({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})<-[`3esn`?:`5esn`]->(`2esn` ).``!,Filter(@usn6 In 00 =~.9e-12 =~usn1 Where 0x0 Contains $`1esn` Contains 0.0).`1esn` Union All Match (usn1 :usn2),usn2=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Where @usn6[.9e12..0e0] Unwind 0e0 Ends With 0X7 Ends With .1e1 As _usn4 Union Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Unwind {@usn6:\"d_str\" =~9e-12 =~`5esn`}[#usn8(Distinct 999 Starts With .9e12 Starts With 3.9e-1,true Contains 0x0)..[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010]][All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)..{`4esn`:0 Starts With 0Xa Starts With $0}] As `8esn` Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Where $`6esn` Starts With `4esn`"), + octest:ct_string("Remove (_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`}).usn2?.usn2?,Filter(`8esn` In 01234567[..0.0][..false] Where .12e-12[$@usn6..5.9e-12])._usn3 Remove {`7esn`:.9e-12 Is Not Null Is Not Null}.``?,{``:999 =~0Xa =~9e0}.#usn8,{usn1:$`` Is Not Null,`5esn`:0X7 Starts With 1e1 Starts With $12}.usn2!"), + octest:ct_string("Return Distinct *,_usn3[`2esn`..10.12e12][9e1..true] Detach Delete 0X7[$7..],$usn1 Contains `7esn` Contains .9e12,(:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Remove {`3esn`:`7esn` Is Not Null}.`7esn`?"), + octest:ct_string("Detach Delete .0e0 Ends With `8esn`,$`2esn` Ends With 2.9e1 Ends With $usn1,[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null][..`1esn`(Distinct `5esn` Contains `6esn`,`3esn` Contains $`8esn` Contains 0e0)][..Single(`5esn` In 12[0xabc..][$0..] Where 1000[_usn3..`8esn`])] Optional Match ((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Union Remove #usn8:`2esn`:`8esn` Optional Match usn1=(@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),#usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Union Match ((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) Where $`2esn` Starts With 0x0 Optional Match ((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) Where 07[\"d_str\"..]['s_str'..] Create `3esn`=(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`),(((:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]})-[`8esn` *..7{usn2:12.0 Contains $_usn4 Contains $usn2}]-(`8esn` :`7esn`{`6esn`:_usn4 Is Not Null Is Not Null})))"), + octest:ct_string("With Distinct *,$0[$`7esn`..$`3esn`]['s_str'...0],usn1 Ends With 12 Order By Count ( * )[0..][010..] Desc Limit 12.0 Starts With 07 Starts With $`3esn` Where @usn6[usn1..][`1esn`..] Match `3esn`=(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}),usn2=((:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]})) Union All With 010 Starts With 0.0 Starts With .0e0 As _usn4 Order By 123456789 =~$`1esn` =~#usn7 Ascending,.1e1 =~010 =~0.12 Descending Skip Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..])[..Extract(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]|$`6esn` Starts With `4esn`)] Limit Extract(`5esn` In 12[0xabc..][$0..] Where 9e-1[0X0123456789ABCDEF][0]|.9e1[..Count(*)][..7.0e-0]) Is Null Is Null Where `6esn`[010...9e-12] With Distinct *,Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As `5esn`,0xabc =~7.0e-0 =~4.9e12 Order By (#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Desc Where @usn6[.9e12..0e0] Unwind .0e-0 =~$`7esn` =~$0 As `` Union Delete usn1(Distinct true Starts With 2.9e1 Starts With 9e1)[Extract(usn2 In .0e0[$`6esn`..] Where 9.1e-1[Count(*)..][5.9e-12..]|.0e0[$`1esn`][.9e-12])..][Extract(`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6|$_usn4 Contains 123456789)..]"), + octest:ct_string("Create `6esn`=((#usn7 :_usn3:_usn3)<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Merge (`4esn` :`6esn`:`3esn`) On Create Set {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]}.#usn8?.`4esn`?.@usn6? =.9e12[$usn2..][7..],[_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]].`8esn`.@usn6? =0X7 =~$123456789 =~$`` On Match Set `2esn`+=3.9e-1[.9e-12],`5esn` =.0,`3esn`+=$_usn4 Is Not Null Unwind {`1esn`:07 Ends With @usn6 Ends With _usn3} =~Any(`7esn` In .12e12[Count(*)..] Where 01 Ends With \"d_str\") As `` Union All Merge ((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) On Create Set All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where true In $0 In @usn5).`7esn`.#usn8?.@usn5! =usn2 Starts With $_usn3 Unwind `4esn`(Distinct 01[..0.12],$`8esn` Is Null) Contains All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]) As `1esn` Delete None(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Is Not Null Union Return Distinct $_usn3 In 123.654 In $`8esn` As `2esn`,@usn5[$_usn3..],.1e-1 Contains 1e1 Contains $`6esn` As `5esn` Order By $usn1 Contains `7esn` Contains .9e12 Ascending,8.1e1 Ends With $0 Ends With 6.0e0 Descending,9e12[...12e12][..$`2esn`] Descending Limit `3esn`[`4esn`..Null][$usn1..`5esn`] Detach Delete $#usn7 Starts With 10.12e12"), + octest:ct_string("Merge `2esn`=((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Create @usn5=((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})-[`6esn`? *..0xabc{``:$_usn4[Null]}]->({usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`6esn` {_usn3:$_usn4 Contains .12e-12})) Unwind 0Xa Contains $999 Contains 0Xa As _usn4"), + octest:ct_string("Delete 11.12e-12 In $`1esn` In 9e12 Unwind 123.654 Is Not Null Is Not Null As `6esn` Merge ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`5esn` *01234567]->(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) On Create Set None(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).`5esn`?.`3esn`! =[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]},`8esn` =Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]],None(`` In $_usn3 Is Not Null Where 7.0e-0 =~$123456789 =~`8esn`).`3esn` =Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1]) On Match Set `8esn` =[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]).#usn7!.usn1?.usn1? =$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 9e0 =~9e1 =~.12e12|$@usn5 =~.12e-12).`2esn`?.`1esn`! =0e-0[...9e12] Union Create ((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)),`7esn`=({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})"), + octest:ct_string("With Distinct *,`2esn` Is Not Null Is Not Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Order By {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} Desc,{`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]] Ascending Where $``[4.9e12..2.9e1] Merge ((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}))) On Match Set {`1esn`:9e-12[$0][$`4esn`]}._usn3! =12e-12[..$7][..$0],All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`4esn`?.#usn7! =Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]]"), + octest:ct_string("With ``[..$#usn7],$`6esn`[$`8esn`..][false..] As _usn3 Union Unwind [usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..]|12e-12[9e0..1.9e0]][{`7esn`:$0 Starts With 010,_usn4:$`8esn`[$``..$`1esn`][9e-12..$7]}..Extract(`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|$_usn4[Null])][#usn7(Distinct 's_str'[0Xa..12e-12][.9e1..0xabc])..Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9e12[$#usn8..9e-1][$999..$`4esn`]|999 Starts With .9e12 Starts With 3.9e-1)] As `1esn`"), + octest:ct_string("With Distinct usn1(Distinct true Starts With 2.9e1 Starts With 9e1)[Extract(usn2 In .0e0[$`6esn`..] Where 9.1e-1[Count(*)..][5.9e-12..]|.0e0[$`1esn`][.9e-12])..][Extract(`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6|$_usn4 Contains 123456789)..] Order By 0xabc[7.0e-0..][12e12..] Ascending Limit 7.0e-0 Is Null Is Null Match usn1=({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}),(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}) Unwind 11.12e-12[010..11.12e-12] As `3esn`"), + octest:ct_string("Detach Delete 0X7[$7..],$usn1 Contains `7esn` Contains .9e12,(:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Union Create #usn7=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}))"), + octest:ct_string("Optional Match ((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})),(((`2esn` :`6esn`:`3esn`{@usn5:Count(*)[.0e0]})-[usn1?:usn1|:#usn8*..]-(`7esn` {`3esn`:.9e-1 Is Null})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))) Where 0x0 =~$7 =~Null Merge `1esn`=(((`8esn` {@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})-[`3esn`?:`2esn`|`7esn`*..]-(:_usn4)<-[``?:#usn8|:`4esn`]-(:usn1{@usn5:Count(*)}))) On Create Set All(_usn4 In Count(*)[9e1..][12e-12..] Where #usn8[7..@usn5]).`2esn`?.#usn7!.#usn7 =_usn4 Ends With .0 Ends With 7 On Match Set _usn3+=`1esn` =~0 =~_usn4,`3esn` =`5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]] Remove {_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}.`1esn` Union Remove @usn5:`5esn`,{`2esn`:.0,`5esn`:$`3esn` =~4.9e12 =~$7}.usn2.`4esn`? Optional Match `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Where 0e0 Starts With $1000 Starts With `2esn` Union Unwind Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])] As _usn4"), + octest:ct_string("Match ((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`2esn`=((`7esn` :usn1)<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3)) Where $`8esn` =~.9e12 =~010 Return Distinct 07[.0e0][3.9e-1] As #usn8,0X7 As _usn4 Skip $12 Is Null Is Null Remove Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|$_usn3 Is Not Null).`5esn`!,count(Distinct $`3esn` Starts With 0Xa).#usn7"), + octest:ct_string("Create `1esn`=(#usn8 :#usn7:_usn3) Union All Merge (@usn6 :_usn4) On Create Set ``+=2.9e1 Starts With 12e-12 Starts With 0.0 With Distinct Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) As _usn4,1000 In 123.654 In $`8esn`,usn1 Is Not Null As `8esn` Limit Count(*)[0.12..2.9e1] Where .9e1[11.12e-12] Match (((`3esn` :@usn6:_usn4)<-[_usn4?:#usn8|:`4esn` *123456789..0x0]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12})-[?:_usn3|`2esn`]->(`1esn` :`7esn`))) Where $@usn5[..1e-1] Union Optional Match `2esn`=((@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]}))"), + octest:ct_string("With *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Limit `8esn`[6.0e0..][$`1esn`..] Match `2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Where .0e0 =~5.9e-12 =~`7esn` Detach Delete 9e12[1e1...9e-12]"), + octest:ct_string("Detach Delete 00[0e-0...9e-1][1e-1..``],9e12[...12e12][..$`2esn`],7.0e-0 Contains Count ( * ) Contains 0Xa"), + octest:ct_string("With Count ( * )[..1.9e0][..`8esn`] As `1esn`,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] As @usn6,01[1e-1] Order By Count(*) Is Not Null Desc Skip Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) Limit `5esn`(Distinct 123456789 Ends With 8.1e1,01234567[6.0e0][$usn2])[{@usn5:usn1 Is Not Null,usn2:0xabc[7.0e-0..][12e12..]}..][(_usn3 :_usn3:_usn3)<-[`6esn`?:``|:`3esn`]-(:@usn6:_usn4$`6esn`)<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})..] Return Distinct $``[7..] As #usn8 Order By 1000[_usn3..`8esn`] Desc,9e-1 Starts With 123.654 Starts With .9e1 Descending,`` =~123456789 Descending Skip (usn1 :`2esn`:`8esn`)<-[?{_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)[All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)..][[`8esn` In 01234567[..0.0][..false] Where 6.0e0 Is Not Null|$usn2 In usn1 In 1e-1]..] Limit 's_str' In `7esn` In .9e-12 Union With Distinct $123456789 Is Null Is Null As #usn8,@usn6[..$`3esn`][..4.9e12] As #usn8,1.9e0[$12][``] As `5esn` Order By `1esn` Ends With 7.0e-0 Ends With $usn1 Desc Limit $`2esn` Ends With $`8esn` Match usn2=((:@usn5)-[@usn5:_usn3|`2esn`{`1esn`:5.9e-12[$`4esn`],usn1:9.1e-1[Count(*)..][5.9e-12..]}]->(usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})),(({#usn7:0X7[Count(*)][.9e0],`2esn`:0x0[`5esn`][$`5esn`]})-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})) Unwind {#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}[{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}..] As usn2 Union All Remove `3esn`:`7esn`,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}._usn3"), + octest:ct_string("Unwind ``(Distinct `4esn`[$1000..$``][$_usn4..$_usn4],.1e-1 Starts With 1000 Starts With $`1esn`) In [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|`4esn` Starts With $_usn3 Starts With .9e-12] In {`6esn`:``[$``..]} As `6esn` Create usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})),_usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Union All Unwind $`2esn`[$usn1..] As `3esn`"), + octest:ct_string("Delete [usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},`7esn` Contains $7 Contains 07 Remove Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]).#usn7! Unwind `1esn`[9.1e-1] As `5esn`"), + octest:ct_string("Unwind 7 Starts With 0X7 As _usn3 With Distinct All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7])[..Extract(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..])],Count(*) Is Not Null Is Not Null As `4esn`,9e12 Ends With 07 Order By $`2esn`[$1000][2.9e1] Desc,9e1 Ends With .9e0 Descending,@usn5 Is Null Is Null Desc Merge ``=((@usn6 :`5esn`)<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})) Union All Optional Match (#usn8 {_usn3:$_usn4 Contains .12e-12}) Return Distinct *,`4esn`(Distinct 01[..0.12],$`8esn` Is Null) Contains All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]),Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} As `3esn` Limit Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null Merge `1esn`=(`3esn` :_usn3:_usn3)-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]}) On Match Set `8esn` =.9e1[Count(*)..$`3esn`] On Create Set usn1+=$`3esn` In 's_str' In $#usn7 Union All With Distinct Null =~9e12 As #usn7,.0[usn2.._usn4] As `8esn` Order By [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]][{`2esn`:$`8esn` In 9e-12 In 3.9e-1}..{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}][Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..])..Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Descending,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]) Descending,5.9e-12 Contains $`` Contains $`5esn` Descending Skip .9e0[.1e-1][Count(*)] Where 9e1 Is Not Null Merge #usn7=(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[?{#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0}]-({`6esn`:07 Ends With @usn6 Ends With _usn3}) On Match Set `4esn`+=$`2esn`[$1000][2.9e1],{usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}._usn3 =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1} On Match Set {@usn5:12e-12 Starts With .9e12 Starts With 0.12}.`1esn`? =`3esn`[$0..][.9e1..]"), + octest:ct_string("Unwind Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null As `7esn` Return Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]),$`6esn`[$`8esn`..][false..] As _usn3,$`6esn`[..12e12][.._usn3] As `5esn` Order By $@usn6 =~$`2esn` =~9e1 Desc,$`2esn`[$usn1..] Desc,@usn6[01][.9e0] Ascending Skip All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Limit `1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Merge `3esn`=((`1esn` :_usn3:_usn3$0)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})) On Match Set #usn7:usn2,({usn1:usn2 Ends With 10.12e12})<-[`8esn` *1000]->(#usn8 ).usn2! =$`` In `2esn` In 07,`5esn` =`8esn`[6.0e0..][$`1esn`..] Union Delete $usn2[1e-1]"), + octest:ct_string("Detach Delete $#usn7 Starts With 10.12e12,Null =~true =~.1e-1,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where $_usn4[..usn2]|`1esn` Starts With 999 Starts With 3.9e-1) =~(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}) =~Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]) Delete (`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})-[`6esn`? *123456789..0x0]->({`6esn`:$usn1 Starts With usn1 Starts With 1e-1,#usn8:$#usn7 Starts With 10.12e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}) Is Null,Filter(`2esn` In .9e-12[0e0...9e-1] Where .9e-1 Is Not Null Is Not Null)[Any(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1])..(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})][(`7esn` :#usn7:_usn3{`3esn`:00[0e-0...9e-1][1e-1..``]})<-[_usn3:_usn3|`2esn`{`7esn`:0X7[_usn4..1.9e0][Count ( * )..false],_usn4:.9e-12[9e1..8.1e1]}]-({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]})..Single(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..])] Union With Distinct {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})] Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] Descending Detach Delete 0x0,$``[`6esn`][00],'s_str' Ends With $usn1 Unwind Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3) Starts With `2esn`(Distinct) Starts With (`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}) As `6esn`"), + octest:ct_string("Delete `7esn`[.1e1..][`8esn`..],9e12 Ends With 07,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..])[..{`4esn`:0 Starts With 0Xa Starts With $0}][..Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``)]"), + octest:ct_string("Create usn2=(`4esn` :`6esn`:`3esn`) Create `8esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Unwind usn2['s_str'...9e-1][$7..Count ( * )] As `1esn` Union All Create (_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[@usn6?:`5esn`]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) Union All Merge `8esn`=(`4esn` :`5esn`) On Match Set `3esn`+=$#usn7 Is Not Null Is Not Null,{#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}.usn2! ={`1esn`:01234567 Ends With 2.9e1 Ends With 9.1e-1}[(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})-[:#usn8|:`4esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}]-(:#usn8{_usn4:$999 Ends With .9e-12})<-[:@usn6|:_usn3{`5esn`:$@usn6 =~$`2esn` =~9e1}]->({`7esn`:.9e1[Count(*)..$`3esn`]})..] On Match Set _usn4:#usn7:_usn3,Extract(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0|`6esn` In 9e-12)._usn4? =0Xa Ends With #usn8 Ends With usn2 Remove count().`1esn`!._usn4?.`7esn`!,None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12).@usn5!.`2esn`!,[`5esn` In 12[0xabc..][$0..] Where $usn2[0e0][$7]|Count ( * )[`7esn`..]].``._usn4!.`5esn`"), + octest:ct_string("Merge ((:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})-[usn2?:@usn6|:_usn3]->({usn1:01[.9e-12..],@usn6:$`5esn` Ends With $#usn7 Ends With .0e-0})) On Create Set @usn5:usn2,None(`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]).`5esn`? =#usn7 Is Null,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where .9e1[#usn7..]).`8esn` =$`8esn` In 9e-12 In 3.9e-1 On Create Set @usn5 =0.12 Is Not Null Is Not Null,`3esn`+=11.12e-12 Is Null,`` =Count ( * )[..2.9e1] Union All Unwind 123456789[Count(*)] As _usn4 Merge (`` :#usn8{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}) Detach Delete `2esn` =~.1e-1 =~$usn1,$12[`1esn`..],07[.0e0][3.9e-1] Union All Return Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],`2esn` Is Not Null Is Not Null Skip $123456789 Starts With Count ( * ) Limit Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..] Merge `1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null"), + octest:ct_string("With Distinct .12e-12 In 9e12 In 9e-12,$#usn8[...9e1] Order By $``[`4esn`..][0.0..] Asc,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Skip Extract(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]|1000[..0e0][..$`6esn`])[{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}][Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 8.1e1 Ends With $0 Ends With 6.0e0)] Unwind 123456789[Count(*)] As usn1 Create ((#usn7 :_usn4{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})),_usn3=((usn2 {`4esn`:12e12 Is Not Null})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4})) Union All Unwind 0e-0 Contains _usn4 Contains 1e-1 As _usn3 Union All With Distinct *,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As `5esn`,0X0123456789ABCDEF Contains 8.1e1 Skip false Is Not Null Is Not Null Where 999[...12e12][..0] Return Distinct (#usn8 :#usn8)-[`` *..0X7]->(usn2 :#usn8)-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(@usn6 )[All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .12[$`2esn`..usn2][.9e-1.._usn3])],0.12[.12e-12] As `6esn` Order By true Starts With 2.9e1 Starts With 9e1 Desc Limit (#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})[Any(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)..][Single(_usn3 In ``[$``..] Where Null[`2esn`..])..] Merge ((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}))"), + octest:ct_string("Return Distinct *,$`` Is Not Null Is Not Null As `5esn`,7.0e-0 Is Null Is Null As `4esn` Order By 123456789[Count ( * )..] Desc,``(Distinct `4esn`[$1000..$``][$_usn4..$_usn4],.1e-1 Starts With 1000 Starts With $`1esn`) In [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|`4esn` Starts With $_usn3 Starts With .9e-12] In {`6esn`:``[$``..]} Desc,[usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc Union All Detach Delete {`3esn`:`1esn`[9.1e-1]} Ends With {`2esn`:7.0e-0[3.9e-1..`1esn`],`7esn`:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]} Ends With None(`5esn` In 12[0xabc..][$0..] Where 1e1 Starts With `8esn` Starts With .9e0)"), + octest:ct_string("Merge @usn5=(({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) On Create Set {@usn6:$_usn3 Is Not Null Is Not Null}.usn2! =.9e-12[0e0...9e-1],usn2 =12e12[07..]"), + octest:ct_string("Detach Delete 3.9e-1[..$`4esn`][..\"d_str\"],$`` In $usn2 Remove `5esn`().`7esn`.`7esn`.usn2,{`5esn`:$#usn8[$1000..],#usn7:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]}.`4esn` Union All Unwind Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Detach Delete (`2esn` :_usn3:_usn3)<-[:_usn3|`2esn` *..0X7{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[_usn3:_usn4|`1esn`{`2esn`:123456789 In 9e-12 In false}]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) =~Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 0e-0 Contains _usn4 Contains 1e-1) =~[usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]],.12e-12 Ends With $`7esn`,`3esn` Union Create ((:`7esn`)),((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2)) Remove All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`).`3esn`?._usn4!._usn4,Filter(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])._usn4? Create `2esn`=((:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]}))"), + octest:ct_string("Delete `6esn`[..01][..`8esn`],$12[`1esn`..] Detach Delete 1.9e0 Ends With 0Xa Ends With $12,.9e-12[9e1..8.1e1] Return Distinct *,5.9e-12 =~$@usn6 As `7esn` Skip .9e1[All(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)..][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])..] Union All Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set `6esn` =.1e1 =~10.12e12 On Match Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] Create (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}) Unwind _usn4['s_str'..] As `6esn`"), + octest:ct_string("Create (`6esn` :`8esn`:#usn7{`4esn`:00 Is Not Null Is Not Null,`4esn`:7 =~$`5esn`}) With None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]) Is Null Is Null,Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()] As #usn7 Skip Null[10.12e12..] Limit @usn6[usn1..][`1esn`..] With Distinct 9e12 Starts With `4esn` Starts With .9e-1 As @usn6 Order By {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} Ascending,01 Ends With \"d_str\" Asc,1000 Is Null Is Null Ascending Limit 0e0 Starts With $1000 Starts With `2esn` Union Remove Single(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1).`2esn`?,`1esn`:_usn4,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where usn1 Is Not Null).#usn8? Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where $`1esn` Starts With Count(*) Starts With $`8esn` Return Distinct Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] Order By 01[..0.12] Asc,6.0e0 Ends With .12e-12 Ends With 999 Ascending,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `2esn` Starts With $`7esn` Starts With _usn4|`1esn`[1000][Null]) Contains Single(`8esn` In 01234567[..0.0][..false] Where Count(*)[9e1..][12e-12..]) Desc Skip (`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})-[`6esn`? *123456789..0x0]->({`6esn`:$usn1 Starts With usn1 Starts With 1e-1,#usn8:$#usn7 Starts With 10.12e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}) Is Null Union Return $`4esn` In 123456789 In `5esn` As @usn5,`8esn`[..7.0e-0][..0xabc] As _usn3 Skip 00[0e-0...9e-1][1e-1..``] Limit 00[0e-0...9e-1][1e-1..``]"), + octest:ct_string("Return *,Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0)[(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..][Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..])..] As `5esn`,usn2 =~$`7esn` =~$`8esn` Skip $``[4.9e12..2.9e1] Remove Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0xabc In 10.12e12)._usn3?.@usn5!,{``:00[$`6esn`]}.`8esn`!,usn2:`8esn`:#usn7 Unwind Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) As _usn4 Union Detach Delete $``[4.9e12..2.9e1],@usn6[.9e12..0e0]"), + octest:ct_string("Remove [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null].usn2?,Any(`8esn` In 01234567[..0.0][..false] Where $@usn5[$#usn8..][_usn3..]).`8esn`!,(:usn1{usn1:Count(*)[0.12..2.9e1]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]}).#usn8 Detach Delete `` =~$`5esn`,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12)[{_usn4:@usn6 In 3.9e-1 In 9e-12}][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]|10.12e12[12e12..0X7])],`` Ends With .9e-1 Ends With 9e-12 Union Return Distinct 10.12e12[..10.12e12][..`6esn`] As `1esn`,Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]] As `3esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0x0 Contains $`1esn` Contains 0.0) In None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0) As `5esn` Skip `6esn`[..$``][..4.9e12] Limit _usn4 Is Null Is Null Merge (usn2 :@usn5{`3esn`:$usn1 Is Null})-[_usn3:`2esn`|`7esn`*..{#usn8:`1esn` =~0 =~_usn4,`2esn`:0e-0 In $1000 In .9e1}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}) On Match Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Optional Match (((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999}))),(`` :``:usn1{usn2:12.0[..123456789][..01]}) Where 12e-12[9e0..1.9e0]"), + octest:ct_string("Remove Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null).`2esn`? Merge usn1=({`5esn`:07 Starts With usn1 Starts With 010})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null}"), + octest:ct_string("Unwind 12e-12[`7esn`..][5.9e-12..] As `8esn`"), + octest:ct_string("Delete Extract(usn2 In .0e0[$`6esn`..] Where 010|0e-0 Contains _usn4 Contains 1e-1)[{#usn7:_usn4 Ends With .0 Ends With 7,#usn8:`` Ends With .9e-1 Ends With 9e-12}],0e0 Starts With $1000 Starts With `2esn` Match (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),`1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) Union All Return .0e-0 Starts With $#usn7 Starts With _usn3 As #usn8 Order By $usn2[12.0..] Desc Skip 7.0e-0 Is Null Is Null Delete 01[7][`1esn`],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|$@usn5 In .9e1 In $``) Contains (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null}),07[$`1esn`..$999] Create ((`3esn` {#usn8:`7esn` Is Null})<-[{`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}]-(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Union Unwind $usn1[$12..] As `` Unwind All(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]) Starts With Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) As `3esn` Merge ``=((@usn6 :`5esn`)<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}))"), + octest:ct_string("With 1.9e0 Starts With 's_str' Starts With 9.1e-1,8.1e1 Is Null,.1e1 Starts With .1e-1 Order By 0xabc[7.0e-0..][12e12..] Ascending Skip `5esn`[$`4esn`] Limit Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null Merge ((_usn4 )-[usn2?:@usn6|:_usn3]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`4esn`?:_usn3|`2esn`]-(`8esn` {``:$123456789[$_usn3..][$usn2..]})) On Create Set None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null).``.`1esn` ={@usn6:8.1e1[$`5esn`][0e0],`5esn`:$`8esn` Starts With `2esn`}[[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]],_usn3 =5.9e-12[9e0..] Union Return Distinct 0[..$@usn5] As `` Skip $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Limit 1e1 Is Not Null Is Not Null Union Optional Match `3esn`=(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})),`5esn`=(((_usn3 )-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3}))) Where $_usn3 In 123.654 In $`8esn`"), + octest:ct_string("Return Distinct usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]) As usn1 Order By .9e-12 Starts With .0e-0 Starts With usn2 Ascending Skip `4esn`[..$#usn7][..0X7]"), + octest:ct_string("Unwind Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] As `7esn` Remove Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where $usn2[.12e12]).usn1?.``!._usn4?,(`7esn` :_usn4)<-[`2esn`?:usn2|:`` *0Xa..7]->({`8esn`:$`` Is Null Is Null})._usn3!._usn4._usn3?,`7esn`(07 =~7.0e-0 =~`8esn`).``.usn2? Union All Remove {`4esn`:`8esn` =~.1e1 =~.0,`4esn`:Count(*) Starts With $_usn4}.@usn5?,count(Distinct 9.1e-1 =~@usn5 =~Count ( * )).`2esn`,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7).#usn7!"), + octest:ct_string("Merge ((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Remove @usn5(Distinct Null =~true =~.1e-1,12e12[..123456789][..false])._usn4!,All(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]).`4esn`? Merge (@usn6 :_usn4)"), + octest:ct_string("Create `8esn`=(`3esn` :#usn7:_usn3)<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(`2esn` :usn2)<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}),`4esn`=(((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Union Remove Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]).`2esn`!._usn4! Unwind 12[0xabc..][$0..] As @usn5 Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null"), + octest:ct_string("Return Distinct *,true Is Null Is Null As _usn3 Order By 12e12 Is Not Null Desc,0.0[$1000][3.9e-1] Ascending Skip {`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]} =~[usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|.9e1[..`5esn`]] Limit .0e0 =~5.9e-12 =~`7esn` Return Distinct *,Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),3.9e-1[.0e0..][07..] Order By 2.9e1 Starts With 12e-12 Starts With 0.0 Asc,.0e0 Starts With $@usn6 Starts With Null Descending Remove (`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``!,usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4! Union All Merge `1esn`=(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))) On Create Set `8esn`+=Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),`8esn`+=0.0 Is Not Null Is Not Null On Create Set `2esn` =$999[$usn1...0e0] Remove Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1).``"), + octest:ct_string("Remove {_usn4:$#usn7 Is Not Null Is Not Null,`3esn`:9.1e-1 In #usn8}._usn4?,Any(`8esn` In 01234567[..0.0][..false] Where 6.0e0 Is Not Null).@usn5,`6esn`($0 Starts With 010)._usn3! Unwind 10.12e12 In `3esn` In $usn2 As #usn7 Merge ((#usn8 :#usn8)) On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] On Match Set `2esn`+=9e-12 In usn2,`7esn`($usn1 Is Not Null).`1esn`! =@usn5 Ends With 's_str' Ends With 01,None(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).@usn5! =$`2esn`[8.1e1] Union Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Unwind {@usn6:\"d_str\" =~9e-12 =~`5esn`}[#usn8(Distinct 999 Starts With .9e12 Starts With 3.9e-1,true Contains 0x0)..[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010]][All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)..{`4esn`:0 Starts With 0Xa Starts With $0}] As `8esn` Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Where $`6esn` Starts With `4esn` Union All Detach Delete ({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`3esn`?:`1esn`]-(:`8esn`:#usn7{@usn5:$12 Contains $`7esn` Contains .0})<-[@usn6?:@usn5]->(:usn1{usn1:Count(*)[0.12..2.9e1]}) Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2|9e0[..1e1]) Ends With {`1esn`:7.0e-0[3.9e-1..`1esn`]},{#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]),$#usn7 In .12e-12 Remove Any(@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null).#usn8?"), + octest:ct_string("Detach Delete 7 Contains $#usn7 Remove Single(`5esn` In 12[0xabc..][$0..] Where 1000[$`6esn`..12.0]['s_str'..$`3esn`])._usn4?,(_usn4 :@usn5)<-[@usn5?:@usn5 *..01]-(`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}).`5esn`._usn3.#usn7? Union All Unwind {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) As `5esn` Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),(usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}) Return Distinct ({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)[{``:.1e-1 Ends With $`8esn` Ends With .9e0,`7esn`:.9e-12 Is Not Null Is Not Null}][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])],Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1)"), + octest:ct_string("Merge #usn8=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) On Create Set `2esn` =(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)],`3esn` =9e1 Contains 4.9e12 Contains 123456789 Detach Delete 0x0,$``[`6esn`][00],'s_str' Ends With $usn1 Union All Merge _usn4=(((`2esn` {`7esn`:Count(*)[.0e0..][#usn7..]})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)-[:#usn8|:`4esn` *12..0Xa]->(`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]}))) Remove [usn2 In $_usn3 =~$usn1 =~_usn4 Where 0xabc In 10.12e12|9e-1 Starts With 123.654 Starts With .9e1].`2esn`?.`5esn`"), + octest:ct_string("Unwind Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)[{_usn3:$0 Starts With 010}] As _usn4 Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12|.1e-1).`1esn`?,All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]).`7esn`!,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).usn1? Union All Return *,$999 Order By _usn3[`2esn`..10.12e12][9e1..true] Descending Skip $`2esn` Ends With $`8esn` Limit All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],.1e-1 Is Null,.9e12[$usn2..][7..] As `2esn` Limit _usn4 Is Null Is Null Where .12e-12 Ends With $`7esn` Merge ``=(({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})) On Create Set usn2:usn2,usn1+=0xabc[$`4esn`..][`8esn`..],#usn7+=Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12])[..None(_usn3 In ``[$``..] Where Null[`2esn`..])][..{`3esn`:.0e-0 Starts With $#usn7 Starts With _usn3,usn2:`6esn` In 9e-12}] On Match Set #usn7 =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct)"), + octest:ct_string("Return Distinct *,0X0123456789ABCDEF Contains 8.1e1 As @usn6 Order By .1e1 =~010 =~0.12 Asc,(:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null) Ascending Skip 9e1 Ends With .9e0 Limit $12[01] Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set `6esn` =.1e1 =~10.12e12 On Match Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] Union Merge ((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) On Create Set (`6esn` :usn1)<-[usn1{`2esn`:usn2 Ends With .0}]->(_usn3 :_usn3:_usn3)-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})._usn3? =Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}],@usn5 =.9e1[...12e12] Unwind All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] As #usn8 Merge (#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) On Create Set Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])._usn3 =_usn4[7][8.1e1],#usn7+=Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()],`1esn`:#usn7:_usn3"), + octest:ct_string("Unwind $`3esn` Is Not Null As `4esn` With Distinct 0x0 Starts With $`5esn` Starts With 9e-12,$`6esn` Ends With 12 Order By Count ( * )[0..][010..] Desc Skip .9e-1[12.0]"), + octest:ct_string("Delete `` =~$`5esn`,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]|12e12 Is Not Null][{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]}],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|$@usn5 In .9e1 In $``) Contains (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null}) Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Create Set (`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8,_usn3+=Null[..07] On Match Set `2esn`+=3.9e-1[.9e-12],`5esn` =.0,`3esn`+=$_usn4 Is Not Null Union Return Count(*)[8.1e1..],Any(`` In $_usn3 Is Not Null Where 12e12[true..][$`2esn`..]) =~{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12} =~{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3} As `3esn` Order By 9e-1[0X0123456789ABCDEF][0] Ascending,`5esn` Contains `6esn` Asc,9e12 Is Null Is Null Ascending Limit (#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})[Any(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)..][Single(_usn3 In ``[$``..] Where Null[`2esn`..])..] With Distinct *,All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Starts With 10.12e12 Starts With #usn7(false =~4.9e12),0e0[`4esn`] Where 1e1 Ends With Null Ends With `7esn` Detach Delete Filter(`2esn` In .9e-12[0e0...9e-1] Where .9e-1 Is Not Null Is Not Null)[Any(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1])..(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})][(`7esn` :#usn7:_usn3{`3esn`:00[0e-0...9e-1][1e-1..``]})<-[_usn3:_usn3|`2esn`{`7esn`:0X7[_usn4..1.9e0][Count ( * )..false],_usn4:.9e-12[9e1..8.1e1]}]-({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]})..Single(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..])],8.1e1 Is Null Is Null,`7esn`(7.0e-0[.._usn4][..0X7],$`5esn`[7..]) Contains [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]"), + octest:ct_string("Remove Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]).usn2.@usn5!"), + octest:ct_string("Create usn2=(((`7esn` :``:usn1)<-[:`4esn`|:@usn5]-(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[?]->(_usn4 :@usn5))),((:`7esn`)) Return *,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null As `6esn`,01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..] Skip [_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789|0e-0 Contains _usn4 Contains 1e-1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567) Limit @usn5[``..][12e-12..] Union All With Distinct *,$0[$`7esn`..$`3esn`]['s_str'...0],usn1 Ends With 12 Order By Count ( * )[0..][010..] Desc Limit 12.0 Starts With 07 Starts With $`3esn` Where @usn6[usn1..][`1esn`..] Match `3esn`=(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}),usn2=((:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]})) Union Match _usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))) With *,`8esn`[..7.0e-0][..0xabc] As `3esn` Order By Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Ascending,Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] Ascending Skip $@usn5[usn1..][$`8esn`..] Where `7esn` Is Not Null With Distinct $`` Ends With 6.0e0,$`6esn` In `2esn`,\"d_str\" Starts With `6esn` Starts With 1.9e0 As _usn3 Order By true Is Null Is Null Descending,(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] Descending,{usn1:`7esn` Is Not Null}[Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8)..{`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3}][Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 9.1e-1[.1e-1])..{usn2:1e1[3.9e-1][.9e-1]}] Descending Skip 010[11.12e-12..]"), + octest:ct_string("With Distinct *,9.1e-1 =~@usn5 =~Count ( * ) As _usn4 Order By 1000[$`6esn`..12.0]['s_str'..$`3esn`] Ascending Limit {#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0} Is Null Is Null Remove All(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8).@usn6,`3esn`:`8esn`:#usn7,_usn3(Distinct @usn6 In 3.9e-1 In 9e-12,true Starts With 2.9e1 Starts With 9e1).`7esn` Union All With .1e1[9e-1][$usn1] As `6esn`,{_usn3:07 =~_usn4 =~.9e12}[All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 8.1e1 Is Null Is Null)..] As #usn8,10.12e12[0Xa..999][1000..Count(*)] As usn2 Order By `4esn`[0.0..][.1e-1..] Desc,$_usn3 Contains 1e1 Contains .12 Ascending Limit 1e-1 =~0.0 =~9.1e-1 Where $12[01] With *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip usn2 Starts With $_usn3 Where \"d_str\"[12e12..][4.9e12..]"), + octest:ct_string("Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``]|`4esn` Starts With $_usn3 Starts With .9e-12].@usn5!._usn4?.`1esn`?,All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where true In $0 In @usn5).`3esn` Union Remove Single(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1).`2esn`?,`1esn`:_usn4,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where usn1 Is Not Null).#usn8? Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where $`1esn` Starts With Count(*) Starts With $`8esn` Return Distinct Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] Order By 01[..0.12] Asc,6.0e0 Ends With .12e-12 Ends With 999 Ascending,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `2esn` Starts With $`7esn` Starts With _usn4|`1esn`[1000][Null]) Contains Single(`8esn` In 01234567[..0.0][..false] Where Count(*)[9e1..][12e-12..]) Desc Skip (`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})-[`6esn`? *123456789..0x0]->({`6esn`:$usn1 Starts With usn1 Starts With 1e-1,#usn8:$#usn7 Starts With 10.12e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}) Is Null"), + octest:ct_string("Merge (`8esn` :_usn3:_usn3)-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})-[ *..01]->(#usn8 :#usn7:_usn3) Union Return Distinct *,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]) As usn2 Limit [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]} With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Limit #usn7[10.12e12..][\"d_str\"..] Where 9e12[...12e12][..$`2esn`] Union All With Distinct *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Remove Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $@usn5 =~.12e-12).`4esn`?,Single(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]).`8esn`?"), + octest:ct_string("Return `1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `4esn` Unwind $usn1[$12..] As `7esn` Merge ((:`2esn`:`8esn`{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})) Union Merge `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})) On Match Set `8esn`+=Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\"),`1esn`+=4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12),(`` {_usn4:9e0[..1e1]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(@usn5 :@usn6:_usn4).#usn8.`1esn`.usn1! =00[0e-0...9e-1][1e-1..``] With Distinct *,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As `5esn`,0X0123456789ABCDEF Contains 8.1e1 Skip false Is Not Null Is Not Null Where 999[...12e12][..0]"), + octest:ct_string("With `8esn` As usn2 Order By Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"]|`7esn`[3.9e-1..][$@usn5..])[..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] Desc,.0e0 Is Null Is Null Descending,$`4esn` =~0e0 Ascending Unwind $usn1 Is Null As `2esn` Return Distinct Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12)[Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12)..][`4esn`(Distinct)..],Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] As `7esn`,None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[..Filter(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0)][..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] As #usn8 Order By {`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])] Asc,`6esn`[`6esn`..] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip `6esn` Is Not Null Union Remove (:_usn4{``:$_usn3[1e-1..]})-[@usn5?:`8esn`|:`2esn`]-(`2esn` :_usn3:_usn3).#usn7.`1esn`"), + octest:ct_string("Optional Match ({`4esn`:$@usn5[$#usn8..][_usn3..]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})"), + octest:ct_string("Delete {_usn4:1.9e0 =~$`8esn` =~01234567}[All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)],Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Unwind {@usn5:.0 Is Null Is Null}[Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0|01 Ends With \"d_str\")][[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|0X0123456789ABCDEF[1.9e0]]] As _usn3 Merge usn1=(`5esn` :`1esn`) Union All Create @usn6=((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`6esn`:`6esn`|#usn7*]->(`3esn` {_usn4:$`2esn` Starts With 0x0})-[#usn8 *010..{@usn5:6.0e0 Is Not Null}]->(@usn5 :`7esn`)) With Distinct 11.12e-12 =~{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]} =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|0[..$@usn5]),$123456789 Is Not Null,1000 Starts With 11.12e-12 Starts With 01234567 Skip 12 In 1000 In \"d_str\" Limit All(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])[..(:_usn4{`4esn`:9e1 Contains 4.9e12 Contains .9e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})][..(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)<-[?{_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})] Where 12.0 Contains $_usn4 Contains $usn2 Merge (((`4esn` {_usn3:@usn6 In 3.9e-1 In 9e-12})<-[`6esn`? *123456789..0x0]-(`7esn` :`8esn`:#usn7{`4esn`:`8esn` =~.1e1 =~.0})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`6esn` {_usn3:$_usn4 Contains .12e-12}))) On Match Set `4esn`+=$`2esn`[$1000][2.9e1],{usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}._usn3 =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1} On Create Set ``+=$`8esn` In .1e1 In 010,Single(`8esn` In 01234567[..0.0][..false] Where .9e12 =~`5esn` =~07).@usn5! =9e-1 Starts With 123.654 Starts With .9e1 Union Remove [#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1].`6esn`._usn4?._usn4!,{`3esn`:#usn8[..#usn7][..@usn6]}.#usn8? Create ((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),(((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]})))"), + octest:ct_string("Unwind (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] As `2esn` Remove {`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}.`7esn`!.@usn5 Union Merge usn1=((_usn4 :`5esn`)-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})) On Match Set Any(`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]).usn1!.``?.``? =false =~4.9e12,usn1 =7.0e-0[3.9e-1..`1esn`] On Match Set usn2:`4esn`:`7esn` Union All Return *,.9e1 Starts With `4esn` Limit 0e0 Ends With 0X7 Ends With .1e1"), + octest:ct_string("Match usn2=((:@usn5)-[@usn5:_usn3|`2esn`{`1esn`:5.9e-12[$`4esn`],usn1:9.1e-1[Count(*)..][5.9e-12..]}]->(usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})),(({#usn7:0X7[Count(*)][.9e0],`2esn`:0x0[`5esn`][$`5esn`]})-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})) Unwind $999[$usn1...0e0] As `3esn` Unwind `6esn` In 9e-12 As _usn4 Union All Match ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})),_usn3=((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Where $usn2 =~$`2esn` =~\"d_str\" Optional Match #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}),`1esn`=(:usn1{usn1:Count(*)[0.12..2.9e1]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})"), + octest:ct_string("Detach Delete (`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})-[`6esn`? *123456789..0x0]->({`6esn`:$usn1 Starts With usn1 Starts With 1e-1,#usn8:$#usn7 Starts With 10.12e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}) Is Null,_usn4 Is Null Is Null Optional Match #usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Union Remove {#usn8:``[$``..],`1esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}.#usn8.#usn8?,`4esn`:`6esn`:`3esn`,`7esn`(9.1e-1 Contains 0xabc).`7esn`"), + octest:ct_string("Detach Delete None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4) Union Merge @usn6=(((`` :`5esn`)-[:`4esn`|:@usn5 *01234567$_usn4]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})-[`1esn`?:`1esn` *07..]-(_usn3 :_usn4))) Match ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})),_usn3=((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Where $usn2 =~$`2esn` =~\"d_str\" Unwind Count(*)[12..][0X0123456789ABCDEF..] As #usn7 Union Create @usn6=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]}))"), + octest:ct_string("Optional Match usn1=(`5esn` :`1esn`),`4esn`=((@usn5 :usn1{usn1:.9e1[12]})) Unwind usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]] As #usn8 Merge @usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}) On Create Set Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0).``? =.9e1[11.12e-12] On Match Set `7esn` =Filter(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) Starts With All(`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]) Starts With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`)"), + octest:ct_string("Merge ((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) On Create Set (`6esn` :usn1)<-[usn1{`2esn`:usn2 Ends With .0}]->(_usn3 :_usn3:_usn3)-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})._usn3? =Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}],@usn5 =.9e1[...12e12] Unwind All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] As #usn8 Merge (#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) On Create Set Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])._usn3 =_usn4[7][8.1e1],#usn7+=Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()],`1esn`:#usn7:_usn3 Union Unwind Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)[..None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null)][..[@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`]]] As `3esn` Optional Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),`5esn`=(`8esn` $12)<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}) Where $`` =~$_usn3"), + octest:ct_string("Return Distinct *,1000[Null..] As `1esn`,.9e1[#usn7..] As `7esn` Limit Count ( * ) In 999 Unwind 01234567[..Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null)][..999] As usn2"), + octest:ct_string("Detach Delete Count(*)[0.12..2.9e1] Unwind @usn5 In $1000 In 07 As #usn7 Return [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..] Union All Merge @usn5=((:`7esn`{usn1:123.654 Ends With 0Xa Ends With .12e12})-[ *0..010]->(_usn4 :`5esn`)) On Match Set ``+=0.12[07..3.9e-1] On Create Set @usn6(9.1e-1[$`4esn`..][$`4esn`..]).@usn5?.#usn8!.`2esn` =usn1[12e-12],`4esn` =$`6esn`[..12e12][.._usn3] Create @usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})"), + octest:ct_string("Match (:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Remove {usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}.`8esn`! Union Return Distinct *,$`3esn` Is Null Is Null,`3esn` Starts With _usn4 As @usn5 Skip $`5esn` In `5esn` Limit $0 Contains .12e-12 Union All Unwind _usn4 Ends With .0 Ends With 7 As `7esn`"), + octest:ct_string("Match ``=((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),(((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}))) Union All Delete ``(Distinct #usn7 =~`5esn` =~``)[Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..])..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)],4.9e12[1e1..'s_str'][Count(*)..0X7] Unwind .0e0 Is Null Is Null As #usn8 Detach Delete 7.0e-0 Is Null Is Null Union Unwind `4esn`(Distinct 01[..0.12],$`8esn` Is Null) Contains All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]) As `1esn` Return Distinct *,Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,`3esn` Contains 01234567 Contains .9e-12 Order By 12 =~$@usn5 Desc,0Xa In 0.12 In $#usn7 Descending Create ``=((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})),_usn3=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`)))"), + octest:ct_string("Return 0.0[..Null][..9e-12] As `1esn`,$0 =~01234567 As `2esn` Order By All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Asc,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Skip (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null) Remove _usn3:`1esn`,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']).`2esn`!"), + octest:ct_string("Remove (:@usn5{`4esn`:.0e0[$`6esn`..]})-[? *0X0123456789ABCDEF..0]-({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`).#usn7! Create (@usn6 :_usn4) Union Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null"), + octest:ct_string("Delete (`8esn` :_usn3:_usn3{`6esn`:9e0[..1e1],@usn6:0x0 =~$7 =~Null})<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`8esn` *1000]->(usn1 :_usn4) In Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where ``[$``..]) In {usn2:.9e-1 Is Not Null Is Not Null},1e1 Starts With `8esn` Starts With .9e0 Return Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) =~Filter(`8esn` In 01234567[..0.0][..false] Where .9e12 =~`5esn` =~07) =~Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0|12[0xabc..][$0..]) As `3esn`,1000[..0e0][..$`6esn`],`7esn` Ends With `7esn` Ends With $`3esn` As #usn8 Order By {`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) Descending,All(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Starts With Filter(_usn3 In ``[$``..] Where .0e0[1e1..][01234567..]) Starts With `3esn`(Distinct) Descending Skip 1e1 Ends With Null Ends With `7esn` Limit {`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]]"), + octest:ct_string("Unwind 0e0 Ends With `7esn` Ends With usn1 As _usn3 Unwind 5.9e-12[9e0..] As @usn5"), + octest:ct_string("Optional Match `3esn`=(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))),(((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})-[`2esn`?:#usn8|:`4esn`]-(:@usn6:_usn4{`2esn`:$usn1[$7..][$0..]}))) Where $`4esn` In 123456789 In `5esn` Delete All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])[..{#usn8:.12e12[Count(*)..]}][.._usn4(Distinct `2esn` Starts With 999,$`5esn` Starts With 0X7 Starts With 1e1)],Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1]),07 Ends With 0X7 Ends With 's_str' Create #usn7=((`4esn` {_usn3:@usn6 In 3.9e-1 In 9e-12})<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4)) Union All Remove All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0)._usn3? Unwind $@usn5[..1e-1] As _usn4 With 1000[Null..] As `1esn`,.1e1 Starts With $7 Order By Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Ascending,$`7esn` Contains 0X7 Asc,$_usn4 Is Not Null Ascending Limit .0e0[$`1esn`][.9e-12]"), + octest:ct_string("Delete `1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)],_usn4 In `3esn` In 7.0e-0,'s_str' =~.9e1 =~3.9e-1 Union All Delete Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 07[.0e0][3.9e-1]) Contains Extract(`` In $_usn3 Is Not Null),Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Merge (((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999}))) Optional Match #usn7=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),`7esn`=((#usn7 )) Union All With Distinct None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn`[..0x0][..\"d_str\"])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1])..Single(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])] As `4esn`,Null Is Not Null Is Not Null Order By {`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1} In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) Descending,$`6esn` In `2esn` Ascending,usn2 Starts With usn1 Descending Skip 12e-12[.0..] With Distinct *,.9e-12[9e1..6.0e0][`1esn`..9e0] As @usn6,$`6esn` In $`3esn` In 9e1 Order By 5.9e-12 Ends With 1e1 Ends With false Descending,$`2esn` Starts With .12e12 Starts With 3.9e-1 Ascending,`6esn`[`6esn`..] Descending Skip $_usn4 =~$_usn4 =~2.9e1 Where .9e0 Is Null Is Null Remove Any(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).`2esn`!,({``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-(:`3esn`{_usn4:Count(*) =~`5esn` =~$usn2,`7esn`:$123456789[$_usn3..][$usn2..]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`).@usn6.@usn5?"), + octest:ct_string("Remove Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Starts With 9e1 Starts With $`4esn`).`7esn`?,[usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..]|$_usn4 Is Not Null]._usn3! Merge `3esn`=({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}) On Match Set `6esn`+=[usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null]][(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})..] On Match Set `7esn` =Filter(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) Starts With All(`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]) Starts With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`)"), + octest:ct_string("Remove [`5esn` In 12[0xabc..][$0..] Where _usn3 Ends With 01 Ends With .1e-1].@usn5!.`3esn`,@usn6($`` Is Not Null Is Not Null,.9e0 In 9.1e-1 In $123456789).`8esn`,All(`` In $_usn3 Is Not Null Where 4.9e12 Contains .12e12 Contains 0xabc).`6esn`? Return Distinct 9e-12 In 5.9e-12 As ``,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0x0 Contains $`1esn` Contains 0.0) In None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0) As `5esn` Order By 0e0 Ends With 0X7 Ends With .1e1 Desc,(#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Asc,0x0 =~$7 =~Null Desc"), + octest:ct_string("Unwind .9e12 Is Not Null Is Not Null As usn2 With *,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e1[..Count(*)][..7.0e-0]) =~[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 01[Count(*)..0e-0][7..$`2esn`]] =~Single(usn2 In .0e0[$`6esn`..] Where 01[1e-1]),usn1 Ends With 12 As `` Limit `7esn` Ends With `7esn` Ends With $`3esn` Union Unwind 0e-0 Starts With 9e-12 Starts With false As `6esn` Merge ((usn1 )-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0}))"), + octest:ct_string("Create ((:@usn5{`7esn`:7.0e-0[`6esn`..]})<-[`7esn`?:``|:`3esn`{@usn5:0x0[`5esn`][$`5esn`]}]->(`3esn` :_usn3:_usn3)<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})),((_usn3 :#usn8)-[_usn4?:``|:`3esn`]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1})) Create @usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}) Union Delete $`1esn` Starts With .12,8.1e1 Contains 0e-0 Contains $_usn3,12e12 Is Not Null Union Merge usn1=({`5esn`:07 Starts With usn1 Starts With 010})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) Remove [`2esn` In .9e-12[0e0...9e-1]|$1000[$1000...9e0]].`1esn`._usn3!,{@usn5:`2esn` =~usn1,#usn8:$`` Is Not Null Is Not Null}.@usn5!,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0 Starts With 0Xa Starts With $0].`7esn`! Unwind $0[..0x0][..01234567] As `7esn`"), + octest:ct_string("Delete {#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0} Is Null Is Null,`3esn` In 0X7 Return *,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] As `7esn` Skip Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12) In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null|.12e12[$12..4.9e12][11.12e-12..9e12]) In {`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``} Match ``=((@usn6 :`5esn`{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *0x0..{`3esn`:12[0xabc..][$0..],@usn5:`6esn` Is Not Null Is Not Null}]->({#usn8:7.0e-0[3.9e-1..`1esn`],usn1:.0e0[..1e1][..$1000]})-[:`4esn`|:@usn5 *01234567$_usn4]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})),(((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})))"), + octest:ct_string("With 123.654 Is Not Null Is Not Null As `7esn`,({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]})[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where $`8esn`[$``..$`1esn`][9e-12..$7])] Skip `2esn` =~usn1 Detach Delete (`3esn` :#usn7:_usn3)<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) Ends With [_usn3 In ``[$``..] Where @usn5 Ends With 0],Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1])[[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null|`3esn`[3.9e-1..$`5esn`]]..][All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `8esn` Is Null)..],$1000 Contains 01234567 Contains 0X7"), + octest:ct_string("Match (((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) Unwind 0X7 Starts With 1e1 Starts With $12 As #usn8 Remove (#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *01234567]->(`5esn` :`2esn`:`8esn`).#usn7!.`3esn`!.@usn6! Union All Unwind [usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]|'s_str' Is Null] Is Null As _usn4 Union Merge usn1=(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ) Merge ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})) On Create Set @usn5+=_usn4 Ends With .0 Ends With 7,None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0e-0 Contains _usn4 Contains 1e-1).`6esn`! =Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) On Create Set [_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8].`5esn`! ={_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12),#usn8 =(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] Match @usn6=(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]}),`8esn`=(`` {_usn4:9e0[..1e1]})"), + octest:ct_string("Delete 's_str' In `7esn` In .9e-12 Union All Merge `5esn`=(((`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`))) On Create Set @usn6(9.1e-1[$`4esn`..][$`4esn`..]).@usn5?.#usn8!.`2esn` =usn1[12e-12],`4esn` =$`6esn`[..12e12][.._usn3] On Match Set #usn8 =8.1e1[$`5esn`][0e0],@usn5 ={`3esn`:`1esn`[9.1e-1]} Ends With {`2esn`:7.0e-0[3.9e-1..`1esn`],`7esn`:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]} Ends With None(`5esn` In 12[0xabc..][$0..] Where 1e1 Starts With `8esn` Starts With .9e0),None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1).`8esn`!.`2esn`!.``? =$1000 Union Delete {_usn4:1.9e0 =~$`8esn` =~01234567}[All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)],Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Unwind {@usn5:.0 Is Null Is Null}[Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0|01 Ends With \"d_str\")][[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|0X0123456789ABCDEF[1.9e0]]] As _usn3 Merge usn1=(`5esn` :`1esn`)"), + octest:ct_string("Match (:#usn8{`7esn`:0[$`1esn`..`8esn`]})-[`4esn`?:`6esn`|#usn7]->(`1esn` ),((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})) Match _usn3=((@usn5 :usn1)-[? *123456789..0x0{`8esn`:`2esn` Is Not Null Is Not Null}]->(`` :usn1)),({_usn4:$`3esn` In 's_str' In $#usn7})"), + octest:ct_string("Return Distinct {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As ``,$`8esn`[12.0..][4.9e12..],.1e-1 Ends With @usn6 As @usn6 Order By false Starts With 3.9e-1 Asc,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Descending Delete `2esn`[..9.1e-1][..0xabc],`6esn`[`5esn`..][0.12..],0.0[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])..] Unwind $`6esn`[$`8esn`..][false..] As `6esn` Union All With 123456789 =~$`1esn` =~#usn7 As `5esn`,Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12e12 Starts With 4.9e12 Starts With 0e0)[Extract(`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0|12e12[..$`8esn`][...0e-0])] As `5esn`,{#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})] Limit $12 Contains $`3esn` Where .1e-1 Starts With 1000 Starts With $`1esn` Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1)._usn3!,Any(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).#usn8? Remove None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])._usn4._usn4,Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where usn1[..10.12e12][..7]).``? Union All Remove (`` :@usn6:_usn4{`4esn`:00 Is Not Null Is Not Null})-[`1esn`:usn1|:#usn8]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}).`6esn`!.@usn5?._usn4?,@usn5:_usn4,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]).`2esn`!.`8esn`!._usn3!"), + octest:ct_string("Merge `2esn`=((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) Create #usn7=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Merge _usn4=(((`2esn` {`7esn`:Count(*)[.0e0..][#usn7..]})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)-[:#usn8|:`4esn` *12..0Xa]->(`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]}))) On Match Set _usn4 =$`6esn` In .9e12 In $#usn7,@usn5 =12 Contains _usn3,None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null).`8esn`? =11.12e-12 Contains 9e-12 On Match Set `2esn` =$`3esn`[010..][9e-1..],[`8esn` In 01234567[..0.0][..false] Where 5.9e-12[.1e1][$#usn8]|12 Contains usn2 Contains $usn2].#usn7 =01234567[..0.0][..false],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789).usn1!.``! =010 Starts With 0.0 Starts With .0e0 Union All Optional Match @usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),`3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})) Create `3esn`=(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`),(((:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]})-[`8esn` *..7{usn2:12.0 Contains $_usn4 Contains $usn2}]-(`8esn` :`7esn`{`6esn`:_usn4 Is Not Null Is Not Null}))) Delete .9e-1 =~.9e-1 Union With Distinct *,$7 Contains _usn4 Contains $`1esn`,0e-0[$`2esn`][8.1e1] As @usn5 Order By 123456789[\"d_str\"..] Asc,9.1e-1[$`4esn`..][$`4esn`..] Ascending"), + octest:ct_string("Remove _usn3:#usn8,`5esn`(Distinct $`8esn` =~.9e12 =~010,$#usn8[$1000..]).`3esn`?,Extract(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`]|$`3esn`[..`1esn`][..$`7esn`]).@usn6!"), + octest:ct_string("Return *,false[$1000..$@usn6][7..12],.0e0[8.1e1..0.12] Union Remove [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where true Contains 0x0|$@usn6 Is Not Null Is Not Null].`8esn`,`2esn`:`3esn`,[`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1|`6esn`[..$@usn6][..$`1esn`]].`8esn`? With Distinct *,[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},07 =~_usn4 =~.9e12 As `` Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending Where .9e-1[12.0] Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) On Match Set `5esn` =$`2esn` Starts With #usn7 Starts With 12e12,#usn7(07[.0e0][3.9e-1]).`3esn` =$``[`6esn`][00] On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1 Union Create usn2=(((`7esn` :``:usn1)<-[:`4esn`|:@usn5]-(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[?]->(_usn4 :@usn5))),((:`7esn`)) Return *,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null As `6esn`,01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..] Skip [_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789|0e-0 Contains _usn4 Contains 1e-1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567) Limit @usn5[``..][12e-12..]"), + octest:ct_string("Merge (:_usn3:_usn3{`5esn`:`2esn` Is Not Null Is Not Null,`7esn`:2.9e1})<-[`7esn`*..]-(`7esn` :usn1) Return Distinct `2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,1e1 In .1e-1 In .0 Order By Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) Asc Skip 00 =~.9e-12 =~usn1 Limit 12e12 Ends With usn1"), + octest:ct_string("Remove @usn5:`7esn`,{_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12}.usn2!.`1esn`?.#usn7"), + octest:ct_string("Match `6esn`=(usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}),(({_usn4:01234567[6.0e0][$usn2]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})) Union All Remove ({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})<-[`3esn`?:`5esn`]->(`2esn` ).``!,$12.`8esn`!.usn2!._usn4,None(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]).`3esn`?.@usn6!._usn3!"), + octest:ct_string("Optional Match ((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})),`4esn`=(((`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})-[``]-(`7esn` :``:usn1{`1esn`:0e0 Starts With $1000 Starts With `2esn`,@usn6:@usn6 In 3.9e-1 In 9e-12})-[@usn5*{`7esn`:`3esn` Starts With _usn4}]->(#usn8 :_usn4{_usn3:.0 Is Null Is Null}))) Optional Match (((`5esn` :#usn7:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(usn2 {@usn5:$usn2 Ends With `8esn` Ends With _usn3,@usn6:`7esn` Is Not Null}))) Detach Delete 9e1 Ends With 123456789,usn1 Ends With .9e-12,9e-12[$0][$`4esn`]"), + octest:ct_string("Remove @usn5(Distinct Null =~true =~.1e-1,12e12[..123456789][..false])._usn4!,All(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]).`4esn`? Optional Match `5esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}),``=((`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]})-[?:@usn6|:_usn3 *999..]->(`1esn` :`1esn`{`5esn`:$`4esn`[..2.9e1][..07]})<-[`5esn`?:#usn7|:`8esn` *010..]->(:@usn5{usn2:$usn1[$12..]})) Where true Starts With 2.9e1 Starts With 9e1 With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) Starts With count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) Where $`3esn`[..`1esn`][..$`7esn`] Union Unwind Extract(_usn4 In Count(*)[9e1..][12e-12..] Where $_usn4[..usn2]|`1esn` Starts With 999 Starts With 3.9e-1) =~(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}) =~Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]) As _usn3 With $usn2 In usn1 In 1e-1 Skip .9e12 In 12e12 Limit Null[10.12e12..] Where 9e12[...12e12][..$`2esn`] Merge ((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) On Create Set #usn7+=$#usn7 Starts With #usn7,_usn3 =`5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]],`8esn` =07 Ends With @usn6 Ends With _usn3 On Match Set #usn7+=10.12e12[Count(*)..],#usn8 =@usn6[.9e12..0e0] Union Create ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6) Match ((:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[? *12..0Xa]-(`2esn` :#usn7:_usn3)<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})),((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`5esn`]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)) Unwind 10.12e12 In `3esn` In $usn2 As #usn7"), + octest:ct_string("Optional Match #usn7=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),`7esn`=((#usn7 )) Return *,`1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null],#usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(`5esn` In 12[0xabc..][$0..] Where .0e0[1e1..][01234567..]) As `2esn` Limit (:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})<-[``:`8esn`|:`2esn` *12..0Xa]-(usn2 :@usn5{`3esn`:$usn1 Is Null})[..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 8.1e1 Is Null)][..#usn7(Distinct usn2 Ends With .0)] Union Merge @usn5=(({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) On Create Set {@usn6:$_usn3 Is Not Null Is Not Null}.usn2! =.9e-12[0e0...9e-1],usn2 =12e12[07..]"), + octest:ct_string("Remove All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0).@usn6 Union Return Count(*)[8.1e1..],Any(`` In $_usn3 Is Not Null Where 12e12[true..][$`2esn`..]) =~{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12} =~{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3} As `3esn` Skip 12 Contains $usn1 Contains 0 Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),(({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})<-[`4esn`:_usn4|`1esn` *123456789..0x0{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})-[_usn3 *..7]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})) Merge ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?]->(:@usn5{usn2:$usn1[$12..]})) On Match Set _usn3+=$`2esn` Starts With #usn7 Starts With 12e12,[`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1]._usn3!.`5esn`!._usn4 =$`1esn` Starts With Count(*) Starts With $`8esn`,`5esn`+=0X7 =~$123456789 =~$`` Union All Delete 0.0[0x0..0.12]['s_str'..false]"), + octest:ct_string("Return Distinct All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Order By `6esn`[0x0..@usn5][$1000...9e-12] Desc,Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null Descending,Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Asc Limit 11.12e-12[010..11.12e-12] Optional Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Where `4esn` Starts With $_usn3 Starts With .9e-12 Union All Remove (`` :@usn6:_usn4{`4esn`:00 Is Not Null Is Not Null})-[`1esn`:usn1|:#usn8]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}).`6esn`!.@usn5?._usn4?,@usn5:_usn4,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]).`2esn`!.`8esn`!._usn3! Union All Create (`1esn` :``:usn1{usn1:123.654 Ends With 0Xa Ends With .12e12})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})"), + octest:ct_string("Remove (:`7esn`{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[#usn8?:`4esn`|:@usn5]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})._usn3!,Any(`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0).usn1"), + octest:ct_string("Match `1esn`=(((@usn5 :usn2)-[`4esn`?:_usn3|`2esn`]-(:#usn7:_usn3)<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}))) Create `3esn`=((:`2esn`:`8esn`)<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}))) Delete Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null)[#usn7(`4esn`[0.0..][.1e-1..])..@usn6(_usn4 Is Not Null Is Not Null)],[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12]][None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null)..[`5esn` In 12[0xabc..][$0..] Where .12e12[$12..4.9e12][11.12e-12..9e12]]] Union Remove None(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999).`3esn`?.#usn7?.`1esn`,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']).`2esn`!,{`2esn`:$`8esn` In 9e-12 In 3.9e-1}.`6esn`? Remove All(`8esn` In 01234567[..0.0][..false] Where $@usn5[$#usn8..][_usn3..]).`8esn`!.`6esn`! Create _usn3=((usn2 {`4esn`:12e12 Is Not Null})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}))"), + octest:ct_string("Create usn1=(:`3esn`{_usn4:7.0e-0 =~$12 =~5.9e-12}) Return #usn7[10.12e12..][\"d_str\"..] As `1esn`,9e-1 Contains $@usn5 Contains Count(*),`` Is Not Null Is Not Null As usn1 Order By @usn6 In 3.9e-1 In 9e-12 Asc,1.9e0[$12][``] Desc,12e12 =~#usn7 =~.9e-1 Asc Limit 0X7 =~$123456789 =~$`` Union All Return #usn8[7..@usn5],00 Is Null Is Null Order By 0Xa Starts With .0 Desc,01234567[$#usn7][.0] Desc Skip $`4esn`[..2.9e1][..07] Limit .9e-1[12.0] Delete $_usn4 Starts With 0e-0 Starts With 1e-1,.1e-1[@usn6..]"), + octest:ct_string("Unwind 9.1e-1[1e-1..]['s_str'..] As _usn3 Unwind .1e1[.0e0..] As ``"), + octest:ct_string("Unwind 9e-1 Starts With 123.654 Starts With .9e1 As `6esn` Create ``=((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),(((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}))) Union All Detach Delete Extract(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]|1000[..0e0][..$`6esn`])[{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}][Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 8.1e1 Ends With $0 Ends With 6.0e0)],.9e1[All(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)..][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])..] Union Optional Match `1esn`=(((@usn5 :usn2)-[`4esn`?:_usn3|`2esn`]-(:#usn7:_usn3)<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}))),`1esn`=({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(_usn3 :`6esn`:`3esn`)"), + octest:ct_string("Create ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),`1esn`=(((`5esn` :#usn7:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(usn2 {@usn5:$usn2 Ends With `8esn` Ends With _usn3,@usn6:`7esn` Is Not Null}))) Union Unwind `2esn`(Distinct) Starts With Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]) Starts With (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}) As _usn4 With (:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] Where `7esn` Is Null Return *,`` Is Not Null Is Not Null As _usn4 Skip 123456789 =~2.9e1 =~@usn5 Limit (usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]}) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1) Ends With (@usn5 :`7esn`)<-[:`1esn`]->(:`1esn`{`8esn`:.1e1 Is Null Is Null}) Union All Return Distinct $0 =~01234567 As ``,Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])[All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654])][None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])] As usn2 Order By .0e-0 =~$`7esn` =~$0 Descending,01234567 Ends With 2.9e1 Ends With 9.1e-1 Asc,0x0 Contains $`1esn` Contains 0.0 Ascending Skip $`` In $@usn6 In 3.9e-1 Return .1e1 =~`1esn`,Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],$#usn7 Is Not Null Order By All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Desc,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] Ascending,.9e0 In 9.1e-1 In $123456789 Desc"), + octest:ct_string("Create (:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}),_usn3=((@usn5 :usn1)-[? *123456789..0x0{`8esn`:`2esn` Is Not Null Is Not Null}]->(`` :usn1)) Return Distinct (`2esn` :`6esn`:`3esn`)<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789)..Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1])][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]]..Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 9.1e-1 Is Null|9e1 Contains 4.9e12 Contains .9e0)],00 As `8esn`,_usn3 Ends With .12 Ends With `6esn` Limit Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}]"), + octest:ct_string("Detach Delete (`1esn` :``:usn1{_usn4:.1e1 Is Null Is Null})<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]})[Single(`` In $_usn3 Is Not Null Where 12 =~$@usn5)..],01 Contains 12.0 With Distinct 010[11.12e-12..],Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) As `2esn`,.9e1[#usn7..] Where \"d_str\" =~9e-12 =~`5esn` Unwind 0[..$@usn5] As @usn5"), + octest:ct_string("Return Distinct *,$#usn7 Is Not Null Is Not Null As `1esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4 Order By 9e12 Ends With 07 Ascending,\"d_str\" =~9e-12 =~`5esn` Desc,Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999)[Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])][[_usn3 In ``[$``..] Where @usn5 Ends With 0]] Descending Skip `` =~$`5esn`"), + octest:ct_string("Return *,$_usn3 Contains usn2 Contains 0xabc,(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`)<-[usn2 *1000{usn1:Null Starts With $`4esn` Starts With $#usn7}]->(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})[{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}][{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}] As @usn5 Order By `7esn` Starts With 11.12e-12 Starts With `7esn` Descending,.0 Is Null Is Null Ascending Create #usn8=(((_usn4 :`7esn`{@usn6:.12e-12[999...12]})-[#usn7? *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null}))),(((`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0)))"), + octest:ct_string("Detach Delete $7 Is Null Is Null Unwind 00 Is Not Null As `1esn` Merge ((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})) On Match Set usn1:`2esn`:`8esn`,`1esn` =$`` Is Not Null,_usn4 =0.0[..Null][..9e-12] On Match Set `2esn`+=.1e1 Is Not Null Is Not Null,`5esn`+=Count ( * )[..1.9e0][..`8esn`] Union All Remove All(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count ( * ) Ends With `6esn` Ends With .12e12).`7esn`?"), + octest:ct_string("Unwind 0[..$@usn5] As @usn5 Union Create `3esn`=((:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]-(`8esn` $12)<-[#usn8? *12..0Xa]-(:#usn8$#usn8)),((usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1})-[usn1:`7esn`|@usn6 *..0xabc]->(@usn5 :usn2)<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}))"), + octest:ct_string("Merge (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[@usn5?:usn1|:#usn8 *01234567{`1esn`:7.0e-0[3.9e-1..`1esn`]}]-(`4esn` :`3esn`)<-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2}) On Match Set _usn4+=10.12e12 Starts With $_usn3 Starts With 1000 Remove [`2esn` In .12e-12[$@usn6..5.9e-12] Where 1000[..0e0][..$`6esn`]|Count(*)[12..][0X0123456789ABCDEF..]].@usn6!,`8esn`:_usn3:_usn3 Union All Detach Delete None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),`2esn`(Distinct) Starts With Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]) Starts With (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})"), + octest:ct_string("Merge _usn3=((:`7esn`)) On Create Set `` =Filter(`7esn` In .12e12[Count(*)..] Where \"d_str\" =~9e-12 =~`5esn`)[(`4esn` )<-[`7esn` *999..{usn2:12e12 =~#usn7 =~.9e-1,`6esn`:5.9e-12 =~$@usn6}]-(#usn8 :_usn4{`1esn`:$`5esn`[7..],#usn7:Count ( * )[..`8esn`]})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})..None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`5esn` Starts With 0X7 Starts With 1e1)],[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|.9e12 Starts With #usn8 Starts With 00].``! =9e1 Contains 4.9e12 Contains 123456789,`5esn`+=$usn2[0e0][$7] On Create Set [_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8].`5esn`! ={_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12),#usn8 =(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] Union Detach Delete $1000 Ends With 3.9e-1,Count ( * )[7],1.9e0 In $0 Union Optional Match (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where 123.654 Starts With 2.9e1 Remove All(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1).usn1!.`7esn`.`2esn`!,Filter(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8).@usn5?,(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})._usn3.@usn6!.@usn5"), + octest:ct_string("Return Distinct *,5.9e-12[`1esn`][usn2],9e12[1e1..010] Skip 9e12[1e1...9e-12] Limit $`1esn`[`3esn`..] Unwind 5.9e-12[$`4esn`] As usn1 Merge usn1=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})) On Match Set `4esn` =$`` =~$_usn3,`7esn` =\"d_str\" Ends With `5esn` Ends With 7 Union All Return Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null As `6esn`,`` Contains 12.0 As usn1,.1e-1 Ends With $_usn3 As @usn6 Order By $@usn6 =~$`2esn` =~9e1 Ascending,0Xa[9e0] Desc Limit .0e0[$`1esn`][.9e-12] Delete $usn1[$7..][$0..] Union Remove Filter(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])._usn4?,Single(@usn6 In 00 =~.9e-12 =~usn1 Where 0x0 Contains $`1esn` Contains 0.0).`4esn`,@usn5:`4esn`:`7esn` Detach Delete false Is Not Null Is Not Null,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]),0e0[`3esn`..][.9e-1..]"), + octest:ct_string("Unwind {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} As `2esn` Remove None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`8esn`?.`3esn`?.@usn6?,Extract(`5esn` In 12[0xabc..][$0..] Where `7esn` Ends With 9e12).`8esn` Remove All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9e12[$#usn8..9e-1][$999..$`4esn`]).``?.`8esn`!,{`8esn`:9e-1 Starts With 123.654 Starts With .9e1}._usn3!._usn3?.#usn8,(`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``! Union All Match ((`` :``:usn1)),`8esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where 999[..@usn5][..`1esn`]"), + octest:ct_string("Optional Match _usn4=(({_usn3:$`5esn`[7..]})),`5esn`=(:``:usn1{_usn3:00[$`6esn`]})-[?:_usn3|`2esn`]->(`1esn` :`7esn`) Where $@usn6 =~$`2esn` =~9e1 Optional Match ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})) With 0X0123456789ABCDEF Contains 8.1e1 As `6esn`,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,.9e0 Is Not Null Is Not Null As `5esn` Skip .1e-1 Where .0e0[$`1esn`][.9e-12] Union All Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set `6esn` =.1e1 =~10.12e12 On Match Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] Create (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}) Unwind _usn4['s_str'..] As `6esn`"), + octest:ct_string("Unwind `7esn` Ends With _usn4 As _usn3 Return Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] As `5esn` Order By 0 Starts With 0Xa Starts With $0 Ascending,$`2esn`[$usn1..] Asc,Count(*) Starts With $_usn4 Descending Limit All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..] Union Merge @usn6=(@usn5 {_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) On Create Set `2esn`+=Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],#usn8 =.9e-12[0e0...9e-1] On Match Set `6esn` ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])],All(`5esn` In 12[0xabc..][$0..] Where _usn3 Ends With 01 Ends With .1e-1).`6esn`? =12.0[..Count(*)][..5.9e-12] Unwind {#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}[{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}..] As _usn3"), + octest:ct_string("Return Distinct (`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null}) Is Null As _usn3,All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12),0.12 =~2.9e1 =~12e-12 Order By 12 Contains _usn3 Descending Union Remove Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0[..$@usn5]).@usn6?,`1esn`:_usn3:_usn3"), + octest:ct_string("Merge ({_usn4:$`3esn` In 's_str' In $#usn7}) On Match Set Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 999 Starts With .9e12 Starts With 3.9e-1).`6esn`.@usn6!._usn4? =`4esn`[0.0..][.1e-1..],Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).@usn5! =9e1 Contains 4.9e12 Contains .9e0,`1esn`+=00[0e-0...9e-1][1e-1..``] On Match Set Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1)._usn4 =$7 Contains _usn4 Contains $`1esn` Remove All(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).``!,{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null}.usn2? Optional Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),(({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})<-[`4esn`:_usn4|`1esn` *123456789..0x0{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})-[_usn3 *..7]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})) Union Remove Filter(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])._usn4?,Single(@usn6 In 00 =~.9e-12 =~usn1 Where 0x0 Contains $`1esn` Contains 0.0).`4esn`,@usn5:`4esn`:`7esn` Detach Delete false Is Not Null Is Not Null,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]),0e0[`3esn`..][.9e-1..] Union All Detach Delete .0e0[$`6esn`..],Count ( * )[..2.9e1],Count(*)[0.12..2.9e1]"), + octest:ct_string("Create `3esn`=((:`2esn`:`8esn`)<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})) Return Distinct *,Null[...9e1] As `2esn` Order By $12[01] Ascending,$#usn7 In .12e-12 Descending,$`8esn`[$``..$`1esn`][9e-12..$7] Descending Skip 01234567[6.0e0][$usn2]"), + octest:ct_string("Return 07[.0e0][3.9e-1] As #usn8,0X7 As _usn4 Order By #usn8 In $@usn6 Ascending Union All Merge `4esn`=(`6esn` :usn1) On Create Set `8esn` =010[..@usn5][.._usn4],[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null].usn1?.``? ={`1esn`:07 Ends With @usn6 Ends With _usn3} =~Any(`7esn` In .12e12[Count(*)..] Where 01 Ends With \"d_str\") On Create Set `5esn`(Distinct $`2esn`[8.1e1],Count ( * ) Is Null Is Null).`7esn`!.`8esn`? =$``[7..] Return Distinct *,Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07) Order By usn2[Count ( * )..07] Descending Limit .12e12 Ends With #usn7 Ends With 2.9e1 Unwind $usn1[$12..] As ``"), + octest:ct_string("Unwind 0.12 =~2.9e1 =~12e-12 As @usn5 Union Remove Any(@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null).#usn8? Merge usn1=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})) On Match Set `4esn` =$`` =~$_usn3,`7esn` =\"d_str\" Ends With `5esn` Ends With 7 Create @usn6=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Union All Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]|Count(*) Starts With $_usn4).`8esn`! Remove (`8esn` {#usn8:1e1[Null..][.12..]})-[?:_usn3|`2esn`]->({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`8esn` *1000]->(#usn8 ).`5esn`!,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0).`6esn`?.`2esn`!,{@usn6:$123456789 Contains 1000 Contains 11.12e-12,usn1:0X7[`4esn`..][`3esn`..]}.@usn5! Merge (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}) On Create Set Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`).`3esn`!.`5esn`!.`1esn` =(:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null),None(`7esn` In .12e12[Count(*)..] Where `4esn` Starts With $_usn3 Starts With .9e-12).@usn5._usn3!.@usn5 =Extract(`5esn` In 12[0xabc..][$0..] Where 9e-1[0X0123456789ABCDEF][0]|.9e1[..Count(*)][..7.0e-0]) Is Null Is Null On Match Set usn2 =8.1e1 Is Null,`1esn` =$_usn4 Contains .12e-12"), + octest:ct_string("Remove {`8esn`:Null[..07]}._usn4?.`8esn`?,{`4esn`:$123456789[$_usn3..][$usn2..]}.usn1,[`8esn` In 01234567[..0.0][..false] Where 01[..0Xa]].``.@usn5?.`2esn`! Remove Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7]).#usn8?.`3esn`?.@usn5"), + octest:ct_string("Return *,[`` In 0.12[3.9e-1] Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`|Null[10.12e12..]] In {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] Skip 0.0 Contains .9e0 Contains $`8esn` Limit 7 =~$`5esn` With `3esn`[3.9e-1..$`5esn`] As usn2,0X0123456789ABCDEF Is Not Null Is Not Null As `2esn`,11.12e-12 =~5.9e-12 =~.9e1 As `3esn` Limit {`2esn`:`7esn` Is Not Null,@usn5:#usn8[usn1]} Starts With (`7esn` :`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[_usn4 *999..]->({``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}) Match usn1=({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}),(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}) Union All Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Unwind .9e-1 Ends With `8esn` As usn1 Union All Delete 's_str' In `7esn` In .9e-12"), + octest:ct_string("Optional Match (:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[`6esn`?:`4esn`|:@usn5{usn1:00,`1esn`:.0e0[1e1..][01234567..]}]->(`3esn` ) Remove `3esn`:`7esn`,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}._usn3 Create _usn4=(`` :usn1)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`) Union Return Distinct Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],(`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As `6esn`,$123456789 Is Not Null Order By $usn1 Contains `7esn` Contains .9e12 Ascending Limit `6esn` In 9e-12 Merge ((`7esn` {usn2:12.0[..123456789][..01]})-[_usn3{#usn7:Count(*)}]->(`2esn` :_usn3:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})) On Create Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)]"), + octest:ct_string("Return Distinct *,_usn3[`2esn`..10.12e12][9e1..true] As `1esn`,1.9e0[$12][``] As `5esn` Skip .0e0[$`1esn`][.9e-12]"), + octest:ct_string("Return `6esn`(usn1 Is Not Null,123456789 =~6.0e0)[Single(_usn3 In ``[$``..] Where Null[..07])..][{_usn3:010[9e0..9e1][$_usn4..$12],`3esn`:7.0e-0[$usn2..0.12][$``..0]}..] As #usn7 Skip .0[01..`5esn`] Limit Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]) Union With Distinct *,[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},07 =~_usn4 =~.9e12 As `` Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending Where .9e-1[12.0] Union All Create ((:usn2{@usn6:`3esn` Ends With `6esn`,`1esn`:$`2esn` Starts With 0x0})<-[`4esn`]->(#usn7 :_usn3:_usn3)),`4esn`=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1}) Optional Match ``=((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})),(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}) Where 0[true..$7] Remove Extract(_usn3 In ``[$``..] Where 01234567 Ends With 2.9e1 Ends With 9.1e-1|$`3esn`).`6esn`.`1esn`!"), + octest:ct_string("Remove count(Distinct 12e12 Starts With 4.9e12 Starts With 0e0,1e-1[..$@usn5][..0xabc]).`7esn`,{@usn5:$0 Starts With 010}.`3esn`!.``!,Any(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 In 123.654 In $`8esn`).`5esn`? Unwind 7.0e-0[3.9e-1..`1esn`] As _usn3 Union Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Unwind {@usn6:\"d_str\" =~9e-12 =~`5esn`}[#usn8(Distinct 999 Starts With .9e12 Starts With 3.9e-1,true Contains 0x0)..[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010]][All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)..{`4esn`:0 Starts With 0Xa Starts With $0}] As `8esn` Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Where $`6esn` Starts With `4esn`"), + octest:ct_string("Remove `3esn`:`7esn`,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}._usn3 Union Remove [`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]].`6esn`,All(`` In $_usn3 Is Not Null Where $123456789 =~12 =~7).``!"), + octest:ct_string("Return Distinct Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn` Order By (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] Ascending,12 Contains $usn1 Contains 0 Ascending Skip Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null)[[`2esn` In .12e-12[$@usn6..5.9e-12] Where 00]][Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12])] Limit .9e0 Is Null Is Null Union All Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where `1esn`[9.1e-1]|$`8esn` Starts With `2esn`).``!.`5esn`.``! Union Remove (:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}).`3esn`?,Extract(usn2 In .0e0[$`6esn`..] Where usn2 Ends With .0)._usn4?.@usn5._usn3,{usn2:.9e-1 Is Not Null Is Not Null}.@usn6! Remove Any(`` In $`5esn` Starts With 0X7 Starts With 1e1).usn2?,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5[$``]].`6esn`!,Single(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12).`7esn`! Delete [usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},`7esn` Contains $7 Contains 07"), + octest:ct_string("Delete $`3esn` Is Not Null Is Not Null,@usn5 Ends With 0,9e0[$usn2][0] Return #usn8[7..@usn5],00 Is Null Is Null Order By 0Xa Starts With .0 Desc,01234567[$#usn7][.0] Desc Skip $`4esn`[..2.9e1][..07] Limit .9e-1[12.0] Optional Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Where `5esn` Contains `6esn` Union Optional Match @usn6=((`` :usn1)-[ *0..010]->(_usn4 :`5esn`)),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})) Where 1e1 Is Not Null Is Not Null Detach Delete .12e12[$12..4.9e12][11.12e-12..9e12],$_usn4 =~$_usn4 =~2.9e1 With *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Where Null[`2esn`..] Union Unwind 0.12[07..3.9e-1] As _usn3 Return *,`` Is Not Null Is Not Null As _usn4 Order By [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null Ascending Limit 999[0.12..8.1e1]"), + octest:ct_string("Remove ({``:@usn5[$_usn3..],`5esn`:`` Contains 12.0})<-[``?:#usn8|:`4esn`]-(:usn1{@usn5:Count(*)}).usn2?.`3esn` Union Return $_usn3 In 123.654 In $`8esn` As `2esn`,@usn5[$_usn3..],.1e-1 Contains 1e1 Contains $`6esn` As `5esn` Order By $usn1 Contains `7esn` Contains .9e12 Ascending,8.1e1 Ends With $0 Ends With 6.0e0 Descending,9e12[...12e12][..$`2esn`] Descending Limit `3esn`[`4esn`..Null][$usn1..`5esn`] Match (`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1}),({@usn5:$12 Contains $`7esn` Contains .0})<-[usn2 *..0xabc]->(:@usn5{`7esn`:7.0e-0[`6esn`..]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1}) Where $`6esn` Starts With `4esn` Create (:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567}),`4esn`=((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) Union All Merge (({`8esn`:$`` Is Null Is Null})) On Match Set usn1 =$0[$`7esn`..$`3esn`]['s_str'...0],[@usn6 In 00 =~.9e-12 =~usn1 Where $123456789 Starts With Count ( * )].`1esn`? =usn2 Ends With .0,`8esn` =010[..@usn5][.._usn4]"), + octest:ct_string("Create ((:_usn3:_usn3{usn1:.9e1[12]})),@usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Remove 8.1e1.#usn8,None(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null).`5esn`!,{`5esn`:_usn3 Starts With `2esn`,usn1:4.9e12[..Null]}.`5esn`!.@usn5!.usn2 Create ({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}) Union All Merge `4esn`=((@usn5 :usn1{usn1:.9e1[12]})) On Match Set _usn3 =12e-12[.0..],_usn4+=.0e0[..12.0][...1e-1],usn1 =({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null} On Match Set `8esn`+=Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\"),`1esn`+=4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12),(`` {_usn4:9e0[..1e1]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(@usn5 :@usn6:_usn4).#usn8.`1esn`.usn1! =00[0e-0...9e-1][1e-1..``]"), + octest:ct_string("Remove #usn7:`8esn`:#usn7,usn1($@usn5[...9e-1][..$usn1],$`3esn` Ends With 010 Ends With $`7esn`).`3esn`,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0).`8esn`?.#usn8? Remove None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where .9e1[...12e12]).@usn5,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01[.9e-12..]].#usn7!.#usn7!.usn1!"), + octest:ct_string("Remove Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..]).`1esn`.`8esn`?.`2esn`!,@usn5(Distinct 1e-1[..$@usn5][..0xabc]).`3esn`!,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12e12 Starts With 4.9e12 Starts With 0e0).@usn6!.`8esn`? Remove {#usn7:11.12e-12 Contains 9e-12}.#usn8,(_usn4 :@usn5)<-[@usn5?:@usn5 *..01]-(`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}).`5esn`._usn3.#usn7? With Distinct count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0])[_usn3(8.1e1[usn2..$1000][$7..0x0],false[..12e-12][...9e1])..] As @usn6,.0e-0[0e0..00][.9e1..12] As `1esn`,Count ( * ) Starts With 10.12e12 Starts With `` As `5esn` Union All Merge (_usn4 :``:usn1) On Create Set All(`8esn` In 01234567[..0.0][..false] Where 12e-12 Contains .9e-1 Contains 9e-1).usn1.`8esn`!.@usn5 =.9e1[12],Single(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1])._usn3.`2esn` =.9e1[12],{usn2:false Starts With 3.9e-1}.#usn8?.``.`8esn`? =$0[9e1] Union Optional Match ((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})),`5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Where .9e-12 Is Not Null Is Not Null"), + octest:ct_string("Return 0x0 Starts With $`5esn` Starts With 9e-12,$`6esn` Ends With 12 Order By Count ( * )[0..][010..] Desc Skip .9e-1[12.0] Union Merge `7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) On Match Set (`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8,_usn3+=Null[..07] Unwind 5.9e-12 =~$@usn6 As `2esn` Return 1.9e0 Starts With 's_str' Starts With 9.1e-1,8.1e1 Is Null,.1e1 Starts With .1e-1 Order By 1.9e0 In $0 Desc,7.0e-0 =~$123456789 =~`8esn` Asc,#usn7[10.12e12..][\"d_str\"..] Desc Union All Remove All(`2esn` In .9e-12[0e0...9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4)._usn3!.`1esn`?"), + octest:ct_string("Create `2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),``=((({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})<-[@usn6:#usn7|:`8esn` *0Xa..7]->(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})<-[@usn6:#usn7|:`8esn` *0Xa..7]->(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`}))) Unwind $999 In 0.0 As `1esn` Create (((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})))"), + octest:ct_string("Remove Single(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]).`3esn`.`7esn`,_usn3:`1esn`,Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1).`4esn`! Merge @usn5=(({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) On Create Set {@usn6:$_usn3 Is Not Null Is Not Null}.usn2! =.9e-12[0e0...9e-1],usn2 =12e12[07..] Union With Distinct 9e12 Starts With `4esn` Starts With .9e-1 As @usn6 Order By {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} Ascending,01 Ends With \"d_str\" Asc,1000 Is Null Is Null Ascending Limit 0e0 Starts With $1000 Starts With `2esn` With Distinct .9e0 Is Null Is Null As #usn7,All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Where 5.9e-12[$`4esn`] Union Create (:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}),(({#usn8:1e1[Null..][.12..]})<-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]->(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))"), + octest:ct_string("With Distinct {usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0xabc In 10.12e12)..][0X7..],.9e1 Starts With `4esn` As `5esn` Order By [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) Descending,0e0[.12..][3.9e-1..] Asc Limit [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12] Ends With (usn1 {`6esn`:$`5esn`[true],usn2:1e1 Is Not Null Is Not Null})-[?:`4esn`|:@usn5 *..0xabc]-(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(usn2 {_usn4:$999 Ends With .9e-12}) Where 0e0[..'s_str']"), + octest:ct_string("Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As `8esn` Match `7esn`=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))),@usn5=(({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})-[:``|:`3esn` *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})) Detach Delete 12e12 Starts With 9e1 Starts With $`4esn`,.9e1[#usn7..] Union Remove {usn1:usn2[..7.0e-0]}.`2esn`.`2esn`?.usn1 With *,$12 Contains $#usn8 Contains 01 As usn1 Order By 0X7[`4esn`..][`3esn`..] Ascending,$#usn7 In .12e-12 Ascending,$`6esn` In `2esn` Ascending Where $0 =~01234567 Return *,`6esn`[010...9e-12] As `5esn` Union All Return .9e1[#usn7..] Order By 00 Ascending Unwind 123.654 =~1e-1 =~.9e-1 As `8esn` Remove All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]).@usn5!._usn4!.#usn8?"), + octest:ct_string("Merge ((:`7esn`{`5esn`:0e0 Is Null Is Null})) On Match Set `1esn`+=0e-0 Starts With 9e-12 Starts With false On Create Set @usn6 =123.654 Ends With 0Xa Ends With .12e12,`` =.0e-0 Starts With $#usn7 Starts With _usn3 Merge @usn6=(@usn5 {_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) On Create Set `2esn`+=Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],#usn8 =.9e-12[0e0...9e-1] On Match Set `6esn` ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])],All(`5esn` In 12[0xabc..][$0..] Where _usn3 Ends With 01 Ends With .1e-1).`6esn`? =12.0[..Count(*)][..5.9e-12] Unwind 5.9e-12 Ends With 1e1 Ends With false As _usn3"), + octest:ct_string("Unwind [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null As `3esn` Return $`4esn` In 123456789 In `5esn` As @usn5,`8esn`[..7.0e-0][..0xabc] As _usn3 Skip 00[0e-0...9e-1][1e-1..``] Limit 00[0e-0...9e-1][1e-1..``]"), + octest:ct_string("Unwind 0[$999..] As `3esn` Union Return Distinct *,{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1} In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) As _usn4,$#usn7 Is Not Null As `7esn` Order By 9e-1 Starts With 123.654 Starts With .9e1 Asc Skip {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Count(*)[9e-12..0Xa][$123456789..0.0])..Any(`2esn` In .9e-12[0e0...9e-1] Where `3esn` Contains 01234567 Contains .9e-12)][All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e0 In 9.1e-1 In $123456789)..Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)] Remove (usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2})-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12}).@usn5,count(Distinct $`6esn` In $`3esn` In 9e1,.9e1[12]).`4esn` Optional Match `3esn`=((#usn7 :usn2{@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-({`6esn`:07 Ends With @usn6 Ends With _usn3})),`3esn`=({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}) Where $`1esn`[`3esn`..] Union Optional Match @usn5=((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})-[`6esn`? *..0xabc{``:$_usn4[Null]}]->({usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`6esn` {_usn3:$_usn4 Contains .12e-12})) Unwind All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] As #usn8 Unwind 0x0[01234567..'s_str'] As ``"), + octest:ct_string("Create @usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))) Remove Any(_usn4 In Count(*)[9e1..][12e-12..] Where .9e1[#usn7..]).`8esn`,Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``|$7 Contains 0e-0 Contains .0e-0).`3esn`?"), + octest:ct_string("Create usn1=({`5esn`:07 Starts With usn1 Starts With 010})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}),_usn3=({usn1:usn2 Ends With 10.12e12}) Unwind All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..] As `` Union All Create `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Optional Match `8esn`=(`6esn` :``:usn1),((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})))"), + octest:ct_string("Unwind Filter(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``])[Any(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)..][(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})..] As @usn5 Remove (`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1})<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}).@usn6.#usn8?,[_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]].`1esn` Unwind Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()] As `8esn`"), + octest:ct_string("Detach Delete 0Xa Starts With .0,$`1esn`[.9e0][$_usn3],$`2esn`[8.1e1]"), + octest:ct_string("Create @usn5=({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Detach Delete {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null,$`4esn` =~0e0 Delete 10.12e12[0Xa..999][1000..Count(*)],2.9e1 Union Detach Delete `8esn`[..7.0e-0][..0xabc],{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)],[_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null With Distinct 0x0 Starts With $`5esn` Starts With 9e-12 Order By Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7) Descending Skip [@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null][..`1esn`(Distinct `5esn` Contains `6esn`,`3esn` Contains $`8esn` Contains 0e0)][..Single(`5esn` In 12[0xabc..][$0..] Where 1000[_usn3..`8esn`])] Limit false[..12e-12][...9e1] Where 00 Is Not Null Is Not Null"), + octest:ct_string("Unwind 0e-0 In $1000 In .9e1 As _usn4 Remove (`8esn` {`3esn`:#usn8[`2esn`]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1).`1esn`!.`5esn`?.@usn5! Union Merge ((_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) On Create Set _usn3:#usn7:_usn3 Union Remove Filter(`5esn` In 12[0xabc..][$0..] Where `7esn`).`5esn`?.#usn7,Filter(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]).`4esn`.`5esn`?.`3esn`?"), + octest:ct_string("Return ``[..$#usn7],$`6esn`[$`8esn`..][false..] As _usn3 Create `7esn`=(((`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})-[``]-(`7esn` :``:usn1{`1esn`:0e0 Starts With $1000 Starts With `2esn`,@usn6:@usn6 In 3.9e-1 In 9e-12})-[@usn5*{`7esn`:`3esn` Starts With _usn4}]->(#usn8 :_usn4{_usn3:.0 Is Null Is Null}))),#usn8=(`6esn` :#usn7:_usn3)"), + octest:ct_string("Return *,.0e-0[0e0..00][.9e1..12] Order By (:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[`7esn`?]->(`5esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(#usn8 {_usn3:$_usn4 Contains .12e-12}) Ends With `4esn`($usn2 In usn1 In 1e-1,01[Count(*)..0e-0][7..$`2esn`]) Ascending Union All Delete Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null),.0e-0 =~$`7esn` =~$0"), + octest:ct_string("Return 123.654 Starts With Count ( * ) As `4esn`,(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})-[usn1?:usn1|:#usn8*..]-(`7esn` {`3esn`:.9e-1 Is Null})[..Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 's_str'[12][00])][..usn2($#usn8[...9e1])],Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..] As `8esn` Order By .9e0 Is Null Is Null Asc Skip @usn6[.9e12] Limit `4esn` Starts With $_usn3 Starts With .9e-12 Create ((usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1})),((`2esn` {``:.0e0[$`6esn`..]})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(`6esn` :`3esn`)<-[`7esn`?:`3esn`|:_usn3 *..0xabc]->(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null})) Union All Create ((usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1})),((`2esn` {``:.0e0[$`6esn`..]})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(`6esn` :`3esn`)<-[`7esn`?:`3esn`|:_usn3 *..0xabc]->(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null}))"), + octest:ct_string("Remove Any(`` In $`5esn` Starts With 0X7 Starts With 1e1).usn2?,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5[$``]].`6esn`!,Single(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12).`7esn`!"), + octest:ct_string("With .12e12[`7esn`][#usn8],0e-0 In $1000 In .9e1 As _usn3,@usn5[6.0e0][Count ( * )] As `1esn` Order By #usn8 =~.9e-12 =~$usn1 Asc,Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Asc,Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Descending Skip [_usn4 In Count(*)[9e1..][12e-12..] Where 01[Count(*)..0e-0][7..$`2esn`]|`` Contains 12.0] In None(`2esn` In .12e-12[$@usn6..5.9e-12] Where `1esn`[9.1e-1]) Return Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] As `7esn`,12e12 Starts With `6esn` Starts With true As #usn8,$_usn4[1e-1..8.1e1][`1esn`..1.9e0] As `` With $`6esn`[..12e12][.._usn3] As `5esn`,($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]) As _usn4 Where $#usn7 In .12e-12"), + octest:ct_string("Delete {usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0xabc In 10.12e12)..][0X7..],010[..@usn5][.._usn4]"), + octest:ct_string("With *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Skip 0Xa Ends With #usn8 Ends With usn2 Merge (((_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})<-[`4esn`?:_usn3|`2esn` *0..010]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`}))) Remove (`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``!,usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4! Union All Merge `1esn`=((@usn6 :usn2)<-[`7esn`?:`3esn`|:_usn3 *..0xabc]->(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0})) On Create Set [@usn6 In .9e12 Starts With #usn8 Starts With 00|#usn7[..0X0123456789ABCDEF]]._usn4?.`4esn` ={usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])],Single(`5esn` In 12[0xabc..][$0..] Where $123456789 Is Not Null).usn2? =Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0[..$@usn5]|`1esn`[9.1e-1]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where Count(*) Ends With `3esn` Ends With `7esn`] =~Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null),`3esn`+=$`5esn` Is Not Null Is Not Null On Match Set None(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).@usn5! =$`2esn`[8.1e1] Remove {_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}.`1esn` Union All Optional Match (:usn1{``:.9e1[..`5esn`]})"), + octest:ct_string("Delete usn2 Starts With usn1,1000 In 123.654 In $`8esn`,{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}[@usn6(Distinct 12e12 Ends With $`3esn` Ends With 11.12e-12)..count(Distinct 07 Ends With @usn6 Ends With _usn3,$@usn5[..1e-1])][({@usn5:#usn7[`5esn`..`2esn`][$`4esn`...1e1],`6esn`:Count(*) =~`5esn` =~$usn2})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})..Extract(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..]|123.654 Starts With 2.9e1)] Union All Unwind `7esn` Is Not Null As #usn7 Merge `7esn`=({_usn3:$`8esn` Is Null}) On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 On Create Set [@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]].`3esn`?.`6esn`! =Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..])[(usn1 )<-[`8esn`?:usn2|:``]->(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})..0Xa],`2esn`+=$`2esn` Contains false Contains 123456789,`3esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)] Optional Match (usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}),`3esn`=((@usn6 :`6esn`:`3esn`)<-[`1esn`? *0X0123456789ABCDEF..0{`4esn`:9e1 Ends With .9e0}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})) Where 1e-1 =~0.0 =~9.1e-1"), + octest:ct_string("Remove (@usn5 :usn2)<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}).usn1? Merge `5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Union Merge (({_usn3:$`5esn`[7..]})) Return Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null As `6esn`,`` Contains 12.0 As usn1,.1e-1 Ends With $_usn3 As @usn6 Order By $@usn6 =~$`2esn` =~9e1 Ascending,0Xa[9e0] Desc Limit .0e0[$`1esn`][.9e-12] Union Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set usn1+=9e0[..1e1] On Match Set usn1+=Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],@usn6+={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null})"), + octest:ct_string("Return Distinct ({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)[{``:.1e-1 Ends With $`8esn` Ends With .9e0,`7esn`:.9e-12 Is Not Null Is Not Null}][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])],Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) Skip Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) =~Filter(`8esn` In 01234567[..0.0][..false] Where .9e12 =~`5esn` =~07) =~Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0|12[0xabc..][$0..]) Detach Delete ``(@usn6[..$`3esn`][..4.9e12],0x0 Contains $`1esn` Contains 0.0)[{`6esn`:999[...12e12][..0]}][[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)]|.9e1[Count(*)..$`3esn`]]],Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) In {`5esn`:$`` =~$_usn3,`4esn`:`7esn`} In `3esn`,Null In 0Xa In .9e-1 Union Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),(({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})<-[`4esn`:_usn4|`1esn` *123456789..0x0{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})-[_usn3 *..7]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})) Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),(usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}) Return Distinct 9e-12 In 5.9e-12 As ``,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0x0 Contains $`1esn` Contains 0.0) In None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0) As `5esn` Order By 0e0 Ends With 0X7 Ends With .1e1 Desc,(#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Asc,0x0 =~$7 =~Null Desc Union All With .0e0 Is Null Is Null As _usn4,`6esn`(usn1 Is Not Null,123456789 =~6.0e0)[Single(_usn3 In ``[$``..] Where Null[..07])..][{_usn3:010[9e0..9e1][$_usn4..$12],`3esn`:7.0e-0[$usn2..0.12][$``..0]}..] As usn1,#usn8 In $@usn6 Order By 8.1e1 Ends With $0 Ends With 6.0e0 Descending,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null Ascending,Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\") Ascending Skip $`2esn` In 0X7 In 3.9e-1 Limit 0x0[`5esn`][$`5esn`] Create ((#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))"), + octest:ct_string("Optional Match ((({`8esn`:$`` Is Null Is Null})<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`3esn`?:`1esn`]-(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}))),`3esn`=((:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]-(`8esn` $12)<-[#usn8? *12..0Xa]-(:#usn8$#usn8))"), + octest:ct_string("Match (#usn8 :#usn8)<-[`5esn`?:``|:`3esn` *..0xabc]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[{#usn8:.0e0[1e1..][01234567..],`6esn`:123.654 Ends With 0Xa Ends With .12e12}]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12}) Where Count(*) In .9e-12 In $usn1 Return 9e12 Starts With `4esn` Starts With .9e-1 As @usn6 Order By {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} Ascending,01 Ends With \"d_str\" Asc,1000 Is Null Is Null Ascending Limit 0e0 Starts With $1000 Starts With `2esn`"), + octest:ct_string("Create (($@usn6)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[#usn8?:#usn7|:`8esn` *..0X7]->(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999})),usn2=((@usn6 :`5esn`{@usn5:$`4esn` Ends With 0e-0})<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(:_usn4{``:$_usn3[1e-1..]})<-[``?:@usn5]->(_usn3 :#usn8)) Create `3esn`=(`` :`3esn`) Create (`` :`3esn`)-[@usn6:#usn7|:`8esn` *0Xa..7]-(:`2esn`:`8esn`{`6esn`:7.0e-0 Is Null Is Null,`6esn`:999[0.12..8.1e1]})<-[`8esn` *1000]->(#usn8 ),`1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) Union With 12e12 =~#usn7 =~.9e-1,All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null As @usn6 Order By 12e12 Starts With 9e1 Starts With $`4esn` Desc,$`5esn`[true] Descending Skip {usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])] Limit {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null Where $#usn7[$_usn4..][.12e-12..] Union Create (({`5esn`:8.1e1 Ends With $0 Ends With 6.0e0,@usn5:9e0[..1e1]})-[`5esn`?:`3esn`|:_usn3{`3esn`:1.9e0 Is Null Is Null,``:$usn2 Ends With `8esn` Ends With _usn3}]-(:``:usn1{_usn3:$#usn7[$_usn4..][.12e-12..],`1esn`:false})<-[`2esn`:`5esn`{usn2:Count(*)[12..][0X0123456789ABCDEF..]}]->(`1esn` {`5esn`:0X7[_usn4..1.9e0][Count ( * )..false],@usn5:123456789 Ends With _usn4})),`1esn`=(:`3esn`{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1})"), + octest:ct_string("Match `4esn`=({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}) Unwind None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} As `7esn` With Distinct *,'s_str'[1e-1] As usn1,_usn3[`2esn`..10.12e12][9e1..true] As `1esn` Order By $`8esn`[$``..$`1esn`][9e-12..$7] Descending,$`` In $usn2 Desc,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Ascending"), + octest:ct_string("Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set usn1+=9e0[..1e1] On Match Set usn1+=Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],@usn6+={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) Union All Optional Match ``=((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})),`3esn`=((`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})) Union All Match (`1esn` {#usn8:.12e12[Count(*)..]})<-[{`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}]-(:@usn5) Where $`` Is Null Is Null"), + octest:ct_string("Unwind `5esn` Contains 1.9e0 Contains 9e0 As #usn7 Create ``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Union Merge (`` {_usn4:9e0[..1e1]})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}) Return Distinct *,5.9e-12[$`4esn`] Order By 123456789 Ends With $@usn6 Ends With 0.12 Descending Skip 00[$`6esn`] Limit .1e1 Is Null Is Null Remove Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1).`` Union Unwind $#usn8[...9e1] As `7esn` Merge `5esn`=(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[:#usn8|:`4esn`{_usn3:'s_str' Is Null,#usn7:#usn7[..0X0123456789ABCDEF]}]->(`` {`2esn`:.1e-1[2.9e1..][12..]})"), + octest:ct_string("Merge (`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1}) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7]"), + octest:ct_string("With *,$_usn3 Contains usn2 Contains 0xabc,(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`)<-[usn2 *1000{usn1:Null Starts With $`4esn` Starts With $#usn7}]->(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})[{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}][{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}] As @usn5 Order By .9e12 Starts With .9e12 Starts With `7esn` Ascending,Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0)[(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..][Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..])..] Desc Where 12e-12[.0..] Union Remove Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7).``?,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null).@usn5?,[`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|`1esn`[Count ( * )][5.9e-12]].@usn5 Union Merge _usn3=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Optional Match `2esn`=((@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]})) Where @usn5[...9e12] Unwind (`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As `7esn`"), + octest:ct_string("With 0X0123456789ABCDEF Is Not Null Is Not Null As `2esn`,$`` Is Not Null Is Not Null Order By .0[01234567][$#usn8] Descending,`3esn` In 0X7 Desc Limit 0Xa Ends With #usn8 Ends With usn2"), + octest:ct_string("Merge _usn4=(((`2esn` {`7esn`:Count(*)[.0e0..][#usn7..]})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)-[:#usn8|:`4esn` *12..0Xa]->(`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]}))) Remove [usn2 In $_usn3 =~$usn1 =~_usn4 Where 0xabc In 10.12e12|9e-1 Starts With 123.654 Starts With .9e1].`2esn`?.`5esn` Union All Unwind $@usn5[usn1..3.9e-1] As `8esn` Merge ``=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}) Remove {`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null}.@usn5?.#usn8!.`8esn`?,_usn4:_usn4,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]|Count(*) Starts With $_usn4).`8esn`!"), + octest:ct_string("Merge (`` :#usn8{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}) Create ``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Return Distinct Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,07 =~_usn4 =~.9e12 As `` Order By 5.9e-12[9e0..] Ascending,#usn8[`2esn`] Desc,`7esn` Ends With 9e-1 Ends With usn1 Ascending Skip $#usn7 Starts With #usn7 Limit $123456789[$_usn3..][$usn2..]"), + octest:ct_string("Merge _usn4=(((`2esn` {`7esn`:Count(*)[.0e0..][#usn7..]})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)-[:#usn8|:`4esn` *12..0Xa]->(`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]}))) On Match Set _usn4 =$`6esn` In .9e12 In $#usn7,@usn5 =12 Contains _usn3,None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null).`8esn`? =11.12e-12 Contains 9e-12 On Match Set `2esn` =$`3esn`[010..][9e-1..],[`8esn` In 01234567[..0.0][..false] Where 5.9e-12[.1e1][$#usn8]|12 Contains usn2 Contains $usn2].#usn7 =01234567[..0.0][..false],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789).usn1!.``! =010 Starts With 0.0 Starts With .0e0 Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As `8esn`"), + octest:ct_string("With *,07 =~7.0e-0 =~`8esn` Order By 9e12[...12e12][..$`2esn`] Ascending Limit Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) Where @usn5 Ends With 's_str' Ends With 01 Return 00[$`6esn`] As `6esn`,Count ( * )[12e-12] As #usn7,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] Order By .9e1[Count(*)..$`3esn`] Asc With *,7.0e-0 Contains Count ( * ) Contains 0Xa As `7esn` Order By [_usn4 In Count(*)[9e1..][12e-12..] Where $_usn3[1e-1..]][[`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0]][None(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)] Ascending,9e0[$usn2][0] Ascending Skip 3.9e-1[010..][9e1..] Limit (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null Where $_usn4[Null] Union All With Distinct ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]) Skip 9e1 Contains 4.9e12 Contains 123456789 With *,12.0[..123456789][..01] Limit $usn1 Starts With usn1 Starts With 1e-1 Merge `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})"), + octest:ct_string("Unwind 0[..$@usn5] As `5esn` Detach Delete $`1esn`[.9e0][$_usn3],0e0[`4esn`] Unwind Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] As usn2 Union Optional Match usn1=((#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})<-[#usn8?{`3esn`:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7],@usn6:01[..0.12]}]-(`3esn` :_usn3:_usn3)),(((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})))"), + octest:ct_string("Create @usn6=(@usn5 {_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) Return *,Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As `5esn`,0xabc =~7.0e-0 =~4.9e12 Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1)._usn3!,Any(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).#usn8?"), + octest:ct_string("Match @usn5=((@usn6 :`6esn`:`3esn`)<-[`6esn`? *..0xabc{``:$_usn4[Null]}]->(:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((:#usn8{`8esn`:usn1[12e-12],@usn6:Count ( * ) In 999})<-[?]->(:@usn5{usn2:$usn1[$12..]})-[ *..01]->(#usn8 :#usn7:_usn3)) Optional Match (((`5esn` :`2esn`:`8esn`)-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(`3esn` {_usn4:$`2esn` Starts With 0x0}))),``=((`6esn` :`3esn`)) Union All Remove #usn7:`5esn`,All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`).usn1!,Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Starts With 0Xa).usn1! Merge ((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2)) Union Create ((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})),#usn8=(#usn7 :usn2)<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}) Optional Match (_usn4 :`7esn`{@usn6:.12e-12[999...12]}) Where Null Starts With 9e1 Starts With ``"), + octest:ct_string("Remove None(usn1 In 7.0e-0[.._usn4][..0X7] Where $12 Contains $`7esn` Contains .0).``!,All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0)._usn3? Return Distinct *,7.0e-0[3.9e-1..`1esn`],Count(*) Ends With `3esn` Ends With `7esn` Order By Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"]|`7esn`[3.9e-1..][$@usn5..])[..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] Asc,true Contains 0x0 Ascending,.9e-12[12e12][.0e0] Asc Skip .0[01234567][$#usn8] Limit .9e0[$7][1e1] Union Unwind 123.654 Starts With Count ( * ) As `5esn`"), + octest:ct_string("With Distinct *,_usn3[`2esn`..][0x0..] As usn1,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,usn1() In Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) In (`7esn` :usn1)-[usn2:`4esn`|:@usn5 *01234567]->(_usn4 )-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]}) Desc,``[..$#usn7] Asc Limit 07 Ends With @usn6 Ends With _usn3 Create ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6) With Distinct (#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Is Not Null As _usn4,.9e12[$usn2..][7..] As `2esn` Skip All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Union Create `8esn`=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Union Return *,Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567)..],Single(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1)[Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-12 Is Not Null Is Not Null)][Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`])] Limit (`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :``:usn1{usn2:12.0[..123456789][..01]}) Contains {`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12} Contains {`7esn`:`3esn` Starts With _usn4} Detach Delete {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})]"), + octest:ct_string("Merge ({usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) On Match Set `5esn`(Distinct $`` Is Null Is Null,#usn8[usn1]).usn2! =$`8esn` In 9e-12 In 3.9e-1 Unwind `2esn`(Distinct) Starts With Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]) Starts With (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}) As _usn4"), + octest:ct_string("Detach Delete _usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null,'s_str' Ends With 0.0 Ends With .12e12,$`4esn` =~0e0 Union Match (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[:usn1|:#usn8]-(:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`}),`2esn`=((_usn4 {#usn7:$`5esn` Is Null Is Null})-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})) Union All Unwind ``(0X0123456789ABCDEF Contains 8.1e1,Count ( * )[..123456789][...0e0])[..All(usn2 In .0e0[$`6esn`..] Where .0e0 In 10.12e12 In $`5esn`)][..(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})] As #usn8"), + octest:ct_string("With *,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e1[..Count(*)][..7.0e-0]) =~[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 01[Count(*)..0e-0][7..$`2esn`]] =~Single(usn2 In .0e0[$`6esn`..] Where 01[1e-1]),usn1 Ends With 12 As `` Limit `7esn` Ends With `7esn` Ends With $`3esn` Unwind Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) As `5esn` Union All Return Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]) Limit $#usn7 Starts With 10.12e12"), + octest:ct_string("Remove Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1).`1esn`?.``.usn1,Single(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1])._usn3.`2esn`,_usn3(.12[.0e-0..],1000[Null..]).#usn7 Delete {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) Union Detach Delete $1000 Ends With 3.9e-1,Count ( * )[7],1.9e0 In $0"), + octest:ct_string("Merge @usn6=((:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[?:`6esn`|#usn7{_usn4:8.1e1 Is Null,#usn7:$_usn3 =~$usn1 =~_usn4}]-({`5esn`:07 Starts With usn1 Starts With 010})<-[`7esn`:`8esn`|:`2esn`]-(:``:usn1{_usn3:00[$`6esn`]})) On Create Set `3esn`+='s_str'[1e-1],`4esn` =.9e-12 Is Not Null Is Not Null,`8esn`+=(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7) Union All Merge (`6esn` :`8esn`:#usn7{`4esn`:00 Is Not Null Is Not Null,`4esn`:7 =~$`5esn`}) On Match Set `8esn`+=0x0 Starts With 01234567 On Match Set #usn8 =[`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7),`8esn`+=$999 =~`6esn`,@usn5 =Extract(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..]|.9e12[..$usn1][..10.12e12]) Starts With Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..])"), + octest:ct_string("Return 0x0 As @usn6,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] As usn2 Order By $`3esn` Ends With 010 Ends With $`7esn` Asc,.1e1[$usn2..9e1][9e-1...9e-1] Desc,3.9e-1[..$7] Descending Skip .12e12 Is Null Is Null Limit $``[`4esn`..][0.0..] Union Create ((`` :usn1)-[ *0..010]->(_usn4 :`5esn`)),(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) Union All Unwind [`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]|.1e-1 Ends With $`8esn` Ends With .9e0] Starts With {#usn7:1e-1[..2.9e1],`1esn`:.9e1[#usn7..]} As `6esn` Create usn1=((`8esn` :_usn3:_usn3)<-[_usn4? *..7{#usn7:Count ( * )[7]}]->(`6esn` :`7esn`)<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)),`3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})"), + octest:ct_string("Delete $usn2 Contains $`4esn` Contains true,11.12e-12 Contains 9e-12 Detach Delete .12e12 Ends With #usn7 Ends With 2.9e1,Extract(`7esn` In .12e12[Count(*)..] Where true Starts With 2.9e1 Starts With 9e1|12[0xabc..][$0..]) Starts With Extract(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12|0.12[3.9e-1]) Starts With ``(12e12[true..][$`2esn`..]),Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * ))[{`4esn`:12e-12 Starts With .9e12 Starts With 0.12}..(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})] Create #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}),`8esn`=(`` :`7esn`{`3esn`:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7],@usn6:01[..0.12]}) Union Merge #usn8=(`6esn` :``:usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[_usn4:`6esn`|#usn7]-(`8esn` $12) On Match Set _usn4:#usn7:_usn3,Extract(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0|`6esn` In 9e-12)._usn4? =0Xa Ends With #usn8 Ends With usn2"), + octest:ct_string("Delete {`5esn`:123456789 =~$`1esn` =~#usn7,#usn7:usn2 =~$`7esn` =~$`8esn`} Is Not Null,{#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[..`8esn`(010[@usn5..123.654],8.1e1[usn2..$1000][$7..0x0])][..{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1}],Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .12[.0e-0..]|$`8esn`[$usn2..]) Is Null Is Null"), + octest:ct_string("Return $0[..0x0][..01234567] As #usn7,\"d_str\" Starts With `6esn` Starts With 1.9e0 As _usn3 Order By 01[7][`1esn`] Asc,Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,#usn7[12e-12..][$`2esn`..] Asc Skip $7 =~0 =~.1e-1 Remove None(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).``?.@usn5?,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).`2esn`"), + octest:ct_string("Unwind 1.9e0 Starts With .9e0 As #usn7 Union Merge (((`2esn` :usn2)-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})-[usn2? *010..{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}))) On Create Set @usn5 =All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2 In usn1 In 1e-1) =~{#usn8:00[0e-0...9e-1][1e-1..``]},[usn1 In 7.0e-0[.._usn4][..0X7] Where 5.9e-12 Contains `3esn` Contains Null].@usn6 =$`5esn` Contains `2esn` Contains 9e1 On Match Set All(`` In $_usn3 Is Not Null Where $`` =~$_usn3).`3esn`? =$`8esn`[$usn2..] Return 0x0 As @usn6,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] As usn2 Order By $`3esn` Ends With 010 Ends With $`7esn` Asc,.1e1[$usn2..9e1][9e-1...9e-1] Desc,3.9e-1[..$7] Descending Skip .12e12 Is Null Is Null Limit $``[`4esn`..][0.0..] Delete {`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}),Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1])"), + octest:ct_string("Match (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))),(`8esn` {`3esn`:#usn8[`2esn`]}) Union All With Distinct Null =~9e12 As #usn7,.0[usn2.._usn4] As `8esn` Order By [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]][{`2esn`:$`8esn` In 9e-12 In 3.9e-1}..{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}][Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..])..Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Descending,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]) Descending,5.9e-12 Contains $`` Contains $`5esn` Descending Skip .9e0[.1e-1][Count(*)] Where 9e1 Is Not Null Merge #usn7=(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[?{#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0}]-({`6esn`:07 Ends With @usn6 Ends With _usn3}) On Match Set `4esn`+=$`2esn`[$1000][2.9e1],{usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}._usn3 =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1} On Match Set {@usn5:12e-12 Starts With .9e12 Starts With 0.12}.`1esn`? =`3esn`[$0..][.9e1..] Union All Unwind `1esn`[9.1e-1] As #usn8"), + octest:ct_string("Merge usn2=(`4esn` :`6esn`:`3esn`) On Match Set usn2 =$`8esn`[.9e-1][_usn3] Create `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Remove {@usn6:$0 Starts With 010}.@usn6?,[`8esn` In 01234567[..0.0][..false] Where 6.0e0 Is Not Null|`1esn` Starts With 999 Starts With 3.9e-1].@usn5!,[`2esn` In .12e-12[$@usn6..5.9e-12] Where $`6esn` Starts With `4esn`|$`5esn` Is Null Is Null]._usn3 Union All Unwind .12e12[Count(*)..] As `5esn` Return Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,9e-1 Starts With 123.654 Starts With .9e1 As `6esn`,.9e0 Is Null Is Null Skip usn1(07 Ends With @usn6 Ends With _usn3,$`2esn` In 0X7 In 3.9e-1) Contains [`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|9e0 =~9e1 =~.12e12] Limit $7 Starts With Null Starts With `6esn` Remove 123.654.#usn7.`5esn`?,count(Distinct $`3esn` Starts With 0Xa).#usn7,`1esn`:`2esn`:`8esn`"), + octest:ct_string("With Distinct {`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]],_usn4[.0e-0][010],Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]] As `3esn` Limit 12.0[$1000..][123456789..] With 3.9e-1[0.12..] Order By 123456789 =~6.0e0 Ascending,Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Ascending,1.9e0 Starts With 's_str' Starts With 9.1e-1 Descending Where $123456789 Starts With Count ( * )"), + octest:ct_string("With *,0e0[`4esn`] As `6esn`,9.1e-1[.1e-1] Limit $0[..0x0][..01234567] Where $#usn7[$_usn4..][.12e-12..] Delete usn2[Count ( * )..07],None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn`[..0x0][..\"d_str\"])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1])..Single(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])] Union All Remove All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`4esn`?.#usn7!,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|$_usn3 Is Not Null).`5esn`! Create usn2=(`1esn` :`6esn`:`3esn`)-[#usn7?:`2esn`|`7esn` *..7]-(`3esn` {`6esn`:$`8esn`[..1e1][..``],`8esn`:$usn2 In usn1 In 1e-1}) Detach Delete 010 Is Not Null Is Not Null,None(`8esn` In 01234567[..0.0][..false] Where `7esn`) Is Not Null Is Not Null,07[.0e0][3.9e-1]"), + octest:ct_string("With Distinct {`6esn`:.1e-1[..12e12]} As @usn5,Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]) In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $`6esn`[$_usn4][01]) As _usn3,$12[$12..] As `4esn` Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null Desc,Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Asc,10.12e12 =~12e-12 =~0X0123456789ABCDEF Ascending Skip $`6esn` Starts With `4esn` Merge `3esn`=({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})<-[?{_usn3:00[$`6esn`]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}) On Match Set {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}.@usn6 =07[.0e0][3.9e-1],`5esn`:`3esn` Union All Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set _usn3 =12e-12[.0..],_usn4+=.0e0[..12.0][...1e-1],usn1 =({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null} Remove {_usn3:@usn6 In 3.9e-1 In 9e-12}.`3esn`!,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`8esn` Is Null|.0[usn2.._usn4]).usn2!,(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]}).#usn7! Remove `7esn`:#usn8,`8esn`:`6esn`:`3esn`,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0X7[Count(*)][.9e0]|$`8esn`[$``..$`1esn`][9e-12..$7]].usn2?.usn2? Union All Remove All(`2esn` In .9e-12[0e0...9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4)._usn3!.`1esn`?"), + octest:ct_string("Detach Delete ({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`3esn`?:`1esn`]-(:`8esn`:#usn7{@usn5:$12 Contains $`7esn` Contains .0})<-[@usn6?:@usn5]->(:usn1{usn1:Count(*)[0.12..2.9e1]}) Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2|9e0[..1e1]) Ends With {`1esn`:7.0e-0[3.9e-1..`1esn`]},$`2esn`[$1000][2.9e1],$usn1 Is Not Null Is Not Null With _usn4(0[true..$7]) =~Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`) =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0) As _usn3,Null Is Not Null Is Not Null Unwind Count ( * )[0e-0..01] As `3esn`"), + octest:ct_string("Optional Match ((#usn7 :_usn4{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})) Where 0[true..$7] Optional Match ((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})),`5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Union All With Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `5esn`,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null) Starts With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * )) Starts With (_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) As usn1 Order By 0e0[.12..][3.9e-1..] Descending,Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Asc Limit {#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]) Where true Starts With 2.9e1 Starts With 9e1"), + octest:ct_string("Detach Delete [@usn6 In .9e12 Starts With #usn8 Starts With 00|9e12 Contains $@usn6 Contains Count(*)][(`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]})][Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null)] Merge (usn2 :@usn5{`3esn`:$usn1 Is Null})-[_usn3:`2esn`|`7esn`*..{#usn8:`1esn` =~0 =~_usn4,`2esn`:0e-0 In $1000 In .9e1}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}) On Match Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Return Distinct *,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"] Starts With ``(12.0[`8esn`],4.9e12 In 5.9e-12 In .9e0) Starts With Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]),$12 Contains $#usn8 Contains 01 Union Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12|.1e-1).`1esn`?,All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]).`7esn`!,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).usn1? Union All Create `5esn`=(((:@usn5{usn2:$usn1[$12..]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)<-[`8esn`?:`7esn`|@usn6 *..7]->(`5esn` {`2esn`:`1esn` =~0 =~_usn4}))),`3esn`=(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))) Merge `7esn`=({_usn3:$`8esn` Is Null}) On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 On Create Set [@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]].`3esn`?.`6esn`! =Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..])[(usn1 )<-[`8esn`?:usn2|:``]->(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})..0Xa],`2esn`+=$`2esn` Contains false Contains 123456789,`3esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)]"), + octest:ct_string("With *,All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,`1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `1esn` Limit {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[..`8esn`(010[@usn5..123.654],8.1e1[usn2..$1000][$7..0x0])][..{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1}] Where 12e12 Is Not Null"), + octest:ct_string("Unwind Filter(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) Starts With All(`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]) Starts With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`) As `` Merge ``=(((_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`7esn`:`8esn`|:`2esn`]->({`4esn`:$`2esn` Ends With $`8esn`})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0))) On Match Set `1esn`+=Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Starts With `1esn`(Distinct @usn6[.9e12..0e0],999 =~0Xa =~9e0) Starts With usn1($@usn5[...9e-1][..$usn1],$`3esn` Ends With 010 Ends With $`7esn`),`7esn` =10.12e12 Ends With _usn3 Ends With `4esn`,@usn6+=Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] Union Return Distinct 8.1e1 Is Null Is Null,5.9e-12[$`4esn`] Order By `6esn` Is Not Null Ascending,`6esn` Is Not Null Desc,(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})[{`5esn`:8.1e1 Ends With $0 Ends With 6.0e0,@usn5:9e0[..1e1]}..None(`` In $_usn3 Is Not Null Where $@usn6 =~$`2esn` =~9e1)] Descending Skip Null In 0Xa In .9e-1 Unwind $usn1 Is Not Null Is Not Null As `5esn` Delete true Is Null Is Null Union Remove Any(`` In $`5esn` Starts With 0X7 Starts With 1e1).#usn7!,Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\").#usn7!,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`8esn` Is Null|`2esn` Starts With $`7esn` Starts With _usn4].usn2?.@usn5!"), + octest:ct_string("Remove `6esn`:``:usn1 With Distinct usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) In {`2esn`:$`2esn` Contains $1000} In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $@usn6 Contains Count ( * )|11.12e-12 Contains 9e-12],`1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null],.1e-1 Is Null As #usn8 Order By 9e-1 Starts With 123.654 Starts With .9e1 Descending,$`8esn`[$``..$`1esn`][9e-12..$7] Descending Limit None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) Contains [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0] Return {`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``} In All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) In {`6esn`:999[...12e12][..0]} As `6esn` Order By Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7) Contains {`1esn`:$`1esn`[.9e0][$_usn3]} Contains None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]) Ascending,{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Asc,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) Asc Limit Count(*) Union All Detach Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..],.1e-1 Contains 1e1 Contains $`6esn` With *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By .12e-12 =~9e12 =~1e-1 Desc,11.12e-12 =~$`4esn` =~.12e12 Descending Limit [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null Where `2esn` =~usn1 Union All Return *,$7 Contains _usn4 Contains $`1esn`,0e-0[$`2esn`][8.1e1] As @usn5 With `3esn`[3.9e-1..$`5esn`] As usn2,0X0123456789ABCDEF Is Not Null Is Not Null As `2esn`,11.12e-12 =~5.9e-12 =~.9e1 As `3esn` Limit {`2esn`:`7esn` Is Not Null,@usn5:#usn8[usn1]} Starts With (`7esn` :`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[_usn4 *999..]->({``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}) With Distinct `5esn`[$`4esn`] As @usn6,.0e0 Is Null Is Null As _usn4,1.9e0 Starts With .9e0 Order By @usn5 Contains _usn3 Contains 00 Descending,$`6esn` Ends With 12 Ascending"), + octest:ct_string("Merge `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) On Create Set None(`8esn` In 01234567[..0.0][..false] Where Count(*)[9e1..][12e-12..]).usn1 =.0e0[$`6esn`..] Return *,`` Is Not Null Is Not Null As _usn4 Order By [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null Ascending Limit 999[0.12..8.1e1] Union Return $@usn6 =~$`2esn` =~9e1 As `1esn` Limit .1e-1 Is Null Remove Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `2esn` Starts With $`7esn` Starts With _usn4).``?,Extract(`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|$_usn4[Null]).`7esn` Create usn2=((:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]})),(((:usn1{@usn5:Count(*)})<-[`6esn`?:``|:`3esn`]-(:@usn6:_usn4$`6esn`)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`2esn`:`8esn`)))"), + octest:ct_string("Unwind 0xabc['s_str'][$``] As `2esn` Unwind Null =~true =~.1e-1 As _usn4 Unwind 07[\"d_str\"..]['s_str'..] As usn1 Union All Return Distinct *,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]},$`6esn` Ends With 12 Limit [`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] In Any(`7esn` In .12e12[Count(*)..] Where 0Xa[9e0]) In [usn2 In .0e0[$`6esn`..] Where .12e12[`7esn`][#usn8]|7 Is Null Is Null] With Distinct .9e0 Is Null Is Null As #usn7,All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Where 5.9e-12[$`4esn`] With count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) =~Filter(_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789) =~[`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]|.9e12 Starts With #usn8 Starts With 00],Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]) Ends With usn2(0.0[$1000][3.9e-1],0e0[.12..][3.9e-1..]) Ends With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Order By ({`1esn`:0X0123456789ABCDEF Contains 8.1e1})-[`` *..0X7]->(usn2 :#usn8)[{_usn3:Null[..07]}..Filter(_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789)] Asc Skip 12e12 Ends With usn1 Limit `1esn`[11.12e-12..] Union Merge @usn5=((#usn8 :usn1)<-[`2esn`?:usn2|:`` *010..{`5esn`:$`4esn` Ends With 0e-0}]->(:usn1{`3esn`:$0 =~01234567,@usn5:7 Is Null Is Null})-[@usn5?:usn1|:#usn8 *01234567{`1esn`:7.0e-0[3.9e-1..`1esn`]}]-({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) On Match Set `7esn`:@usn5 On Match Set usn2+=(:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])],usn2+=Count(*)[9e-12..0Xa][$123456789..0.0],#usn7+=7.0e-0 Contains Count ( * ) Contains 0Xa Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Where Count(*) Delete Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7)[{usn2:`8esn` Is Null}..[@usn6 In .9e12 Starts With #usn8 Starts With 00]][(:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null})..{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}],999 Ends With $123456789 Ends With $_usn4"), + octest:ct_string("Unwind 0X0123456789ABCDEF[1.9e0] As `5esn` Merge #usn7=((:#usn8{usn1:.9e12 =~`5esn` =~07})-[{usn1:$#usn8[...9e1]}]->({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})<-[`6esn`:`6esn`|#usn7*]->(`3esn` {_usn4:$`2esn` Starts With 0x0})) With Distinct .1e1[9e-1][$usn1] As `6esn`,{_usn3:07 =~_usn4 =~.9e12}[All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 8.1e1 Is Null Is Null)..] As #usn8,10.12e12[0Xa..999][1000..Count(*)] As usn2 Order By `4esn`[0.0..][.1e-1..] Desc,$_usn3 Contains 1e1 Contains .12 Ascending Limit 1e-1 =~0.0 =~9.1e-1 Where 0[$`1esn`..][9e12..] Union Optional Match _usn3=((:`7esn`{`5esn`:0e0 Is Null Is Null})-[usn2?:@usn6|:_usn3]->({usn1:01[.9e-12..],@usn6:$`5esn` Ends With $#usn7 Ends With .0e-0})<-[?:`8esn`|:`2esn` *..7]-(:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})),#usn7=((`7esn` {`7esn`:010[@usn5..123.654]})) Where .9e0 Starts With @usn6"), + octest:ct_string("Match @usn6=(:`1esn`)-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)<-[? *999..]->(_usn3 {`6esn`:8.1e1 Is Null}) Remove {`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567}._usn3!,Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]).@usn6? Union Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`}))"), + octest:ct_string("Return Distinct *,Null[12e-12..] As _usn4,$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Create #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]})-[`3esn`? *..0xabc{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`}) Remove #usn7:`4esn`:`7esn` Union Detach Delete 7 Contains $#usn7 Remove Single(`5esn` In 12[0xabc..][$0..] Where 1000[$`6esn`..12.0]['s_str'..$`3esn`])._usn4?,(_usn4 :@usn5)<-[@usn5?:@usn5 *..01]-(`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}).`5esn`._usn3.#usn7? Union Unwind None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] As `3esn` Unwind \"d_str\"[12e12..][4.9e12..] As `2esn`"), + octest:ct_string("With Distinct *,.0e-0[0e0..00][.9e1..12] Order By 4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Ascending Skip 0x0 Starts With $`5esn` Starts With 9e-12 With Distinct *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Delete .1e-1[..12][.._usn4] Union All With 9e12 Starts With `4esn` Starts With .9e-1 As @usn6 Order By {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} Ascending,01 Ends With \"d_str\" Asc,1000 Is Null Is Null Ascending Limit 0e0 Starts With $1000 Starts With `2esn` Create `2esn`=((`5esn` :`1esn`)) With Distinct All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Order By `6esn`[0x0..@usn5][$1000...9e-12] Desc,Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null Descending,Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Asc Limit 11.12e-12[010..11.12e-12]"), + octest:ct_string("Match ((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) Return Count(*)[8.1e1..],Any(`` In $_usn3 Is Not Null Where 12e12[true..][$`2esn`..]) =~{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12} =~{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3} As `3esn` Skip 12 Contains $usn1 Contains 0 Merge `8esn`=((`4esn` )<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})) On Match Set Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`1esn` =.1e1 Ends With `2esn` Ends With $`1esn`,All(usn1 In 7.0e-0[.._usn4][..0X7] Where 12.0[..Count(*)][..5.9e-12]).`3esn`!.`4esn`!.``! =Count(*)[8.1e1..],{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}.usn1!.@usn6? =$`3esn` In 's_str' In $#usn7 Union Return 0Xa Ends With #usn8 Ends With usn2 As `6esn`,$7 Starts With Null Starts With `6esn` Skip $999 Ends With .9e-12 Return Distinct @usn6[.9e12] As ``,01234567 Starts With `4esn` Starts With 10.12e12 Order By $`7esn` Is Null Is Null Descending,Any(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1) Asc,#usn8[usn1] Asc Optional Match (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),`1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) Where `1esn` Starts With 999 Starts With 3.9e-1 Union All Unwind None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} As `7esn`"), + octest:ct_string("Merge ((usn1 )-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})) On Create Set `8esn`+=Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),`8esn`+=0.0 Is Not Null Is Not Null On Match Set {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]}.#usn8?.`4esn`?.@usn6? =.9e12[$usn2..][7..],[_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]].`8esn`.@usn6? =0X7 =~$123456789 =~$`` Create @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Union All Match (((`3esn` :@usn6:_usn4)<-[_usn4?:#usn8|:`4esn` *123456789..0x0]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12})-[?:_usn3|`2esn`]->(`1esn` :`7esn`))) Where $@usn5[..1e-1] Unwind 's_str' =~.9e1 =~3.9e-1 As usn2"), + octest:ct_string("Create _usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))) Union All Remove Single(_usn3 In ``[$``..] Where Null[..07]).`5esn`?.`6esn`!,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0).`7esn`?._usn4"), + octest:ct_string("With Distinct #usn7[`5esn`..`2esn`][$`4esn`...1e1] As _usn4,8.1e1 Is Not Null,$_usn3 Is Not Null Order By $`6esn`[.9e1..][`5esn`..] Ascending,#usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Desc,Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Ascending Where 0xabc[$`4esn`..][`8esn`..] Detach Delete {#usn7:$usn2[1e-1]}[(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)..][(usn1 :`2esn`:`8esn`)<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]})..] Return 1.9e0 Ends With Count ( * ) Ends With .12 As `4esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12),9e1 Is Not Null As #usn8 Order By $`4esn` Ends With 0e-0 Ascending,.9e-1 Contains .0e0 Contains usn1 Asc Skip None(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8) Is Null Is Null Union All Create `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Optional Match `8esn`=(`6esn` :``:usn1),((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}))) Union All With Distinct Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn` Order By (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] Ascending,12 Contains $usn1 Contains 0 Ascending Skip Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null)[[`2esn` In .12e-12[$@usn6..5.9e-12] Where 00]][Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12])] Limit .9e0 Is Null Is Null Where $1000 Contains 01234567 Contains 0X7"), + octest:ct_string("Remove [`8esn` In 12.0 Contains $_usn4 Contains $usn2|#usn8 Starts With 11.12e-12 Starts With $`3esn`].`6esn`.`6esn`!.`5esn` Merge ({`5esn`:07 Starts With usn1 Starts With 010})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) Remove {`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]}.#usn7!,{usn2:12.0[..123456789][..01]}.#usn8! Union Create (($@usn6)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[#usn8?:#usn7|:`8esn` *..0X7]->(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999})),usn2=((@usn6 :`5esn`{@usn5:$`4esn` Ends With 0e-0})<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(:_usn4{``:$_usn3[1e-1..]})<-[``?:@usn5]->(_usn3 :#usn8)) Create `3esn`=(`` :`3esn`) Create (`` :`3esn`)-[@usn6:#usn7|:`8esn` *0Xa..7]-(:`2esn`:`8esn`{`6esn`:7.0e-0 Is Null Is Null,`6esn`:999[0.12..8.1e1]})<-[`8esn` *1000]->(#usn8 ),`1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) Union Create (:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[`6esn`?:`4esn`|:@usn5{usn1:00,`1esn`:.0e0[1e1..][01234567..]}]->(`3esn` ),usn1=((:_usn3:_usn3{usn1:.9e1[12]}))"), + octest:ct_string("Match ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})),(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}) Where .0e0 Is Null Is Null Return Distinct *,[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12} Order By $@usn5 Ends With $@usn6 Ends With \"d_str\" Ascending,$`6esn` In `2esn` Asc,#usn8[`2esn`] Desc Skip `3esn` Ends With `6esn` Limit .1e1 Starts With $`7esn` Union All Delete `` =~123456789,`3esn`[`4esn`..Null][$usn1..`5esn`] Delete $12 Contains $`3esn`"), + octest:ct_string("Detach Delete [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]|12e12 Is Not Null][{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]}],$`6esn` Is Null Is Null,(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null}) Is Null Return `5esn`[$`4esn`] As @usn6,count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) =~Filter(_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789) =~[`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]|.9e12 Starts With #usn8 Starts With 00],[_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] As usn2 Limit All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6)"), + octest:ct_string("Merge ((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set @usn6+=123456789[Count ( * )..],`8esn`+=Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * ))[{`4esn`:12e-12 Starts With .9e12 Starts With 0.12}..(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})],#usn7+=12e-12 Starts With .9e12 Starts With 0.12 Merge `5esn`=((({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))) On Match Set Extract(`` In $_usn3 Is Not Null Where $_usn3 In 123.654 In $`8esn`|$`8esn`[$usn2..]).`6esn`!.``! =_usn4 In `3esn` In 7.0e-0 On Create Set {`1esn`:$`1esn`[.9e0][$_usn3]}.`8esn`? =`1esn`[Count ( * )][5.9e-12],`8esn`+=123.654 Ends With Count(*) Detach Delete 9e12[.0e-0],12.0[$1000..][123456789..],Extract(`` In 0.12[3.9e-1]|0X7 Starts With 1e1 Starts With $12)[`7esn`(9.1e-1 Contains 0xabc)..][Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3])..] Union Delete 12e12 Starts With 4.9e12 Starts With 0e0,Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)],`6esn`[..01][..`8esn`] Detach Delete 00 =~.9e-12 =~usn1,(`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})],Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Unwind Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `6esn` Union Create `1esn`=((`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1)-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})),((`4esn` )<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}))"), + octest:ct_string("Detach Delete (:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]),(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]})[Extract(`` In $_usn3 Is Not Null Where .0e-0 =~12e-12)..[`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6]],123456789 Ends With _usn4 Unwind `2esn` Starts With 12 Starts With 10.12e12 As @usn6 Create (`1esn` :`6esn`:`3esn`) Union With Distinct *,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e1[..Count(*)][..7.0e-0]) =~[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 01[Count(*)..0e-0][7..$`2esn`]] =~Single(usn2 In .0e0[$`6esn`..] Where 01[1e-1]),usn1 Ends With 12 As `` Limit `7esn` Ends With `7esn` Ends With $`3esn` Where @usn6[01][.9e0] With Distinct 01[1e-1] As `8esn`,5.9e-12 =~$@usn6 As `7esn`,$123456789 Is Null Is Null As #usn8 Skip Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Union All Remove Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]).#usn8?"), + octest:ct_string("Detach Delete $`3esn` Is Null Is Null With *,1000 Is Not Null Is Not Null As #usn7,.1e-1 Ends With @usn6 As @usn6 Skip 9.1e-1 =~@usn5 =~Count ( * ) Limit _usn4 In `3esn` In 7.0e-0 Where 1.9e0 Is Null Is Null Optional Match `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),_usn4=((`6esn` :#usn7:_usn3)<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union All Remove [`2esn` In .12e-12[$@usn6..5.9e-12] Where 1000[..0e0][..$`6esn`]|Count(*)[12..][0X0123456789ABCDEF..]].@usn6!,`8esn`:_usn3:_usn3 Return *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip usn2 Starts With $_usn3 Merge ``=(usn2 :@usn6:_usn4{usn1:9e12 Contains $@usn6 Contains Count(*)})<-[`1esn`?:`6esn`|#usn7 *0x0..{`5esn`:`8esn` =~.1e1 =~.0}]->(#usn7 {`5esn`:.12e12[$0]})<-[`8esn`? *0x0..]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``}) On Create Set (`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8,_usn3+=Null[..07] Union All Merge (`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1}) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7]"), + octest:ct_string("Create (@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})) Remove {usn2:`3esn` In 0X7,usn2:7 Is Null Is Null}.`4esn`.@usn6!,{@usn6:.9e-12[..$`7esn`][...9e-1]}.usn2 Union Remove None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]).`1esn`?.`5esn`!,{`7esn`:$`5esn`[7..],`5esn`:`5esn` Contains `6esn`}.#usn8?.usn2.@usn5!,Any(`5esn` In 12[0xabc..][$0..] Where .9e1 Contains Null).`8esn`? Remove [_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1|8.1e1 Ends With $0 Ends With 6.0e0].`5esn`?._usn3.@usn6 With *,$#usn7[$_usn4..][.12e-12..] As `6esn`,5.9e-12 =~$@usn6 As `7esn` Limit usn1[12e-12] Union Remove (`` :`3esn`{`5esn`:``[$``..]})-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}).`7esn`,[`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$`` Is Not Null].`8esn`._usn3?,(`` :usn2)-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}).usn1! Delete None(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Is Not Null"), + octest:ct_string("Create usn2=(#usn7 :_usn3:_usn3)<-[#usn8?:`4esn`|:@usn5]-(#usn8 :_usn3:_usn3) Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set `6esn` =.1e1 =~10.12e12 On Match Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] Unwind Count ( * )[12e-12] As @usn6"), + octest:ct_string("Unwind .1e1 Starts With $`7esn` As `` Union With Distinct *,(`2esn` :`6esn`:`3esn`)<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789)..Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1])][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]]..Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 9.1e-1 Is Null|9e1 Contains 4.9e12 Contains .9e0)] Skip $#usn7[..$`8esn`][..2.9e1] Limit Extract(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..]|.9e12[..$usn1][..10.12e12]) Starts With Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..])"), + octest:ct_string("Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})),((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) With [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..] Where $1000 Contains 01234567 Contains 0X7 Create ((usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]->(:usn1{usn1:Count(*)[0.12..2.9e1]})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})),(:usn1{``:.9e1[..`5esn`]}) Union Remove {`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567}._usn3!,Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]).@usn6? Merge ({_usn4:$`3esn` In 's_str' In $#usn7}) On Create Set #usn7:`4esn`:`7esn`,{`7esn`:$`5esn`[7..],`5esn`:`5esn` Contains `6esn`}.#usn8?.usn2.@usn5! =usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]],@usn6 =\"d_str\" =~9e-12 =~`5esn` Remove Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 01[Count(*)..0e-0][7..$`2esn`]).`4esn`?,{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`}.`1esn`!.usn1!"), + octest:ct_string("Unwind None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] As `3esn` Unwind \"d_str\"[12e12..][4.9e12..] As `2esn` Union All Optional Match usn1=(`5esn` :`1esn`),`4esn`=((@usn5 :usn1{usn1:.9e1[12]})) Unwind usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]] As #usn8 Merge @usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}) On Create Set Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0).``? =.9e1[11.12e-12] On Match Set `7esn` =Filter(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) Starts With All(`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]) Starts With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`)"), + octest:ct_string("Delete .1e1 In 9e12 Match (`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Union Match `5esn`=(`5esn` :`1esn`),(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))) Where 9e-1 Starts With 123.654 Starts With .9e1 Union All Remove {@usn6:0X7 Starts With 1e1 Starts With $12}.#usn8?.usn1.@usn5!,Extract(usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|0e0 Ends With 1e1 Ends With 0Xa).``?,@usn5:`3esn`"), + octest:ct_string("Unwind $999 Ends With .9e-12 As usn2 Remove count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0]).#usn8?.#usn8.`` Merge _usn4=(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0}) On Match Set `8esn` =01[.9e-12..],usn2 =.9e-1 =~.9e-1,`2esn`+=$999 On Create Set `6esn`(Distinct .9e-1[3.9e-1]['s_str'],9e0 =~9e1 =~.12e12).@usn5?.`1esn` =123456789 Ends With $@usn6 Ends With 0.12 Union All Detach Delete (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1) Ends With Filter(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7]) Optional Match ((#usn8 {_usn3:$usn2 In usn1 In 1e-1})),usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union All Unwind 0xabc In 10.12e12 As usn2 Return *,$_usn3 Contains usn2 Contains 0xabc,(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`)<-[usn2 *1000{usn1:Null Starts With $`4esn` Starts With $#usn7}]->(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})[{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}][{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}] As @usn5 Skip `7esn` Ends With _usn4 Remove {`4esn`:01[..01]}.`8esn`?.`8esn`?.usn1?,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`2esn`[010..`5esn`][``..0.12]).`4esn`"), + octest:ct_string("Return $`2esn`[$1000..][$@usn5..],`7esn` Ends With `7esn` Ends With $`3esn` Limit $0 =~01234567 Remove #usn7:`3esn`,Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]).usn2!.@usn6!.`1esn`?,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1].`6esn`._usn4?._usn4! Detach Delete 01[$`4esn`..$_usn4][0e-0..$@usn6],Extract(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|Count(*) Is Not Null Is Not Null)[(_usn4 {#usn7:$`5esn` Is Null Is Null})-[_usn3:usn1|:#usn8 *07..]->(`4esn` :#usn8{#usn8:_usn4[7][8.1e1],#usn7:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})][Filter(`5esn` In 12[0xabc..][$0..] Where .12e-12[$@usn6..5.9e-12])],.9e-1 =~.9e-1"), + octest:ct_string("With Distinct *,Count(*)[..Count(*)][..9e0] Order By 07 Starts With usn1 Starts With 010 Ascending,7.0e-0[..$`7esn`][..Null] Descending,$usn2[8.1e1...9e-1][.1e-1..11.12e-12] Desc Skip Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] Limit 999 Ends With $123456789 Ends With $_usn4 Where 10.12e12[Count(*)..] Unwind $`6esn`[$`8esn`..][false..] As `6esn` Detach Delete ``[$``..],`7esn`[3.9e-1..][$@usn5..] Union All With Distinct $#usn7 =~8.1e1 As #usn7,7[9.1e-1..][$_usn3..],Filter(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..])[(@usn6 :#usn8)-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]})<-[:@usn6|:_usn3{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`` :`3esn`)][Single(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])] Order By (`5esn` :`2esn`:`8esn`)-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]}) Is Null Is Null Asc,``(@usn6[..$`3esn`][..4.9e12],0x0 Contains $`1esn` Contains 0.0)[{`6esn`:999[...12e12][..0]}][[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)]|.9e1[Count(*)..$`3esn`]]] Asc,'s_str'[12][00] Ascending Skip (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Starts With `7esn`(Distinct $`5esn` Is Null Is Null,$`4esn` Ends With 0e-0) Starts With Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 5.9e-12 Ends With 1e1 Ends With false) Match `5esn`=(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}),((`6esn` :_usn4)<-[`7esn`*..]->(`` :@usn6:_usn4)-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Union All Unwind 0e0[`4esn`] As _usn4 Unwind 12e-12[`7esn`..][5.9e-12..] As `8esn`"), + octest:ct_string("With *,1000 Is Not Null Is Not Null As #usn7,.1e-1 Ends With @usn6 As @usn6 Skip 9.1e-1 =~@usn5 =~Count ( * ) Limit _usn4 In `3esn` In 7.0e-0 Where 1.9e0 Is Null Is Null With Distinct *,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Skip $_usn4[..usn2] Limit $`8esn` In 9e-12 In 3.9e-1 Union All Create `7esn`=(`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Optional Match `3esn`=(@usn5 :`7esn`),((#usn8 {_usn3:$usn2 In usn1 In 1e-1})) Where usn2[..10.12e12][..$`7esn`] Create ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((`` :``:usn1)) Union All Return {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})] Order By $_usn3 Contains 1e1 Contains .12 Asc,9e12 Asc,0e0[`3esn`..][.9e-1..] Descending"), + octest:ct_string("Create ((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Delete .1e-1[$`2esn`..][$`1esn`..] Unwind `8esn`[Null...12e12][0..11.12e-12] As usn2 Union All With Distinct *,Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]) Ends With Extract(`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0|12e12[..$`8esn`][...0e-0]) Ends With _usn3(Distinct 5.9e-12[`4esn`..12e12][0x0..1.9e0],`6esn`[..$@usn6][..$`1esn`]) As `3esn` Where `6esn`[010...9e-12]"), + octest:ct_string("With Distinct 010[11.12e-12..],Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) As `2esn`,.9e1[#usn7..] Where $12[`1esn`..] Return Distinct *,9e1 Contains 4.9e12 Contains 123456789 Skip 00 Is Not Null Limit $`8esn`[12.0..][4.9e12..] Detach Delete _usn4 Ends With .0 Ends With 7,All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7])[..Extract(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..])]"), + octest:ct_string("Merge `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Remove `3esn`($`5esn`[7..],9e-1[0X0123456789ABCDEF][0]).usn2,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 11.12e-12 Is Null Is Null).`6esn`?,{#usn8:_usn4 Ends With .0 Ends With 7,`6esn`:0X7 Starts With 1e1 Starts With $12}.@usn5! Union Remove Single(_usn3 In ``[$``..] Where 11.12e-12 In $`1esn` In 9e12).#usn8?,Single(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12).`6esn`,None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12])._usn3?.`3esn`.`3esn`? Optional Match (((`5esn` :usn1{_usn4:8.1e1 Is Null,#usn7:$_usn3 =~$usn1 =~_usn4})<-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(:_usn4{#usn7:.0e0[1e1..][01234567..],@usn5:`2esn` Is Not Null Is Not Null})-[#usn7?:`2esn`|`7esn` *..7]-(`3esn` {`6esn`:$`8esn`[..1e1][..``],`8esn`:$usn2 In usn1 In 1e-1}))) Delete #usn7 =~`5esn` =~``,$#usn7 Starts With 10.12e12"), + octest:ct_string("Remove 9e-12._usn4 With (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7),Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),12.0 =~$@usn5 =~8.1e1 Order By Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] Ascending Limit $@usn6 Contains Count ( * ) Union All Remove Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7).#usn7!,(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12}).``!.`` Detach Delete {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} =~Filter(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]),2.9e1[0..$@usn5][`7esn`..$`1esn`],All(usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null])[``($_usn3[1e-1..],.12e12[Count(*)..])][None(_usn4 In Count(*)[9e1..][12e-12..] Where 123456789 Ends With _usn4)]"), + octest:ct_string("Unwind Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) As `5esn` Remove Single(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1).`2esn`?,`1esn`:_usn4,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where usn1 Is Not Null).#usn8? Return Distinct *,$`6esn`[$_usn4][01] As `1esn`,`4esn`(Distinct `1esn`[..0x0][..\"d_str\"],false[..12e-12][...9e1]) Is Null Is Null As #usn8 Order By {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} Desc,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where `2esn` Is Not Null Is Not Null|.1e1[.0e0..]) Ascending,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .12[.0e-0..]|$`8esn`[$usn2..]) Is Null Is Null Descending Union All Merge @usn5=((:`7esn`{usn1:123.654 Ends With 0Xa Ends With .12e12})-[ *0..010]->(_usn4 :`5esn`)) On Match Set ``+=0.12[07..3.9e-1] On Create Set @usn6(9.1e-1[$`4esn`..][$`4esn`..]).@usn5?.#usn8!.`2esn` =usn1[12e-12],`4esn` =$`6esn`[..12e12][.._usn3] Create @usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}) Union All Optional Match usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})),_usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Where $_usn4 Starts With 0e-0 Starts With 1e-1 Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where $`1esn` Starts With Count(*) Starts With $`8esn` Remove (:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null}).`8esn`?,Extract(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null).usn2"), + octest:ct_string("Delete $`5esn`[true] Create `2esn`=(((usn1 {`6esn`:$`5esn`[true],usn2:1e1 Is Not Null Is Not Null})-[:`4esn`|:@usn5 *01234567$_usn4]->(`7esn` {usn2:12.0[..123456789][..01]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}))),`1esn`=(((`8esn` {@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})-[`3esn`?:`2esn`|`7esn`*..]-(:_usn4)<-[``?:#usn8|:`4esn`]-(:usn1{@usn5:Count(*)})))"), + octest:ct_string("Return $`4esn` Contains $12 Contains .9e-1,.1e-1[@usn6..] As `4esn`,`2esn` =~usn1 As `6esn` Skip 0xabc[7.0e-0..][12e12..] Limit .12e12 =~$#usn7 Remove {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}.`7esn`,(`5esn` :`2esn`:`8esn`)-[`6esn`:`6esn`|#usn7*]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})._usn4 Remove `2esn`(Distinct 12 Is Null Is Null)._usn3! Union Create (:usn1{``:.9e1[..`5esn`]}) Merge (usn2 :@usn5{`3esn`:$usn1 Is Null})-[_usn3:`2esn`|`7esn`*..{#usn8:`1esn` =~0 =~_usn4,`2esn`:0e-0 In $1000 In .9e1}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}) On Create Set @usn5 ={``:`1esn` In 12e-12 In 1e-1,usn2:_usn3[`2esn`..10.12e12][9e1..true]}[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )]..][Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`])..],`6esn` =usn2['s_str'...9e-1][$7..Count ( * )] On Create Set None(`8esn` In 01234567[..0.0][..false] Where $_usn3 Contains 1e1 Contains .12).``.`8esn`? =8.1e1[$`5esn`][0e0] Unwind All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0)[..[@usn6 In 00 =~.9e-12 =~usn1 Where 0.0[$1000][3.9e-1]|$usn2 =~$`2esn` =~\"d_str\"]] As `6esn`"), + octest:ct_string("With *,.1e1 Starts With .1e-1,(`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})-[`6esn`? *123456789..0x0]->({`6esn`:$usn1 Starts With usn1 Starts With 1e-1,#usn8:$#usn7 Starts With 10.12e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}) Is Null Order By 123456789[\"d_str\"..] Descending,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending,12e-12[`7esn`..][5.9e-12..] Asc Skip $`` In $@usn6 In 3.9e-1 Limit .1e1 =~10.12e12 Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]|$_usn3 Is Not Null).usn2!.#usn7!.`8esn`!"), + octest:ct_string("Merge (:#usn8{_usn4:$999 Ends With .9e-12})<-[?{_usn4:$#usn7 Is Not Null Is Not Null,`3esn`:9.1e-1 In #usn8}]->(#usn8 {_usn3:$usn2 In usn1 In 1e-1}) On Match Set (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]->(:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}).`3esn`!.#usn7._usn3! =`5esn`[$`4esn`] On Create Set usn1+=9e0[..1e1] Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]|Count(*) Starts With $_usn4).`8esn`! Merge (((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Union Unwind `7esn` Ends With _usn4 As _usn3 Return Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] As `5esn` Order By 0 Starts With 0Xa Starts With $0 Ascending,$`2esn`[$usn1..] Asc,Count(*) Starts With $_usn4 Descending Limit All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..]"), + octest:ct_string("Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Where 07[.0e0][3.9e-1] With Distinct .0 Is Null Is Null As `7esn` Order By Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``]) Is Not Null Is Not Null Asc,0x0 =~$7 =~Null Descending,.12e-12[$`6esn`..] Desc Skip false[12e-12..][usn1..] Where `1esn`[11.12e-12..] Union All Delete All(`8esn` In 01234567[..0.0][..false] Where 07 Ends With @usn6 Ends With _usn3) In (:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})<-[`3esn`?:`1esn`]-(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[usn2:@usn6|:_usn3 *123456789..0x0$_usn3]->(:`8esn`:#usn7{``:$7 Starts With Null Starts With `6esn`,`4esn`:#usn8[..#usn7][..@usn6]}) In Null Merge (`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[_usn3:usn1|:#usn8 *07..]-({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}) On Match Set `6esn`:`6esn`:`3esn`,`8esn`:`7esn` On Match Set {#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}.`6esn`!.`3esn`! =5.9e-12[$`4esn`],_usn3:`2esn`:`8esn`,#usn7(0e0 Starts With $1000 Starts With `2esn`,Count ( * )[..`8esn`]).@usn5? =.0e0 =~5.9e-12 =~`7esn`"), + octest:ct_string("Optional Match `1esn`=(((@usn5 :usn2)-[`4esn`?:_usn3|`2esn`]-(:#usn7:_usn3)<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}))) Match (`5esn` :`7esn`{`7esn`:$_usn3[.1e1..][$`1esn`..],`5esn`:.12e-12 =~9e12 =~1e-1})<-[#usn8{`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5}]->(:_usn4{_usn3:010 Starts With 0.0 Starts With .0e0}) Merge ``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Union All Merge `2esn`=(({_usn4:01234567[6.0e0][$usn2]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})) Unwind `7esn` Is Not Null Is Not Null As `1esn` Merge `6esn`=(((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-({@usn6:``[$``..]})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]->(@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]}))) On Match Set `3esn`+=(:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])],`5esn`+=Null =~true =~.1e-1,`3esn`:`6esn`:`3esn` On Create Set `8esn` =$12[01] Union Delete (:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) Starts With count(Distinct 9.1e-1 =~@usn5 =~Count ( * )),true Starts With 2.9e1 Starts With 9e1,.1e1 Starts With $`7esn` Unwind 12e12 Is Null Is Null As usn2"), + octest:ct_string("Optional Match ((usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})<-[? *07..{_usn4:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:$#usn8[...9e1]}]-({`1esn`:0X0123456789ABCDEF Contains 8.1e1})) Where 7.0e-0[.._usn4][..0X7] Union All Create `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),((_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))"), + octest:ct_string("With *,'s_str' =~.9e1 =~3.9e-1 As usn2,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `6esn` Order By 01 Ends With \"d_str\" Asc,9e-1 =~6.0e0 =~`` Descending Skip $`5esn` Ends With 9e-1 Ends With $#usn8 Where `7esn`[3.9e-1..][$@usn5..] Union Delete 1.9e0 =~0x0,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]),{_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12) Union Detach Delete All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Unwind #usn8[3.9e-1.._usn3] As `4esn`"), + octest:ct_string("With Distinct Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Limit 9e0[..1e1] Where $usn2[1e-1] With Distinct *,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,false[12e-12..][usn1..] Order By Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]) Desc Limit $`1esn`[`3esn`..] Where $usn1 =~$999 =~$7 Return Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] As usn1,Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) As usn1,_usn4[9e0..$#usn8] Order By $``[`4esn`..][0.0..] Desc,9e0[$usn2][0] Ascending Limit Count ( * )[`7esn`]"), + octest:ct_string("Unwind Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) As `3esn` Detach Delete (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1) Ends With Filter(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7])"), + octest:ct_string("Remove .9e-12.usn2 Return `5esn`[$`4esn`] As @usn6,count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) =~Filter(_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789) =~[`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]|.9e12 Starts With #usn8 Starts With 00],[_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] As usn2 Limit All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Union All Delete $#usn7 Is Not Null Is Not Null Delete Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null,0X0123456789ABCDEF Is Not Null Is Not Null"), + octest:ct_string("Match (`5esn` :`7esn`{`7esn`:$_usn3[.1e1..][$`1esn`..],`5esn`:.12e-12 =~9e12 =~1e-1})<-[#usn8{`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5}]->(:_usn4{_usn3:010 Starts With 0.0 Starts With .0e0}) Where 12e12 Starts With 4.9e12 Starts With 0e0 Union Return Distinct Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` Is Null Is Null) Is Not Null Is Not Null As usn1,123.654 Is Not Null Is Not Null As `1esn`,0X0123456789ABCDEF Contains 8.1e1 As @usn5 Limit _usn4[7][8.1e1] Remove {usn2:$usn1[$12..]}._usn3,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0).@usn5! Optional Match #usn8=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`3esn`=({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})<-[?{_usn3:00[$`6esn`]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}) Where .9e1[12] Union Unwind .1e-1 Contains 1e1 Contains $`6esn` As @usn6"), + octest:ct_string("Return *,All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Starts With 10.12e12 Starts With #usn7(false =~4.9e12),0e0[`4esn`] Create `7esn`=(#usn8 :#usn8)<-[`5esn`?:``|:`3esn` *..0xabc]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[{#usn8:.0e0[1e1..][01234567..],`6esn`:123.654 Ends With 0Xa Ends With .12e12}]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12}),_usn4=((`5esn` {`2esn`:`1esn` =~0 =~_usn4})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[usn2?{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3}]-(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})) Union All Remove {`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]}.#usn7!,{usn2:12.0[..123456789][..01]}.#usn8! Create (:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[`7esn`*..]->({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[`8esn`:`3esn`|:_usn3 *123456789..0x0{`8esn`:$`3esn` Ends With 010 Ends With $`7esn`,usn2:7.0e-0[$usn2..0.12][$``..0]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010}) Merge ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`5esn` *01234567]->(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) On Create Set None(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).`5esn`?.`3esn`! =[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]},`8esn` =Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]],None(`` In $_usn3 Is Not Null Where 7.0e-0 =~$123456789 =~`8esn`).`3esn` =Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1]) On Match Set `8esn` =[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]).#usn7!.usn1?.usn1? =$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 9e0 =~9e1 =~.12e12|$@usn5 =~.12e-12).`2esn`?.`1esn`! =0e-0[...9e12]"), + octest:ct_string("Remove Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567).`4esn`!.`8esn`!.`4esn`,(:`1esn`{`7esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[`7esn`*..]-(`7esn` :usn1).`6esn` Remove (:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}).`3esn`?,Extract(usn2 In .0e0[$`6esn`..] Where usn2 Ends With .0)._usn4?.@usn5._usn3,{usn2:.9e-1 Is Not Null Is Not Null}.@usn6!"), + octest:ct_string("Detach Delete $`1esn`[.9e0][$_usn3],`4esn` Starts With .0e0 Starts With usn2 Optional Match ((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})),`7esn`=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})"), + octest:ct_string("Create (:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}),`6esn`=(#usn7 {`4esn`:7.0e-0 =~$12 =~5.9e-12,_usn4:8.1e1 Contains 0e-0 Contains $_usn3})-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[$0]->(`7esn` :`2esn`:`8esn`) With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Order By 12.0[.._usn4][..0X7] Descending,`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Ascending Skip 's_str' Ends With 0.0 Ends With .12e12 Union Optional Match usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),`2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Unwind All(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12) In All(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`]) In {usn1:`3esn` Ends With `6esn`} As usn2 Union Create (:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[`6esn`?:`4esn`|:@usn5{usn1:00,`1esn`:.0e0[1e1..][01234567..]}]->(`3esn` ),usn1=((:_usn3:_usn3{usn1:.9e1[12]}))"), + octest:ct_string("With Distinct *,[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},07 =~_usn4 =~.9e12 As `` Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending Where .9e-1[12.0] Union All Match ((`` :``:usn1)),`8esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where 999[..@usn5][..`1esn`] Union With *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `5esn`,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null) Starts With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * )) Starts With (_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) As usn1 Order By 0e0[.12..][3.9e-1..] Descending,Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Asc Limit {#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]) Where 12 =~$@usn5 Match `7esn`=({_usn3:$`5esn`[7..]})<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}),_usn4=((`4esn` {usn2:$`7esn`[..12.0][..0e0]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})) Match (((:@usn5)-[#usn8 *0..010{_usn4:Count(*)[.0e0..][#usn7..]}]->(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[?:``|:`3esn`{#usn8:.9e1[Count(*)..$`3esn`]}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}))),_usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) Where .9e1 Contains Null"), + octest:ct_string("Merge `8esn`=(@usn6 :`5esn`{@usn5:$`4esn` Ends With 0e-0})-[usn2?:@usn5*{`6esn`:.9e0 In 9.1e-1 In $123456789,`6esn`:.12[$`2esn`..usn2][.9e-1.._usn3]}]->($`2esn`) On Create Set [`5esn` In 12[0xabc..][$0..] Where 12 Is Null Is Null].``? =.9e0 Is Null Is Null On Match Set `7esn`+=$`` In $7 In 9e-1,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`].``? =Count(*) Starts With $_usn4,`1esn` =0xabc Contains 9e1 Contains 0x0"), + octest:ct_string("Detach Delete .9e-12[12e12][.0e0],'s_str' Is Null,$`2esn` Ends With $`8esn`"), + octest:ct_string("Merge ``=((({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})<-[@usn6:#usn7|:`8esn` *0Xa..7]->(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})<-[@usn6:#usn7|:`8esn` *0Xa..7]->(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`}))) Merge (((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))) On Create Set `7esn` =$`7esn` Is Null Is Null,Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1]|12 Contains usn2 Contains $usn2).usn2? =`1esn` Ends With 7.0e-0 Ends With $usn1,None(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12)._usn4 =.1e-1[@usn6..] Union All Merge `3esn`=((`1esn` :_usn3:_usn3$0)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})) On Match Set #usn7:usn2,({usn1:usn2 Ends With 10.12e12})<-[`8esn` *1000]->(#usn8 ).usn2! =$`` In `2esn` In 07,`5esn` =`8esn`[6.0e0..][$`1esn`..] Create _usn3=((:`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[`3esn`:`5esn` *123456789..0x0{`6esn`:.9e-12[12e12][.0e0]}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}))"), + octest:ct_string("Create `2esn`=(usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2}),`3esn`=((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Remove None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])._usn4._usn4,Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where usn1[..10.12e12][..7]).``? Union Optional Match @usn6=((`` :usn1)-[ *0..010]->(_usn4 :`5esn`)),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})) Where 1e1 Is Not Null Is Not Null Detach Delete .12e12[$12..4.9e12][11.12e-12..9e12],$_usn4 =~$_usn4 =~2.9e1 With *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Where Null[`2esn`..]"), + octest:ct_string("Create `2esn`=(({_usn4:01234567[6.0e0][$usn2]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})) Detach Delete $_usn3 In $`7esn` In $`3esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where $_usn4[..usn2]|`1esn` Starts With 999 Starts With 3.9e-1) =~(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}) =~Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]),Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12)[Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12)..][`4esn`(Distinct)..] Union All Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] Ascending,1e-1[..$`6esn`] Ascending Skip (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Remove {usn2:`3esn` In 0X7,usn2:7 Is Null Is Null}.`4esn`.@usn6!,{@usn6:.9e-12[..$`7esn`][...9e-1]}.usn2 Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1 Union All Return Count(*) Is Not Null Is Not Null As usn2,$`3esn` =~4.9e12 =~$7,.9e0 Is Not Null As `6esn` Skip Any(`8esn` In 01234567[..0.0][..false] Where $_usn3 Contains 1e1 Contains .12) =~0.0 =~Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`) Return Distinct *,Null[...9e1] As `2esn` Order By 10.12e12 =~12e-12 =~0X0123456789ABCDEF Descending,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) Asc,8.1e1 Starts With .9e12 Starts With `7esn` Desc"), + octest:ct_string("With Distinct *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Skip `` =~123456789 Limit Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Where 12 In 1000 In \"d_str\" Delete 10.12e12 In `3esn` In $usn2 Match ((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2}))"), + octest:ct_string("With Distinct `5esn`[$`4esn`] As @usn6,.0e0 Is Null Is Null As _usn4,1.9e0 Starts With .9e0 Order By @usn5 Contains _usn3 Contains 00 Descending,$`6esn` Ends With 12 Ascending Union Return $`4esn` Contains $12 Contains .9e-1,.1e-1[@usn6..] As `4esn`,`2esn` =~usn1 As `6esn` Skip 0xabc[7.0e-0..][12e12..] Limit .12e12 =~$#usn7 Remove {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}.`7esn`,(`5esn` :`2esn`:`8esn`)-[`6esn`:`6esn`|#usn7*]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})._usn4 Remove `2esn`(Distinct 12 Is Null Is Null)._usn3! Union With Distinct 12.0 Starts With 07 Starts With $`3esn` As `8esn`,(`3esn` :#usn7:_usn3)<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) Ends With [_usn3 In ``[$``..] Where @usn5 Ends With 0] As usn1,(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) Starts With count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) Skip [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1|.9e1[12]] Is Null Is Null Create _usn4=(({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[_usn3:usn1|:#usn8 *07..]-(usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})) Create (({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)),((`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}))"), + octest:ct_string("Merge _usn4=({usn1:usn2 Ends With 10.12e12}) On Create Set Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999).#usn8? =07 Is Null Is Null,`4esn` =[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null][..`1esn`(Distinct `5esn` Contains `6esn`,`3esn` Contains $`8esn` Contains 0e0)][..Single(`5esn` In 12[0xabc..][$0..] Where 1000[_usn3..`8esn`])],@usn5 =All(usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null])[``($_usn3[1e-1..],.12e12[Count(*)..])][None(_usn4 In Count(*)[9e1..][12e-12..] Where 123456789 Ends With _usn4)] On Match Set usn1+=9e0[..1e1] Delete [`2esn` In .9e-12[0e0...9e-1] Where `3esn` Contains 01234567 Contains .9e-12|10.12e12[$`5esn`]] Ends With .9e0 Ends With {``:999 =~0Xa =~9e0} Union All Return Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] As `5esn` Order By 0 Starts With 0Xa Starts With $0 Ascending,$`2esn`[$usn1..] Asc,Count(*) Starts With $_usn4 Descending Limit All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..] Remove `6esn`:`3esn`,({`6esn`:$`3esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}).``?.`5esn`!.@usn6? With Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `5esn`,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null) Starts With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * )) Starts With (_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) As usn1 Order By 0e0[.12..][3.9e-1..] Descending,Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Asc Limit {#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]) Where true Starts With 2.9e1 Starts With 9e1"), + octest:ct_string("With Distinct All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7])[..Extract(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..])],Count(*) Is Not Null Is Not Null As `4esn`,9e12 Ends With 07 Order By $`2esn`[$1000][2.9e1] Desc,9e1 Ends With .9e0 Descending,@usn5 Is Null Is Null Desc Remove Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where ``[..$#usn7]).usn1?,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})-[`8esn`:`3esn`|:_usn3*..{`2esn`:.9e-1 Ends With `8esn`,``:0[..$@usn5]}]-(`5esn` :`7esn`{`7esn`:$_usn3[.1e1..][$`1esn`..],`5esn`:.12e-12 =~9e12 =~1e-1}).`4esn`!.#usn8"), + octest:ct_string("Merge `2esn`=((`5esn` :`4esn`:`7esn`)) On Create Set Any(`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]).usn1!.``?.``? =false =~4.9e12,usn1 =7.0e-0[3.9e-1..`1esn`] Union All Return Distinct *,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]},00[$`6esn`] As `6esn` Order By [`7esn` In .12e12[Count(*)..] Where \"d_str\" =~9e-12 =~`5esn`] Is Null Is Null Asc Limit 123456789[.1e1..][$`5esn`..] With Distinct 010[11.12e-12..],Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) As `2esn`,.9e1[#usn7..] Where \"d_str\" =~9e-12 =~`5esn` With 12 Contains usn2 Contains $usn2 As ``,Count ( * )[12e-12] As #usn7 Skip .0 Where .9e-1 Contains .0e0 Contains usn1 Union Unwind .9e1[Count(*)..$`3esn`] As `5esn` Unwind .0e-0[0e0..00][.9e1..12] As usn2"), + octest:ct_string("Return 12 Contains usn2 Contains $usn2 As ``,Count ( * )[12e-12] As #usn7 Skip .0 With Distinct *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Order By .9e-12[12e12][.0e0] Asc,0.0[4.9e12..][00..] Ascending,$`1esn` Starts With Count(*) Starts With $`8esn` Ascending Skip {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Count(*)[9e-12..0Xa][$123456789..0.0])..Any(`2esn` In .9e-12[0e0...9e-1] Where `3esn` Contains 01234567 Contains .9e-12)][All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e0 In 9.1e-1 In $123456789)..Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)] Where 1.9e0[$12][``]"), + octest:ct_string("Merge ((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) On Create Set #usn7+=$#usn7 Starts With #usn7,_usn3 =`5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]],`8esn` =07 Ends With @usn6 Ends With _usn3 On Match Set #usn7+=10.12e12[Count(*)..],#usn8 =@usn6[.9e12..0e0] Optional Match @usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),`3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})) Union Delete $12[01],.9e-12 =~$`2esn` =~`4esn` Remove {#usn7:.0e0[1e1..][01234567..],@usn5:`2esn` Is Not Null Is Not Null}.#usn8?.`7esn`?,`1esn`:``:usn1,$12.`8esn`!.usn2!._usn4"), + octest:ct_string("Return {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} As _usn3,Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])[All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654])][None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])] As usn2 Skip 5.9e-12 =~$@usn6 Limit 10.12e12[..10.12e12][..`6esn`] Unwind .9e1[Count(*)..$`3esn`] As `5esn` Union Remove [`5esn` In 12[0xabc..][$0..] Where $usn2[0e0][$7]|Count ( * )[`7esn`..]].``._usn4!.`5esn`,`1esn`(Count(*) Starts With $_usn4).#usn7.#usn7,@usn6:#usn8 Optional Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Where `` Ends With .9e-1 Ends With 9e-12"), + octest:ct_string("With Distinct $12[.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As #usn8,{#usn7:01 Ends With \"d_str\",_usn4:`3esn` In 0X7}[All(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12])..Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]|999[..@usn5][..`1esn`])][Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1)..Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)] Order By $`3esn`[010..][9e-1..] Ascending Optional Match ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) Union All Unwind _usn4 Ends With .0 Ends With 7 As `7esn` Union All With Distinct 0X0123456789ABCDEF Contains 8.1e1 As `6esn`,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,.9e0 Is Not Null Is Not Null As `5esn` Skip .1e-1 Delete \"d_str\"[12e12..][4.9e12..]"), + octest:ct_string("Delete 0e0 Ends With `7esn` Ends With usn1,`4esn`[0.0..][.1e-1..] Create `7esn`=(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]}) Union All With Distinct *,#usn8 In $@usn6 As `8esn` Skip `1esn`[..0x0][..\"d_str\"] Match @usn6=((usn1 )-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})) Union Match ``=((:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})-[:_usn4|`1esn` *00..123456789]->({_usn3:00[$`6esn`]})),(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))) Where 7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]"), + octest:ct_string("Match `8esn`=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Remove count().`1esn`!._usn4?.`7esn`!,None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12).@usn5!.`2esn`!,[`5esn` In 12[0xabc..][$0..] Where $usn2[0e0][$7]|Count ( * )[`7esn`..]].``._usn4!.`5esn` Match ((`` :``:usn1)),`8esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where 999[..@usn5][..`1esn`] Union All Unwind 0e0[`4esn`] As _usn4 Unwind 12e-12[`7esn`..][5.9e-12..] As `8esn` Union Unwind 9e1 Is Not Null As #usn8 Unwind 01234567[..Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null)][..999] As usn2 With *,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] As usn1 Limit `3esn`[$0..][.9e1..]"), + octest:ct_string("Merge (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))) Union With Distinct {usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0xabc In 10.12e12)..][0X7..],.9e1 Starts With `4esn` As `5esn` Order By [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) Descending,0e0[.12..][3.9e-1..] Asc Limit [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12] Ends With (usn1 {`6esn`:$`5esn`[true],usn2:1e1 Is Not Null Is Not Null})-[?:`4esn`|:@usn5 *..0xabc]-(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(usn2 {_usn4:$999 Ends With .9e-12}) Where 0e0[..'s_str']"), + octest:ct_string("Create ((@usn5 :usn1)-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})),(:_usn4) Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)],Null[...9e1] Union All Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) Union Merge `6esn`=(({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Create Set All(usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]).`2esn`? =0Xa[$usn2..],`3esn`:usn1,`1esn` =$``[`6esn`][00] Unwind [`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] In Any(`7esn` In .12e12[Count(*)..] Where 0Xa[9e0]) In [usn2 In .0e0[$`6esn`..] Where .12e12[`7esn`][#usn8]|7 Is Null Is Null] As @usn6 Delete $12[$12..],usn2 Ends With 10.12e12,1.9e0[$12][``]"), + octest:ct_string("Delete 123.654 Ends With 0Xa Ends With .12e12,0X7[$7..] Union All Create `2esn`=(({_usn4:01234567[6.0e0][$usn2]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})),(@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}) Merge ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})) On Create Set @usn5+=_usn4 Ends With .0 Ends With 7,None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0e-0 Contains _usn4 Contains 1e-1).`6esn`! =Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) On Create Set [_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8].`5esn`! ={_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12),#usn8 =(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] Merge ((`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010})) On Match Set All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 999 =~0Xa =~9e0).`1esn`?.`2esn`? =()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] Union Merge ``=(((_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`7esn`:`8esn`|:`2esn`]->({`4esn`:$`2esn` Ends With $`8esn`})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0))) Return Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1] Return Distinct {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As ``,$`8esn`[12.0..][4.9e12..],.1e-1 Ends With @usn6 As @usn6 Order By false Starts With 3.9e-1 Asc,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Descending"), + octest:ct_string("Optional Match usn2=(`3esn` {`2esn`:01[1e-1]}),usn1=(#usn7 {`5esn`:.12e12[$0]}) Where 0[$`1esn`..`8esn`]"), + octest:ct_string("Remove Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `4esn` Is Not Null Is Not Null).``?,(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})<-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`}).@usn5!"), + octest:ct_string("Detach Delete 1e1 Starts With `8esn` Starts With .9e0 Merge usn1=(:#usn7:_usn3{#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) On Match Set `7esn`+=$`` In $7 In 9e-1,usn1+=$12 Starts With 1e-1 Starts With $@usn5,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).`2esn`?.#usn8! =Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null"), + octest:ct_string("Create @usn6=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})) Remove {usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}._usn4! Remove `3esn`.`2esn`?,(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6? Union Merge (#usn7 :usn2)<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}) Merge #usn7=(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[?{#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0}]-({`6esn`:07 Ends With @usn6 Ends With _usn3}) On Match Set `4esn`+=$`2esn`[$1000][2.9e1],{usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}._usn3 =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1} On Match Set {@usn5:12e-12 Starts With .9e12 Starts With 0.12}.`1esn`? =`3esn`[$0..][.9e1..]"), + octest:ct_string("Detach Delete $`8esn`[$``..$`1esn`][9e-12..$7],Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]),.9e-1 Ends With `8esn` Delete `1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)],_usn4 In `3esn` In 7.0e-0,'s_str' =~.9e1 =~3.9e-1 Merge ((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2)) Union Merge @usn6=(((@usn6 {`8esn`:999[..@usn5][..`1esn`]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]}))) On Match Set Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 999 Starts With .9e12 Starts With 3.9e-1).`6esn`.@usn6!._usn4? =`4esn`[0.0..][.1e-1..],Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).@usn5! =9e1 Contains 4.9e12 Contains .9e0,`1esn`+=00[0e-0...9e-1][1e-1..``] On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1] Merge ((`5esn` :`2esn`:`8esn`)<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})) On Match Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Where 4.9e12 In 5.9e-12 In .9e0"), + octest:ct_string("With $12[.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As #usn8,{#usn7:01 Ends With \"d_str\",_usn4:`3esn` In 0X7}[All(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12])..Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]|999[..@usn5][..`1esn`])][Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1)..Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)] Limit Count ( * ) Is Null Is Null Return *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Match `8esn`=(`3esn` :#usn7:_usn3)<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(`2esn` :usn2)<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}),`4esn`=(((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Union Remove All(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1).usn1!.`7esn`.`2esn`!,Filter(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8).@usn5?,(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})._usn3.@usn6!.@usn5 Match _usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))) Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As `8esn`"), + octest:ct_string("Merge `5esn`=((({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))) On Match Set Extract(`` In $_usn3 Is Not Null Where $_usn3 In 123.654 In $`8esn`|$`8esn`[$usn2..]).`6esn`!.``! =_usn4 In `3esn` In 7.0e-0 On Create Set {`1esn`:$`1esn`[.9e0][$_usn3]}.`8esn`? =`1esn`[Count ( * )][5.9e-12],`8esn`+=123.654 Ends With Count(*) Return All(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[..Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`])] As `7esn` Order By _usn4 Is Not Null Is Not Null Asc,All(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Starts With Filter(_usn3 In ``[$``..] Where .0e0[1e1..][01234567..]) Starts With `3esn`(Distinct) Descending Union Remove Any(`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6).`4esn`,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0e-0 Contains _usn4 Contains 1e-1].`2esn`,\"d_str\".`2esn`.`8esn`! Merge (({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) On Match Set .9e-12.`3esn`?.`3esn`.`7esn`? =Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).usn2!,{_usn4:$#usn7 Is Not Null Is Not Null,`3esn`:9.1e-1 In #usn8}._usn4?,6.0e0.`8esn`"), + octest:ct_string("With (:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] Where `7esn` Is Null Return *,(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})<-[?:usn1|:#usn8{`8esn`:`2esn` Is Not Null Is Not Null}]-({#usn8:1e1[Null..][.12..]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null,8.1e1 Is Not Null As usn2 Order By .1e1[$usn2..9e1][9e-1...9e-1] Desc Skip Null In 0Xa In .9e-1 Unwind .9e-12[12e12][.0e0] As `3esn` Union Create ({usn2:0.0[4.9e12..][00..]})-[``]-(`7esn` :``:usn1{`1esn`:0e0 Starts With $1000 Starts With `2esn`,@usn6:@usn6 In 3.9e-1 In 9e-12})<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}) Create `2esn`=(usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2}),`3esn`=((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Merge ((`7esn` {_usn3:false[$1000..$@usn6][7..12]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set @usn6 =$`3esn`"), + octest:ct_string("Remove {`4esn`:01[..01]}.`8esn`?.`8esn`?.usn1?,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`2esn`[010..`5esn`][``..0.12]).`4esn` Union All Unwind (`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As `7esn` Union Remove Any(`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6).`4esn`,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0e-0 Contains _usn4 Contains 1e-1].`2esn`,\"d_str\".`2esn`.`8esn`! Merge (({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) On Match Set .9e-12.`3esn`?.`3esn`.`7esn`? =Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).usn2!,{_usn4:$#usn7 Is Not Null Is Not Null,`3esn`:9.1e-1 In #usn8}._usn4?,6.0e0.`8esn`"), + octest:ct_string("Remove `7esn`:_usn4,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 9.1e-1 Contains 0xabc|$usn2 In usn1 In 1e-1).usn2?.`1esn`?,@usn6(12 Is Null Is Null)._usn3?.`6esn`! Detach Delete 11.12e-12 Contains 9e-12 Union Optional Match `3esn`=(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})),`5esn`=(((_usn3 )-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3}))) Where $_usn3 In 123.654 In $`8esn`"), + octest:ct_string("With Distinct $`8esn` Is Null Is Null As `7esn` Skip Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-12 Is Not Null Is Not Null) Is Null Is Null Limit .9e0[.1e-1][Count(*)] Where .9e-12 Ends With `1esn` Ends With 123.654 Unwind `1esn` Starts With 999 Starts With 3.9e-1 As _usn4 Optional Match (((`5esn` :usn1{_usn4:8.1e1 Is Null,#usn7:$_usn3 =~$usn1 =~_usn4})<-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(:_usn4{#usn7:.0e0[1e1..][01234567..],@usn5:`2esn` Is Not Null Is Not Null})-[#usn7?:`2esn`|`7esn` *..7]-(`3esn` {`6esn`:$`8esn`[..1e1][..``],`8esn`:$usn2 In usn1 In 1e-1}))) Union Create (:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}),(({#usn8:1e1[Null..][.12..]})<-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]->(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) Union All Create (({_usn3:$`5esn`[7..]})) Detach Delete _usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null Merge ((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) On Create Set (`6esn` :usn1)<-[usn1{`2esn`:usn2 Ends With .0}]->(_usn3 :_usn3:_usn3)-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})._usn3? =Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}],@usn5 =.9e1[...12e12]"), + octest:ct_string("Remove ``().usn1.@usn5!,usn2(Distinct 0X7 Starts With 1e1 Starts With $12)._usn3!,{#usn8:$_usn3 Is Not Null}.@usn6! Union All With Distinct Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) As `1esn`,0[..$@usn5] As `` Order By {`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending Limit 12 Contains _usn3 Where $`2esn` Ends With 2.9e1 Ends With $usn1 Detach Delete 5.9e-12[.1e1][$#usn8] Union All Merge ((:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[#usn8? *0x0..]->(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)) On Match Set `8esn` =#usn7 Ends With $#usn7 Ends With #usn7"), + octest:ct_string("Delete 0x0 Starts With $`5esn` Starts With 9e-12,.0e0[..12.0][...1e-1] Union Create `3esn`=(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))),(((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})-[`2esn`?:#usn8|:`4esn`]-(:@usn6:_usn4{`2esn`:$usn1[$7..][$0..]}))) Return .1e1 =~`1esn`,Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],$#usn7 Is Not Null Order By All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Desc,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] Ascending,.9e0 In 9.1e-1 In $123456789 Desc Remove (#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *01234567]->(`5esn` :`2esn`:`8esn`).#usn7!.`3esn`!.@usn6! Union All Merge (((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))),(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}) Where 01234567[6.0e0][$usn2]"), + octest:ct_string("Match `3esn`=(:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})<-[? *0X0123456789ABCDEF..0]-(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null}) Where #usn8[usn1] Remove [`2esn` In .12e-12[$@usn6..5.9e-12] Where 1000[..0e0][..$`6esn`]|Count(*)[12..][0X0123456789ABCDEF..]].@usn6!,`8esn`:_usn3:_usn3 Union Merge `6esn`=(:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}) On Create Set `1esn`+=00[0e-0...9e-1][1e-1..``],``+=2.9e1 Starts With 12e-12 Starts With 0.0,(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8 Remove Any(`8esn` In 01234567[..0.0][..false] Where 0e0 Starts With $1000 Starts With `2esn`).`4esn`.@usn5!.`2esn`!"), + octest:ct_string("Unwind 0e0 Ends With 0X7 Ends With .1e1 As _usn4 Unwind 999 =~0Xa =~9e0 As `` Union Match (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))),(`8esn` {`3esn`:#usn8[`2esn`]}) Union With ({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)[{``:.1e-1 Ends With $`8esn` Ends With .9e0,`7esn`:.9e-12 Is Not Null Is Not Null}][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])],Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) Unwind $0 Starts With 010 As #usn8 With .0e0 Is Null Is Null As _usn4,`6esn`(usn1 Is Not Null,123456789 =~6.0e0)[Single(_usn3 In ``[$``..] Where Null[..07])..][{_usn3:010[9e0..9e1][$_usn4..$12],`3esn`:7.0e-0[$usn2..0.12][$``..0]}..] As usn1,#usn8 In $@usn6 Order By 8.1e1 Ends With $0 Ends With 6.0e0 Descending,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null Ascending,Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\") Ascending Skip $`2esn` In 0X7 In 3.9e-1 Limit 0x0[`5esn`][$`5esn`]"), + octest:ct_string("Unwind `6esn`[`5esn`] As @usn6 Optional Match `2esn`=(_usn3 :_usn3:_usn3{@usn6:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where `2esn` Is Not Null Is Not Null Remove `1esn`:usn2,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where false[$1000..$@usn6][7..12]].`5esn`?"), + octest:ct_string("Create ((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1))),_usn4=((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) With Distinct *,0Xa Ends With #usn8 Ends With usn2 As `6esn` Delete #usn8(Distinct false[$1000..$@usn6][7..12],123456789 In 9e-12 In false) Starts With `4esn`(Distinct 0e0 Is Null Is Null),.0 Union All Delete #usn8(Distinct false[$1000..$@usn6][7..12],123456789 In 9e-12 In false) Starts With `4esn`(Distinct 0e0 Is Null Is Null),0e0 Contains $`8esn` Contains 9e-12"), + octest:ct_string("Merge `3esn`=(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Union Return *,Extract(`5esn` In 12[0xabc..][$0..] Where 9e-1[0X0123456789ABCDEF][0]|.9e1[..Count(*)][..7.0e-0]) Is Null Is Null As _usn3 Order By {`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] Ascending Limit 123.654 In $`5esn` In 9e-1 Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Where 0X7[$999...12e12][12..`2esn`] With All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Where .9e1 Contains Null Union All With Distinct *,@usn5 Ends With 's_str' Ends With 01 As _usn4,Null[.12e-12] Order By `3esn`[`4esn`..Null][$usn1..`5esn`] Asc,$``[7..] Ascending,_usn4 In `3esn` In 7.0e-0 Desc Skip Extract(_usn4 In Count(*)[9e1..][12e-12..] Where $_usn4[..usn2]|`1esn` Starts With 999 Starts With 3.9e-1) =~(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}) =~Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]) Where .0e0[$`1esn`][.9e-12] With Distinct *,@usn6[..$`3esn`][..4.9e12] As #usn8 Order By .12e-12[$`6esn`..] Desc"), + octest:ct_string("Remove [`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0]._usn3?._usn3?,(:`3esn`{usn1:123.654 Ends With 0Xa Ends With .12e12})-[?{`3esn`:$`6esn`[$`7esn`][$`4esn`]}]->(:_usn4{`7esn`:9.1e-1 =~@usn5 =~Count ( * )}).`5esn`?.usn2,`2esn`(Distinct 12e-12[`7esn`..][5.9e-12..],0.0[$1000][3.9e-1])._usn4!.`2esn`.``! Return Distinct *,_usn3[`2esn`..10.12e12][9e1..true] Remove (usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2})-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12}).@usn5,Filter(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`).`3esn`,Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1).@usn5.`4esn`! Union Optional Match `3esn`=(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})),`5esn`=(((_usn3 )-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3}))) Where $_usn3 In 123.654 In $`8esn`"), + octest:ct_string("Remove `6esn`(Distinct).`2esn`,{`8esn`:.1e1 Is Null Is Null}.#usn7? Match (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[:usn1|:#usn8]-(:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`}),`2esn`=((_usn4 {#usn7:$`5esn` Is Null Is Null})-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})) Return Distinct *,0xabc[7.0e-0..][12e12..] Order By .0e0[..12.0][...1e-1] Descending,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Descending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Skip 12e12 =~#usn7 =~.9e-1 Limit All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7)[{`6esn`:$123456789[$_usn3..][$usn2..],#usn7:_usn4[7][8.1e1]}]"), + octest:ct_string("Create #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]})-[`3esn`? *..0xabc{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`}) Create `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Union Unwind 12e12 Is Null Is Null As usn2 Union All Merge (((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999})))"), + octest:ct_string("Remove Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count ( * ) Ends With `6esn` Ends With .12e12|5.9e-12[$`4esn`]).#usn7?,{`4esn`:$`8esn` In 9e-12 In 3.9e-1,@usn5:999 Ends With $123456789 Ends With $_usn4}._usn4!.@usn6?.`7esn`,Any(`7esn` In .12e12[Count(*)..] Where \"d_str\" =~9e-12 =~`5esn`).@usn5!"), + octest:ct_string("Create (((`3esn` :@usn6:_usn4)<-[_usn4?:#usn8|:`4esn` *123456789..0x0]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12})-[?:_usn3|`2esn`]->(`1esn` :`7esn`))),(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567}) Return $0[..0x0][..01234567] As #usn7,\"d_str\" Starts With `6esn` Starts With 1.9e0 As _usn3 Order By 01[7][`1esn`] Asc,Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,#usn7[12e-12..][$`2esn`..] Asc Skip $7 =~0 =~.1e-1"), + octest:ct_string("Merge ((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`3esn`? =0.12[3.9e-1],_usn4 =Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],[`` In $_usn3 Is Not Null Where 12 =~$@usn5|$`2esn` In 0X7 In 3.9e-1].`8esn`.`5esn`? =12e-12[9e0..1.9e0] On Create Set `1esn` =.1e-1[..12][.._usn4],_usn4 =usn2[..7.0e-0],`5esn` =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1} Unwind `2esn` Starts With 12 Starts With 10.12e12 As `5esn` Optional Match (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[:usn1|:#usn8]-(:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`}) Where 123456789 Contains .1e-1 Contains .12e12"), + octest:ct_string("Create `4esn`=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6),`3esn`=((`6esn` {`4esn`:$@usn5[$#usn8..][_usn3..]})<-[`8esn`?:`7esn`|@usn6 *..7]->(`5esn` {`2esn`:`1esn` =~0 =~_usn4})) Union All Create `3esn`=(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})),`5esn`=(((_usn3 )-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3}))) Union Delete `2esn`[..9.1e-1][..0xabc],Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|.9e12 Starts With 6.0e0 Starts With .1e1) Is Null Is Null,\"d_str\" =~9e-12 =~`5esn` Optional Match _usn3=((usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1})),usn1=(:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}) Where Null Starts With 9e1 Starts With ``"), + octest:ct_string("With Distinct `8esn`[6.0e0..][$`1esn`..],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Unwind (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)] As ``"), + octest:ct_string("Delete Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 9e0 =~9e1 =~.12e12) =~{usn1:$@usn5[...9e-1][..$usn1]} =~(_usn4 {usn1:`3esn` Ends With `6esn`})<-[_usn3{`8esn`:0e0[..'s_str']}]-(usn1 :`2esn`:`8esn`{usn2:$`3esn` =~4.9e12 =~$7,#usn7:12e12[..$`8esn`][...0e-0]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}),12.0[`8esn`] Match (((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}))) Where 12e-12 Contains .9e-1 Contains 9e-1 Union Unwind Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null As @usn5 Return `2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,1e1 In .1e-1 In .0 Order By Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) Asc Skip 00 =~.9e-12 =~usn1 Limit 12e12 Ends With usn1"), + octest:ct_string("Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``]|`4esn` Starts With $_usn3 Starts With .9e-12].@usn5!._usn4?.`1esn`? Remove (`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1})<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}).@usn6.#usn8? Remove {usn1:0Xa[9e0]}._usn3?._usn4.``?"), + octest:ct_string("Create `7esn`=({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}),`2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})"), + octest:ct_string("Match (:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}),(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}) Where .9e-1[3.9e-1]['s_str'] Merge usn1=(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ) Optional Match `2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null})))"), + octest:ct_string("With [_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789|0e-0 Contains _usn4 Contains 1e-1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567) As `3esn`,.9e-1 Is Not Null Is Not Null,$@usn6 =~$`2esn` =~9e1 Skip [usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Limit 0X7[_usn4..1.9e0][Count ( * )..false] Where 1.9e0[$12][``]"), + octest:ct_string("Optional Match ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})) Optional Match (({_usn3:$`5esn`[7..]})) Where $@usn6 =~$`2esn` =~9e1 Union All Unwind $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn` As _usn4 Create _usn3=((:`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[`3esn`:`5esn` *123456789..0x0{`6esn`:.9e-12[12e12][.0e0]}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})) Union Unwind $`6esn` In `2esn` As _usn4"), + octest:ct_string("Optional Match `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})),(:#usn8{usn2:07 Starts With usn1 Starts With 010})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})"), + octest:ct_string("With Null =~9e12 As #usn7,.0[usn2.._usn4] As `8esn` Order By $`5esn`[true] Descending,`7esn` Contains $7 Contains 07 Asc,3.9e-1[..$7] Desc Where $@usn6 Contains Count ( * ) Return *,Null[...9e1],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Optional Match @usn6=((`` :usn1)-[ *0..010]->(_usn4 :`5esn`)),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})) Where 1e1 Is Not Null Is Not Null"), + octest:ct_string("Detach Delete [`` In 0.12[3.9e-1] Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`|Null[10.12e12..]] In {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] Match ((@usn6 {`8esn`:999[..@usn5][..`1esn`]})-[usn1?:`3esn`|:_usn3]->(`2esn` {`7esn`:Count(*)[.0e0..][#usn7..]})<-[`8esn`:`3esn`|:_usn3 *123456789..0x0{`8esn`:$`3esn` Ends With 010 Ends With $`7esn`,usn2:7.0e-0[$usn2..0.12][$``..0]}]-(`` :_usn4)),`2esn`=((#usn8 {#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})) Where _usn4['s_str'..] With Distinct $`4esn` In 123456789 In `5esn` As @usn5,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12) Skip 1.9e0 =~0x0 Limit 01234567[$#usn7][.0] Union All With Distinct *,$12 Contains $#usn8 Contains 01 As usn1 Order By 0X7[`4esn`..][`3esn`..] Ascending,$#usn7 In .12e-12 Ascending,$`6esn` In `2esn` Ascending Where $_usn3[1e-1..] With Distinct 12e-12 Ends With @usn5 Ends With $`2esn` As `6esn`,$123456789[#usn8][.9e-12],@usn5 Contains _usn3 Contains 00 As _usn4 Order By Count(*)[0e0..] Ascending,12e-12 Ends With @usn5 Ends With $`2esn` Desc Union Create (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) Merge `5esn`=(`7esn` :`8esn`:#usn7{`4esn`:`8esn` =~.1e1 =~.0}) On Match Set #usn8:`5esn`"), + octest:ct_string("Optional Match (:usn1{``:.9e1[..`5esn`]})"), + octest:ct_string("Unwind 9e12 Is Null Is Null As `8esn` Merge usn1=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) On Match Set (#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`3esn`?:usn1|:#usn8*..{usn1:.12e-12[999...12]}]->(#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]}).`7esn`? =12 Ends With $7 Ends With $#usn8"), + octest:ct_string("Detach Delete Extract(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]|1000[..0e0][..$`6esn`])[{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}][Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 8.1e1 Ends With $0 Ends With 6.0e0)],.9e1[All(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)..][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])..] Union Merge `6esn`=(({`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]})-[#usn8:`2esn`|`7esn`{`5esn`:07 Starts With usn1 Starts With 010}]-(`5esn` :`4esn`:`7esn`)) On Create Set None(`8esn` In 01234567[..0.0][..false] Where Count(*)[9e1..][12e-12..]).usn1 =.0e0[$`6esn`..] Union Detach Delete `4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Ends With None(`` In $_usn3 Is Not Null Where .9e1[...12e12]),`5esn`[0X7..][12..] Remove None(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]).#usn8,{@usn5:$`1esn` Starts With Count(*) Starts With $`8esn`}._usn3! Optional Match ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}))"), + octest:ct_string("Merge (`5esn` :_usn3:_usn3{`5esn`:$`2esn`[010..`5esn`][``..0.12]})<-[usn2:@usn6|:_usn3 *123456789..0x0$_usn3]->(:`8esn`:#usn7{``:$7 Starts With Null Starts With `6esn`,`4esn`:#usn8[..#usn7][..@usn6]}) On Match Set Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`1esn` =.1e1 Ends With `2esn` Ends With $`1esn`,All(usn1 In 7.0e-0[.._usn4][..0X7] Where 12.0[..Count(*)][..5.9e-12]).`3esn`!.`4esn`!.``! =Count(*)[8.1e1..],{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}.usn1!.@usn6? =$`3esn` In 's_str' In $#usn7 With *,None(_usn3 In ``[$``..] Where .0e0 In 10.12e12 In $`5esn`) Is Null Is Null As ``,Count ( * ) Starts With 10.12e12 Starts With `` Skip Count(*)[..Count(*)][..9e0] Where $`6esn` Starts With `4esn` Union Merge `5esn`=(((`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`))) Unwind 7.0e-0[3.9e-1..`1esn`] As _usn3 With Distinct $123456789 Is Null Is Null As #usn8,@usn6[..$`3esn`][..4.9e12] As #usn8,1.9e0[$12][``] As `5esn` Order By `1esn` Ends With 7.0e-0 Ends With $usn1 Desc Limit $`2esn` Ends With $`8esn` Union Unwind .0[01234567][$#usn8] As `2esn` Merge `6esn`=(({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Create Set All(usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]).`2esn`? =0Xa[$usn2..],`3esn`:usn1,`1esn` =$``[`6esn`][00]"), + octest:ct_string("With Distinct *,Null[12e-12..] As _usn4,$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Skip Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`])[0x0..[`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`]] Create `6esn`=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}))) Union All Return *,$#usn7 Is Not Null Is Not Null As `1esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4 Order By 9e12 Ends With 07 Ascending,\"d_str\" =~9e-12 =~`5esn` Desc,Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999)[Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])][[_usn3 In ``[$``..] Where @usn5 Ends With 0]] Descending Skip `` =~$`5esn` Merge (usn2 :@usn5{`3esn`:$usn1 Is Null})-[_usn3:`2esn`|`7esn`*..{#usn8:`1esn` =~0 =~_usn4,`2esn`:0e-0 In $1000 In .9e1}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}) On Create Set @usn5 ={``:`1esn` In 12e-12 In 1e-1,usn2:_usn3[`2esn`..10.12e12][9e1..true]}[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )]..][Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`])..],`6esn` =usn2['s_str'...9e-1][$7..Count ( * )] On Create Set None(`8esn` In 01234567[..0.0][..false] Where $_usn3 Contains 1e1 Contains .12).``.`8esn`? =8.1e1[$`5esn`][0e0] Merge (:usn1{``:.9e1[..`5esn`]}) On Match Set {_usn4:7.0e-0 =~$12 =~5.9e-12}.#usn8?.`` =9e12[...12e12][..$`2esn`] On Match Set _usn3(.9e12[..$usn1][..10.12e12],$`2esn` In 0 In 0Xa).`1esn`? =.1e1 Starts With .1e-1,@usn5+=123456789 =~$`1esn` =~#usn7,`8esn`+=Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]) In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )] In `8esn`(Distinct $_usn3 Contains 1e1 Contains .12) Union All Create @usn6=((`5esn` :`6esn`:`3esn`{usn2:$`4esn`[..2.9e1][..07],`6esn`:#usn7[10.12e12..][\"d_str\"..]})<-[`7esn`*..]->($@usn6)<-[:_usn3|`2esn` *010..]-(`` :usn1)) Create `5esn`=((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]})),@usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))) Return Distinct count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0])[_usn3(8.1e1[usn2..$1000][$7..0x0],false[..12e-12][...9e1])..] As @usn6,.0e-0[0e0..00][.9e1..12] As `1esn`,Count ( * ) Starts With 10.12e12 Starts With `` As `5esn` Order By 5.9e-12[9e0..] Ascending,0x0 Asc Skip 0Xa[$usn2..]"), + octest:ct_string("Create `5esn`=((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})),``=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}) Return Distinct [`` In 0.12[3.9e-1] Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`|Null[10.12e12..]] In {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] As `7esn` Order By 00 Ascending Skip 12.0 Contains $_usn4 Contains $usn2 Limit .9e1 Starts With `4esn` Union Remove @usn5:@usn5,Extract(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null]|true Is Null Is Null)._usn4?.#usn7?,All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e0 In 9.1e-1 In $123456789).#usn7 Delete Null Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null),None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4),$usn1 Starts With 00 Unwind Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] As #usn7"), + octest:ct_string("Remove {`5esn`:.9e-12 Starts With .0e-0 Starts With usn2}.`3esn`!,Single(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12).`` Union Merge `6esn`=((#usn7 )) On Match Set `1esn`().`` =$`2esn`[$1000..][$@usn5..] Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As #usn7"), + octest:ct_string("Optional Match `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),_usn4=((`6esn` :#usn7:_usn3)<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union All Remove @usn5(Distinct Null =~true =~.1e-1,12e12[..123456789][..false])._usn4!,All(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]).`4esn`? Optional Match `5esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}),``=((`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]})-[?:@usn6|:_usn3 *999..]->(`1esn` :`1esn`{`5esn`:$`4esn`[..2.9e1][..07]})<-[`5esn`?:#usn7|:`8esn` *010..]->(:@usn5{usn2:$usn1[$12..]})) Where true Starts With 2.9e1 Starts With 9e1 With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) Starts With count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) Where $`3esn`[..`1esn`][..$`7esn`] Union Remove Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12).`5esn`? Merge usn2=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}) Merge _usn4=(({_usn3:$`5esn`[7..]}))"), + octest:ct_string("Remove Filter(_usn4 In Count(*)[9e1..][12e-12..] Where .9e1[#usn7..]).``"), + octest:ct_string("Unwind 7.0e-0[0X7..$`2esn`][`4esn`..`7esn`] As `1esn` Union All Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1"), + octest:ct_string("Create `1esn`=(_usn3 )-[?:`6esn`|#usn7{_usn4:8.1e1 Is Null,#usn7:$_usn3 =~$usn1 =~_usn4}]-(usn2 :@usn5{`8esn`:00[$`6esn`]})-[?:usn2|:``]-(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}),usn1=((`8esn` :_usn3:_usn3)<-[_usn4? *..7{#usn7:Count ( * )[7]}]->(`6esn` :`7esn`)<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)) Create ``=((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})),`3esn`=((`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})) Remove None(`5esn` In 12[0xabc..][$0..] Where .9e0 Is Null Is Null).`4esn`?.`7esn`!,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $`8esn`[$``..$`1esn`][9e-12..$7]).`7esn`.`5esn`,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null].#usn7?.`6esn`?.`1esn`"), + octest:ct_string("Delete .9e12 =~`5esn` =~07,1.9e0 Ends With 0Xa Ends With $12,$`2esn`[010..`5esn`][``..0.12] Union Merge `5esn`=(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[:#usn8|:`4esn`{_usn3:'s_str' Is Null,#usn7:#usn7[..0X0123456789ABCDEF]}]->(`` {`2esn`:.1e-1[2.9e1..][12..]}) Remove ({`1esn`:0X0123456789ABCDEF Contains 8.1e1})<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}).``!,`8esn`(07 Is Null Is Null).`7esn`!,Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]).``!.@usn6?"), + octest:ct_string("Merge #usn8=(@usn5 :usn1{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(@usn5 {#usn8:_usn3 Ends With 01 Ends With .1e-1}) On Match Set `7esn` =$`7esn` Is Null Is Null,`8esn`+=`6esn`[..$@usn6][..$`1esn`],`3esn`+=3.9e-1 Contains 9.1e-1 Contains `8esn` Union All Return 1.9e0 Ends With Count ( * ) Ends With .12 As `4esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12),9e1 Is Not Null As #usn8 Order By $`4esn` Ends With 0e-0 Ascending,.9e-1 Contains .0e0 Contains usn1 Asc Skip None(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8) Is Null Is Null Union All With Distinct ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]),0e0[`4esn`] Skip _usn4(0[true..$7]) =~Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`) =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0) Limit @usn6(Distinct 12e12 Ends With $`3esn` Ends With 11.12e-12)[..{`2esn`:.9e12 Starts With 6.0e0 Starts With .1e1,#usn7:010[11.12e-12..]}][..`1esn`(Distinct $0[$`7esn`..$`3esn`]['s_str'...0])] Where .9e-12 Is Not Null Is Not Null"), + octest:ct_string("Detach Delete 12e12[$@usn5..][.0e-0..] Unwind {#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]) As `1esn`"), + octest:ct_string("Unwind Extract(`7esn` In .12e12[Count(*)..] Where true Starts With 2.9e1 Starts With 9e1|12[0xabc..][$0..]) Starts With Extract(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12|0.12[3.9e-1]) Starts With ``(12e12[true..][$`2esn`..]) As `4esn` Return Distinct $0 =~01234567 As ``,Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])[All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654])][None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])] As usn2 Order By .0e-0 =~$`7esn` =~$0 Descending,01234567 Ends With 2.9e1 Ends With 9.1e-1 Asc,0x0 Contains $`1esn` Contains 0.0 Ascending Skip $`` In $@usn6 In 3.9e-1 Merge `1esn`=(((@usn5 :usn2)-[`4esn`?:_usn3|`2esn`]-(:#usn7:_usn3)<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}))) Union Detach Delete `2esn`[0xabc..][$_usn3..],01[1e-1],$``[Count(*)]"), + octest:ct_string("Optional Match ``=((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})),`3esn`=((`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999}))"), + octest:ct_string("Delete `6esn`[..$``][..4.9e12],(`8esn` {`3esn`:#usn8[`2esn`]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null,{#usn8:8.1e1 Ends With $0 Ends With 6.0e0,#usn8:Null =~true =~.1e-1} Contains {usn1:Count ( * )[..2.9e1],_usn3:07 Starts With usn1 Starts With 010} Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where `1esn`[9.1e-1]|$`8esn` Starts With `2esn`).``!.`5esn`.``!"), + octest:ct_string("Detach Delete $`1esn` Starts With Count(*) Starts With $`8esn`,$12[.9e-1],Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1]) With Distinct *,8.1e1 Ends With .1e-1,$#usn7 =~8.1e1 As #usn7 Order By false =~4.9e12 Asc Skip 0x0 =~0x0 Limit $_usn4[1e-1..8.1e1][`1esn`..1.9e0] Where 5.9e-12[.1e1][$#usn8] Create `1esn`=((:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[usn1 *12..0Xa]->({`5esn`:07 Starts With usn1 Starts With 010})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})) Union Delete .1e-1[..12][.._usn4],[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]}"), + octest:ct_string("Return Distinct $0 =~01234567 As ``,Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])[All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654])][None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])] As usn2 Order By .0e-0 =~$`7esn` =~$0 Descending,01234567 Ends With 2.9e1 Ends With 9.1e-1 Asc,0x0 Contains $`1esn` Contains 0.0 Ascending Skip $`` In $@usn6 In 3.9e-1 Return .1e1 =~`1esn`,Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],$#usn7 Is Not Null Order By All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Desc,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] Ascending,.9e0 In 9.1e-1 In $123456789 Desc Union All Merge ((:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]-(`8esn` $12)<-[#usn8? *12..0Xa]-(:#usn8$#usn8)) On Create Set `8esn`+=0x0 Starts With 01234567 Union All With Count(*) Is Not Null As `4esn` Skip All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null With *,123.654 Is Not Null Is Not Null As `7esn`,(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) Starts With count(Distinct 9.1e-1 =~@usn5 =~Count ( * ))"), + octest:ct_string("Delete {`8esn`:$`` Is Null Is Null}[Extract(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..])..][Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)])..],$`6esn`[..12e12][.._usn3],$_usn4 Starts With 0e-0 Starts With 1e-1 With `2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,1e1 In .1e-1 In .0 Order By 1000 Contains Null Contains 9e1 Desc,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null Descending,$`7esn`[..12.0][..0e0] Asc Limit 11.12e-12 Is Null Where 's_str' Ends With 0.0 Ends With .12e12 Match `5esn`=((`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]})-[:`6esn`|#usn7{usn1:$`2esn` Contains $1000,`7esn`:`7esn`[.1e1..][`8esn`..]}]-(#usn8 {`2esn`:usn2 Ends With .0})) Where 999 Starts With .9e12 Starts With 3.9e-1"), + octest:ct_string("Optional Match `5esn`=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}),#usn8=((`3esn` {#usn8:`7esn` Is Null})-[_usn4 *999..]->(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]})) Return *,0 Starts With 0Xa Starts With $0 Limit Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}] With .12e-12 Is Not Null,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})],12e12[$@usn5..][.0e-0..] As `2esn` Limit All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] Where true Contains 0x0 Union Unwind 7 Starts With 0X7 As usn1"), + octest:ct_string("Remove {_usn3:@usn6 In 3.9e-1 In 9e-12}.`3esn`!,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`8esn` Is Null|.0[usn2.._usn4]).usn2!,(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]}).#usn7! Unwind `2esn` Starts With 12 Starts With 10.12e12 As @usn6 Union Unwind `8esn`[6.0e0..][$`1esn`..] As `6esn` Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By $7 In .9e1 In $`` Desc,$`6esn` Starts With `4esn` Descending,8.1e1 Starts With .9e12 Starts With `7esn` Desc Skip 12.0 Is Null Is Null"), + octest:ct_string("Unwind .0[01234567][$#usn8] As `2esn` Merge `6esn`=(({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Create Set All(usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]).`2esn`? =0Xa[$usn2..],`3esn`:usn1,`1esn` =$``[`6esn`][00] Union All Create `5esn`=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}),#usn8=((`3esn` {#usn8:`7esn` Is Null})-[_usn4 *999..]->(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]})) Remove {usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}._usn4! Return Distinct *,1000[Null..] As `1esn`,.9e1[#usn7..] As `7esn` Limit Count ( * ) In 999 Union Optional Match #usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Optional Match `7esn`=(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]}) Where #usn8[7..@usn5]"), + octest:ct_string("With Distinct {usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])],@usn5 Ends With 's_str' Ends With 01 As `7esn` Order By `3esn`[`4esn`..Null][$usn1..`5esn`] Desc,`5esn` Contains `6esn` Asc,9e-12 In 5.9e-12 Asc Union All Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]|$_usn3 Is Not Null).usn2!.#usn7!.`8esn`! Union All Delete All(_usn4 In Count(*)[9e1..][12e-12..] Where 7 Contains $#usn7) In (`` :`7esn`{`3esn`:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7],@usn6:01[..0.12]})<-[ *0x0..{`3esn`:$@usn6 Is Not Null Is Not Null}]-({``:_usn3[$_usn3][usn1]}),None(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12)[{`8esn`:$`3esn` Ends With 010 Ends With $`7esn`,usn2:7.0e-0[$usn2..0.12][$``..0]}][[usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|$12[01]]]"), + octest:ct_string("With *,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] As _usn4 Order By 00[$`6esn`] Descending,$``[Count(*)] Desc,$`5esn` Is Null Is Null Ascending Where .9e1[...12e12] Union Unwind .9e12[..$usn1][..10.12e12] As `3esn` Delete usn2['s_str'...9e-1][$7..Count ( * )] Merge `6esn`=(:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}) On Create Set `1esn`+=00[0e-0...9e-1][1e-1..``],``+=2.9e1 Starts With 12e-12 Starts With 0.0,(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8"), + octest:ct_string("Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Where Count(*) With *,$999 In 0.0,5.9e-12[`1esn`][usn2] Order By Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) Asc Unwind All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2 In usn1 In 1e-1) =~{#usn8:00[0e-0...9e-1][1e-1..``]} As `1esn`"), + octest:ct_string("Match ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})),_usn3=((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Where $usn2 =~$`2esn` =~\"d_str\" Optional Match #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}),`1esn`=(:usn1{usn1:Count(*)[0.12..2.9e1]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})"), + octest:ct_string("Match ((:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[? *12..0Xa]-(`2esn` :#usn7:_usn3)<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})),((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`5esn`]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)) Remove Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]).`3esn`.`1esn`!.`6esn`!,(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})-[``?:@usn5]->(usn1 :#usn8).`7esn`?.`1esn`?,`8esn`:_usn3:_usn3 Create `6esn`=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Union All Return Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] As `5esn` Order By 0 Starts With 0Xa Starts With $0 Ascending,$`2esn`[$usn1..] Asc,Count(*) Starts With $_usn4 Descending Limit All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..] Remove `6esn`:`3esn`,({`6esn`:$`3esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}).``?.`5esn`!.@usn6? With Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `5esn`,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null) Starts With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * )) Starts With (_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) As usn1 Order By 0e0[.12..][3.9e-1..] Descending,Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Asc Limit {#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]) Where true Starts With 2.9e1 Starts With 9e1 Union Match (((@usn6 {`8esn`:999[..@usn5][..`1esn`]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]}))),({`4esn`:$@usn5[$#usn8..][_usn3..]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]}) Delete Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]),11.12e-12 Contains 9e-12 Return Distinct ``[..$#usn7],$`6esn`[$`8esn`..][false..] As _usn3 Order By (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})[Extract(`` In $_usn3 Is Not Null Where _usn4[7][8.1e1])..None(usn1 In 7.0e-0[.._usn4][..0X7] Where .9e-1 =~.9e-1)] Desc Limit $0 In Count ( * ) In .1e1"), + octest:ct_string("Create @usn6=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Union All Remove @usn5(Distinct 1e-1[..$@usn5][..0xabc]).`3esn`!,Filter(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010).`1esn`?.`7esn`?.`3esn`?,`3esn`:usn2 Union Unwind [`` In 0.12[3.9e-1] Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`|Null[10.12e12..]] In {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] As `1esn` Merge (`1esn` :`5esn`)-[:#usn8|:`4esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}]-(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}) On Match Set .9e-12.`3esn`?.`3esn`.`7esn`? =Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) Remove {usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7}.`3esn`!,(:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}).`3esn`?,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where usn2 Ends With 10.12e12).`3esn`!"), + octest:ct_string("With Distinct *,(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]})[Extract(`` In $_usn3 Is Not Null Where .0e-0 =~12e-12)..[`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6]] Limit All(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]) Starts With Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) Where .9e-12[0e0...9e-1] Union All Return 3.9e-1[0.12..] Order By $`` =~$_usn3 Desc,$0 Contains .12e-12 Descending Skip Count ( * )[`7esn`..] Remove {usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`}.`1esn`!.usn1!,(`2esn` :``:usn1)<-[`6esn`? *..0xabc{``:$_usn4[Null]}]->(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]}).#usn7?.`3esn` Create ({`4esn`:7 Is Null Is Null})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}) Union All Create ((`3esn` {#usn8:`7esn` Is Null})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})),#usn7=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Optional Match `2esn`=(`` :usn2),((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})) Create ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?]->(:@usn5{usn2:$usn1[$12..]}))"), + octest:ct_string("Merge (((_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`1esn`{`7esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]}))) On Create Set @usn5+=_usn4 Ends With .0 Ends With 7,None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0e-0 Contains _usn4 Contains 1e-1).`6esn`! =Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) Detach Delete $`6esn` Starts With `4esn` Remove ({`1esn`:0X0123456789ABCDEF Contains 8.1e1})<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}).``!,`8esn`(07 Is Null Is Null).`7esn`!,Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]).``!.@usn6?"), + octest:ct_string("Return Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As #usn7"), + octest:ct_string("Unwind Filter(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..])[(@usn6 :#usn8)-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]})<-[:@usn6|:_usn3{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`` :`3esn`)][Single(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])] As #usn7"), + octest:ct_string("Create _usn3=((:`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[`3esn`:`5esn` *123456789..0x0{`6esn`:.9e-12[12e12][.0e0]}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})) Union With Distinct Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,9e-1 Starts With 123.654 Starts With .9e1 As `6esn`,.9e0 Is Null Is Null Skip usn1(07 Ends With @usn6 Ends With _usn3,$`2esn` In 0X7 In 3.9e-1) Contains [`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|9e0 =~9e1 =~.12e12] Limit $7 Starts With Null Starts With `6esn` Remove `3esn`.`2esn`? Unwind Null In 0Xa In .9e-1 As `3esn` Union All Match `2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Where 0x0 Starts With $`5esn` Starts With 9e-12 Return Count ( * )[..1.9e0][..`8esn`] As `1esn`,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] As @usn6,01[1e-1] Order By Extract(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``]|$_usn4[..usn2]) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) Starts With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null|`4esn` Is Not Null Is Not Null) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} Descending Skip (:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})<-[``:`8esn`|:`2esn` *12..0Xa]-(usn2 :@usn5{`3esn`:$usn1 Is Null})[..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 8.1e1 Is Null)][..#usn7(Distinct usn2 Ends With .0)]"), + octest:ct_string("With (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7),Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),12.0 =~$@usn5 =~8.1e1 Order By Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] Ascending Limit $@usn6 Contains Count ( * ) Return Distinct ``[..$#usn7],$`6esn`[$`8esn`..][false..] As _usn3 Order By (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})[Extract(`` In $_usn3 Is Not Null Where _usn4[7][8.1e1])..None(usn1 In 7.0e-0[.._usn4][..0X7] Where .9e-1 =~.9e-1)] Desc Limit $0 In Count ( * ) In .1e1 Match usn2=((:@usn5)-[@usn5:_usn3|`2esn`{`1esn`:5.9e-12[$`4esn`],usn1:9.1e-1[Count(*)..][5.9e-12..]}]->(usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})),(({#usn7:0X7[Count(*)][.9e0],`2esn`:0x0[`5esn`][$`5esn`]})-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})) Union Merge @usn5=((:`7esn`{usn1:123.654 Ends With 0Xa Ends With .12e12})-[ *0..010]->(_usn4 :`5esn`)) On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} On Match Set `7esn`+=$`` In $7 In 9e-1,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`].``? =Count(*) Starts With $_usn4,`1esn` =0xabc Contains 9e1 Contains 0x0"), + octest:ct_string("Remove 12.0.`8esn`?.@usn5?.`8esn`!,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12 Contains 0e-0 Contains .0).`8esn` Detach Delete (`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :``:usn1{usn2:12.0[..123456789][..01]}) Contains {`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12} Contains {`7esn`:`3esn` Starts With _usn4} Merge usn1=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) On Match Set (#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`3esn`?:usn1|:#usn8*..{usn1:.12e-12[999...12]}]->(#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]}).`7esn`? =12 Ends With $7 Ends With $#usn8 Union All Create `7esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}),({@usn5:$12 Contains $`7esn` Contains .0})<-[usn2 *..0xabc]->(:@usn5{`7esn`:7.0e-0[`6esn`..]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1}) Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``]|`4esn` Starts With $_usn3 Starts With .9e-12].@usn5!._usn4?.`1esn`?,All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where true In $0 In @usn5).`3esn` Remove [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where true Contains 0x0|$@usn6 Is Not Null Is Not Null].`8esn`,`2esn`:`3esn`,[`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1|`6esn`[..$@usn6][..$`1esn`]].`8esn`?"), + octest:ct_string("Merge (:`6esn`:`3esn`) On Create Set usn2+=Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) With *,Null[...9e1],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Where `2esn` Starts With $`7esn` Starts With _usn4 Union Unwind 123.654 Is Not Null Is Not Null As `6esn` Unwind $`` Is Not Null As _usn3"), + octest:ct_string("Delete All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null,({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`3esn`?:`1esn`]-(:`8esn`:#usn7{@usn5:$12 Contains $`7esn` Contains .0})<-[@usn6?:@usn5]->(:usn1{usn1:Count(*)[0.12..2.9e1]}) Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2|9e0[..1e1]) Ends With {`1esn`:7.0e-0[3.9e-1..`1esn`]},All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..])[`8esn`()] Return Distinct *,None(`7esn` In .12e12[Count(*)..] Where Count(*)[..Count(*)][..9e0])[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1]|.0)..] Skip Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) Limit {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} =~Filter(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]) Union With Distinct Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null Union Delete (:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) Starts With count(Distinct 9.1e-1 =~@usn5 =~Count ( * )),true Starts With 2.9e1 Starts With 9e1,.1e1 Starts With $`7esn` Unwind 12e12 Is Null Is Null As usn2"), + octest:ct_string("Unwind `1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `2esn` Union All Return Distinct *,All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,`1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `1esn` Limit {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[..`8esn`(010[@usn5..123.654],8.1e1[usn2..$1000][$7..0x0])][..{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1}]"), + octest:ct_string("Remove All(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null).`3esn`!.`4esn`?,(#usn8 {`3esn`:123456789 Contains .1e-1 Contains .12e12,`1esn`:$`3esn` =~4.9e12 =~$7})<-[:#usn8|:`4esn`{usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})<-[{`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}]-(:@usn5).`1esn` Optional Match (((`7esn` {`3esn`:.9e-1 Is Null})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`))) Where .0e-0[0e0..00][.9e1..12] Union Merge (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))) On Match Set `4esn`+=.9e0 =~`6esn` =~2.9e1,`` =_usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null With 3.9e-1 Is Null As usn1 Unwind ``[..$#usn7] As @usn5"), + octest:ct_string("Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}))"), + octest:ct_string("Match (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}),`1esn`=(((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[:_usn3|`2esn` *010..]-(`` :usn1)<-[@usn5?:@usn6|:_usn3 *07..{_usn3:$`3esn` Is Not Null Is Not Null,#usn8:usn1[0.12..1000]}]->(`3esn` {usn2:$`7esn`[..12.0][..0e0]}))) Return *,`2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,Null =~9e12 As #usn7 Order By .0e0[..12.0][...1e-1] Descending,5.9e-12 =~$@usn6 Asc"), + octest:ct_string("Unwind 999 =~0Xa =~9e0 As `` Remove {`8esn`:Null[..07]}._usn4?.`8esn`?,{`4esn`:$123456789[$_usn3..][$usn2..]}.usn1,[`8esn` In 01234567[..0.0][..false] Where 01[..0Xa]].``.@usn5?.`2esn`! Union Delete $usn2[12.0..]"), + octest:ct_string("Merge usn1=(`` {_usn4:9e0[..1e1]})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}) On Create Set `5esn`(Distinct $`2esn`[8.1e1],Count ( * ) Is Null Is Null).`7esn`!.`8esn`? =$``[7..] Union All With 12e12[..$`8esn`][...0e-0] As `1esn`,Null[...9e1] Skip .9e0 =~`6esn` =~2.9e1 Union Optional Match _usn4=(:_usn4),`3esn`=(({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[``?:``|:`3esn` *01234567]->(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})) Where $12[01] Detach Delete All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Delete ``(Distinct #usn7 =~`5esn` =~``)[Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..])..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)],4.9e12[1e1..'s_str'][Count(*)..0X7]"), + octest:ct_string("Create `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Merge `5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))"), + octest:ct_string("Merge usn2=(({`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]})-[#usn8:`2esn`|`7esn`{`5esn`:07 Starts With usn1 Starts With 010}]-(`5esn` :`4esn`:`7esn`)) Union All Remove All(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1]).`8esn`!,Single(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12).usn1!,{_usn3:false[$1000..$@usn6][7..12]}.#usn8!"), + octest:ct_string("Create @usn5=((usn1 )-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})),(`8esn` {`3esn`:#usn8[`2esn`]}) Return Distinct Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` Is Null Is Null) Is Not Null Is Not Null As usn1,123.654 Is Not Null Is Not Null As `1esn`,0X0123456789ABCDEF Contains 8.1e1 As @usn5 Limit _usn4[7][8.1e1] Union Return Distinct ({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)[{``:.1e-1 Ends With $`8esn` Ends With .9e0,`7esn`:.9e-12 Is Not Null Is Not Null}][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])],Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) Skip Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) =~Filter(`8esn` In 01234567[..0.0][..false] Where .9e12 =~`5esn` =~07) =~Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0|12[0xabc..][$0..]) Detach Delete ``(@usn6[..$`3esn`][..4.9e12],0x0 Contains $`1esn` Contains 0.0)[{`6esn`:999[...12e12][..0]}][[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)]|.9e1[Count(*)..$`3esn`]]],Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) In {`5esn`:$`` =~$_usn3,`4esn`:`7esn`} In `3esn`,Null In 0Xa In .9e-1"), + octest:ct_string("Unwind `7esn` Is Not Null Is Not Null As `1esn` Union All Remove [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )].`5esn`.`7esn`? Unwind Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7)[{usn2:`8esn` Is Null}..[@usn6 In .9e12 Starts With #usn8 Starts With 00]][(:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null})..{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}] As `1esn` Union Create `7esn`=((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})),usn1=((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})) Unwind $`8esn`[$``..$`1esn`][9e-12..$7] As _usn4 Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12}))"), + octest:ct_string("Return Distinct 123.654 Is Not Null Is Not Null As `1esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Ascending Skip 0.0[0x0..0.12]['s_str'..false] Limit $`7esn`[..12.0][..0e0] Create (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=(((_usn3 )-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3}))) Union With Distinct $`4esn` In 123456789 In `5esn` As @usn5,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12) Skip 1.9e0 =~0x0 Limit 01234567[$#usn7][.0] Remove `6esn`($12 Contains $#usn8 Contains 01).`3esn`?.@usn6?,Single(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1).#usn8!,{@usn5:$`5esn` Is Null Is Null,#usn8:$@usn5[..1e-1]}.`5esn`!.usn1 Merge `3esn`=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) On Match Set #usn7 =[usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|9e0 =~9e1 =~.12e12] Is Null Is Null,`8esn`+=123.654 Is Not Null Is Not Null,`3esn`+=_usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null Union Remove Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`).`1esn`!._usn4!.#usn8?"), + octest:ct_string("Merge usn2=((#usn8 {_usn3:$_usn4 Contains .12e-12})) On Create Set @usn5 ={``:`1esn` In 12e-12 In 1e-1,usn2:_usn3[`2esn`..10.12e12][9e1..true]}[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )]..][Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`])..],`6esn` =usn2['s_str'...9e-1][$7..Count ( * )] Union All Detach Delete .0[usn2.._usn4],.12[.0e-0..] Remove .9e-12.usn2"), + octest:ct_string("Remove {`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null}.@usn5?.#usn8!.`8esn`?,_usn4:_usn4,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]|Count(*) Starts With $_usn4).`8esn`! Unwind {usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) As usn2 Union All Return *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip usn2 Starts With $_usn3 Union All Remove _usn3:`1esn`,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']).`2esn`! Match ((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Where 0[$`1esn`..][9e12..] Delete 12 Is Null Is Null,[usn1 In 7.0e-0[.._usn4][..0X7]|7.0e-0 Is Null Is Null] =~#usn7 =~`4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`),$`2esn` In 0X7 In 3.9e-1"), + octest:ct_string("Return *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip 0xabc =~7.0e-0 =~4.9e12 Limit Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Create @usn6=((`` :usn1)-[ *0..010]->(_usn4 :`5esn`)),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})) With Distinct All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) Is Null Is Null,0xabc =~7.0e-0 =~4.9e12,Single(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1)[Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-12 Is Not Null Is Not Null)][Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`])] Where 9e12 Is Null Is Null"), + octest:ct_string("Create (usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]-(:_usn4{_usn3:010 Starts With 0.0 Starts With .0e0})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}) Merge ((#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[`3esn`?:`5esn`]->(`2esn` )) On Match Set `7esn`+=$`` In $7 In 9e-1,usn1+=$12 Starts With 1e-1 Starts With $@usn5,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).`2esn`?.#usn8! =Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null With .0e0[$`1esn`][.9e-12] As `6esn`,\"d_str\"[$123456789..][0X7..] Order By All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Asc,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Limit (usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})-[`4esn`?:`6esn`|#usn7]->(`1esn` )[[`2esn` In .12e-12[$@usn6..5.9e-12]|$#usn7 Starts With 10.12e12]..] Union All Merge ((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Remove @usn5(Distinct Null =~true =~.1e-1,12e12[..123456789][..false])._usn4!,All(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]).`4esn`? Merge (@usn6 :_usn4) Union All Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where `1esn`[9.1e-1]|$`8esn` Starts With `2esn`).``!.`5esn`.``!"), + octest:ct_string("Unwind {`3esn`:4.9e12 =~8.1e1 =~$`8esn`}[@usn6(Distinct 12e12 Ends With $`3esn` Ends With 11.12e-12)..count(Distinct 07 Ends With @usn6 Ends With _usn3,$@usn5[..1e-1])][({@usn5:#usn7[`5esn`..`2esn`][$`4esn`...1e1],`6esn`:Count(*) =~`5esn` =~$usn2})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})..Extract(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..]|123.654 Starts With 2.9e1)] As `3esn` With Distinct All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,usn2[..7.0e-0] As `1esn` Order By $_usn3 Contains 1e1 Contains .12 Ascending,.0e0 Is Null Is Null Descending,.0e0 Starts With $@usn6 Starts With Null Descending Limit 's_str' Ends With 0.0 Ends With .12e12"), + octest:ct_string("Remove {`4esn`:#usn8[..#usn7][..@usn6],`4esn`:8.1e1 Ends With $0 Ends With 6.0e0}.@usn6!.``! Return Distinct `8esn` Is Null As `6esn`,01234567 Starts With `4esn` Starts With 10.12e12,Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null As _usn3 Order By 01[7][`1esn`] Asc,Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null Descending,Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|.9e12 Starts With 6.0e0 Starts With .1e1) Is Null Is Null Asc Skip 1.9e0 =~0x0"), + octest:ct_string("With Distinct {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} As _usn3,Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])[All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654])][None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])] As usn2 Skip $`6esn` Starts With `4esn` Limit None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]) Is Null Is Null Where Count ( * ) Ends With `6esn` Ends With .12e12 Merge (((_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})<-[`4esn`?:_usn3|`2esn` *0..010]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`}))) On Create Set `6esn` =.1e1 =~10.12e12"), + octest:ct_string("Create `6esn`=((_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})) Remove All(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count ( * ) Ends With `6esn` Ends With .12e12).`7esn`? Union All Unwind Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0|12[0xabc..][$0..]) Contains [`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .12[$`2esn`..usn2][.9e-1.._usn3]] Contains Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]) As #usn8"), + octest:ct_string("Remove {usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}.`8esn`! Delete _usn4 In `3esn` In 7.0e-0"), + octest:ct_string("Unwind $@usn5 Is Null Is Null As @usn5 Union Match (:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}),(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}) Where .9e-1[3.9e-1]['s_str'] Merge usn1=(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ) Optional Match `2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Union Unwind true Is Null Is Null As usn1 Unwind `5esn`[$`4esn`] As `4esn` Detach Delete None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),`2esn`(Distinct) Starts With Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]) Starts With (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})"), + octest:ct_string("Merge ``=((#usn8 {_usn3:$_usn4 Contains .12e-12})) On Create Set #usn8 =usn2 Ends With 10.12e12 Union All Return 12e12 =~#usn7 =~.9e-1,All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null As @usn6 Skip 01 Contains 12.0 Remove .12e-12.`2esn` Create usn1=((_usn4 :`5esn`)-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]}))"), + octest:ct_string("With Distinct *,$`5esn`[true],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Skip $`1esn` =~0.0 Union Remove None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]).`6esn`? Remove ({`1esn`:0X0123456789ABCDEF Contains 8.1e1})-[`` *..0X7]->(usn2 :#usn8)._usn3 Delete #usn8(Distinct false[$1000..$@usn6][7..12],123456789 In 9e-12 In false) Starts With `4esn`(Distinct 0e0 Is Null Is Null),0e0 Contains $`8esn` Contains 9e-12 Union All With `8esn` As usn2 Order By Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"]|`7esn`[3.9e-1..][$@usn5..])[..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] Desc,.0e0 Is Null Is Null Descending,$`4esn` =~0e0 Ascending Unwind $usn1 Is Null As `2esn` Return Distinct Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12)[Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12)..][`4esn`(Distinct)..],Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] As `7esn`,None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[..Filter(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0)][..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] As #usn8 Order By {`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])] Asc,`6esn`[`6esn`..] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip `6esn` Is Not Null"), + octest:ct_string("Return Distinct $`2esn` Contains 123.654,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] As usn2,.9e-12[01][Count(*)] Order By (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] Ascending Skip $`3esn` Ends With 010 Ends With $`7esn` Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) Union All Create @usn6=((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})) Union All Return Distinct #usn8[7..@usn5] As usn2,12 Contains [usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12|$0 Contains .12e-12],10.12e12[$`5esn`] Limit (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] Return Distinct $#usn7 =~8.1e1 As #usn7,`4esn`[$1000..$``][$_usn4..$_usn4] Skip $`2esn` In 0X7 In 3.9e-1"), + octest:ct_string("Merge usn1=((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})) Remove {usn1:usn2[..7.0e-0]}.`2esn`.`2esn`?.usn1,(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6?,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e12 Is Not Null Is Not Null).#usn8? Union All Optional Match `7esn`=(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}),(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Where 01234567[...0e-0][..12] Merge (_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ) Union Optional Match usn1=(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ),((_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0)-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]})) Where $`2esn` In 0 In 0Xa Remove {`1esn`:0.12[07..3.9e-1]}.usn1.usn1!,(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})._usn4._usn3?,Extract(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`]|$`3esn`[..`1esn`][..$`7esn`]).@usn6! Unwind .12[.0e-0..] As `3esn`"), + octest:ct_string("Create `5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})),(`1esn` :``:usn1{_usn4:.1e1 Is Null Is Null})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}) Union All With (:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] Where `7esn` Is Null Return *,(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})<-[?:usn1|:#usn8{`8esn`:`2esn` Is Not Null Is Not Null}]-({#usn8:1e1[Null..][.12..]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null,8.1e1 Is Not Null As usn2 Order By .1e1[$usn2..9e1][9e-1...9e-1] Desc Skip Null In 0Xa In .9e-1 Unwind .9e-12[12e12][.0e0] As `3esn` Union All Optional Match @usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))),(({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)) Where $@usn5 Starts With 0Xa Detach Delete $0[9e1],Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] Optional Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),(({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})<-[`4esn`:_usn4|`1esn` *123456789..0x0{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})-[_usn3 *..7]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]}))"), + octest:ct_string("With *,$`5esn`[true],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Skip $`1esn` =~0.0 Where 07[.0e0][3.9e-1] Detach Delete 00[0e-0...9e-1][1e-1..``],9e12[...12e12][..$`2esn`],7.0e-0 Contains Count ( * ) Contains 0Xa Return *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip 0xabc =~7.0e-0 =~4.9e12 Limit Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Union All Detach Delete 0.12 Is Not Null Is Not Null,$`1esn` Starts With .12 Remove None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`).`7esn`!.`6esn`?,({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null})<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3).`5esn`._usn3!"), + octest:ct_string("Delete $`8esn` In .1e1 In 010,123456789 =~6.0e0,@usn5 In $1000 In 07 Delete [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1) Ends With Filter(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7]),5.9e-12[`4esn`..12e12][0x0..1.9e0] Unwind `7esn` Ends With _usn4 As _usn3 Union All Match ((:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[? *12..0Xa]-(`2esn` :#usn7:_usn3)<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})) Remove [#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1].`6esn`._usn4?._usn4!,{`3esn`:#usn8[..#usn7][..@usn6]}.#usn8? Union With Distinct *,$7 Contains _usn4 Contains $`1esn`,9e-12 In 5.9e-12 As `` Skip 3.9e-1 Contains 9.1e-1 Contains `8esn` Limit Count ( * )[7] Where 11.12e-12 In $`1esn` In 9e12 Detach Delete 9e12[1e1...9e-12] Detach Delete 5.9e-12 Ends With 1e1 Ends With false"), + octest:ct_string("Create @usn5=(({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) Unwind .0[01234567][$#usn8] As `2esn` Union Merge (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))) On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12"), + octest:ct_string("With $0 =~01234567 As ``,Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])[All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654])][None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])] As usn2 Order By 12e12 Starts With 9e1 Starts With $`4esn` Desc,$`5esn`[true] Descending Limit 123.654 With *,`5esn`[$`4esn`],#usn8[7..@usn5] As `4esn` Order By 9e0[.0e-0] Asc Limit `8esn` Is Not Null Is Not Null"), + octest:ct_string("Optional Match `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Where 0e0 Starts With $1000 Starts With `2esn` Unwind Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)[{_usn3:$0 Starts With 010}] As _usn4 Union All Create `8esn`=(`4esn` :`5esn`),((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Union Return *,`6esn`[010...9e-12] As `5esn` Match `3esn`=(:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})<-[? *0X0123456789ABCDEF..0]-(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null}) Where #usn8[usn1] With *,7.0e-0[3.9e-1..`1esn`] As `8esn`,$`6esn` In `2esn` Limit $`1esn` Starts With Count(*) Starts With $`8esn` Where 1.9e0 =~$`8esn` =~01234567"), + octest:ct_string("Match #usn7=(`` :_usn4) Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null})))"), + octest:ct_string("With Distinct `3esn`[3.9e-1..$`5esn`] As usn2,0X0123456789ABCDEF Is Not Null Is Not Null As `2esn`,11.12e-12 =~5.9e-12 =~.9e1 As `3esn` Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null Desc,8.1e1[usn2..$1000][$7..0x0] Descending,0Xa Ends With #usn8 Ends With usn2 Ascending Where @usn5[$``] Union All Unwind `1esn`[9.1e-1] As #usn8 Union Merge ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})) On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1]"), + octest:ct_string("With *,10.12e12[..1.9e0][..Null] As `8esn`,All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])[..{#usn8:.12e12[Count(*)..]}][.._usn4(Distinct `2esn` Starts With 999,$`5esn` Starts With 0X7 Starts With 1e1)] As `` Order By 0[true..$7] Descending Skip Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999)[Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])][[_usn3 In ``[$``..] Where @usn5 Ends With 0]] Return Distinct `5esn` Contains `6esn` As `4esn` Skip 0X7[Count(*)][.9e0] Limit None(`7esn` In .12e12[Count(*)..] Where Count(*)[..Count(*)][..9e0])[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1]|.0)..] Unwind [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) As usn1"), + octest:ct_string("Optional Match #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Where 0x0 Starts With $`5esn` Starts With 9e-12 Union Create usn2=(((`7esn` :``:usn1)<-[:`4esn`|:@usn5]-(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[?]->(_usn4 :@usn5))) Optional Match `4esn`=(((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})<-[`8esn`?:usn2|:``]->(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})-[`3esn`?:`5esn` *07..{#usn7:9e-1 =~6.0e0 =~``}]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))),((@usn6 )<-[`2esn`{`4esn`:.0e0[$`6esn`..]}]->({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})-[`6esn`:#usn7|:`8esn` *01234567]-(`5esn` :`2esn`:`8esn`)) Where 0xabc Is Not Null"), + octest:ct_string("Create `2esn`=((:`4esn`:`7esn`{`3esn`:`1esn`[9.1e-1]})<-[?:@usn6|:_usn3 *07..]-(#usn8 :`2esn`:`8esn`{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:@usn5[...9e12]})-[? *..0X7{_usn3:00[$`6esn`]}]->({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})),#usn7=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})) Union Create ((`3esn` {#usn8:`7esn` Is Null})<-[{`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}]-(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Merge (((`4esn` {_usn3:@usn6 In 3.9e-1 In 9e-12})<-[`6esn`? *123456789..0x0]-(`7esn` :`8esn`:#usn7{`4esn`:`8esn` =~.1e1 =~.0})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`6esn` {_usn3:$_usn4 Contains .12e-12}))) On Create Set #usn8 =usn2 Ends With 10.12e12 On Match Set `8esn` =01[.9e-12..],usn2 =.9e-1 =~.9e-1,`2esn`+=$999 Return [_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789|0e-0 Contains _usn4 Contains 1e-1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567) As `7esn`,@usn5 Ends With 's_str' Ends With 01 As _usn4 Order By [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Descending,123456789 =~2.9e1 =~@usn5 Descending Skip .0e0[1e1..][01234567..] Limit Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7)"), + octest:ct_string("Match (:_usn3:_usn3{`5esn`:`2esn` Is Not Null Is Not Null,`7esn`:2.9e1})<-[`7esn`*..]-(`7esn` :usn1),(`1esn` :``:usn1{usn1:123.654 Ends With 0Xa Ends With .12e12})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``}) Where $usn2 =~$`2esn` =~\"d_str\" Unwind {`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] As `3esn` Union Delete .9e-1 =~.9e-1 Remove (:`7esn`{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[#usn8?:`4esn`|:@usn5]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})._usn3!,Any(`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0).usn1 Union Merge ((`5esn` :`2esn`:`8esn`)<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})) On Match Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Remove (`` :@usn6:_usn4{`4esn`:00 Is Not Null Is Not Null})-[`1esn`:usn1|:#usn8]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}).`6esn`!.@usn5?._usn4?,@usn5:_usn4,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]).`2esn`!.`8esn`!._usn3!"), + octest:ct_string("Return Distinct .0e0[$`1esn`][.9e-12] As `6esn`,\"d_str\"[$123456789..][0X7..] Order By All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Asc,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Limit (usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})-[`4esn`?:`6esn`|#usn7]->(`1esn` )[[`2esn` In .12e-12[$@usn6..5.9e-12]|$#usn7 Starts With 10.12e12]..] With *,1000 Is Not Null Is Not Null As #usn7,.1e-1 Ends With @usn6 As @usn6 Skip 9.1e-1 =~@usn5 =~Count ( * ) Limit _usn4 In `3esn` In 7.0e-0 Where 1.9e0 Is Null Is Null Optional Match `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),_usn4=((`6esn` :#usn7:_usn3)<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union Optional Match (:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(usn1 :usn2{``:$`` Is Not Null}) Where 1.9e0 =~$`8esn` =~01234567 Optional Match #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),`8esn`=(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}))) Merge (usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2}) Union Merge (:`4esn`:`7esn`{`3esn`:`1esn`[9.1e-1]})<-[`4esn`]->(`` :`3esn`)<-[`1esn`?:`2esn`|`7esn` *123456789..0x0{#usn7:.9e-12 Starts With .0e-0 Starts With usn2}]->(`` :`8esn`:#usn7) Remove `5esn`(123456789 =~$`1esn` =~#usn7,$0[$`7esn`..$`3esn`]['s_str'...0]).#usn7?"), + octest:ct_string("Merge `6esn`=(usn2 {_usn4:$999 Ends With .9e-12})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``}) On Match Set `4esn`+=0Xa Starts With .0,`1esn` =12 Ends With $7 Ends With $#usn8,(`1esn` :_usn3:_usn3$0)<-[``:`8esn`|:`2esn` *12..0Xa]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})<-[?*{`6esn`:.1e-1[..12e12]}]->(:`3esn`{_usn4:7.0e-0 =~$12 =~5.9e-12}).`4esn`.`7esn`! =``(Distinct `4esn`[$1000..$``][$_usn4..$_usn4],.1e-1 Starts With 1000 Starts With $`1esn`) In [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|`4esn` Starts With $_usn3 Starts With .9e-12] In {`6esn`:``[$``..]} Unwind [usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null]][(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})..] As usn2"), + octest:ct_string("Unwind Extract(usn2 In .0e0[$`6esn`..] Where 9.1e-1[Count(*)..][5.9e-12..]) =~#usn8(5.9e-12 Contains $`` Contains $`5esn`) As `7esn` Unwind $999[$usn1...0e0] As `3esn` Remove (_usn3 :_usn4)-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)._usn4?,(usn2 :`1esn`$7)<-[_usn3{`8esn`:0e0[..'s_str']}]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`1esn`{`7esn`:8.1e1 Ends With $0 Ends With 6.0e0})._usn4? Union Unwind 7 Starts With 0X7 As usn1"), + octest:ct_string("Unwind usn1[12e-12] As #usn8 Return Distinct Null[.12e-12] As #usn7 Skip 0x0 Contains 0X7 Contains 999 Limit `6esn` Is Not Null Is Not Null Union Match (((:#usn8{`8esn`:usn1[12e-12],@usn6:Count ( * ) In 999})<-[`8esn`? *0x0..]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})<-[@usn6?:`5esn`]->(`8esn` {`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}))) Where 0[$999..]"), + octest:ct_string("Optional Match ``=((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})),(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}) Where 0[true..$7] Delete \"d_str\" Contains 4.9e12 Contains 7.0e-0,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])]"), + octest:ct_string("Remove `5esn`().`7esn`.`7esn`.usn2,{`5esn`:$#usn8[$1000..],#usn7:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]}.`4esn` With *,{`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As #usn7,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Limit [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]][{`2esn`:$`8esn` In 9e-12 In 3.9e-1}..{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}][Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..])..Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Optional Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Where .0e0[1e1..][01234567..]"), + octest:ct_string("Unwind 123.654 =~1e-1 =~.9e-1 As `8esn` Merge `7esn`=((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)) On Match Set Filter(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).``.`8esn` =Count ( * )[..`8esn`],usn1 =123456789 Contains .1e-1 Contains .12e12,`8esn`+=`7esn` Ends With _usn4 On Match Set `6esn` ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])],All(`5esn` In 12[0xabc..][$0..] Where _usn3 Ends With 01 Ends With .1e-1).`6esn`? =12.0[..Count(*)][..5.9e-12] Return *,(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12})[[`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1|`6esn`[..$@usn6][..$`1esn`]]] Order By {@usn5:true Contains 0x0} In Extract(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$1000[..01234567][..0X0123456789ABCDEF]) Descending,$`2esn`[$usn1..] Asc,.9e-12 Is Not Null Is Not Null Asc Skip $usn2[4.9e12..false][.0e-0..00] Union Match `1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) Where 0e0 Is Null Is Null Unwind usn1[12e-12] As #usn8"), + octest:ct_string("Remove [#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1].`6esn`._usn4?._usn4!,{`3esn`:#usn8[..#usn7][..@usn6]}.#usn8? Create ((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),(((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]}))) Union All Delete Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)[{_usn3:$0 Starts With 010}],Extract(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``]|$_usn4[..usn2]) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) Starts With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null|`4esn` Is Not Null Is Not Null) Union Detach Delete {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null),\"d_str\" Starts With `6esn` Starts With 1.9e0,`5esn` Contains 1.9e0 Contains 9e0 Create (((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))),(`5esn` :`5esn`)"), + octest:ct_string("Merge #usn7=(`8esn` {``:$123456789[$_usn3..][$usn2..]}) On Match Set `7esn` =$`6esn` Is Null Is Null On Match Set `7esn` =$`7esn` Is Null Is Null,`8esn`+=`6esn`[..$@usn6][..$`1esn`],`3esn`+=3.9e-1 Contains 9.1e-1 Contains `8esn` Union With 12e12 Starts With `6esn` Starts With true,#usn7[12e-12..][$`2esn`..] As @usn6,`` Is Not Null Is Not Null As _usn4 Order By #usn7 Ends With Count ( * ) Ends With @usn6 Ascending,usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) In {`2esn`:$`2esn` Contains $1000} In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $@usn6 Contains Count ( * )|11.12e-12 Contains 9e-12] Descending,Extract(usn2 In .0e0[$`6esn`..] Where 9.1e-1[Count(*)..][5.9e-12..]) =~#usn8(5.9e-12 Contains $`` Contains $`5esn`) Descending Limit #usn8[7..@usn5] Union All With Distinct All(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[..Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`])] As `6esn`,11.12e-12[010..11.12e-12] As `2esn`,`8esn`[Null...12e12][0..11.12e-12] Order By $_usn3 Contains 1e1 Contains .12 Asc,9e12 Asc,0e0[`3esn`..][.9e-1..] Descending Limit $12[01]"), + octest:ct_string("Merge @usn6=(((@usn5 {``:.0e0[$`6esn`..]})-[?:usn2|:``]-(_usn4 :`4esn`:`7esn`{#usn7:0xabc Is Not Null,`4esn`:_usn3[`2esn`..10.12e12][9e1..true]})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(@usn5 :usn2))) On Create Set #usn7:`4esn`:`7esn`,{`7esn`:$`5esn`[7..],`5esn`:`5esn` Contains `6esn`}.#usn8?.usn2.@usn5! =usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]],@usn6 =\"d_str\" =~9e-12 =~`5esn` On Match Set {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]}.#usn8?.`4esn`?.@usn6? =.9e12[$usn2..][7..],[_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]].`8esn`.@usn6? =0X7 =~$123456789 =~$`` Union All Unwind @usn5 Contains _usn3 Contains 00 As #usn8 Merge #usn8=(`6esn` :``:usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[_usn4:`6esn`|#usn7]-(`8esn` $12) On Match Set _usn4:#usn7:_usn3,Extract(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0|`6esn` In 9e-12)._usn4? =0Xa Ends With #usn8 Ends With usn2 With Distinct *,'s_str'[1e-1] As usn1,_usn3[`2esn`..10.12e12][9e1..true] As `1esn` Order By $`8esn`[$``..$`1esn`][9e-12..$7] Descending,$`` In $usn2 Desc,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Ascending Union All Match ((:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})<-[_usn4:`6esn`|#usn7]-(`8esn` $12))"), + octest:ct_string("Return *,$0[$`7esn`..$`3esn`]['s_str'...0],usn1 Ends With 12 Order By $#usn7 Starts With #usn7 Descending,9e12[.0e-0] Descending,01[..01] Descending Limit (usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})-[`4esn`?:`6esn`|#usn7]->(`1esn` )[[`2esn` In .12e-12[$@usn6..5.9e-12]|$#usn7 Starts With 10.12e12]..] Union All Match ((:`7esn`)) Detach Delete $@usn5 =~.12e-12,Null Is Not Null,`1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] Unwind 12e12 =~#usn7 =~.9e-1 As #usn8 Union Delete 12.0[$1000..][123456789..] Return `1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `4esn`"), + octest:ct_string("Return *,_usn4(Distinct 1e-1 =~0.0 =~9.1e-1) =~None(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~(`2esn` {usn2:7.0e-0 Starts With $7 Starts With true})-[`2esn`:`5esn`{usn2:Count(*)[12..][0X0123456789ABCDEF..]}]-({_usn4:$`3esn` In 's_str' In $#usn7})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12}) As ``,`3esn` Ends With true Limit {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) Unwind .9e12 Starts With .9e12 Starts With `7esn` As usn2 Remove All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `8esn` Is Null).`4esn`,`2esn`:_usn4 Union Merge `7esn`=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}) With Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1] Optional Match _usn3=((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]})) Union Optional Match @usn5=({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3}) Unwind .9e12 Starts With .9e12 Starts With `7esn` As _usn4 Return Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..] Limit .9e12 Starts With .9e12 Starts With `7esn`"), + octest:ct_string("Detach Delete 11.12e-12 Contains 9e-12 Return Distinct *,9e0[.0e-0] As _usn4 Skip 0X7[`4esn`..][`3esn`..] Return Distinct @usn5 Ends With 's_str' Ends With 01 As `7esn`,$`8esn`[..usn1][..$`6esn`] As usn2,Count ( * )[..123456789][...0e0] Order By 10.12e12 =~12e-12 =~0X0123456789ABCDEF Descending,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) Asc,8.1e1 Starts With .9e12 Starts With `7esn` Desc Union All Detach Delete None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),12e12[07..] Union All With Distinct *,$0[$`7esn`..$`3esn`]['s_str'...0],usn1 Ends With 12 Order By Count ( * )[0..][010..] Desc Limit 12.0 Starts With 07 Starts With $`3esn` Where @usn6[usn1..][`1esn`..] Match `3esn`=(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}),usn2=((:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}))"), + octest:ct_string("With *,(`5esn` :`2esn`:`8esn`)-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]}) Is Null Is Null As `8esn` Skip {#usn7:$usn2[1e-1]}[(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)..][(usn1 :`2esn`:`8esn`)<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]})..] Merge (((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}))) On Create Set `2esn` =$`3esn`[010..][9e-1..],[`8esn` In 01234567[..0.0][..false] Where 5.9e-12[.1e1][$#usn8]|12 Contains usn2 Contains $usn2].#usn7 =01234567[..0.0][..false],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789).usn1!.``! =010 Starts With 0.0 Starts With .0e0 Unwind Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null As _usn4"), + octest:ct_string("With *,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1) Ends With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) Skip 123456789[Count(*)] Remove `2esn`(Distinct .9e-12 Ends With `1esn` Ends With 123.654).`6esn`?,({_usn3:$`5esn`[7..]})-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`` :`5esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}).`8esn`!._usn4.@usn5! Union All Delete $usn1[$7..][$0..] Union All With Distinct `8esn`[Null...12e12][0..11.12e-12] Order By 4.9e12[..Null] Desc,12e12 Ends With $`3esn` Ends With 11.12e-12 Asc,#usn8(Distinct false[$1000..$@usn6][7..12],123456789 In 9e-12 In false) =~{#usn7:$`6esn`[..12e12][.._usn3]} =~(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1) Descending Limit 0X0123456789ABCDEF Contains 8.1e1 Detach Delete $`1esn`[.9e0][$_usn3],`4esn` Starts With .0e0 Starts With usn2"), + octest:ct_string("Return *,$12[$12..] As `4esn` Skip Count ( * )[..`8esn`] Unwind Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0|12[0xabc..][$0..]) Contains [`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .12[$`2esn`..usn2][.9e-1.._usn3]] Contains Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]) As #usn8 Detach Delete 1e1 Is Not Null,1e1 Ends With Null Ends With `7esn`,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1])[Filter(_usn3 In ``[$``..] Where Null[`2esn`..])..][Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)..] Union With Distinct Null[...9e1] As usn2 Union Detach Delete 0Xa In 0.12 In $#usn7,12.0[..Count(*)][..5.9e-12] With 11.12e-12 Is Null Is Null As `4esn`,#usn8 Starts With 11.12e-12 Starts With $`3esn` As `2esn` Skip 123.654 Ends With 0Xa Ends With .12e12"), + octest:ct_string("Optional Match _usn3=(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Where .9e-12[1000..$`3esn`] With Distinct *,`8esn` Is Null As `6esn` Order By [usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc,0x0 =~$7 =~Null Desc,12e-12[9e0..1.9e0] Asc Where `` =~$`5esn` Create ((`6esn` :usn1))"), + octest:ct_string("Unwind usn1[12e-12] As `2esn` Unwind Extract(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..]|.9e12[..$usn1][..10.12e12]) Starts With Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]) As #usn7 Union All Merge #usn8=(@usn5 :usn1{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(@usn5 {#usn8:_usn3 Ends With 01 Ends With .1e-1}) Optional Match #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Where 0x0 Starts With $`5esn` Starts With 9e-12"), + octest:ct_string("Match usn1=(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}),@usn5=({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}) Where $`3esn`[..`1esn`][..$`7esn`] Union All Merge _usn4=(((`2esn` {`7esn`:Count(*)[.0e0..][#usn7..]})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)-[:#usn8|:`4esn` *12..0Xa]->(`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]}))) Remove [usn2 In $_usn3 =~$usn1 =~_usn4 Where 0xabc In 10.12e12|9e-1 Starts With 123.654 Starts With .9e1].`2esn`?.`5esn`"), + octest:ct_string("Merge ((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})) On Match Set usn1:`2esn`:`8esn`,`1esn` =$`` Is Not Null,_usn4 =0.0[..Null][..9e-12] On Match Set `2esn`+=.1e1 Is Not Null Is Not Null,`5esn`+=Count ( * )[..1.9e0][..`8esn`] With *,'s_str'[1e-1] As usn1,_usn3[`2esn`..10.12e12][9e1..true] As `1esn` Order By $`8esn`[$``..$`1esn`][9e-12..$7] Descending,$`` In $usn2 Desc,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Ascending Unwind Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()] As `8esn` Union Merge ((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) On Create Set #usn8 =usn2 Ends With 10.12e12 On Match Set {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}.@usn6 =07[.0e0][3.9e-1],`5esn`:`3esn` Return *,true Is Null Limit `6esn`[010...9e-12] With $0 =~01234567 As `2esn`,07[.0e0][3.9e-1] Skip Extract(`7esn` In .12e12[Count(*)..] Where true Starts With 2.9e1 Starts With 9e1|12[0xabc..][$0..]) Starts With Extract(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12|0.12[3.9e-1]) Starts With ``(12e12[true..][$`2esn`..]) Limit [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]] Where 5.9e-12[`4esn`..12e12][0x0..1.9e0] Union All With Distinct .12e-12 In 9e12 In 9e-12,$#usn8[...9e1] Order By $``[`4esn`..][0.0..] Asc,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Skip Extract(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]|1000[..0e0][..$`6esn`])[{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}][Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 8.1e1 Ends With $0 Ends With 6.0e0)] Unwind 123456789[Count(*)] As usn1 Create ((#usn7 :_usn4{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})),_usn3=((usn2 {`4esn`:12e12 Is Not Null})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}))"), + octest:ct_string("Return Distinct $usn1 Is Null As `5esn`,123.654 Starts With Count ( * ) As `4esn` Skip .9e-1 Ends With `8esn` Create ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),`1esn`=(((`5esn` :#usn7:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(usn2 {@usn5:$usn2 Ends With `8esn` Ends With _usn3,@usn6:`7esn` Is Not Null})))"), + octest:ct_string("With *,Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]),0x0 Starts With $`5esn` Starts With 9e-12 Order By 0.0[4.9e12..][00..] Ascending,Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07) Desc"), + octest:ct_string("Optional Match `2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Merge usn1=(:#usn7:_usn3{#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) On Match Set `7esn`+=$`` In $7 In 9e-1,usn1+=$12 Starts With 1e-1 Starts With $@usn5,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).`2esn`?.#usn8! =Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null Union Unwind `4esn`[$1000..$``][$_usn4..$_usn4] As `7esn` Union All Merge ((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12}))"), + octest:ct_string("Detach Delete $usn1[$7..][$0..] Union All Unwind 999 =~0Xa =~9e0 As `` Remove {`8esn`:Null[..07]}._usn4?.`8esn`?,{`4esn`:$123456789[$_usn3..][$usn2..]}.usn1,[`8esn` In 01234567[..0.0][..false] Where 01[..0Xa]].``.@usn5?.`2esn`!"), + octest:ct_string("With Distinct *,true Is Null Is Null As _usn3 Skip 12e-12[.0..] Limit $@usn5 Is Null Is Null With Distinct Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Limit 9e0[..1e1] Where $usn2[1e-1] Merge ((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Union All Unwind 00 Is Not Null As `1esn` Remove {`4esn`:01[..01]}.`8esn`?.`8esn`?.usn1?,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`2esn`[010..`5esn`][``..0.12]).`4esn`"), + octest:ct_string("Merge ``=(((_usn4 )<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[?{`3esn`:$`6esn`[$`7esn`][$`4esn`]}]->(`8esn` {`5esn`:`3esn` Starts With _usn4,#usn7:$1000[$1000...9e0]}))) Remove None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null).`6esn` Union Remove Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12|$`4esn` =~0e0).usn1?._usn3!.`6esn`!,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 01 Ends With \"d_str\").@usn6?,{_usn4:Count(*)[.0e0..][#usn7..]}.#usn8?"), + octest:ct_string("Return *,Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),3.9e-1[.0e0..][07..] Order By 2.9e1 Starts With 12e-12 Starts With 0.0 Asc,.0e0 Starts With $@usn6 Starts With Null Descending Union With 12 Contains usn2 Contains $usn2 As ``,Count ( * )[12e-12] As #usn7 Skip .0 Where .9e-1 Contains .0e0 Contains usn1 Merge ((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) With Distinct 0e0 Is Null Is Null,None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[..Filter(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0)][..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] Order By .9e-12[0e0...9e-1] Ascending,.1e1 Starts With .1e-1 Asc Skip 0.12 Ends With $123456789 Ends With `7esn` Where 07 In $usn1 In 12 Union Return Distinct *,(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12})[[`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1|`6esn`[..$@usn6][..$`1esn`]]]"), + octest:ct_string("Unwind Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Detach Delete (`2esn` :_usn3:_usn3)<-[:_usn3|`2esn` *..0X7{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[_usn3:_usn4|`1esn`{`2esn`:123456789 In 9e-12 In false}]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) =~Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 0e-0 Contains _usn4 Contains 1e-1) =~[usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]],.12e-12 Ends With $`7esn`,`3esn` Union Delete $`6esn` In $`3esn` In 9e1 Create #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})),``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}))"), + octest:ct_string("Remove None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`).`7esn`!.`6esn`?,({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null})<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3).`5esn`._usn3! Remove `7esn`:`2esn`:`8esn` Unwind .0[01234567][$#usn8] As `2esn`"), + octest:ct_string("Remove {`3esn`:1.9e0 Is Null Is Null,``:$usn2 Ends With `8esn` Ends With _usn3}.`3esn`?,({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})<-[``?:_usn3|`2esn` *0X0123456789ABCDEF..0{`5esn`:`4esn`[0.0..][.1e-1..]}]->(:@usn6:_usn4{`2esn`:$usn1[$7..][$0..]}).`8esn` Create (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),_usn3=((usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1})) Detach Delete 5.9e-12 =~$@usn6,10.12e12[..1.9e0][..Null] Union All Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12|$usn2[1e-1]).`5esn`,`5esn`(.9e-12[..$`7esn`][...9e-1],`` =~123456789).`4esn`!.usn1!"), + octest:ct_string("Optional Match @usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),`3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})) Create `3esn`=(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`),(((:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]})-[`8esn` *..7{usn2:12.0 Contains $_usn4 Contains $usn2}]-(`8esn` :`7esn`{`6esn`:_usn4 Is Not Null Is Not Null}))) Delete .9e-1 =~.9e-1"), + octest:ct_string("Unwind {`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] As `3esn` Merge `8esn`=((`4esn` )<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})) On Match Set Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`1esn` =.1e1 Ends With `2esn` Ends With $`1esn`,All(usn1 In 7.0e-0[.._usn4][..0X7] Where 12.0[..Count(*)][..5.9e-12]).`3esn`!.`4esn`!.``! =Count(*)[8.1e1..],{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}.usn1!.@usn6? =$`3esn` In 's_str' In $#usn7 Union Create (((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))),`5esn`=(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Create ``=(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn8? *0x0..]->(usn2 :`6esn`:`3esn`) Unwind 0xabc['s_str'][$``] As `2esn`"), + octest:ct_string("Create ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) Union Create `5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)),``=(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`` :@usn6:_usn4)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})"), + octest:ct_string("Remove All(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..]).usn1,`5esn`:``:usn1 Unwind 1000 Starts With 11.12e-12 Starts With 01234567 As `1esn` Remove `4esn`:`4esn`:`7esn`"), + octest:ct_string("Merge ((#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[`3esn`?:`5esn`]->(`2esn` )) On Match Set usn1 =.0e0[$`1esn`][.9e-12],(_usn4 :``:usn1)-[ *..01]->(#usn8 :#usn7:_usn3)-[usn2?:@usn5*{`6esn`:.9e0 In 9.1e-1 In $123456789,`6esn`:.12[$`2esn`..usn2][.9e-1.._usn3]}]->($`2esn`).`2esn`?.#usn7? =`4esn` Starts With .0e0 Starts With usn2,`8esn`+=$usn2[4.9e12..false][.0e-0..00]"), + octest:ct_string("Return *,0 Starts With 0Xa Starts With $0 Limit Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}] Remove (:@usn5{`4esn`:.0e0[$`6esn`..]})-[? *0X0123456789ABCDEF..0]-({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`).#usn7!"), + octest:ct_string("Return Distinct 00[$`6esn`] As `6esn`,Count ( * )[12e-12] As #usn7,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] Order By .9e1[Count(*)..$`3esn`] Asc Detach Delete 7.0e-0 Is Null Is Null"), + octest:ct_string("With Distinct 12e-12 Ends With @usn5 Ends With $`2esn` As `6esn`,$123456789[#usn8][.9e-12],@usn5 Contains _usn3 Contains 00 As _usn4 Order By Count(*)[0e0..] Ascending,12e-12 Ends With @usn5 Ends With $`2esn` Desc Remove [`8esn` In 12.0 Contains $_usn4 Contains $usn2|#usn8 Starts With 11.12e-12 Starts With $`3esn`].`6esn`.`6esn`!.`5esn` Create `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})"), + octest:ct_string("Return Distinct 10.12e12[..1.9e0][..Null] As `8esn` Skip `1esn`[..0x0][..\"d_str\"] Create `3esn`=((:`2esn`:`8esn`)<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]}))"), + octest:ct_string("With *,`5esn`[$`4esn`],#usn8[7..@usn5] As `4esn` Order By 9e0[.0e-0] Asc Limit `8esn` Is Not Null Is Not Null Optional Match ((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})),``=((({`4esn`:$`2esn` Ends With $`8esn`})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})-[``]-(:_usn4{#usn8:.0e0[1e1..][01234567..],#usn7:1e-1[..2.9e1]}))) Detach Delete `3esn`[.12e-12..],Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Union All Merge `1esn`=((:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[usn1 *12..0Xa]->({`5esn`:07 Starts With usn1 Starts With 010})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})) On Create Set #usn7 =Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Null Is Null,`4esn`+=$_usn4 =~$_usn4 =~2.9e1 Union All Remove `2esn`($_usn3[1e-1..],07 =~7.0e-0 =~`8esn`).@usn6!"), + octest:ct_string("Remove None(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).``?.@usn5?,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).`2esn`"), + octest:ct_string("Merge (((`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0))) On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`3esn`? =0.12[3.9e-1],_usn4 =Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],[`` In $_usn3 Is Not Null Where 12 =~$@usn5|$`2esn` In 0X7 In 3.9e-1].`8esn`.`5esn`? =12e-12[9e0..1.9e0] With Distinct *,$`2esn`[$1000..][$@usn5..] As #usn8 Order By .9e0 Is Null Asc,0 Is Not Null Desc Skip #usn7[5.9e-12][00] Where 12e12[..$`8esn`][...0e-0]"), + octest:ct_string("Delete 12e12 =~#usn7 =~.9e-1,(:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[`2esn`? *..7]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]})<-[#usn7? *00..123456789]->(:`6esn`:`3esn`)[{``:`1esn`[Count ( * )][5.9e-12],_usn3:$_usn3[1e-1..]}..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1)],010 Ends With 0x0"), + octest:ct_string("Create usn1=({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}),_usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))) Union Return *,0xabc[7.0e-0..][12e12..] Skip Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Return Distinct 00[$`6esn`] As `6esn`,Count ( * )[12e-12] As #usn7,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] Order By .9e1[Count(*)..$`3esn`] Asc Create ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),`1esn`=(((`5esn` :#usn7:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(usn2 {@usn5:$usn2 Ends With `8esn` Ends With _usn3,@usn6:`7esn` Is Not Null})))"), + octest:ct_string("Merge `2esn`=((@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]})) Detach Delete $`1esn`[.9e0][$_usn3],`4esn` Starts With .0e0 Starts With usn2 Union All Remove (:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null}).`8esn`?,Extract(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null).usn2 Remove [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null].usn2?,Any(`8esn` In 01234567[..0.0][..false] Where $@usn5[$#usn8..][_usn3..]).`8esn`!,(:usn1{usn1:Count(*)[0.12..2.9e1]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]}).#usn8 Union Return *,true Is Null Limit `6esn`[010...9e-12]"), + octest:ct_string("With Distinct 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] Ascending,1e-1[..$`6esn`] Ascending Skip (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Where #usn7 Ends With $#usn7 Ends With #usn7 Return `6esn` In 9e-12 As `3esn` Skip (#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})[Any(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)..][Single(_usn3 In ``[$``..] Where Null[`2esn`..])..] Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] Ascending,1e-1[..$`6esn`] Ascending Skip (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`)"), + octest:ct_string("Return Distinct [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null,Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,1.9e0 Starts With .9e0 Order By `5esn`[0X7..][12..] Asc Limit 0 Is Not Null Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),`3esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1)"), + octest:ct_string("Return 0[..$@usn5],0e0 Ends With 0X7 Ends With .1e1 As _usn3,12e12[..123456789][..false] Limit {`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"} Is Not Null Is Not Null Return Distinct *,_usn3[`2esn`..][0x0..] As usn1,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,usn1() In Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) In (`7esn` :usn1)-[usn2:`4esn`|:@usn5 *01234567]->(_usn4 )-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]}) Desc,``[..$#usn7] Asc Limit 07 Ends With @usn6 Ends With _usn3 Union Merge #usn8=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) On Create Set `2esn` =(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)],`3esn` =9e1 Contains 4.9e12 Contains 123456789 Detach Delete 0x0,$``[`6esn`][00],'s_str' Ends With $usn1"), + octest:ct_string("Return Distinct $`2esn` In 0X7 In 3.9e-1 As #usn7,All(usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null])[``($_usn3[1e-1..],.12e12[Count(*)..])][None(_usn4 In Count(*)[9e1..][12e-12..] Where 123456789 Ends With _usn4)] Skip Count ( * )[7] Limit 123456789 =~2.9e1 =~@usn5 Return $``[7..] As #usn8 Union All Merge ``=((@usn6 :`5esn`)<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})) Delete Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Detach Delete Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8),_usn4[7][8.1e1],Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999)[Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])][[_usn3 In ``[$``..] Where @usn5 Ends With 0]]"), + octest:ct_string("Unwind $usn1 Is Not Null Is Not Null As `5esn` Union All Return 6.0e0 In 12 As usn1 Limit $#usn7 Starts With 10.12e12 Match (((:#usn8{`8esn`:usn1[12e-12],@usn6:Count ( * ) In 999})<-[`8esn`? *0x0..]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})<-[@usn6?:`5esn`]->(`8esn` {`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}))) Where 0[$999..] Return 12e12 =~#usn7 =~.9e-1,.1e1 Starts With 9e0 Order By None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) In (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]}) In [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] Ascending,.9e0 Is Null Asc,.12[$`2esn`..usn2][.9e-1.._usn3] Ascending Limit 2.9e1 Starts With 12e-12 Starts With 0.0"), + octest:ct_string("Create #usn7=(({`5esn`:8.1e1 Ends With $0 Ends With 6.0e0,@usn5:9e0[..1e1]})-[`5esn`?:`3esn`|:_usn3{`3esn`:1.9e0 Is Null Is Null,``:$usn2 Ends With `8esn` Ends With _usn3}]-(:``:usn1{_usn3:$#usn7[$_usn4..][.12e-12..],`1esn`:false})<-[`2esn`:`5esn`{usn2:Count(*)[12..][0X0123456789ABCDEF..]}]->(`1esn` {`5esn`:0X7[_usn4..1.9e0][Count ( * )..false],@usn5:123456789 Ends With _usn4}))"), + octest:ct_string("Remove (`6esn` {`4esn`:$@usn5[$#usn8..][_usn3..]})<-[? *..0X7{`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12}]->(`6esn` :`5esn`{usn2:`8esn` Is Null}).`7esn`!,{#usn7:9e-1 =~6.0e0 =~``}.usn1? Create `6esn`=((#usn7 :_usn3:_usn3)<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Union All Merge usn1=(:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}) On Create Set None(`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0).`8esn`? =[`5esn` In 12[0xabc..][$0..] Where $123456789 Is Not Null] Starts With Any(`7esn` In .12e12[Count(*)..] Where 's_str' Ends With 0.0 Ends With .12e12),``+={`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])] On Create Set #usn7:`4esn`:`7esn`,{`7esn`:$`5esn`[7..],`5esn`:`5esn` Contains `6esn`}.#usn8?.usn2.@usn5! =usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]],@usn6 =\"d_str\" =~9e-12 =~`5esn` Merge usn1=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})) On Match Set `4esn` =$`` =~$_usn3,`7esn` =\"d_str\" Ends With `5esn` Ends With 7"), + octest:ct_string("Unwind $_usn3 Is Not Null As @usn6 Union Detach Delete $_usn3 =~$usn1 =~_usn4,false[$1000..$@usn6][7..12] Union Create `5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)),``=(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`` :@usn6:_usn4)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})"), + octest:ct_string("Delete 0[$999..],Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null]) Is Not Null Is Not Null,$#usn7 In .12e-12 Union All Unwind $usn2[4.9e12..false][.0e-0..00] As `5esn` Merge _usn4=((`` :usn1)<-[``?:_usn3|`2esn` *0X0123456789ABCDEF..0{`5esn`:`4esn`[0.0..][.1e-1..]}]->({`7esn`:0[$`1esn`..`8esn`]})) On Create Set #usn7+=(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] On Match Set (@usn6 :usn1{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(`7esn` :`2esn`:`8esn`).`4esn`! =01[..0Xa],#usn7 =$999[.1e1..0.0],`3esn`+=Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null Union All With Distinct Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Limit 9e0[..1e1] Where $usn2[1e-1] With Distinct *,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,false[12e-12..][usn1..] Order By Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]) Desc Limit $`1esn`[`3esn`..] Where $usn1 =~$999 =~$7 Return Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] As usn1,Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) As usn1,_usn4[9e0..$#usn8] Order By $``[`4esn`..][0.0..] Desc,9e0[$usn2][0] Ascending Limit Count ( * )[`7esn`]"), + octest:ct_string("With *,.9e-12[9e1..6.0e0][`1esn`..9e0] As @usn6,$`6esn` In $`3esn` In 9e1 Order By 5.9e-12 Ends With 1e1 Ends With false Descending,$`2esn` Starts With .12e12 Starts With 3.9e-1 Ascending,`6esn`[`6esn`..] Descending Skip $_usn4 =~$_usn4 =~2.9e1 Where $`4esn` In 123456789 In `5esn` Union Match (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))),(`8esn` {`3esn`:#usn8[`2esn`]})"), + octest:ct_string("Optional Match usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),`2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Unwind All(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12) In All(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`]) In {usn1:`3esn` Ends With `6esn`} As usn2 Union All Remove {_usn4:$#usn7 Is Not Null Is Not Null,`3esn`:9.1e-1 In #usn8}._usn4?,Any(`8esn` In 01234567[..0.0][..false] Where 6.0e0 Is Not Null).@usn5,`6esn`($0 Starts With 010)._usn3! Unwind 10.12e12 In `3esn` In $usn2 As #usn7 Merge ((#usn8 :#usn8)) On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] On Match Set `2esn`+=9e-12 In usn2,`7esn`($usn1 Is Not Null).`1esn`! =@usn5 Ends With 's_str' Ends With 01,None(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).@usn5! =$`2esn`[8.1e1] Union All Create `2esn`=((:`4esn`:`7esn`{`3esn`:`1esn`[9.1e-1]})<-[?:@usn6|:_usn3 *07..]-(#usn8 :`2esn`:`8esn`{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:@usn5[...9e12]})-[? *..0X7{_usn3:00[$`6esn`]}]->({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})),#usn7=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}))"), + octest:ct_string("Detach Delete 7.0e-0 Is Null Is Null Return *,(`5esn` :`2esn`:`8esn`)-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]}) Is Null Is Null As `8esn` Limit 010 Is Not Null Is Not Null Union Detach Delete $`1esn`[.9e0][$_usn3],`4esn` Starts With .0e0 Starts With usn2 Optional Match ((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})),`7esn`=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})"), + octest:ct_string("Return *,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null As usn2 Limit 0X0123456789ABCDEF Contains 8.1e1 Create `6esn`=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}))) Return $999 Ends With .9e-12 As `7esn`,$``[Count(*)] Order By 1.9e0 In $0 Desc,7.0e-0 =~$123456789 =~`8esn` Asc,#usn7[10.12e12..][\"d_str\"..] Desc Union Optional Match `2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),usn2=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where 0e0[.12..][3.9e-1..] Create _usn4=((`5esn` {`2esn`:`1esn` =~0 =~_usn4})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[usn2?{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3}]-(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})),((usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})) Detach Delete Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8),_usn4[7][8.1e1],Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999)[Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])][[_usn3 In ``[$``..] Where @usn5 Ends With 0]]"), + octest:ct_string("Remove Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2|0e-0[...9e12]).@usn5? Union Merge `6esn`=(({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Create Set All(usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]).`2esn`? =0Xa[$usn2..],`3esn`:usn1,`1esn` =$``[`6esn`][00] Unwind [`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] In Any(`7esn` In .12e12[Count(*)..] Where 0Xa[9e0]) In [usn2 In .0e0[$`6esn`..] Where .12e12[`7esn`][#usn8]|7 Is Null Is Null] As @usn6 Delete $12[$12..],usn2 Ends With 10.12e12,1.9e0[$12][``] Union All With *,All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,`1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `1esn` Limit {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[..`8esn`(010[@usn5..123.654],8.1e1[usn2..$1000][$7..0x0])][..{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1}] Where 12e12 Is Not Null"), + octest:ct_string("Detach Delete 5.9e-12 =~$@usn6,10.12e12[..1.9e0][..Null] Union Detach Delete Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12])[..None(_usn3 In ``[$``..] Where Null[`2esn`..])][..{`3esn`:.0e-0 Starts With $#usn7 Starts With _usn3,usn2:`6esn` In 9e-12}] Union All Unwind Count(*)[0e0..] As `7esn`"), + octest:ct_string("Detach Delete `3esn`[.12e-12..],Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Union All Merge ``=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}) Union All Delete _usn3 Starts With `2esn`,9e-1[0X0123456789ABCDEF][0],Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0[..$@usn5]|`1esn`[9.1e-1]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where Count(*) Ends With `3esn` Ends With `7esn`] =~Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null) Create `1esn`=((({``:_usn3[$_usn3][usn1]})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(#usn8 {_usn3:$usn2 In usn1 In 1e-1})<-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(_usn3 :#usn8)))"), + octest:ct_string("With *,{`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] As `2esn` Order By Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) Ascending Limit $_usn4[1e-1..8.1e1][`1esn`..1.9e0] Where 12e-12 Contains .9e-1 Contains 9e-1"), + octest:ct_string("Match (_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[@usn6?:`5esn`]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) Where `4esn`[..$#usn7][..0X7] With {@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2} Is Not Null Where `1esn`[11.12e-12..] Detach Delete 123456789 Contains .1e-1 Contains .12e12 Union Merge @usn6=(((@usn6 {`8esn`:999[..@usn5][..`1esn`]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]}))) On Match Set Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 999 Starts With .9e12 Starts With 3.9e-1).`6esn`.@usn6!._usn4? =`4esn`[0.0..][.1e-1..],Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).@usn5! =9e1 Contains 4.9e12 Contains .9e0,`1esn`+=00[0e-0...9e-1][1e-1..``] On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1] Merge ((`5esn` :`2esn`:`8esn`)<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})) On Match Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Where 4.9e12 In 5.9e-12 In .9e0 Union All Unwind $`6esn`[$`8esn`..][false..] As `6esn` Merge (#usn8 {_usn3:$_usn4 Contains .12e-12}) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null"), + octest:ct_string("Merge _usn4=((`5esn` {`2esn`:`1esn` =~0 =~_usn4})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[usn2?{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3}]-(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})) Union Delete 0Xa Ends With #usn8 Ends With usn2,#usn8[3.9e-1.._usn3],_usn4 In `3esn` In 7.0e-0 Delete 0x0 Starts With $`5esn` Starts With 9e-12,.0e0[..12.0][...1e-1] Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2}))"), + octest:ct_string("Merge usn1=((#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})<-[#usn8?{`3esn`:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7],@usn6:01[..0.12]}]-(`3esn` :_usn3:_usn3)) On Create Set `2esn`+=Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],#usn8 =.9e-12[0e0...9e-1] Unwind _usn3(0x0 Starts With 1000,.1e1[.0e0..])[[`` In $_usn3 Is Not Null Where 7.0e-0 =~$123456789 =~`8esn`|999[...12e12][..0]]..``(Distinct)][(`2esn` :`1esn`)-[?{@usn5:6.0e0 Is Not Null}]->({`8esn`:$`7esn` Is Not Null,`5esn`:01234567 Starts With `4esn` Starts With 10.12e12})<-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]->(`` )..({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)] As `4esn` Remove (:@usn5{`4esn`:.0e0[$`6esn`..]})-[? *0X0123456789ABCDEF..0]-({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`)._usn3._usn3!.`4esn`?,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1|9.1e-1 Contains 0xabc).`6esn`"), + octest:ct_string("Merge `2esn`=((#usn8 {#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})) On Match Set ``+=0.12[07..3.9e-1] On Create Set `4esn`+=1000[Null..],{`4esn`:0e0 Is Null Is Null,`8esn`:1.9e0 Is Null Is Null}.`6esn`? =$`2esn` In 0 In 0Xa,`3esn` =_usn4['s_str'..] Match ($`8esn`)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[``?:@usn5]->(_usn3 :#usn8),(:#usn8{`7esn`:0[$`1esn`..`8esn`]})-[`4esn`?:`6esn`|#usn7]->(`1esn` ) Where 123456789 =~$`1esn` =~#usn7 Union All Merge `1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) On Match Set #usn7 =[usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|9e0 =~9e1 =~.12e12] Is Null Is Null,`8esn`+=123.654 Is Not Null Is Not Null,`3esn`+=_usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null Delete `3esn`[.12e-12..]"), + octest:ct_string("Merge `4esn`=((`7esn` :#usn7:_usn3{`3esn`:00[0e-0...9e-1][1e-1..``]})<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1})) Return *,$`5esn`[true],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Skip $`1esn` =~0.0 Delete $usn1[$7..][$0..] Union Merge `7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) On Match Set (`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8,_usn3+=Null[..07] Unwind 5.9e-12 =~$@usn6 As `2esn` Return 1.9e0 Starts With 's_str' Starts With 9.1e-1,8.1e1 Is Null,.1e1 Starts With .1e-1 Order By 1.9e0 In $0 Desc,7.0e-0 =~$123456789 =~`8esn` Asc,#usn7[10.12e12..][\"d_str\"..] Desc Union Optional Match #usn8=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`3esn`=({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})<-[?{_usn3:00[$`6esn`]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}) Where .9e1[12] Remove ({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[ *07..{#usn8:`1esn`[1000][Null]}]-(usn1 :`2esn`:`8esn`).`5esn`?,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"]._usn4,(:`7esn`{`8esn`:$usn2[0e0][$7],_usn3:.9e-12[0e0...9e-1]})-[_usn4?:``|:`3esn`]-(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn1? *0X0123456789ABCDEF..0{_usn4:00[0e-0...9e-1][1e-1..``]}]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6!"), + octest:ct_string("Merge @usn5=((#usn8 :usn1)<-[`2esn`?:usn2|:`` *010..{`5esn`:$`4esn` Ends With 0e-0}]->(:usn1{`3esn`:$0 =~01234567,@usn5:7 Is Null Is Null})-[@usn5?:usn1|:#usn8 *01234567{`1esn`:7.0e-0[3.9e-1..`1esn`]}]-({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) On Match Set `7esn`:@usn5 On Match Set usn2+=(:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])],usn2+=Count(*)[9e-12..0Xa][$123456789..0.0],#usn7+=7.0e-0 Contains Count ( * ) Contains 0Xa Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Where Count(*) Delete Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7)[{usn2:`8esn` Is Null}..[@usn6 In .9e12 Starts With #usn8 Starts With 00]][(:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null})..{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}],999 Ends With $123456789 Ends With $_usn4 Union Merge @usn5=($`8esn`)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[``?:@usn5]->(_usn3 :#usn8) Remove [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]|$`3esn` In 's_str' In $#usn7]._usn4!.#usn8?,`2esn`:`5esn`,[`7esn` In .12e12[Count(*)..] Where 's_str' Ends With 0.0 Ends With .12e12].`4esn`?.``!"), + octest:ct_string("With Distinct *,.9e1 Starts With `4esn` As `5esn`,Count ( * )[`7esn`..] Order By $``[`4esn`..][0.0..] Desc,07 =~7.0e-0 =~`8esn` Descending Skip .9e-12[01][Count(*)] Where 1e-1 =~0.0 =~9.1e-1 Merge (`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6) On Match Set count(@usn6[..$`3esn`][..4.9e12]).`1esn`! =(`1esn` :`3esn`)-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}) In Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) In {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]} On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)]"), + octest:ct_string("Remove {_usn3:10.12e12 In `3esn` In $usn2}._usn3?.`7esn`!,Filter(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0).`2esn`?.``!.`2esn`!,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[..0e0][..$`6esn`]].usn2._usn3! Merge ({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}) On Match Set ({usn2:.9e-1 Is Not Null Is Not Null})<-[?:@usn6|:_usn3 *07..]-(#usn8 :`2esn`:`8esn`{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:@usn5[...9e12]}).`5esn` =(:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null),Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0).``?.#usn7?.@usn6 =9.1e-1 In #usn8,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..]).usn1? =Extract(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]|$`5esn` Ends With 9e-1 Ends With $#usn8)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\")..[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0X7[Count(*)][.9e0]|$`8esn`[$``..$`1esn`][9e-12..$7]]][{usn1:`6esn` Is Not Null}..``(.9e-1 =~.9e-1,$_usn4 Starts With 0e-0 Starts With 1e-1)] On Create Set usn2+=01234567[$#usn7][.0],{`3esn`:1.9e0 Is Null Is Null,``:$usn2 Ends With `8esn` Ends With _usn3}.`3esn`? =Null Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null),_usn4+=#usn8[3.9e-1.._usn3] With Distinct {`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]],_usn4[.0e-0][010],Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]] As `3esn` Limit 12.0[$1000..][123456789..]"), + octest:ct_string("Return _usn4 In `3esn` In 7.0e-0 As #usn7 Order By $`` Ends With 6.0e0 Descending,$1000[..01234567][..0X0123456789ABCDEF] Ascending Limit .1e-1[.9e12..usn2][`4esn`..$_usn3] Remove Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $@usn6 Contains Count ( * )).`4esn`?,({`4esn`:.0e0[$`6esn`..]})<-[:`2esn`|`7esn`]-({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`4esn`?:`5esn`]->(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}).`5esn`?,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]|`3esn` Contains 01234567 Contains .9e-12).`7esn`! Return All(`` In 0.12[3.9e-1] Where `7esn`)[(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(`4esn` :_usn3:_usn3)<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999})][`8esn`(#usn7 Ends With $#usn7 Ends With #usn7,7.0e-0[`6esn`..])],01234567 Ends With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 0[true..$7]) Ends With {`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]} As #usn7,Count ( * )[..1.9e0][..`8esn`] Skip 010 Is Not Null Is Not Null Limit 123456789 Ends With _usn4 Union Unwind `7esn`[.1e1..][`8esn`..] As `3esn` With Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],`2esn` Is Not Null Is Not Null Skip $123456789 Starts With Count ( * ) Limit Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..] Create @usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))),(({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)) Union All Create `1esn`=(((@usn5 :usn2)-[`4esn`?:_usn3|`2esn`]-(:#usn7:_usn3)<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) With Distinct .1e-1[..12e12] Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null Desc Limit 's_str' In `7esn` In .9e-12"), + octest:ct_string("Merge `7esn`=((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)) On Match Set Filter(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).``.`8esn` =Count ( * )[..`8esn`],usn1 =123456789 Contains .1e-1 Contains .12e12,`8esn`+=`7esn` Ends With _usn4 On Match Set `6esn` ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])],All(`5esn` In 12[0xabc..][$0..] Where _usn3 Ends With 01 Ends With .1e-1).`6esn`? =12.0[..Count(*)][..5.9e-12]"), + octest:ct_string("Unwind All(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12) In All(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`]) In {usn1:`3esn` Ends With `6esn`} As usn2"), + octest:ct_string("Remove Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]).`2esn`!._usn4! Unwind 12[0xabc..][$0..] As @usn5 Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null"), + octest:ct_string("Create usn1=((`8esn` :_usn3:_usn3)<-[_usn4? *..7{#usn7:Count ( * )[7]}]->(`6esn` :`7esn`)<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)),`3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Union Create ((usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]->(:usn1{usn1:Count(*)[0.12..2.9e1]})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})),(:usn1{``:.9e1[..`5esn`]}) With Distinct 2.9e1 As usn2,.1e-1[$`2esn`..][$`1esn`..] Order By `2esn` Starts With $`7esn` Starts With _usn4 Ascending,0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7] Asc,.12e12[$0] Asc Skip All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..])[`8esn`()] Where 8.1e1 Contains 0e-0 Contains $_usn3 Union All Remove `3esn`($`5esn`[7..],9e-1[0X0123456789ABCDEF][0]).usn2,`6esn`(Distinct $_usn3 In 123.654 In $`8esn`,$@usn5[$#usn8..][_usn3..]).usn1?.`4esn`?.`8esn`?,`7esn`(Distinct $`3esn` =~4.9e12 =~$7,0xabc[$`4esn`..][`8esn`..]).`8esn`!.``?.#usn8! Detach Delete All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0)[Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"])..Single(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1])][{usn1:9e-1 Starts With 123.654 Starts With .9e1,#usn8:$_usn4 Is Not Null}..(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})],$`6esn`[$`7esn`][$`4esn`],0X7 =~$123456789 =~$``"), + octest:ct_string("Return Distinct Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12])[..None(_usn3 In ``[$``..] Where Null[`2esn`..])][..{`3esn`:.0e-0 Starts With $#usn7 Starts With _usn3,usn2:`6esn` In 9e-12}] As #usn7,Null[...9e1],Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] As `5esn` Order By 999 Ends With $123456789 Ends With $_usn4 Descending"), + octest:ct_string("Unwind 9e12 Ends With 07 As `5esn`"), + octest:ct_string("With Distinct Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) As `1esn`,0[..$@usn5] As `` Order By {`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending Limit 12 Contains _usn3 Where $`2esn` Ends With 2.9e1 Ends With $usn1 Detach Delete 5.9e-12[.1e1][$#usn8]"), + octest:ct_string("Unwind 0Xa Contains $999 Contains 0Xa As _usn4 With All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Where .9e1 Contains Null Union All Create _usn4=(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0}),((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) Remove `3esn`(Distinct 9e12[...12e12][..$`2esn`],.9e1[12]).`2esn`!.`7esn`?"), + octest:ct_string("Unwind #usn8[3.9e-1.._usn3] As usn2 Return Distinct (`2esn` :`6esn`:`3esn`)<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789)..Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1])][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]]..Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 9.1e-1 Is Null|9e1 Contains 4.9e12 Contains .9e0)],00 As `8esn`,_usn3 Ends With .12 Ends With `6esn` Order By Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2|0e-0[...9e12])[All(`2esn` In .9e-12[0e0...9e-1] Where .9e-1 Is Not Null Is Not Null)] Descending Limit `4esn` Starts With $_usn3 Starts With .9e-12 Union All Optional Match `3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})),usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})) Where $0 Starts With 010 Optional Match _usn4=((`4esn` {usn2:$`7esn`[..12.0][..0e0]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}))"), + octest:ct_string("Match `1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) Where 0e0 Is Null Is Null Unwind usn1[12e-12] As #usn8 Union All Create @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Merge (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}) On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1]"), + octest:ct_string("Remove (_usn3 {`5esn`:`8esn` =~.1e1 =~.0})-[?{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]}]-({_usn3:$`8esn` Is Null})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`).@usn6.``! Return Distinct *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By 01 Ends With \"d_str\" Asc,$_usn3[$`8esn`..$`4esn`] Descending,Null[12e-12..] Desc Skip None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) =~[@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] Limit $``[0.12..]"), + octest:ct_string("Merge #usn8=(@usn5 :usn1{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(@usn5 {#usn8:_usn3 Ends With 01 Ends With .1e-1}) Optional Match #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Where 0x0 Starts With $`5esn` Starts With 9e-12 Union All Unwind $`` Is Not Null As _usn3 With Count(*) Is Not Null As `4esn` Skip All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Unwind Extract(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``]|$_usn4[..usn2]) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) Starts With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null|`4esn` Is Not Null Is Not Null) As `4esn`"), + octest:ct_string("Remove {@usn5:Count(*)}.@usn6!.`5esn`.usn2!,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2).`8esn`?._usn3!.`8esn`,None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1)._usn4.#usn8! Create (((_usn3 :_usn3:_usn3)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})-[#usn7? *00..123456789]->(usn1 :@usn6:_usn4))),usn1=(:`1esn`)-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)<-[? *999..]->(_usn3 {`6esn`:8.1e1 Is Null}) Union All Unwind 0X0123456789ABCDEF Contains $`6esn` Contains $123456789 As usn2 Optional Match @usn6=(((@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[#usn7? *00..123456789]->(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}))),({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})-[ *01234567]-(`5esn` :`7esn`{`7esn`:$_usn3[.1e1..][$`1esn`..],`5esn`:.12e-12 =~9e12 =~1e-1}) Unwind 12e12 =~#usn7 =~.9e-1 As #usn8 Union All Remove `4esn`(12e12 In $`` In 6.0e0,.9e1[#usn7..]).`5esn`?,@usn6:@usn6:_usn4 Delete 's_str' Ends With $usn1 Merge `1esn`=(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))) On Create Set `8esn`+=Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),`8esn`+=0.0 Is Not Null Is Not Null On Create Set `2esn` =$999[$usn1...0e0]"), + octest:ct_string("Delete Any(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0) In (usn2 :#usn8)<-[?:@usn5 *..0xabc]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[_usn3?:`8esn`|:`2esn` *..7{#usn8:0xabc[7.0e-0..][12e12..],_usn3:#usn8 Starts With 11.12e-12 Starts With $`3esn`}]->(`2esn` :_usn3:_usn3) In {`8esn`:usn1[12e-12],@usn6:Count ( * ) In 999} Create ((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})),(((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))) Union All Return Distinct $`2esn` Contains 123.654,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] As usn2,.9e-12[01][Count(*)] Order By (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] Ascending Skip $`3esn` Ends With 010 Ends With $`7esn` Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) Union All Detach Delete 00[0e-0...9e-1][1e-1..``],9e12[...12e12][..$`2esn`],7.0e-0 Contains Count ( * ) Contains 0Xa"), + octest:ct_string("Create ((:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[? *12..0Xa]-(`2esn` :#usn7:_usn3)<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})) Unwind Count ( * )[12e-12] As @usn6 Unwind .9e-1[3.9e-1]['s_str'] As `7esn` Union Remove [`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0]._usn3?._usn3?,(:`3esn`{usn1:123.654 Ends With 0Xa Ends With .12e12})-[?{`3esn`:$`6esn`[$`7esn`][$`4esn`]}]->(:_usn4{`7esn`:9.1e-1 =~@usn5 =~Count ( * )}).`5esn`?.usn2,`2esn`(Distinct 12e-12[`7esn`..][5.9e-12..],0.0[$1000][3.9e-1])._usn4!.`2esn`.``! Return Distinct *,_usn3[`2esn`..10.12e12][9e1..true] Remove (usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2})-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12}).@usn5,Filter(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`).`3esn`,Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1).@usn5.`4esn`! Union With Distinct *,true Is Null Is Null As _usn3,All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn` Skip All(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Starts With Filter(_usn3 In ``[$``..] Where .0e0[1e1..][01234567..]) Starts With `3esn`(Distinct) Limit Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Where 123456789 Ends With _usn4"), + octest:ct_string("Unwind $999 In 0.0 As `1esn` Unwind $999 In 0.0 As `1esn` Remove Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7).`2esn`.`3esn`.`7esn`!,`7esn`:`7esn` Union Merge _usn4=((`` :usn1)<-[``?:_usn3|`2esn` *0X0123456789ABCDEF..0{`5esn`:`4esn`[0.0..][.1e-1..]}]->({`7esn`:0[$`1esn`..`8esn`]})) On Create Set #usn7+=(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] On Match Set (@usn6 :usn1{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(`7esn` :`2esn`:`8esn`).`4esn`! =01[..0Xa],#usn7 =$999[.1e1..0.0],`3esn`+=Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null"), + octest:ct_string("Detach Delete {#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]),(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Is Not Null With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Skip usn2 Starts With $_usn3 Where 10.12e12[12e12..0X7]"), + octest:ct_string("With $12[.9e-1] As `6esn` Order By (:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[`7esn`?]->(`5esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(#usn8 {_usn3:$_usn4 Contains .12e-12}) Ends With `4esn`($usn2 In usn1 In 1e-1,01[Count(*)..0e-0][7..$`2esn`]) Ascending Where $7 Is Null Is Null Return *,_usn4['s_str'..] As `2esn`,Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Order By .0e0[1e1..][01234567..] Descending,5.9e-12[2.9e1][9e0] Desc Skip Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7)"), + octest:ct_string("Remove [usn2 In $_usn3 =~$usn1 =~_usn4 Where 0xabc In 10.12e12|9e-1 Starts With 123.654 Starts With .9e1].`2esn`?.`5esn` Merge @usn6=((:_usn3:_usn3{usn1:.9e1[12]})) On Create Set `4esn` =9e-12 In 0X0123456789ABCDEF In $999 Match ``=((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})),#usn8=((`3esn` {#usn8:`7esn` Is Null})-[_usn4 *999..]->(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]})) Union Unwind \"d_str\"[12e12..][4.9e12..] As `2esn` Remove Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7).``?,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null).@usn5?,[`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|`1esn`[Count ( * )][5.9e-12]].@usn5"), + octest:ct_string("Remove [`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12e12[..123456789][..false]|12[0xabc..][$0..]].@usn6!,[@usn6 In .9e12 Starts With #usn8 Starts With 00].usn2?,{usn2:$usn1[$12..]}._usn3 Union Merge (`8esn` :_usn3:_usn3)-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})-[ *..01]->(#usn8 :#usn7:_usn3)"), + octest:ct_string("With Distinct *,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1) Ends With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) Merge #usn8=(:@usn6:_usn4$`6esn`)<-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :#usn8{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})<-[`1esn`?:#usn7|:`8esn` *..01]-(:`6esn`:`3esn`) On Create Set @usn6 =$`3esn` Remove Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`).`1esn`!._usn4!.#usn8? Union All Optional Match usn1=(@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),#usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})"), + octest:ct_string("Create usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),`2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) Detach Delete `8esn`[..7.0e-0][..0xabc],{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)],[_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null Union All Delete $_usn4[1e-1..8.1e1][`1esn`..1.9e0],0e-0[$`2esn`][8.1e1] Unwind 7.0e-0[0X7..$`2esn`][`4esn`..`7esn`] As `7esn` Detach Delete `` =~$`5esn`,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12)[{_usn4:@usn6 In 3.9e-1 In 9e-12}][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]|10.12e12[12e12..0X7])],`` Ends With .9e-1 Ends With 9e-12 Union All Optional Match #usn7=(:usn1{``:.9e1[..`5esn`]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})<-[`8esn`? *0x0..]->({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null}) With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Limit #usn7[10.12e12..][\"d_str\"..] Where 9e12[...12e12][..$`2esn`] Delete $usn1[$7..][$0..]"), + octest:ct_string("Merge _usn4=(({_usn3:$`5esn`[7..]})) Delete All(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)[`3esn`(Distinct 0[true..$7],`3esn`[$0..][.9e1..])..],$#usn8[$@usn5][11.12e-12] Union All Remove [`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12e12[..123456789][..false]|12[0xabc..][$0..]].@usn6!,[@usn6 In .9e12 Starts With #usn8 Starts With 00].usn2?,{usn2:$usn1[$12..]}._usn3"), + octest:ct_string("Return Distinct *,'s_str' =~.9e1 =~3.9e-1 As usn2,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `6esn` Order By `3esn` Starts With 's_str' Asc,8.1e1[$`5esn`][0e0] Descending,$usn2 Contains $`4esn` Contains true Ascending Limit [`4esn` In 01234567 Ends With $1000 Ends With $#usn7] In (#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]}) In {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]} Detach Delete 0x0,$``[`6esn`][00],'s_str' Ends With $usn1 Union All Match (({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})) Create ((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})),`7esn`=((`2esn` :usn2)-[usn2:`4esn`|:@usn5 *01234567]->(:`5esn`{`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567})<-[:#usn8|:`4esn`{usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]}))"), + octest:ct_string("Detach Delete 10.12e12 =~12e-12 =~0X0123456789ABCDEF,1e1 Is Not Null Is Not Null Optional Match ((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Union Remove `5esn`().`7esn`.`7esn`.usn2,{`5esn`:$#usn8[$1000..],#usn7:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]}.`4esn` With *,{`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As #usn7,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Limit [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]][{`2esn`:$`8esn` In 9e-12 In 3.9e-1}..{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}][Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..])..Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Optional Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Where .0e0[1e1..][01234567..] Union All Merge _usn4=((`6esn` :#usn7:_usn3)<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) On Create Set @usn5 =9e-12 Ends With `7esn` Remove (`` :`3esn`{`5esn`:``[$``..]})-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}).`7esn`,(`8esn` {#usn8:1e1[Null..][.12..]})-[`2esn`?{@usn5:`6esn` Is Not Null Is Not Null,_usn4:9e12 Contains $@usn6 Contains Count(*)}]->({usn1:`6esn`[0x0..@usn5][$1000...9e-12]}).``?.``!.`8esn`!,{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}.@usn5? Remove All(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).``!,{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null}.usn2?"), + octest:ct_string("Delete 0 Contains $`6esn` Contains #usn7,1e1 Union All Optional Match (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))),(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Optional Match ((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Where 1e1[Null..][.12..] With Distinct Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,07 =~_usn4 =~.9e12 As `` Order By 5.9e-12[9e0..] Ascending,#usn8[`2esn`] Desc,`7esn` Ends With 9e-1 Ends With usn1 Ascending Skip $#usn7 Starts With #usn7 Limit $123456789[$_usn3..][$usn2..]"), + octest:ct_string("Optional Match (((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999}))),(`` :``:usn1{usn2:12.0[..123456789][..01]}) Where 12e-12[9e0..1.9e0] Merge `6esn`=(usn2 {_usn4:$999 Ends With .9e-12})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``}) On Create Set Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3|`4esn` Starts With .0e0 Starts With usn2).`3esn`?.`4esn`!.`8esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct),_usn4+=0X7[$999...12e12][12..`2esn`],`7esn` =6.0e0 In 12 On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} Union All Return Distinct _usn4(0[true..$7]) =~Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`) =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0) As _usn3,Null Is Not Null Is Not Null Remove All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1).`1esn`?"), + octest:ct_string("Create usn1=(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1}) Union All Merge usn1=(`5esn` :`1esn`) Union All Remove Filter(`7esn` In .12e12[Count(*)..] Where @usn5[$_usn3..]).usn2? Create `8esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Create @usn6=((`5esn` :`6esn`:`3esn`{usn2:$`4esn`[..2.9e1][..07],`6esn`:#usn7[10.12e12..][\"d_str\"..]})<-[`7esn`*..]->($@usn6)<-[:_usn3|`2esn` *010..]-(`` :usn1))"), + octest:ct_string("With *,Count(*)[..Count(*)][..9e0] Order By 07 Starts With usn1 Starts With 010 Ascending,7.0e-0[..$`7esn`][..Null] Descending,$usn2[8.1e1...9e-1][.1e-1..11.12e-12] Desc Skip Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] Limit 999 Ends With $123456789 Ends With $_usn4"), + octest:ct_string("With usn2 =~$`7esn` =~$`8esn` As _usn3 Order By $7 In .9e1 In $`` Desc,$`6esn` Starts With `4esn` Descending,8.1e1 Starts With .9e12 Starts With `7esn` Desc Skip Extract(_usn4 In Count(*)[9e1..][12e-12..] Where $_usn4[..usn2]|`1esn` Starts With 999 Starts With 3.9e-1) =~(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}) =~Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]) Limit [`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]|.1e-1 Ends With $`8esn` Ends With .9e0] Starts With {#usn7:1e-1[..2.9e1],`1esn`:.9e1[#usn7..]} Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Where 0X7[$999...12e12][12..`2esn`]"), + octest:ct_string("Merge (:#usn8{_usn4:$999 Ends With .9e-12})<-[?{_usn4:$#usn7 Is Not Null Is Not Null,`3esn`:9.1e-1 In #usn8}]->(#usn8 {_usn3:$usn2 In usn1 In 1e-1}) Unwind ``(Distinct `4esn`[$1000..$``][$_usn4..$_usn4],.1e-1 Starts With 1000 Starts With $`1esn`) In [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|`4esn` Starts With $_usn3 Starts With .9e-12] In {`6esn`:``[$``..]} As `6esn`"), + octest:ct_string("Delete 12e-12[.0..] Union With $usn1 Is Null As `5esn`,123.654 Starts With Count ( * ) As `4esn` Skip .9e-1 Ends With `8esn` Where 7.0e-0 =~$12 =~5.9e-12 Union With Distinct `5esn`[$`4esn`] As @usn6,.0e0 Is Null Is Null As _usn4,1.9e0 Starts With .9e0 Order By @usn5 Contains _usn3 Contains 00 Descending,$`6esn` Ends With 12 Ascending"), + octest:ct_string("Detach Delete {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null),\"d_str\" Starts With `6esn` Starts With 1.9e0,`5esn` Contains 1.9e0 Contains 9e0 Create (((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))),(`5esn` :`5esn`) Union Unwind usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]] As #usn8 Optional Match (:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}),((#usn8 :`3esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(:`6esn`:`3esn`{_usn3:Count ( * )[7]})) Where 1000[$`6esn`..12.0]['s_str'..$`3esn`] Union All Merge `1esn`=((@usn6 :usn2)<-[`7esn`?:`3esn`|:_usn3 *..0xabc]->(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0})) On Create Set [@usn6 In .9e12 Starts With #usn8 Starts With 00|#usn7[..0X0123456789ABCDEF]]._usn4?.`4esn` ={usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])],Single(`5esn` In 12[0xabc..][$0..] Where $123456789 Is Not Null).usn2? =Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0[..$@usn5]|`1esn`[9.1e-1]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where Count(*) Ends With `3esn` Ends With `7esn`] =~Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null),`3esn`+=$`5esn` Is Not Null Is Not Null On Match Set None(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).@usn5! =$`2esn`[8.1e1] Remove {_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}.`1esn`"), + octest:ct_string("Remove ({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[ *07..{#usn8:`1esn`[1000][Null]}]-(usn1 :`2esn`:`8esn`).`5esn`?,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"]._usn4,(:`7esn`{`8esn`:$usn2[0e0][$7],_usn3:.9e-12[0e0...9e-1]})-[_usn4?:``|:`3esn`]-(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn1? *0X0123456789ABCDEF..0{_usn4:00[0e-0...9e-1][1e-1..``]}]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6!"), + octest:ct_string("Remove Any(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).`2esn`!,({``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-(:`3esn`{_usn4:Count(*) =~`5esn` =~$usn2,`7esn`:$123456789[$_usn3..][$usn2..]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`).@usn6.@usn5? Return Distinct *,'s_str' =~.9e1 =~3.9e-1 As usn2,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `6esn` Order By `3esn` Starts With 's_str' Asc,8.1e1[$`5esn`][0e0] Descending,$usn2 Contains $`4esn` Contains true Ascending Limit [`4esn` In 01234567 Ends With $1000 Ends With $#usn7] In (#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]}) In {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]} Union Return Distinct *,1000[Null..] As `1esn`,.9e1[#usn7..] As `7esn` Order By #usn8[`2esn`] Asc,.9e0 Is Null Asc,$`1esn` Starts With Count(*) Starts With $`8esn` Descending Limit 0.0[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])..] Return *,Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),3.9e-1[.0e0..][07..] Order By 2.9e1 Starts With 12e-12 Starts With 0.0 Asc,.0e0 Starts With $@usn6 Starts With Null Descending Create (usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}),`3esn`=((@usn6 :`6esn`:`3esn`)<-[`1esn`? *0X0123456789ABCDEF..0{`4esn`:9e1 Ends With .9e0}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}))"), + octest:ct_string("Return Distinct 0xabc[$`4esn`..][`8esn`..] As #usn7 Order By Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null Desc,#usn8[..#usn7][..@usn6] Ascending Skip `2esn`[..9.1e-1][..0xabc] Union Create @usn5=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))),@usn6=(((@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[#usn7? *00..123456789]->(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]})))"), + octest:ct_string("With 1e-1 =~0.0 =~9.1e-1 As usn1,Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null,Count(*) In .9e-12 In $usn1 As _usn4 Order By $`7esn`[..12.0][..0e0] Asc,.9e0[$7][1e1] Descending,8.1e1[usn2..$1000][$7..0x0] Descending Skip Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] Limit `1esn`[11.12e-12..] Where $`2esn` Contains false Contains 123456789 Delete Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]),.9e1[Count(*)..$`3esn`] Detach Delete 10.12e12 =~12e-12 =~0X0123456789ABCDEF,1e1 Is Not Null Is Not Null Union Create (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}) Remove _usn3(Distinct 7.0e-0 Is Null Is Null,$@usn6 Contains Count ( * )).`6esn`?,{`7esn`:9e12 =~.12e12,usn2:$999 Ends With .9e-12}.@usn6?,$`1esn`._usn3!.`3esn`?.@usn6 Union With *,{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1} In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) As _usn4,$#usn7 Is Not Null As `7esn` Where `1esn` Starts With 999 Starts With 3.9e-1"), + octest:ct_string("Return `6esn`[..$``][..4.9e12] Unwind .12[.0e-0..] As `3esn` Merge ((`3esn` {#usn8:`7esn` Is Null})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})) On Create Set {`1esn`:$`1esn`[.9e0][$_usn3]}.`8esn`? =`1esn`[Count ( * )][5.9e-12],`8esn`+=123.654 Ends With Count(*)"), + octest:ct_string("Delete ``(0X0123456789ABCDEF Contains 8.1e1,Count ( * )[..123456789][...0e0])[..All(usn2 In .0e0[$`6esn`..] Where .0e0 In 10.12e12 In $`5esn`)][..(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})],All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)],`2esn` Starts With $`7esn` Starts With _usn4 Union All Detach Delete _usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null"), + octest:ct_string("Detach Delete `4esn`[0.0..][.1e-1..],.0e0[$`6esn`..] Merge (`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}) On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] With Distinct *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5[..1e-1] Union All Remove `7esn`:`3esn` Union Unwind @usn5 Ends With 's_str' Ends With 01 As `7esn` With .9e0 Is Null Is Null As #usn7,$12[`1esn`][1e1] As @usn6,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2 Order By 9e-1 =~6.0e0 =~`` Descending,999[0.12..8.1e1] Ascending Limit (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null Where .9e1[...12e12] With 1e-1 =~0.0 =~9.1e-1 As usn1,Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null,Count(*) In .9e-12 In $usn1 As _usn4 Order By $`7esn`[..12.0][..0e0] Asc,.9e0[$7][1e1] Descending,8.1e1[usn2..$1000][$7..0x0] Descending Skip Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] Limit `1esn`[11.12e-12..] Where $`2esn` Contains false Contains 123456789"), + octest:ct_string("Create usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) Union Unwind true Is Null Is Null As usn1 Unwind `5esn`[$`4esn`] As `4esn` Detach Delete None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),`2esn`(Distinct) Starts With Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]) Starts With (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}) Union Remove None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1).`8esn`!.`2esn`!.``?,`7esn`:@usn5"), + octest:ct_string("Remove `4esn`:_usn4,(`5esn` {usn1:true Contains 0x0})<-[?:usn2|:``]->(@usn5 :usn1{usn1:.9e1[12]})-[`2esn`?:#usn8|:`4esn`]-(:@usn6:_usn4{`2esn`:$usn1[$7..][$0..]}).@usn5!.#usn8!.`2esn`,{`7esn`:7.0e-0[.._usn4][..0X7],usn1:8.1e1 Is Null Is Null}.`5esn`? Unwind $`2esn` Contains false Contains 123456789 As `8esn` Merge `8esn`=(`3esn` :#usn7:_usn3)<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(`2esn` :usn2)<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}) Union All Optional Match (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Where 999[0.12..8.1e1]"), + octest:ct_string("Merge ((#usn8 :`3esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(:`6esn`:`3esn`{_usn3:Count ( * )[7]})) On Create Set `7esn` =`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)],@usn6(Distinct true Starts With 2.9e1 Starts With 9e1).@usn5.`2esn` =07[usn1..] Union All Merge ((usn1 )-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})) On Create Set `8esn`+=Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),`8esn`+=0.0 Is Not Null Is Not Null On Match Set {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]}.#usn8?.`4esn`?.@usn6? =.9e12[$usn2..][7..],[_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]].`8esn`.@usn6? =0X7 =~$123456789 =~$`` Create @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`)))"), + octest:ct_string("Unwind `7esn` Is Not Null As #usn7 Merge `7esn`=({_usn3:$`8esn` Is Null}) On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 On Create Set [@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]].`3esn`?.`6esn`! =Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..])[(usn1 )<-[`8esn`?:usn2|:``]->(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})..0Xa],`2esn`+=$`2esn` Contains false Contains 123456789,`3esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)] Optional Match (usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}),`3esn`=((@usn6 :`6esn`:`3esn`)<-[`1esn`? *0X0123456789ABCDEF..0{`4esn`:9e1 Ends With .9e0}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})) Where 1e-1 =~0.0 =~9.1e-1 Union All Create @usn5=((#usn8 :usn1)<-[`2esn`?:usn2|:`` *010..{`5esn`:$`4esn` Ends With 0e-0}]->(:usn1{`3esn`:$0 =~01234567,@usn5:7 Is Null Is Null})-[@usn5?:usn1|:#usn8 *01234567{`1esn`:7.0e-0[3.9e-1..`1esn`]}]-({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) With 11.12e-12 Is Null Is Null As `4esn`,#usn8 Starts With 11.12e-12 Starts With $`3esn` As `2esn` Skip 123.654 Ends With 0Xa Ends With .12e12 Union With Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8),``(@usn6[..$`3esn`][..4.9e12],0x0 Contains $`1esn` Contains 0.0)[{`6esn`:999[...12e12][..0]}][[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)]|.9e1[Count(*)..$`3esn`]]] As `7esn`,usn2 =~$`7esn` =~$`8esn` Order By $7 Contains _usn4 Contains $`1esn` Ascending,{#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]) Asc,`5esn`[0X7..][12..] Asc Limit `1esn`[..0x0][..\"d_str\"] Merge #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}))"), + octest:ct_string("Unwind .1e-1 Contains 1e1 Contains $`6esn` As `2esn` Return *,$#usn7 Is Not Null Is Not Null As `1esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4 Order By 9e12 Ends With 07 Ascending,\"d_str\" =~9e-12 =~`5esn` Desc,Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999)[Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])][[_usn3 In ``[$``..] Where @usn5 Ends With 0]] Descending Skip `` =~$`5esn`"), + octest:ct_string("Remove (`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1})<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}).@usn6.#usn8?,[_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]].`1esn` Union Create `3esn`=((:`2esn`:`8esn`)<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}))) Optional Match (@usn5 {_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2)-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]-(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12}),((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})) Where 12.0 Contains $_usn4 Contains $usn2 Union Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where $usn1 =~$999 =~$7|$_usn3 Is Not Null Is Not Null).`4esn`!.#usn8,Filter(`` In 0.12[3.9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4).usn1 Merge (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))) On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 Create ((`5esn` :`2esn`:`8esn`))"), + octest:ct_string("Merge usn2=(usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})<-[:`4esn`|:@usn5 *00..123456789]-(`1esn` :`5esn`)-[``?:``|:`3esn` *01234567]->(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]}) On Match Set usn1 ={usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])] On Create Set ``+=$`8esn` In .1e1 In 010,Single(`8esn` In 01234567[..0.0][..false] Where .9e12 =~`5esn` =~07).@usn5! =9e-1 Starts With 123.654 Starts With .9e1 Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set `6esn` =.1e1 =~10.12e12 On Match Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] Union All Unwind `2esn` Is Not Null Is Not Null As #usn7 Create #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}),`1esn`=(:usn1{usn1:Count(*)[0.12..2.9e1]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}) Delete (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Starts With `7esn`(Distinct $`5esn` Is Null Is Null,$`4esn` Ends With 0e-0) Starts With Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 5.9e-12 Ends With 1e1 Ends With false),None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),4.9e12 =~8.1e1 =~$`8esn`"), + octest:ct_string("Optional Match ((`3esn` {#usn8:`7esn` Is Null})<-[{`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}]-(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})),((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Match (({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)),((`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]})) Union All Return Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 123456789 Ends With _usn4) =~{usn2:$``[`6esn`][00],#usn7:.12e12[$12..4.9e12][11.12e-12..9e12]} =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`5esn` Is Null Is Null),1e1 Skip 8.1e1 Starts With 9e-12 Starts With $1000 With Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1] Merge `2esn`=((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}))"), + octest:ct_string("Unwind true Starts With 2.9e1 Starts With 9e1 As _usn4 Delete true In $0 In @usn5 Return Count(*) Is Not Null Is Not Null As usn2,$`3esn` =~4.9e12 =~$7,.9e0 Is Not Null As `6esn` Skip Any(`8esn` In 01234567[..0.0][..false] Where $_usn3 Contains 1e1 Contains .12) =~0.0 =~Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`) Union All With .0e0[$`1esn`][.9e-12] As `6esn`,\"d_str\"[$123456789..][0X7..] Order By All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Asc,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Limit (usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})-[`4esn`?:`6esn`|#usn7]->(`1esn` )[[`2esn` In .12e-12[$@usn6..5.9e-12]|$#usn7 Starts With 10.12e12]..] Remove Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2|0e-0[...9e12]).@usn5?,All(`` In 0.12[3.9e-1]).#usn8!.@usn5!.`2esn`!,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7).``!.`7esn`?.`6esn`! Unwind Count(*) Is Not Null Is Not Null As `8esn` Union Unwind 12e12 =~#usn7 =~.9e-1 As #usn8 Remove (`` :@usn6:_usn4{`4esn`:00 Is Not Null Is Not Null})-[`1esn`:usn1|:#usn8]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}).`6esn`!.@usn5?._usn4?,@usn5:_usn4,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]).`2esn`!.`8esn`!._usn3!"), + octest:ct_string("Detach Delete .1e1[.0e0..],12 In Count(*) In 0e0 Create ((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1))),_usn4=((_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))"), + octest:ct_string("Match (:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7}),`7esn`=((`8esn` {@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) Where 7.0e-0 Starts With $7 Starts With true"), + octest:ct_string("Create (((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) Return Distinct 123.654 Is Not Null Is Not Null As `1esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Ascending Skip 0.0[0x0..0.12]['s_str'..false] Limit $`7esn`[..12.0][..0e0] Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))"), + octest:ct_string("Optional Match usn1=(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ),((_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0)-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]})) Where $`2esn` In 0 In 0Xa Remove {`1esn`:0.12[07..3.9e-1]}.usn1.usn1!,(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})._usn4._usn3?,Extract(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`]|$`3esn`[..`1esn`][..$`7esn`]).@usn6! Unwind .12[.0e-0..] As `3esn` Union Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) Union All Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where `1esn`[9.1e-1]|$`8esn` Starts With `2esn`).``!.`5esn`.``!"), + octest:ct_string("Unwind Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `2esn` Optional Match _usn4=((`4esn` {usn2:$`7esn`[..12.0][..0e0]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})) Merge `3esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1) On Match Set `7esn`+=$`` In $7 In 9e-1,usn1+=$12 Starts With 1e-1 Starts With $@usn5,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).`2esn`?.#usn8! =Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null On Match Set All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 999 =~0Xa =~9e0).`1esn`?.`2esn`? =()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)]"), + octest:ct_string("Detach Delete 9e-1 Ends With 5.9e-12,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) Remove All(`5esn` In 12[0xabc..][$0..] Where .0e0[1e1..][01234567..]).#usn8!,Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]).`6esn`,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 's_str'[12][00]|$`8esn`[#usn7][.9e1]].#usn7?.`4esn`?"), + octest:ct_string("Create ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6) Match ((:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[? *12..0Xa]-(`2esn` :#usn7:_usn3)<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})),((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`5esn`]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)) Unwind 10.12e12 In `3esn` In $usn2 As #usn7 Union All Delete 8.1e1 Is Not Null,{`4esn`:5.9e-12[9e0..]} =~None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12) Merge #usn8=(:@usn6:_usn4$`6esn`)<-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :#usn8{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})<-[`1esn`?:#usn7|:`8esn` *..01]-(:`6esn`:`3esn`) On Create Set @usn6 =$`3esn` Detach Delete _usn4 Ends With .0 Ends With 7,All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7])[..Extract(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..])]"), + octest:ct_string("With *,9e0[.0e-0] As _usn4 Skip 0X7[`4esn`..][`3esn`..] Where 00 =~.9e-12 =~usn1 Return *,Null[..07],5.9e-12 =~$@usn6 As `7esn` Skip #usn8 In $#usn8 In \"d_str\" Merge ((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Union Return *,.9e1 Starts With `4esn` As `5esn`,Count ( * )[`7esn`..] Order By $``[`4esn`..][0.0..] Desc,07 =~7.0e-0 =~`8esn` Descending Skip .9e-12[01][Count(*)] Union Optional Match (({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})) Where 5.9e-12 =~$@usn6"), + octest:ct_string("Return Distinct *,$7 Contains _usn4 Contains $`1esn`,0e-0[$`2esn`][8.1e1] As @usn5 Detach Delete $1000 Ends With 3.9e-1,Count ( * )[7],1.9e0 In $0 Match (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))),(`8esn` {`3esn`:#usn8[`2esn`]}) Union All Optional Match ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),@usn5=((:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(`4esn` :`2esn`:`8esn`)-[`8esn`:`4esn`|:@usn5{#usn7:Count(*)}]-({`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Remove None(`5esn` In 12[0xabc..][$0..] Where .9e0 Is Null Is Null).`4esn`?.`7esn`!,{`4esn`:9.1e-1 Is Null}.`` Delete 10.12e12[0Xa..999][1000..Count(*)],2.9e1"), + octest:ct_string("Delete 01234567[6.0e0][$usn2] Return Distinct *,$usn1 Contains `7esn` Contains .9e12,.9e12 Starts With 6.0e0 Starts With .1e1 Order By `1esn`[11.12e-12..] Asc Skip 9e12 Contains $@usn6 Contains Count(*) Limit `5esn` Contains `6esn` Union All Detach Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..],.1e-1 Contains 1e1 Contains $`6esn` With *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By .12e-12 =~9e12 =~1e-1 Desc,11.12e-12 =~$`4esn` =~.12e12 Descending Limit [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null Where `2esn` =~usn1 Union Delete usn1(Distinct)[({@usn5:01234567[6.0e0][$usn2],`7esn`:010 Starts With 0.0 Starts With .0e0})<-[``?:#usn8|:`4esn`]-(:usn1{@usn5:Count(*)})..Filter(`5esn` In 12[0xabc..][$0..] Where 010[11.12e-12..])],0e0[.12..][3.9e-1..] Match (:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}),_usn3=((@usn5 :usn1)-[? *123456789..0x0{`8esn`:`2esn` Is Not Null Is Not Null}]->(`` :usn1))"), + octest:ct_string("Unwind _usn4 Is Null Is Null As usn2 Return _usn4 In `3esn` In 7.0e-0 As #usn7 Order By $`` Ends With 6.0e0 Descending,$1000[..01234567][..0X0123456789ABCDEF] Ascending Limit .1e-1[.9e12..usn2][`4esn`..$_usn3] Union With Distinct *,0 Starts With 0Xa Starts With $0 Order By None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4) Asc,$``[`5esn`..][`2esn`..] Desc,0e-0[$`2esn`][8.1e1] Asc Match @usn5=((@usn6 :`6esn`:`3esn`)<-[`6esn`? *..0xabc{``:$_usn4[Null]}]->(:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((:#usn8{`8esn`:usn1[12e-12],@usn6:Count ( * ) In 999})<-[?]->(:@usn5{usn2:$usn1[$12..]})-[ *..01]->(#usn8 :#usn7:_usn3)) Optional Match ((#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[`3esn`?:`5esn`]->(`2esn` )) Where .0e0 In 10.12e12 In $`5esn`"), + octest:ct_string("Unwind All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] As `` Create `7esn`=({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}),`2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Delete .0e0[..1e1][..$1000]"), + octest:ct_string("With Distinct *,_usn3[`2esn`..10.12e12][9e1..true] Where .9e1[#usn7..] Optional Match `7esn`=((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)),``=(({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})) Union Return $`6esn`[..12e12][.._usn3] As `5esn`,($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]) As _usn4 Unwind .12[.0e-0..] As `3esn` Union All With *,`8esn`(Distinct $999 Ends With .9e-12,Null Is Not Null Is Not Null)[.._usn3(Distinct 5.9e-12[9e0..],$@usn5 Is Null)][..@usn5(@usn5 =~$@usn5 =~6.0e0,$`4esn` In 11.12e-12 In .9e12)] Order By .0e0 Starts With $@usn6 Starts With Null Asc Skip `3esn`[`4esn`..Null][$usn1..`5esn`] Limit Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1])[(:@usn5{`7esn`:7.0e-0[`6esn`..]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)][All(usn2 In .0e0[$`6esn`..] Where .0e0[..1e1][..$1000])]"), + octest:ct_string("With Distinct *,`3esn`[.12e-12..] As `7esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4 Order By 01[Count(*)..0e-0][7..$`2esn`] Desc Where 0e0[..'s_str'] Union Unwind Count ( * )[12e12][$_usn4] As #usn8 Union Unwind 1.9e0 =~$`8esn` =~01234567 As usn2 Create ((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))"), + octest:ct_string("Delete $`2esn` Starts With .12e-12 Starts With .0e-0 With *,$@usn5[..1e-1] As @usn5,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As `1esn` Order By \"d_str\"[12e12..][4.9e12..] Asc Where 7.0e-0 =~$12 =~5.9e-12 Match (_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}),((`6esn` :usn1)) Where 9.1e-1 In #usn8 Union All Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct),Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..],Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) Unwind 0e0 Ends With `7esn` Ends With usn1 As _usn3"), + octest:ct_string("Optional Match (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[:usn1|:#usn8]-(:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`}) Where 123456789 Contains .1e-1 Contains .12e12 Remove ``:`3esn`"), + octest:ct_string("Merge `3esn`=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) On Match Set #usn7 =[usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|9e0 =~9e1 =~.12e12] Is Null Is Null,`8esn`+=123.654 Is Not Null Is Not Null,`3esn`+=_usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null With *,`5esn`[$`4esn`],#usn8[7..@usn5] As `4esn` Order By 9e0[.0e-0] Asc Limit `8esn` Is Not Null Is Not Null"), + octest:ct_string("Merge ((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})) On Match Set `2esn`+=false Starts With 3.9e-1 On Create Set ``:_usn4 Create _usn3=((@usn6 {`8esn`:1.9e0 Is Null Is Null})),(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))) Union All Remove (`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1})<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}).@usn6.#usn8?,[_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]].`1esn` Union Delete 11.12e-12 In $`1esn` In 9e12 Unwind 123.654 Is Not Null Is Not Null As `6esn` Merge ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`5esn` *01234567]->(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) On Create Set None(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).`5esn`?.`3esn`! =[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]},`8esn` =Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]],None(`` In $_usn3 Is Not Null Where 7.0e-0 =~$123456789 =~`8esn`).`3esn` =Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1]) On Match Set `8esn` =[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]).#usn7!.usn1?.usn1? =$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 9e0 =~9e1 =~.12e12|$@usn5 =~.12e-12).`2esn`?.`1esn`! =0e-0[...9e12]"), + octest:ct_string("Match (`1esn` {#usn8:.12e12[Count(*)..]})<-[{`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}]-(:@usn5) Where $`` Is Null Is Null Union Delete {#usn8:8.1e1 Ends With $0 Ends With 6.0e0,#usn8:Null =~true =~.1e-1} Contains {usn1:Count ( * )[..2.9e1],_usn3:07 Starts With usn1 Starts With 010},`2esn`[..9.1e-1][..0xabc] Union All Remove Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]).`6esn`?,`4esn`:#usn7:_usn3 Remove (`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``!,usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4!"), + octest:ct_string("Detach Delete $usn2[0e0][$7],$`` In $@usn6 In 3.9e-1 Optional Match `3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where .12e-12[$@usn6..5.9e-12] Merge ((`` :``:usn1)) Union All Merge `5esn`=(`7esn` :`8esn`:#usn7{`4esn`:`8esn` =~.1e1 =~.0}) On Match Set #usn8:`5esn` Delete Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]),.9e1[Count(*)..$`3esn`] Delete {@usn5:$`2esn`[8.1e1]}[None(`7esn` In .12e12[Count(*)..] Where .9e1[12])..Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1)][`6esn`(Distinct 0e0 In $_usn4 In `2esn`)..{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]}] Union All Unwind #usn8[`2esn`] As _usn3 Merge (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}) On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1]"), + octest:ct_string("With Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) As `1esn`,Count(*) Is Not Null As `4esn`,(usn1 {`6esn`:$`5esn`[true],usn2:1e1 Is Not Null Is Not Null})-[`3esn`?:`5esn` *07..{#usn7:9e-1 =~6.0e0 =~``}]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}) Is Not Null Is Not Null As `7esn` Order By 0e-0 Contains 11.12e-12 Contains $`4esn` Asc Skip `6esn`[..01][..`8esn`] Where $@usn5[..1e-1] With Distinct *,`2esn` Is Not Null Is Not Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Order By {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} Desc,{`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]] Ascending"), + octest:ct_string("Return Distinct *,$`6esn` In $`3esn` In 9e1,$7 Contains #usn8 Contains 0Xa As `6esn` Order By $999[.1e1..0.0] Desc,8.1e1 Starts With .9e12 Starts With `7esn` Asc Skip 0e-0 Contains _usn4 Contains 1e-1"), + octest:ct_string("Merge ((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) With 010 Starts With 0.0 Starts With .0e0 As _usn4 Order By 123456789 =~$`1esn` =~#usn7 Ascending,.1e1 =~010 =~0.12 Descending Skip Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..])[..Extract(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]|$`6esn` Starts With `4esn`)] Limit Extract(`5esn` In 12[0xabc..][$0..] Where 9e-1[0X0123456789ABCDEF][0]|.9e1[..Count(*)][..7.0e-0]) Is Null Is Null Where `6esn`[010...9e-12] Union All Return *,.9e1 Starts With `4esn` As `5esn`,{_usn4:1.9e0 =~$`8esn` =~01234567}[All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] As _usn4 Order By #usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Desc,3.9e-1[..$7] Desc Skip 12 Contains $usn1 Contains 0 Optional Match (((`3esn` :@usn6:_usn4)<-[_usn4?:#usn8|:`4esn` *123456789..0x0]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12})-[?:_usn3|`2esn`]->(`1esn` :`7esn`))),((:@usn6:_usn4{#usn7:9.1e-1 Contains 0xabc})) Union With Distinct *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip 0xabc =~7.0e-0 =~4.9e12 Limit Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null"), + octest:ct_string("Unwind $`1esn`[.9e0][$_usn3] As `4esn` Union Optional Match (((`7esn` {`3esn`:.9e-1 Is Null})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`))) Where .0e-0[0e0..00][.9e1..12]"), + octest:ct_string("Return Distinct #usn8[7..@usn5] As usn2,12 Contains [usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12|$0 Contains .12e-12],10.12e12[$`5esn`] Limit (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] Return Distinct $#usn7 =~8.1e1 As #usn7,`4esn`[$1000..$``][$_usn4..$_usn4] Skip $`2esn` In 0X7 In 3.9e-1 Union Remove 9e-12._usn4 With (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7),Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),12.0 =~$@usn5 =~8.1e1 Order By Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] Ascending Limit $@usn6 Contains Count ( * )"), + octest:ct_string("Return Distinct $`7esn` Contains 0X7 As usn2,$`8esn` Starts With `2esn` Union Remove Filter(`7esn` In .12e12[Count(*)..] Where @usn5[$_usn3..]).usn2?,[`5esn` In 12[0xabc..][$0..] Where .12e12[$12..4.9e12][11.12e-12..9e12]|Count(*)[9e-12..0Xa][$123456789..0.0]].@usn5,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where #usn8[7..@usn5]).usn2? Merge `8esn`=((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) On Match Set _usn3+=$usn2[12.0..],`7esn`+=false[..12e-12][...9e1] Remove Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).`5esn`!.`3esn`.usn2!,Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])._usn3!.`7esn`.`4esn`!,Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]).@usn5.usn2 Union Create `3esn`=(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))),(((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})-[`2esn`?:#usn8|:`4esn`]-(:@usn6:_usn4{`2esn`:$usn1[$7..][$0..]}))) Return .1e1 =~`1esn`,Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],$#usn7 Is Not Null Order By All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Desc,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] Ascending,.9e0 In 9.1e-1 In $123456789 Desc Remove (#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *01234567]->(`5esn` :`2esn`:`8esn`).#usn7!.`3esn`!.@usn6!"), + octest:ct_string("Detach Delete ({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null},Count(*) =~Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7),{@usn5:true Contains 0x0} In Extract(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$1000[..01234567][..0X0123456789ABCDEF]) Merge usn2=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Remove ({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})<-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(`4esn` :usn1{`1esn`:0X0123456789ABCDEF Contains 8.1e1}).`4esn` Union All Match `7esn`=((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})),usn1=((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})) Where 1.9e0 Ends With Count ( * ) Ends With .12"), + octest:ct_string("Create #usn7=(:usn1{``:.9e1[..`5esn`]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})<-[`8esn`? *0x0..]->({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null}),@usn6=((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where $`1esn` Starts With Count(*) Starts With $`8esn` Unwind $`6esn` In `2esn` As _usn4 Union Merge ((:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})-[usn2?:@usn6|:_usn3]->({usn1:01[.9e-12..],@usn6:$`5esn` Ends With $#usn7 Ends With .0e-0})) On Match Set {@usn5:12e-12 Contains .9e-1 Contains 9e-1}.``! =usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]),@usn6 =0.0 Is Not Null Is Not Null,[`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0]._usn3?._usn3? =.1e1 Starts With .1e-1 On Match Set `8esn`+=Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\"),`1esn`+=4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12),(`` {_usn4:9e0[..1e1]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(@usn5 :@usn6:_usn4).#usn8.`1esn`.usn1! =00[0e-0...9e-1][1e-1..``] Unwind $`5esn` Contains `2esn` Contains 9e1 As `1esn`"), + octest:ct_string("Merge #usn8=(((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) On Match Set Filter(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).``.`8esn` =Count ( * )[..`8esn`],usn1 =123456789 Contains .1e-1 Contains .12e12,`8esn`+=`7esn` Ends With _usn4 Remove (`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``!,usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4! With Distinct #usn7[10.12e12..][\"d_str\"..] As `1esn`,9e-1 Contains $@usn5 Contains Count(*),`` Is Not Null Is Not Null As usn1 Order By @usn6 In 3.9e-1 In 9e-12 Asc,1.9e0[$12][``] Desc,12e12 =~#usn7 =~.9e-1 Asc Limit 0X7 =~$123456789 =~$`` Union All Create _usn3=((`6esn` :`7esn`)-[`7esn`?:`5esn`]->(#usn8 )<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})),@usn6=(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Create _usn3=((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]}))"), + octest:ct_string("With usn2 =~$`7esn` =~$`8esn` As _usn3 Match (({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})) Union With $12[.9e-1] As `4esn`,.12e12 =~$#usn7,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) As `8esn` Order By (:`3esn`{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1})<-[?:@usn6|:_usn3 *07..]-({_usn4:01234567[6.0e0][$usn2]})<-[`2esn`?:`2esn`|`7esn` *..0X7{@usn5:$12 Contains $`7esn` Contains .0}]->(:``:usn1) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]) In {usn1:`7esn` Is Not Null} Ascending,0x0 Contains $`1esn` Contains 0.0 Ascending,$`6esn` In `2esn` Ascending Skip (`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] Union All Unwind Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) In {`5esn`:$`` =~$_usn3,`4esn`:`7esn`} In `3esn` As #usn8 Create `8esn`=(({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),usn1=((@usn5 :usn1{usn1:.9e1[12]}))"), + octest:ct_string("Unwind 11.12e-12 Is Null As `1esn` With *,0e0 Ends With 0X7 Ends With .1e1 As _usn3 Order By Extract(@usn6 In 00 =~.9e-12 =~usn1 Where `2esn` Is Not Null Is Not Null|.1e1[.0e0..]) Ascending Skip 7 Contains $#usn7 Limit Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]) In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )] In `8esn`(Distinct $_usn3 Contains 1e1 Contains .12) Create (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Union All Merge @usn6=((_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) With Distinct *,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,false[12e-12..][usn1..] Order By Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]) Desc Limit $`1esn`[`3esn`..] Where $usn1 =~$999 =~$7 Unwind [usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|`3esn` Ends With 010 Ends With 9.1e-1][(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})-[`7esn`?:`5esn`]->(#usn8 )..None(_usn4 In Count(*)[9e1..][12e-12..] Where 7 Contains $#usn7)] As `8esn`"), + octest:ct_string("Optional Match ((#usn8 {_usn3:$usn2 In usn1 In 1e-1})),usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Merge ((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}))) On Match Set `6esn` =Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,_usn4+=8.1e1 Starts With .9e12 Starts With `7esn`,All(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null).usn1! =$`6esn`[.9e1..][`5esn`..] Remove @usn5:`7esn`,{_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12}.usn2!.`1esn`?.#usn7"), + octest:ct_string("Unwind 3.9e-1 Is Null Is Null As `7esn` Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Union Create `3esn`=((`2esn` {``:.0e0[$`6esn`..]})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(`6esn` :`3esn`)<-[`7esn`?:`3esn`|:_usn3 *..0xabc]->(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null})),(usn2 :`6esn`:`3esn`)<-[``? *07..{`8esn`:$usn2[0e0][$7],_usn3:.9e-12[0e0...9e-1]}]-(:`2esn`:`8esn`{`6esn`:7.0e-0 Is Null Is Null,`6esn`:999[0.12..8.1e1]}) Union All Return None(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Is Not Null As `6esn`,.9e-1[12.0] As @usn6,.12 Ends With .0e-0 Ends With $7 Order By (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7) Ascending Limit 1e-1 =~0.0 =~9.1e-1 Merge ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})) On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1]"), + octest:ct_string("Unwind {_usn4:$`5esn` Is Null Is Null}[Filter(usn2 In .0e0[$`6esn`..] Where $1000 Contains 01234567 Contains 0X7)..] As @usn6 Delete 12e12 =~#usn7 =~.9e-1,(:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[`2esn`? *..7]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]})<-[#usn7? *00..123456789]->(:`6esn`:`3esn`)[{``:`1esn`[Count ( * )][5.9e-12],_usn3:$_usn3[1e-1..]}..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1)],010 Ends With 0x0 Union All Optional Match (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))),(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Optional Match ((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Where 1e1[Null..][.12..] With Distinct Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,07 =~_usn4 =~.9e12 As `` Order By 5.9e-12[9e0..] Ascending,#usn8[`2esn`] Desc,`7esn` Ends With 9e-1 Ends With usn1 Ascending Skip $#usn7 Starts With #usn7 Limit $123456789[$_usn3..][$usn2..] Union Merge ``=((({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})<-[@usn6:#usn7|:`8esn` *0Xa..7]->(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})<-[@usn6:#usn7|:`8esn` *0Xa..7]->(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`}))) Merge (((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))) On Create Set `7esn` =$`7esn` Is Null Is Null,Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1]|12 Contains usn2 Contains $usn2).usn2? =`1esn` Ends With 7.0e-0 Ends With $usn1,None(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12)._usn4 =.1e-1[@usn6..]"), + octest:ct_string("Unwind `7esn`[.1e1..][`8esn`..] As `3esn` With Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],`2esn` Is Not Null Is Not Null Skip $123456789 Starts With Count ( * ) Limit Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..] Create @usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))),(({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)) Union Merge (`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6) On Match Set count(@usn6[..$`3esn`][..4.9e12]).`1esn`! =(`1esn` :`3esn`)-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}) In Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) In {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]} On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] Union All Merge (((`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0))) On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`3esn`? =0.12[3.9e-1],_usn4 =Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],[`` In $_usn3 Is Not Null Where 12 =~$@usn5|$`2esn` In 0X7 In 3.9e-1].`8esn`.`5esn`? =12e-12[9e0..1.9e0] With Distinct *,$`2esn`[$1000..][$@usn5..] As #usn8 Order By .9e0 Is Null Asc,0 Is Not Null Desc Skip #usn7[5.9e-12][00] Where 12e12[..$`8esn`][...0e-0]"), + octest:ct_string("Detach Delete 2.9e1[...9e-12][..0] Unwind {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null As `5esn` Match `7esn`=((`8esn` {@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})),({usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) Union With 9e-12 In 5.9e-12 As ``,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0x0 Contains $`1esn` Contains 0.0) In None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0) As `5esn` Order By 1000 Starts With 11.12e-12 Starts With 01234567 Descending,07[..@usn6][..$`4esn`] Ascending Skip .9e1[...12e12] Where ``[..$#usn7] Unwind 3.9e-1 Is Null As `4esn` Merge `5esn`=(((_usn3 )-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3}))) On Match Set `8esn` =[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]).#usn7!.usn1?.usn1? =$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 9e0 =~9e1 =~.12e12|$@usn5 =~.12e-12).`2esn`?.`1esn`! =0e-0[...9e12] On Match Set `2esn` =(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)],`3esn` =9e1 Contains 4.9e12 Contains 123456789 Union Return `6esn`[..$``][..4.9e12] Unwind .12[.0e-0..] As `3esn` Merge ((`3esn` {#usn8:`7esn` Is Null})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})) On Create Set {`1esn`:$`1esn`[.9e0][$_usn3]}.`8esn`? =`1esn`[Count ( * )][5.9e-12],`8esn`+=123.654 Ends With Count(*)"), + octest:ct_string("Create ((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})) Create (({@usn6:0Xa[9e0]})) Unwind usn1[12e-12] As `2esn` Union All Unwind {@usn5:true Contains 0x0} In Extract(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$1000[..01234567][..0X0123456789ABCDEF]) As @usn5 With Distinct *,_usn3[`2esn`..10.12e12][9e1..true] Where .9e1[#usn7..] Union All Optional Match (((usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}))),`5esn`=(`5esn` :`1esn`) Return *,.12e-12 In 9e12 In 9e-12 As `5esn`,1e-1 Starts With usn2 Starts With 12e-12 As `` Order By 0[true..$7] Descending Skip (_usn4 :`2esn`:`8esn`)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})<-[`2esn`?:@usn5]-(`7esn` :usn1$`6esn`) =~(#usn8 {`3esn`:123456789 Contains .1e-1 Contains .12e12,`1esn`:$`3esn` =~4.9e12 =~$7})-[#usn7? *00..123456789]->(`8esn` :@usn5)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Create `1esn`=(_usn3 )-[?:`6esn`|#usn7{_usn4:8.1e1 Is Null,#usn7:$_usn3 =~$usn1 =~_usn4}]-(usn2 :@usn5{`8esn`:00[$`6esn`]})-[?:usn2|:``]-(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}),usn1=((`8esn` :_usn3:_usn3)<-[_usn4? *..7{#usn7:Count ( * )[7]}]->(`6esn` :`7esn`)<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`))"), + octest:ct_string("Create #usn7=(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[?{#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0}]-({`6esn`:07 Ends With @usn6 Ends With _usn3}) With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Order By 12.0[.._usn4][..0X7] Descending,`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Ascending Skip 's_str' Ends With 0.0 Ends With .12e12 Remove All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5[$``]).`4esn`,Extract(`8esn` In 01234567[..0.0][..false]).``._usn4,{`2esn`:usn2 Ends With .0}.#usn8!.`3esn` Union Remove ``(usn2 Ends With 10.12e12,$`1esn`[.9e0][$_usn3]).`7esn`?._usn4!.`5esn`?,[`2esn` In .9e-12[0e0...9e-1]].`8esn` Detach Delete .1e1[..0][..010],Extract(usn2 In .0e0[$`6esn`..]|$@usn6 Contains Count ( * ))[`2esn`(usn1[12e-12])..][(`8esn` :usn2)<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})..],`7esn` Create ((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Union All Create `7esn`=(`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Optional Match `3esn`=(@usn5 :`7esn`),((#usn8 {_usn3:$usn2 In usn1 In 1e-1})) Where usn2[..10.12e12][..$`7esn`] Create ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((`` :``:usn1))"), + octest:ct_string("Unwind 0[..$@usn5] As `6esn` With Distinct 9e1 Contains 4.9e12 Contains 123456789 As _usn4,1e1[Null..][.12..],1e1 Is Not Null Is Not Null Order By #usn7[`5esn`..`2esn`][$`4esn`...1e1] Ascending Skip `7esn`(7.0e-0[.._usn4][..0X7],$`5esn`[7..]) Contains [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]] Limit 0e-0[$`2esn`][8.1e1] Remove All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`4esn`?.#usn7!,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|$_usn3 Is Not Null).`5esn`! Union With *,`5esn`[$`4esn`],#usn8[7..@usn5] As `4esn` Order By 9e0[.0e-0] Asc Limit `8esn` Is Not Null Is Not Null Optional Match ((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})),``=((({`4esn`:$`2esn` Ends With $`8esn`})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})-[``]-(:_usn4{#usn8:.0e0[1e1..][01234567..],#usn7:1e-1[..2.9e1]}))) Detach Delete `3esn`[.12e-12..],Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Union All Match usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Return Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]),$`6esn`[$`8esn`..][false..] As _usn3,$`6esn`[..12e12][.._usn3] As `5esn` Order By $@usn6 =~$`2esn` =~9e1 Desc,$`2esn`[$usn1..] Desc,@usn6[01][.9e0] Ascending Skip All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Limit `1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Create #usn7=((`4esn` :_usn3:_usn3))"), + octest:ct_string("Optional Match `1esn`=({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(_usn3 :`6esn`:`3esn`),`3esn`=((#usn8 {`5esn`:8.1e1 Ends With $0 Ends With 6.0e0,@usn5:9e0[..1e1]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))"), + octest:ct_string("Remove Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 01[..0Xa]).`1esn`!.`1esn`! Merge #usn8=(usn1 :_usn3:_usn3) Optional Match `5esn`=(:``:usn1{_usn3:00[$`6esn`]})-[?:_usn3|`2esn`]->(`1esn` :`7esn`),`7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) Where 1e-1 =~0.0 =~9.1e-1 Union All Merge ((:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[#usn8? *0x0..]->(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)) On Match Set `8esn` =#usn7 Ends With $#usn7 Ends With #usn7"), + octest:ct_string("Return Distinct *,(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})<-[?:usn1|:#usn8{`8esn`:`2esn` Is Not Null Is Not Null}]-({#usn8:1e1[Null..][.12..]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null,8.1e1 Is Not Null As usn2 Order By .1e1[$usn2..9e1][9e-1...9e-1] Desc Skip Null In 0Xa In .9e-1 Union All With Distinct *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5[..1e-1] Union All Delete ``(0X0123456789ABCDEF Contains 8.1e1,Count ( * )[..123456789][...0e0])[..All(usn2 In .0e0[$`6esn`..] Where .0e0 In 10.12e12 In $`5esn`)][..(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})],All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)],`2esn` Starts With $`7esn` Starts With _usn4"), + octest:ct_string("Remove Any(@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null).#usn8? Merge usn1=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})) On Match Set `4esn` =$`` =~$_usn3,`7esn` =\"d_str\" Ends With `5esn` Ends With 7 Create @usn6=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Union Unwind Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] As ``"), + octest:ct_string("Delete .1e-1[$`2esn`..][$`1esn`..] Return Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,9e-1 Starts With 123.654 Starts With .9e1 As `6esn`,.9e0 Is Null Is Null Skip usn1(07 Ends With @usn6 Ends With _usn3,$`2esn` In 0X7 In 3.9e-1) Contains [`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|9e0 =~9e1 =~.12e12] Limit $7 Starts With Null Starts With `6esn`"), + octest:ct_string("Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] Ascending,1e-1[..$`6esn`] Ascending Skip (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Remove {usn2:`3esn` In 0X7,usn2:7 Is Null Is Null}.`4esn`.@usn6!,{@usn6:.9e-12[..$`7esn`][...9e-1]}.usn2 Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1 Union Match (({usn2:#usn7[10.12e12..][\"d_str\"..]})-[?:`8esn`|:`2esn` *..7]-(`4esn` :#usn8{#usn8:_usn4[7][8.1e1],#usn7:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})),`3esn`=(((`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[:`4esn`|:@usn5 *00..123456789]-({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[@usn5?:@usn6|:_usn3 *07..{_usn3:$`3esn` Is Not Null Is Not Null,#usn8:usn1[0.12..1000]}]-(:@usn5{`7esn`:7.0e-0[`6esn`..]}))) Where 0 Ends With 2.9e1 Ends With 1000 Detach Delete 0e0 Ends With `7esn` Ends With usn1 Unwind .0e-0[0e0..00][.9e1..12] As usn2 Union All Create `2esn`=((:`4esn`:`7esn`{`3esn`:`1esn`[9.1e-1]})<-[?:@usn6|:_usn3 *07..]-(#usn8 :`2esn`:`8esn`{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:@usn5[...9e12]})-[? *..0X7{_usn3:00[$`6esn`]}]->({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})),#usn7=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}))"), + octest:ct_string("Detach Delete usn2[Count ( * )..07],$999 =~`6esn` Unwind #usn8[7..@usn5] As `` Unwind $123456789[$1000..usn1][#usn7..9e-12] As `7esn` Union All With Distinct Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) As `1esn`,0[..$@usn5] As `` Order By {`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending Limit 12 Contains _usn3 Where $`2esn` Ends With 2.9e1 Ends With $usn1 Detach Delete 5.9e-12[.1e1][$#usn8] Union All Remove Single(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12).`6esn`,(:@usn5{`4esn`:.0e0[$`6esn`..]})-[? *0X0123456789ABCDEF..0]-({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`)._usn3._usn3!.`4esn`?,{@usn5:'s_str' Is Null,`3esn`:Count(*)[12..][0X0123456789ABCDEF..]}.`6esn` Remove Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|$_usn3 Is Not Null).`5esn`!,count(Distinct $`3esn` Starts With 0Xa).#usn7"), + octest:ct_string("With Distinct count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0])[_usn3(8.1e1[usn2..$1000][$7..0x0],false[..12e-12][...9e1])..] As @usn6,.0e-0[0e0..00][.9e1..12] As `1esn`,Count ( * ) Starts With 10.12e12 Starts With `` As `5esn` Union Create @usn6=((`5esn` :`6esn`:`3esn`{usn2:$`4esn`[..2.9e1][..07],`6esn`:#usn7[10.12e12..][\"d_str\"..]})<-[`7esn`*..]->($@usn6)<-[:_usn3|`2esn` *010..]-(`` :usn1)),(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}) Return *,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) As `7esn`,$`3esn` Starts With 0Xa As @usn6 Order By true Starts With 2.9e1 Starts With 9e1 Asc,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending Skip 12 =~$@usn5"), + octest:ct_string("Return *,`3esn` Contains 01234567 Contains .9e-12 Skip Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]) In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )] In `8esn`(Distinct $_usn3 Contains 1e1 Contains .12) Limit $1000 Unwind $`6esn` In `2esn` As _usn4 Union All Delete (`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..],1e-1 =~0.0 =~9.1e-1,$`5esn`[7..] With Distinct [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Order By Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Desc Limit .0e0 Is Null Is Null Where 01[1e-1] Remove Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $@usn5 =~.12e-12).`4esn`?,Single(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]).`8esn`? Union All With $usn2 In usn1 In 1e-1 Skip .9e12 In 12e12 Limit Null[10.12e12..] Where 9e12[...12e12][..$`2esn`] Optional Match @usn5=(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}),#usn8=({_usn3:$`8esn` Is Null}) Detach Delete (:usn1{@usn5:Count(*)})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) In #usn8(Distinct 010[9e0..9e1][$_usn4..$12]) In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $`6esn`[$_usn4][01]),.1e1 Is Not Null Is Not Null"), + octest:ct_string("Match ((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`2esn`=((`7esn` :usn1)<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3)) Remove [`4esn` In 01234567 Ends With $1000 Ends With $#usn7]._usn3.`4esn`!,Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0).`6esn`?,{`3esn`:1.9e0 Is Null Is Null,``:$usn2 Ends With `8esn` Ends With _usn3}.`3esn`? Delete 123.654 =~1e-1 =~.9e-1,4.9e12 =~8.1e1 =~$`8esn` Union All Optional Match (`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]}),(#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`}) Where $`3esn` In 's_str' In $#usn7"), + octest:ct_string("Remove @usn5:`5esn`,{`2esn`:.0,`5esn`:$`3esn` =~4.9e12 =~$7}.usn2.`4esn`? Optional Match `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Where 0e0 Starts With $1000 Starts With `2esn` Union All Optional Match (#usn8 {_usn3:$_usn4 Contains .12e-12}) Return Distinct *,`4esn`(Distinct 01[..0.12],$`8esn` Is Null) Contains All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]),Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} As `3esn` Limit Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null Merge `1esn`=(`3esn` :_usn3:_usn3)-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]}) On Match Set `8esn` =.9e1[Count(*)..$`3esn`] On Create Set usn1+=$`3esn` In 's_str' In $#usn7"), + octest:ct_string("Remove (#usn7 {`5esn`:.12e12[$0]})<-[`6esn`?:``|:`3esn`]->(`5esn` {`6esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]}).`2esn`?,[`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1|true[9e-12...0e-0][`5esn`.._usn4]].usn2!,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..]).`4esn`!._usn4! Create `5esn`=((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})),``=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}) Return *,0X0123456789ABCDEF Contains 8.1e1 As `6esn`,.1e1 =~`1esn` Order By All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])[..{#usn8:.12e12[Count(*)..]}][.._usn4(Distinct `2esn` Starts With 999,$`5esn` Starts With 0X7 Starts With 1e1)] Descending,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] Ascending,.9e1[12] Desc Limit 01234567 Ends With 2.9e1 Ends With 9.1e-1 Union With Distinct 0Xa Contains $999 Contains 0Xa Order By Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"]|`7esn`[3.9e-1..][$@usn5..])[..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] Desc,.0e0 Is Null Is Null Descending,$`4esn` =~0e0 Ascending Limit .0e0[..1e1][..$1000] Remove {`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1}.usn2!.`1esn`.usn2?,Filter(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8).@usn5?,Any(@usn6 In 00 =~.9e-12 =~usn1 Where `` Ends With .9e-1 Ends With 9e-12)._usn4!.`2esn`._usn4 Optional Match `2esn`=(_usn3 :_usn3:_usn3{@usn6:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where `2esn` Is Not Null Is Not Null"), + octest:ct_string("With Distinct `5esn`[$`4esn`] As @usn6,count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) =~Filter(_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789) =~[`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]|.9e12 Starts With #usn8 Starts With 00],[_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] As usn2 Limit All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6)"), + octest:ct_string("Merge @usn5=((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})-[`6esn`? *..0xabc{``:$_usn4[Null]}]->({usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`6esn` {_usn3:$_usn4 Contains .12e-12})) On Create Set None(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).`5esn`?.`3esn`! =[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]},`8esn` =Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]],None(`` In $_usn3 Is Not Null Where 7.0e-0 =~$123456789 =~`8esn`).`3esn` =Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1]) On Match Set Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3|`4esn` Starts With .0e0 Starts With usn2).`3esn`?.`4esn`!.`8esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct),_usn4+=0X7[$999...12e12][12..`2esn`],`7esn` =6.0e0 In 12 Detach Delete $`8esn`[..1e1][..``],0e0 Ends With 1e1 Ends With 0Xa,0x0[#usn8...1e-1]['s_str'..$`6esn`] Return *,`2esn` Is Not Null Is Not Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Order By 12.0[$1000..][123456789..] Descending,$`1esn` Starts With Count(*) Starts With $`8esn` Ascending Skip $`` Ends With 6.0e0 Limit $`8esn`[..1e1][..``]"), + octest:ct_string("With Distinct *,`2esn` Is Not Null Is Not Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Order By {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} Desc,{`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]] Ascending Detach Delete (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)] Detach Delete None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1) Ends With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1),1e-1 Starts With usn2 Starts With 12e-12 Union Return Distinct *,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,false[12e-12..][usn1..] Order By Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]) Desc Limit $`1esn`[`3esn`..]"), + octest:ct_string("Merge _usn3=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) On Create Set `7esn` =$`7esn` Is Null Is Null,Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1]|12 Contains usn2 Contains $usn2).usn2? =`1esn` Ends With 7.0e-0 Ends With $usn1,None(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12)._usn4 =.1e-1[@usn6..] Union All With Distinct $usn2 In usn1 In 1e-1 Limit 0.12[07..3.9e-1] Where 0[$`1esn`..`8esn`] Detach Delete {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} Is Not Null Is Not Null,`6esn`[`5esn`..][0.12..] Match ({`4esn`:7 Is Null Is Null})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})"), + octest:ct_string("Return Distinct 10.12e12[12e12..0X7] As #usn8,.9e-12[01][Count(*)] As _usn3"), + octest:ct_string("Delete `4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Ends With None(`` In $_usn3 Is Not Null Where .9e1[...12e12]),`2esn`[0xabc..][$_usn3..],9e0[..1e1] Merge (:@usn5{usn2:$usn1[$12..]})-[usn1?*]->(:#usn7:_usn3{#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) On Create Set `8esn` =$12[01] Union All Create #usn8=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Detach Delete $_usn3 In $`7esn` In $`3esn`,All(`` In $_usn3 Is Not Null Where Count(*) Is Not Null Is Not Null)[..(`5esn` :`3esn`{#usn8:$_usn4[Null]})<-[:#usn8|:`4esn`{usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})<-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(#usn8 {`3esn`:123456789 Contains .1e-1 Contains .12e12,`1esn`:$`3esn` =~4.9e12 =~$7})],`1esn` =~0 =~_usn4 Union Remove usn1($@usn5[...9e-1][..$usn1],$`3esn` Ends With 010 Ends With $`7esn`).`3esn`,Any(_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8).``.#usn8!,Filter(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4).``?.usn1! Delete ()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)],.9e-1 Is Null,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 123456789 Ends With _usn4) =~{usn2:$``[`6esn`][00],#usn7:.12e12[$12..4.9e12][11.12e-12..9e12]} =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`5esn` Is Null Is Null)"), + octest:ct_string("Create ((:`7esn`)),((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2)) Remove All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`).`3esn`?._usn4!._usn4,Filter(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])._usn4? Create `2esn`=((:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]}))"), + octest:ct_string("Remove _usn3:#usn7:_usn3,Single(`8esn` In 01234567[..0.0][..false] Where 0e0 Starts With $1000 Starts With `2esn`).usn1?,Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 7.0e-0 =~$123456789 =~`8esn`).#usn8? Union All Unwind 01234567 Is Not Null As `` Union All Merge ``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010})"), + octest:ct_string("Detach Delete Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 07[.0e0][3.9e-1]) Contains Extract(`` In $_usn3 Is Not Null),$`4esn` Ends With 0e-0 Remove Single(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12).`6esn` Return Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3) Starts With `2esn`(Distinct) Starts With (`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}),7.0e-0[3.9e-1..`1esn`] As `8esn`,9e1 Is Not Null As #usn8 Limit `7esn` Ends With 9e-1 Ends With usn1"), + octest:ct_string("Return Distinct *,`2esn` Starts With $`7esn` Starts With _usn4 As `3esn` Order By .9e0 Is Null Asc,0 Is Not Null Desc"), + octest:ct_string("Unwind .1e-1 Contains 1e1 Contains $`6esn` As @usn6"), + octest:ct_string("With *,Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]),0x0 Starts With $`5esn` Starts With 9e-12 Order By 0.0[4.9e12..][00..] Ascending,Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07) Desc Where $`8esn` In 9e-12 In 3.9e-1 Union All Match ((#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[`3esn`?:`5esn`]->(`2esn` )) Where 12e12[true..][$`2esn`..]"), + octest:ct_string("Remove {@usn6:0X7 Starts With 1e1 Starts With $12}.#usn8?.usn1.@usn5!,Extract(usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|0e0 Ends With 1e1 Ends With 0Xa).``?,@usn5:`3esn` Union Merge `7esn`=(`7esn` :usn1)-[`6esn`? *0Xa..7{`4esn`:$`2esn` Ends With $`8esn`}]->({usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]-(`1esn` :``:usn1{_usn4:.1e1 Is Null Is Null}) On Match Set `6esn`+=$`2esn` Starts With .12e-12 Starts With .0e-0,_usn4+='s_str' Ends With $usn1,#usn8:_usn4 On Match Set Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 999 Starts With .9e12 Starts With 3.9e-1).`6esn`.@usn6!._usn4? =`4esn`[0.0..][.1e-1..],Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).@usn5! =9e1 Contains 4.9e12 Contains .9e0,`1esn`+=00[0e-0...9e-1][1e-1..``] Union Merge #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})) Match ({`4esn`:7 Is Null Is Null})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})"), + octest:ct_string("Return *,$999 Order By _usn3[`2esn`..10.12e12][9e1..true] Descending Skip $`2esn` Ends With $`8esn` Limit All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],.1e-1 Is Null,.9e12[$usn2..][7..] As `2esn` Limit _usn4 Is Null Is Null Where .12e-12 Ends With $`7esn` Merge ``=(({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})) On Create Set usn2:usn2,usn1+=0xabc[$`4esn`..][`8esn`..],#usn7+=Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12])[..None(_usn3 In ``[$``..] Where Null[`2esn`..])][..{`3esn`:.0e-0 Starts With $#usn7 Starts With _usn3,usn2:`6esn` In 9e-12}] On Match Set #usn7 =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct) Union All With 6.0e0 Is Null Is Null As @usn6 Limit Count ( * ) Starts With 10.12e12 Starts With `` Where `3esn`[3.9e-1..$`5esn`] Unwind Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 's_str'[12][00])[`1esn`(Distinct $0[$`7esn`..$`3esn`]['s_str'...0])..] As @usn6 Create ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}))"), + octest:ct_string("With Distinct *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Remove Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $@usn5 =~.12e-12).`4esn`?,Single(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]).`8esn`? Union Detach Delete $`8esn`[$usn2..] Return Count ( * ) Starts With 10.12e12 Starts With `` Skip Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)] Union All Match @usn6=((:_usn3:_usn3{`5esn`:`2esn` Is Not Null Is Not Null,`7esn`:2.9e1})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0)),`8esn`=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Return #usn7[`5esn`..`2esn`][$`4esn`...1e1] As _usn4,8.1e1 Is Not Null,$_usn3 Is Not Null Order By $`6esn`[.9e1..][`5esn`..] Ascending,#usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Desc,Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Ascending Optional Match `3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})),`6esn`=((#usn7 )) Where 9.1e-1 In #usn8"), + octest:ct_string("Match ((`` :`5esn`)),`7esn`=({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) Union All Detach Delete {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})"), + octest:ct_string("Unwind 123456789 Contains .1e-1 Contains .12e12 As `6esn` Optional Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Where .0e0[1e1..][01234567..]"), + octest:ct_string("Delete Extract(usn2 In .0e0[$`6esn`..] Where 010|0e-0 Contains _usn4 Contains 1e-1)[{#usn7:_usn4 Ends With .0 Ends With 7,#usn8:`` Ends With .9e-1 Ends With 9e-12}],.12e12[`7esn`][#usn8],Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)[{_usn3:$0 Starts With 010}] With *,(`5esn` :`2esn`:`8esn`)-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]}) Is Null Is Null As `8esn` Skip {#usn7:$usn2[1e-1]}[(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)..][(usn1 :`2esn`:`8esn`)<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]})..] With 1000[Null..] As `1esn`,.1e1 Starts With $7 Order By Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Ascending,$`7esn` Contains 0X7 Asc,$_usn4 Is Not Null Ascending Limit .0e0[$`1esn`][.9e-12] Union Delete 0X7[Count(*)][.9e0],`1esn` In 12e-12 In 1e-1,010 Unwind $999 As `` Union All Merge `8esn`=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2})) On Match Set ``+=0.12['s_str']"), + octest:ct_string("Merge ((`7esn` :usn1$`6esn`)-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(`7esn` :`2esn`:`8esn`)-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1)) Union All Create (:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[`6esn`?:`4esn`|:@usn5{usn1:00,`1esn`:.0e0[1e1..][01234567..]}]->(`3esn` ),`1esn`=((:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[usn1 *12..0Xa]->({`5esn`:07 Starts With usn1 Starts With 010})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})) With Distinct 9e12 Starts With `4esn` Starts With .9e-1 As @usn6 Order By {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} Ascending,01 Ends With \"d_str\" Asc,1000 Is Null Is Null Ascending Limit 0e0 Starts With $1000 Starts With `2esn`"), + octest:ct_string("Delete $usn2 In usn1 In 1e-1,$999[1000..1.9e0] Unwind .9e-1 Is Null As `2esn` Union Delete Count ( * )[12e-12],{`5esn`:false,_usn3:.9e-12 Starts With .0e-0 Starts With usn2} Is Null,$`2esn`[..12e12][..0]"), + octest:ct_string("Remove (:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})-[#usn8?*..]->(`` :#usn8{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})<-[usn2:`8esn`|:`2esn`]->(usn2 :`8esn`:#usn7).#usn8?,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]].#usn7 Match (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`))"), + octest:ct_string("Remove All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]).`1esn`? Union Create ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})),_usn3=((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Remove {@usn5:Count(*)}.@usn6!.`5esn`.usn2!,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2).`8esn`?._usn3!.`8esn`,None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1)._usn4.#usn8! Remove Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `2esn` Starts With $`7esn` Starts With _usn4).``?,Extract(`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|$_usn4[Null]).`7esn`"), + octest:ct_string("Merge ((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Union Create `5esn`=(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}),((@usn5 :usn1)-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})) Unwind $``[`5esn`..][`2esn`..] As `8esn`"), + octest:ct_string("Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01[.9e-12..]].#usn7!.#usn7!.usn1!,{_usn3:@usn6 In 3.9e-1 In 9e-12}.`3esn`._usn3! Create @usn6=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}))"), + octest:ct_string("Return Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],`2esn` Is Not Null Is Not Null Skip $123456789 Starts With Count ( * ) Limit Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..] Merge `1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null Union Detach Delete 6.0e0 In 12"), + octest:ct_string("Detach Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..],.1e-1 Contains 1e1 Contains $`6esn` With *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By .12e-12 =~9e12 =~1e-1 Desc,11.12e-12 =~$`4esn` =~.12e12 Descending Limit [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null Where `2esn` =~usn1 Union All Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})),((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) With [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..] Where $1000 Contains 01234567 Contains 0X7 Create ((usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]->(:usn1{usn1:Count(*)[0.12..2.9e1]})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})),(:usn1{``:.9e1[..`5esn`]}) Union All With {usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])],@usn5 Ends With 's_str' Ends With 01 As `7esn` Limit 1000[_usn3..`8esn`] Remove [`` In 0.12[3.9e-1] Where 07 =~7.0e-0 =~`8esn`].`8esn`"), + octest:ct_string("Remove All(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).``!,{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null}.usn2? Create (usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]-(:_usn4{_usn3:010 Starts With 0.0 Starts With .0e0})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})"), + octest:ct_string("Unwind (_usn4 {usn1:`3esn` Ends With `6esn`})<-[``?:#usn8|:`4esn`]-(:usn1{@usn5:Count(*)}) Ends With Extract(`` In $_usn3 Is Not Null Where .9e1 Contains Null|.9e1[..`5esn`]) As `2esn` With Distinct *,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e1[..Count(*)][..7.0e-0]) =~[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 01[Count(*)..0e-0][7..$`2esn`]] =~Single(usn2 In .0e0[$`6esn`..] Where 01[1e-1]),usn1 Ends With 12 As `` Limit `7esn` Ends With `7esn` Ends With $`3esn` Where @usn6[01][.9e0] Unwind 0e0[.12..][3.9e-1..] As `2esn` Union All Merge ((`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010})) On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] With 11.12e-12 Is Null Is Null As `4esn`,#usn8 Starts With 11.12e-12 Starts With $`3esn` As `2esn` Skip 123.654 Ends With 0Xa Ends With .12e12 Union All Create ((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})),`5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))"), + octest:ct_string("Unwind \"d_str\"[12e12..][4.9e12..] As `2esn` Remove Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7).``?,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null).@usn5?,[`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|`1esn`[Count ( * )][5.9e-12]].@usn5 Union Return Distinct count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0])[_usn3(8.1e1[usn2..$1000][$7..0x0],false[..12e-12][...9e1])..] As @usn6,.0e-0[0e0..00][.9e1..12] As `1esn`,Count ( * ) Starts With 10.12e12 Starts With `` As `5esn` Order By 5.9e-12[9e0..] Ascending,0x0 Asc Skip 0Xa[$usn2..] With {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[..`8esn`(010[@usn5..123.654],8.1e1[usn2..$1000][$7..0x0])][..{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1}] As _usn3,@usn6[..$`3esn`][..4.9e12] As #usn8,0e-0[...9e12] As @usn5 Where $`4esn` In 123456789 In `5esn` Union All Detach Delete (:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]),Count(*) Starts With $_usn4 Merge `2esn`=((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)]"), + octest:ct_string("Match `1esn`=(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))) Merge (usn2 {_usn4:$999 Ends With .9e-12})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})"), + octest:ct_string("Unwind .1e1 Starts With $`7esn` As usn1 Detach Delete $usn1[$7..][$0..] Delete 0Xa Ends With #usn8 Ends With usn2,#usn8[3.9e-1.._usn3],_usn4 In `3esn` In 7.0e-0 Union Create `5esn`=(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}),((@usn5 :usn1)-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})) Unwind $``[`5esn`..][`2esn`..] As `8esn` Union Match `7esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Return *,.9e0 Is Null As _usn4 Order By {`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-12 Is Not Null Is Not Null)..None(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)][[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']|12e12[..$`8esn`][...0e-0]]..`4esn`(_usn4 Is Not Null Is Not Null,_usn4['s_str'..])] Descending,.9e-12[0e0...9e-1] Asc Optional Match `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),((_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))"), + octest:ct_string("With Distinct `6esn`[`5esn`] As usn1,$`3esn` Starts With 0Xa As @usn6 Limit $`8esn`[#usn7][.9e1] Where 9e12[$#usn8..9e-1][$999..$`4esn`] Merge (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))) Match (`` :#usn8{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}),`5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Union Merge `1esn`=((({``:_usn3[$_usn3][usn1]})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(#usn8 {_usn3:$usn2 In usn1 In 1e-1})<-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(_usn3 :#usn8)))"), + octest:ct_string("Remove None(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999).`3esn`?.#usn7?.`1esn`,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']).`2esn`!,{`2esn`:$`8esn` In 9e-12 In 3.9e-1}.`6esn`? Remove All(`8esn` In 01234567[..0.0][..false] Where $@usn5[$#usn8..][_usn3..]).`8esn`!.`6esn`! Create _usn3=((usn2 {`4esn`:12e12 Is Not Null})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4})) Union With Distinct *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Skip `` =~123456789 Limit Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Where 12 In 1000 In \"d_str\" Delete 10.12e12 In `3esn` In $usn2 Match ((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2})) Union Create _usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})))"), + octest:ct_string("Merge ((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Create Set `6esn`(Distinct .9e-1[3.9e-1]['s_str'],9e0 =~9e1 =~.12e12).@usn5?.`1esn` =123456789 Ends With $@usn6 Ends With 0.12 Return Distinct false[..12e-12][...9e1] As `1esn`,$usn1 Contains `7esn` Contains .9e12 As `8esn`"), + octest:ct_string("With *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By .12e-12 =~9e12 =~1e-1 Desc,11.12e-12 =~$`4esn` =~.12e12 Descending Limit [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null Where `2esn` =~usn1 With *,{`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As #usn7,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Limit [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]][{`2esn`:$`8esn` In 9e-12 In 3.9e-1}..{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}][Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..])..Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Union Return 123456789 Contains .1e-1 Contains .12e12 As usn1 Order By 4.9e12[1e1..'s_str'][Count(*)..0X7] Asc,9e12 Is Null Is Null Ascending Skip #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(`5esn` In 12[0xabc..][$0..] Where .0e0[1e1..][01234567..]) Limit 1e1 Union With Distinct *,9.1e-1 =~.12 =~0e-0 As `1esn` Order By 9e-1 Starts With 123.654 Starts With .9e1 Descending,$`8esn`[$``..$`1esn`][9e-12..$7] Descending Skip \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"] Limit $`5esn` Is Not Null Where .9e1[#usn7..] With *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5 Is Null With Distinct *,All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Starts With 10.12e12 Starts With #usn7(false =~4.9e12),0e0[`4esn`] Where 1e1 Ends With Null Ends With `7esn`"), + octest:ct_string("Match `3esn`=((@usn6 :`6esn`:`3esn`)<-[`1esn`? *0X0123456789ABCDEF..0{`4esn`:9e1 Ends With .9e0}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})),({usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) Create (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Match usn1=(:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}) Where $`6esn`[$_usn4][01]"), + octest:ct_string("Create (((`6esn` :`5esn`{usn2:`8esn` Is Null})-[usn1?]-({@usn6:``[$``..]})<-[ *0x0..{`3esn`:$@usn6 Is Not Null Is Not Null}]-({``:_usn3[$_usn3][usn1]}))) Create ({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]})"), + octest:ct_string("Match `2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Where .0e0 =~5.9e-12 =~`7esn` Unwind 12.0[..Count(*)][..5.9e-12] As `1esn` Union Optional Match #usn8=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`3esn`=({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})<-[?{_usn3:00[$`6esn`]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}) Where .9e1[12] Remove ({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[ *07..{#usn8:`1esn`[1000][Null]}]-(usn1 :`2esn`:`8esn`).`5esn`?,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"]._usn4,(:`7esn`{`8esn`:$usn2[0e0][$7],_usn3:.9e-12[0e0...9e-1]})-[_usn4?:``|:`3esn`]-(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn1? *0X0123456789ABCDEF..0{_usn4:00[0e-0...9e-1][1e-1..``]}]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6!"), + octest:ct_string("Merge (((`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0))) Union All Optional Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),`5esn`=(`8esn` $12)<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}) Where 123456789 In 9e-12 In false Union All Create ({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})-[`4esn`?:`6esn`|#usn7]->($@usn6),(((@usn6 {`8esn`:999[..@usn5][..`1esn`]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]}))) Detach Delete {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null,$`4esn` =~0e0 Optional Match `2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),usn2=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where 0e0[.12..][3.9e-1..]"), + octest:ct_string("Detach Delete .1e1[..0][..010],Extract(usn2 In .0e0[$`6esn`..]|$@usn6 Contains Count ( * ))[`2esn`(usn1[12e-12])..][(`8esn` :usn2)<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})..],`7esn` Unwind true Is Null As #usn8 Merge ((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))"), + octest:ct_string("Delete .9e1 Contains `8esn`,None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null) Create @usn5=({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Union Match usn2=(((_usn4 :`7esn`{@usn6:.12e-12[999...12]})-[#usn7? *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null}))),#usn8=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Create `7esn`=((#usn7 )) Union All Detach Delete 12e12 Starts With 9e1 Starts With $`4esn`,.9e1[#usn7..] Create (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`2esn`=(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]})-[`3esn`? *..0xabc{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})"), + octest:ct_string("Merge `4esn`=(((`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})-[``]-(`7esn` :``:usn1{`1esn`:0e0 Starts With $1000 Starts With `2esn`,@usn6:@usn6 In 3.9e-1 In 9e-12})-[@usn5*{`7esn`:`3esn` Starts With _usn4}]->(#usn8 :_usn4{_usn3:.0 Is Null Is Null})))"), + octest:ct_string("With *,.9e0 Starts With @usn6 Where #usn7[5.9e-12][00] Merge usn1=(`` {_usn4:9e0[..1e1]})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}) On Create Set `5esn`(Distinct $`2esn`[8.1e1],Count ( * ) Is Null Is Null).`7esn`!.`8esn`? =$``[7..]"), + octest:ct_string("Unwind .1e1[..0][..010] As `5esn` Union All Create `7esn`=({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}),`2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Union Return 12e12 =~#usn7 =~.9e-1,All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null As @usn6 Order By Extract(`8esn` In 01234567[..0.0][..false] Where .12e-12[$@usn6..5.9e-12]|$`3esn` Starts With 0Xa) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e1 Contains 4.9e12 Contains .9e0) Starts With Single(`` In $_usn3 Is Not Null Where $@usn6 =~$`2esn` =~9e1) Descending,$`` Contains 00 Contains 123456789 Asc With Distinct $123456789 Is Null Is Null As #usn8,@usn6[..$`3esn`][..4.9e12] As #usn8,1.9e0[$12][``] As `5esn` Order By `1esn` Ends With 7.0e-0 Ends With $usn1 Desc Limit $`2esn` Ends With $`8esn` Create `6esn`=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0})))"), + octest:ct_string("Return `3esn` Contains $`8esn` Contains 0e0 As usn2,1e-1 =~0.0 =~9.1e-1 Order By 7.0e-0[3.9e-1..`1esn`] Asc,#usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Desc,0.12[.12e-12] Ascending Skip 12 Contains usn2 Contains $usn2 Unwind `5esn`[$`4esn`] As `4esn` Union Optional Match (`4esn` :`6esn`:`3esn`) Where 8.1e1 Is Null Is Null Match usn2=(((_usn4 :`7esn`{@usn6:.12e-12[999...12]})-[#usn7? *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null}))),#usn8=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Remove Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0).`6esn`?.`2esn`!,{``:@usn6 In 3.9e-1 In 9e-12,`3esn`:$`` Is Not Null Is Not Null}.@usn5?.`3esn`!.`2esn`,Filter(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).``.`8esn` Union Match `5esn`=(({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})-[:``|:`3esn` *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})),``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Create usn1=(@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),#usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) With *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `5esn`,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null) Starts With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * )) Starts With (_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) As usn1 Skip Count(*)[0.12..2.9e1] Limit (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)] Where .9e1 Starts With `4esn`"), + octest:ct_string("Delete 0X7[Count(*)][.9e0],`1esn` In 12e-12 In 1e-1,010 Unwind $999 As `` Union With Distinct *,Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As `5esn`,0xabc =~7.0e-0 =~4.9e12 Order By (#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Desc Where @usn6[.9e12..0e0] Unwind $_usn3 Is Not Null As `5esn` Union All Create @usn6=((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null}))"), + octest:ct_string("Merge (`6esn` :`8esn`:#usn7{`4esn`:00 Is Not Null Is Not Null,`4esn`:7 =~$`5esn`}) On Match Set `8esn`+=0x0 Starts With 01234567 On Match Set #usn8 =[`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7),`8esn`+=$999 =~`6esn`,@usn5 =Extract(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..]|.9e12[..$usn1][..10.12e12]) Starts With Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]) Union All Remove Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]).usn2.@usn5!"), + octest:ct_string("With Distinct .9e0 Is Null Is Null As #usn7,All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Where 5.9e-12[$`4esn`]"), + octest:ct_string("Detach Delete $`7esn`[..12.0][..0e0] Create (({usn2:#usn7[10.12e12..][\"d_str\"..]})-[?:`8esn`|:`2esn` *..7]-(`4esn` :#usn8{#usn8:_usn4[7][8.1e1],#usn7:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})),(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})))"), + octest:ct_string("Remove None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where .9e1[...12e12]).@usn5,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01[.9e-12..]].#usn7!.#usn7!.usn1! Return `6esn`(usn1 Is Not Null,123456789 =~6.0e0)[Single(_usn3 In ``[$``..] Where Null[..07])..][{_usn3:010[9e0..9e1][$_usn4..$12],`3esn`:7.0e-0[$usn2..0.12][$``..0]}..] As #usn7 Skip .0[01..`5esn`] Limit Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]) Create (((:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[@usn5?:`4esn`|:@usn5 *1000]-(`` :usn2)-[@usn5{@usn5:$`4esn` Ends With 0e-0}]->(`7esn` {`2esn`:usn2 Ends With .0}))) Union All Unwind Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0|12[0xabc..][$0..]) Contains [`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .12[$`2esn`..usn2][.9e-1.._usn3]] Contains Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]) As #usn8"), + octest:ct_string("With Distinct *,$12[.9e-1] As `6esn`,`6esn`[010...9e-12] As `5esn` Order By 123456789[\"d_str\"..] Descending,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending,12e-12[`7esn`..][5.9e-12..] Asc Where 07[.0e0][3.9e-1] Merge (((`7esn` :usn1)<-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(_usn3 :#usn8)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`2esn`:`8esn`))) Union Delete `2esn`[..9.1e-1][..0xabc],`6esn`[`5esn`..][0.12..],0.0[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])..] Merge ((`5esn` :`2esn`:`8esn`)<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})) On Match Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] Return Distinct {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As ``,$`8esn`[12.0..][4.9e12..],.1e-1 Ends With @usn6 As @usn6 Order By 01[..01] Desc,$123456789 Is Null Is Null Desc,Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Asc Skip #usn8 =~.9e-12 =~$usn1"), + octest:ct_string("Return Distinct 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By $7 In .9e1 In $`` Desc,$`6esn` Starts With `4esn` Descending,8.1e1 Starts With .9e12 Starts With `7esn` Desc Skip 12.0 Is Null Is Null Optional Match #usn8=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`3esn`=({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})<-[?{_usn3:00[$`6esn`]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}) Where $``[`6esn`][00] Union With Distinct *,$`` Is Not Null Is Not Null,12e12[..123456789][..false] Skip 12e-12 Ends With @usn5 Ends With $`2esn` Limit .9e-12[..$`7esn`][...9e-1] Union All Create (((`6esn` :`5esn`{usn2:`8esn` Is Null})-[usn1?]-({@usn6:``[$``..]})<-[ *0x0..{`3esn`:$@usn6 Is Not Null Is Not Null}]-({``:_usn3[$_usn3][usn1]}))) Create ({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]})"), + octest:ct_string("Return Distinct *,1.9e0 Ends With 0Xa Ends With $12 As `7esn`,All(`` In 0.12[3.9e-1] Where `7esn`)[(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(`4esn` :_usn3:_usn3)<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999})][`8esn`(#usn7 Ends With $#usn7 Ends With #usn7,7.0e-0[`6esn`..])] Order By 9e-12 In usn2 Asc,.9e-1 Ends With `8esn` Asc,$usn2[.1e1..][.0e-0..] Desc Limit 00 Return *,$`5esn`[true],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Skip $`1esn` =~0.0 Unwind {usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) As usn2 Union Delete `2esn` Is Not Null Is Not Null,$0 =~01234567,[`7esn` In .12e12[Count(*)..] Where \"d_str\" =~9e-12 =~`5esn`] Is Null Is Null Merge `2esn`=((:`3esn`{_usn3:10.12e12 In `3esn` In $usn2})<-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]->(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})) Unwind $999 In 0.0 As `1esn`"), + octest:ct_string("Merge ({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}) Return *,0 Starts With 0Xa Starts With $0 Order By None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4) Asc,$``[`5esn`..][`2esn`..] Desc,0e-0[$`2esn`][8.1e1] Asc Detach Delete (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)]"), + octest:ct_string("With Distinct 0x0 Starts With $`5esn` Starts With 9e-12 Order By Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7) Descending Skip [@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null][..`1esn`(Distinct `5esn` Contains `6esn`,`3esn` Contains $`8esn` Contains 0e0)][..Single(`5esn` In 12[0xabc..][$0..] Where 1000[_usn3..`8esn`])] Limit false[..12e-12][...9e1] Where 00 Is Not Null Is Not Null Union All Remove Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7).#usn7!,(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12}).``!.`` Detach Delete {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} =~Filter(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]),2.9e1[0..$@usn5][`7esn`..$`1esn`],All(usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null])[``($_usn3[1e-1..],.12e12[Count(*)..])][None(_usn4 In Count(*)[9e1..][12e-12..] Where 123456789 Ends With _usn4)]"), + octest:ct_string("Optional Match (#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`) Where 999 Ends With $123456789 Ends With $_usn4 Remove Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`).`1esn`!.`4esn`._usn4?,`7esn`:_usn3:_usn3,(:_usn4{``:$_usn3[1e-1..]})-[@usn5?:`8esn`|:`2esn`]-(`2esn` :_usn3:_usn3).#usn7.`1esn` Delete (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Starts With `7esn`(Distinct $`5esn` Is Null Is Null,$`4esn` Ends With 0e-0) Starts With Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 5.9e-12 Ends With 1e1 Ends With false),None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),4.9e12 =~8.1e1 =~$`8esn` Union Merge `8esn`=(`6esn` :``:usn1) On Create Set `7esn`:`8esn`:#usn7,(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(usn2 :@usn5{`8esn`:00[$`6esn`]}).#usn7.@usn5 =@usn5 Ends With 's_str' Ends With 01,None(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12).#usn7! =$999 Is Not Null With Distinct *,(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]})[Extract(`` In $_usn3 Is Not Null Where .0e-0 =~12e-12)..[`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6]] Order By false =~4.9e12 Asc,$123456789 Is Not Null Asc Limit Null In 0Xa In .9e-1 Where 0[$`1esn`..][9e12..] Create (((`2esn` :`6esn`:`3esn`{@usn5:Count(*)[.0e0]})-[usn1?:usn1|:#usn8*..]-(`7esn` {`3esn`:.9e-1 Is Null})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))),@usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})"), + octest:ct_string("Optional Match `3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})),`6esn`=((#usn7 )) Where 9.1e-1 In #usn8 With Distinct *,{`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null) Order By 4.9e12 Contains .12e12 Contains 0xabc Asc,$usn1 Is Not Null Desc Skip {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null) Where _usn4[9e0..$#usn8] Remove {usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7}.`3esn`!,(:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}).`3esn`?,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where usn2 Ends With 10.12e12).`3esn`! Union Unwind 2.9e1[...9e-12][..0] As usn2 Return Distinct *,`4esn`(Distinct 01[..0.12],$`8esn` Is Null) Contains All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]),Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} As `3esn` Limit Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null Union Create (`3esn` :`4esn`:`7esn`)-[_usn4?:``|:`3esn`]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]}),_usn4=((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12}))"), + octest:ct_string("Return *,_usn4['s_str'..] As `2esn`,Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Order By .0e0[1e1..][01234567..] Descending,5.9e-12[2.9e1][9e0] Desc Skip Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7) Return Distinct .9e1[#usn7..] Order By 00 Ascending Union Remove (`1esn` :``:usn1{_usn4:.1e1 Is Null Is Null})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`}).@usn6"), + octest:ct_string("Return 0 Contains $`6esn` Contains #usn7 Limit usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) With 's_str' =~.9e1 =~3.9e-1 As usn2,@usn5 Ends With 's_str' Ends With 01 As `7esn`,.1e1 Starts With 9e0 As #usn7 Where 1000[_usn3..`8esn`] Union All Create #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Unwind Filter(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) Starts With All(`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]) Starts With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`) As `` Remove {`4esn`:$123456789[$_usn3..][$usn2..]}.usn1 Union All Optional Match ((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) Where 07[\"d_str\"..]['s_str'..] Detach Delete 7.0e-0 Is Null Is Null,Count(*)[.0e0] Create @usn6=(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}))),((_usn3 :usn2)<-[`6esn`?:``|:`3esn`]-(usn1 :_usn4))"), + octest:ct_string("Unwind usn2 Starts With usn1 As @usn6 Union Detach Delete .1e-1[..12e12] Union All Unwind Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) As `5esn` Optional Match (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}),`1esn`=(((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[:_usn3|`2esn` *010..]-(`` :usn1)<-[@usn5?:@usn6|:_usn3 *07..{_usn3:$`3esn` Is Not Null Is Not Null,#usn8:usn1[0.12..1000]}]->(`3esn` {usn2:$`7esn`[..12.0][..0e0]}))) Where .0e0[$`1esn`][.9e-12]"), + octest:ct_string("Merge `8esn`=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1}) On Match Set {#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}.`6esn`!.`3esn`! =5.9e-12[$`4esn`],_usn3:`2esn`:`8esn`,#usn7(0e0 Starts With $1000 Starts With `2esn`,Count ( * )[..`8esn`]).@usn5? =.0e0 =~5.9e-12 =~`7esn` On Create Set _usn3+=Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567)..] With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],.1e-1 Is Null,.9e12[$usn2..][7..] As `2esn` Limit _usn4 Is Null Is Null Where .12e-12 Ends With $`7esn`"), + octest:ct_string("Create ((usn1 :usn2{``:$`` Is Not Null})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})),({`4esn`:7 Is Null Is Null})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}) Create `5esn`=((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]})),@usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))) Detach Delete 01[$`4esn`..$_usn4][0e-0..$@usn6],Extract(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|Count(*) Is Not Null Is Not Null)[(_usn4 {#usn7:$`5esn` Is Null Is Null})-[_usn3:usn1|:#usn8 *07..]->(`4esn` :#usn8{#usn8:_usn4[7][8.1e1],#usn7:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})][Filter(`5esn` In 12[0xabc..][$0..] Where .12e-12[$@usn6..5.9e-12])],.9e-1 =~.9e-1 Union All Remove `7esn`:#usn8,`8esn`:`6esn`:`3esn`,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0X7[Count(*)][.9e0]|$`8esn`[$``..$`1esn`][9e-12..$7]].usn2?.usn2? Union All With *,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] As _usn4 Order By 00[$`6esn`] Descending,$``[Count(*)] Desc,$`5esn` Is Null Is Null Ascending Where .9e1[...12e12]"), + octest:ct_string("Remove Any(usn2 In .0e0[$`6esn`..] Where .0e0 In 10.12e12 In $`5esn`).#usn7,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`].``?,Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 01[Count(*)..0e-0][7..$`2esn`]).`4esn`? Merge (((`7esn` {`3esn`:.9e-1 Is Null})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`))) On Create Set `1esn`(Count(*) Starts With $_usn4).`8esn`! =`7esn`(7.0e-0[.._usn4][..0X7],$`5esn`[7..]) Contains [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]],`8esn` =.9e1[Count(*)..$`3esn`],#usn7 =12[0..usn2]"), + octest:ct_string("Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1)._usn3!,Any(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).#usn8? Remove [`5esn` In 12[0xabc..][$0..] Where 12 Is Null Is Null].``?,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).#usn8?.@usn6._usn3 Union All Delete Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 07[.0e0][3.9e-1]) Contains Extract(`` In $_usn3 Is Not Null),Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Merge (((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999}))) Optional Match #usn7=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),`7esn`=((#usn7 )) Union All Optional Match usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})),_usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Where $_usn4 Starts With 0e-0 Starts With 1e-1 Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where $`1esn` Starts With Count(*) Starts With $`8esn` Remove (:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null}).`8esn`?,Extract(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null).usn2"), + octest:ct_string("Unwind $123456789 Contains 1000 Contains 11.12e-12 As `6esn` Detach Delete .12e12 Ends With #usn7 Ends With 2.9e1,Extract(`7esn` In .12e12[Count(*)..] Where true Starts With 2.9e1 Starts With 9e1|12[0xabc..][$0..]) Starts With Extract(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12|0.12[3.9e-1]) Starts With ``(12e12[true..][$`2esn`..]),Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * ))[{`4esn`:12e-12 Starts With .9e12 Starts With 0.12}..(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})] Union Return Distinct *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By 01 Ends With \"d_str\" Asc,$_usn3[$`8esn`..$`4esn`] Descending,Null[12e-12..] Desc Skip None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) =~[@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] Limit $``[0.12..] Unwind 0e0 Ends With `7esn` Ends With usn1 As #usn7 Union Create `3esn`=((`2esn` {``:.0e0[$`6esn`..]})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(`6esn` :`3esn`)<-[`7esn`?:`3esn`|:_usn3 *..0xabc]->(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null})),(usn2 :`6esn`:`3esn`)<-[``? *07..{`8esn`:$usn2[0e0][$7],_usn3:.9e-12[0e0...9e-1]}]-(:`2esn`:`8esn`{`6esn`:7.0e-0 Is Null Is Null,`6esn`:999[0.12..8.1e1]})"), + octest:ct_string("With `3esn`[3.9e-1..$`5esn`] As usn2,0X0123456789ABCDEF Is Not Null Is Not Null As `2esn`,11.12e-12 =~5.9e-12 =~.9e1 As `3esn` Limit {`2esn`:`7esn` Is Not Null,@usn5:#usn8[usn1]} Starts With (`7esn` :`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[_usn4 *999..]->({``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}) Remove @usn6($`` Is Not Null Is Not Null,.9e0 In 9.1e-1 In $123456789).`8esn`,(`7esn` :`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})<-[_usn3:_usn3|`2esn`{`7esn`:0X7[_usn4..1.9e0][Count ( * )..false],_usn4:.9e-12[9e1..8.1e1]}]-({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]}).`3esn`! Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As #usn7 Union Return `1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `4esn` Unwind $usn1[$12..] As `7esn` Merge ((:`2esn`:`8esn`{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3}))"), + octest:ct_string("Create `8esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Remove Filter(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])._usn4?,Single(@usn6 In 00 =~.9e-12 =~usn1 Where 0x0 Contains $`1esn` Contains 0.0).`4esn`,@usn5:`4esn`:`7esn` Merge (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) On Match Set Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12).`4esn`!.#usn8?.`1esn` =1.9e0 =~$`8esn` =~01234567,`1esn` =1000[$`6esn`..12.0]['s_str'..$`3esn`],@usn5 =9e0[$usn2][0] Union All With Distinct $`2esn` Contains 123.654,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] As usn2,.9e-12[01][Count(*)] Order By (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] Ascending Skip $`3esn` Ends With 010 Ends With $`7esn` Union All Detach Delete true Is Null Is Null,$usn2 In usn1 In 1e-1"), + octest:ct_string("Unwind _usn4 Ends With .0 Ends With 7 As `7esn` Union All With *,$_usn3 Contains usn2 Contains 0xabc,(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`)<-[usn2 *1000{usn1:Null Starts With $`4esn` Starts With $#usn7}]->(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})[{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}][{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}] As @usn5 Order By .9e12 Starts With .9e12 Starts With `7esn` Ascending,Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0)[(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..][Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..])..] Desc Where 12e-12[.0..] Union All Create `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) With Distinct *,0 Starts With 0Xa Starts With $0 Order By None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4) Asc,$``[`5esn`..][`2esn`..] Desc,0e-0[$`2esn`][8.1e1] Asc Unwind (`3esn` :#usn7:_usn3)<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) Ends With [_usn3 In ``[$``..] Where @usn5 Ends With 0] As _usn4"), + octest:ct_string("Match (`1esn` :_usn3:_usn3$0)-[`7esn`?:`5esn`]->(`1esn` :`6esn`:`3esn`)-[ *0x0..{`3esn`:$@usn6 Is Not Null Is Not Null}]-(usn1 :@usn6:_usn4),`6esn`=(:`1esn`)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`) Where `8esn` =~.1e1 =~.0 Match (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Merge usn2=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}) Union Remove {`5esn`:`4esn`[0.0..][.1e-1..]}.usn2! Union All Remove All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where true In $0 In @usn5).`4esn`.`4esn`?.`3esn`,Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where #usn7[10.12e12..][\"d_str\"..]).@usn6.`7esn`!,Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567).`4esn`!.`8esn`!.`4esn` Optional Match `4esn`=(((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})<-[`8esn`?:usn2|:``]->(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})-[`3esn`?:`5esn` *07..{#usn7:9e-1 =~6.0e0 =~``}]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))),((@usn6 )<-[`2esn`{`4esn`:.0e0[$`6esn`..]}]->({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})-[`6esn`:#usn7|:`8esn` *01234567]-(`5esn` :`2esn`:`8esn`)) Where 0xabc Is Not Null Create `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0}))"), + octest:ct_string("Optional Match (((_usn3 :_usn3:_usn3)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})-[#usn7? *00..123456789]->(usn1 :@usn6:_usn4))),`2esn`=((`5esn` :`1esn`)) With `8esn`[Null...12e12][0..11.12e-12] Order By `4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Ends With None(`` In $_usn3 Is Not Null Where .9e1[...12e12]) Descending,2.9e1 Starts With 12e-12 Starts With 0.0 Asc,.1e-1 Starts With 1000 Starts With $`1esn` Descending Limit usn2[..7.0e-0] Union All Optional Match `3esn`=(@usn5 :`7esn`),((#usn8 {_usn3:$usn2 In usn1 In 1e-1})) Where usn2[..10.12e12][..$`7esn`]"), + octest:ct_string("Delete 1000 Is Not Null Is Not Null,'s_str' Ends With 0.0 Ends With .12e12 Union All Match (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),`1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) Return Distinct (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7),\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"] As @usn6 Skip 1e-1[..2.9e1] Limit [usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null]][(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})..] Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0 Starts With 0Xa Starts With $0|#usn8 =~.9e-12 =~$usn1].`4esn`,`5esn`:_usn3:_usn3,(`8esn` :_usn3:_usn3{`6esn`:9e0[..1e1],@usn6:0x0 =~$7 =~Null})<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`8esn` *1000]->(usn1 :_usn4).``"), + octest:ct_string("Remove Extract(`7esn` In .12e12[Count(*)..] Where Count(*)[..Count(*)][..9e0]|Null =~true =~.1e-1)._usn4?,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where usn1 Is Not Null).usn1!.@usn6! Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]|$`5esn`[7..])._usn3.`4esn`?.`1esn`!,{usn1:01[.9e-12..],@usn6:$`5esn` Ends With $#usn7 Ends With .0e-0}.`5esn`? Return Distinct Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,07 =~_usn4 =~.9e12 As `` Order By 5.9e-12[9e0..] Ascending,#usn8[`2esn`] Desc,`7esn` Ends With 9e-1 Ends With usn1 Ascending Skip $#usn7 Starts With #usn7 Limit $123456789[$_usn3..][$usn2..]"), + octest:ct_string("Create _usn4=(`` :usn1)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)"), + octest:ct_string("Remove (:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}).`3esn`?,Extract(usn2 In .0e0[$`6esn`..] Where usn2 Ends With .0)._usn4?.@usn5._usn3,{usn2:.9e-1 Is Not Null Is Not Null}.@usn6! Remove Any(`` In $`5esn` Starts With 0X7 Starts With 1e1).usn2?,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5[$``]].`6esn`!,Single(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12).`7esn`! Delete [usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},`7esn` Contains $7 Contains 07 Union Create #usn8=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})),`3esn`=(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set usn1+=9e0[..1e1] On Match Set usn1+=Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],@usn6+={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) Union Unwind [`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] In Any(`7esn` In .12e12[Count(*)..] Where 0Xa[9e0]) In [usn2 In .0e0[$`6esn`..] Where .12e12[`7esn`][#usn8]|7 Is Null Is Null] As @usn6"), + octest:ct_string("Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where `1esn`[9.1e-1]|$`8esn` Starts With `2esn`).``!.`5esn`.``! Union Unwind {@usn5:true Contains 0x0} In Extract(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$1000[..01234567][..0X0123456789ABCDEF]) As `2esn` Return *,.0e0 Is Null Is Null As _usn4,[_usn4 In Count(*)[9e1..][12e-12..] Where $_usn3[1e-1..]][[`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0]][None(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)] As `6esn` Skip 1000[..0e0][..$`6esn`] Limit usn1[..10.12e12][..7] Return Distinct *,0 Starts With 0Xa Starts With $0 Skip Null Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null)"), + octest:ct_string("Remove `3esn`(Distinct 9e12[...12e12][..$`2esn`],.9e1[12]).`2esn`!.`7esn`?"), + octest:ct_string("With Distinct _usn4 In `3esn` In 7.0e-0 As #usn7 Order By $`` Ends With 6.0e0 Descending,$1000[..01234567][..0X0123456789ABCDEF] Ascending Limit .1e-1[.9e12..usn2][`4esn`..$_usn3] Where $_usn4 Contains 123456789 Merge `8esn`=(`6esn` :``:usn1) On Create Set `7esn`:`8esn`:#usn7,(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(usn2 :@usn5{`8esn`:00[$`6esn`]}).#usn7.@usn5 =@usn5 Ends With 's_str' Ends With 01,None(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12).#usn7! =$999 Is Not Null Remove (#usn7 {`5esn`:.12e12[$0]})<-[`6esn`?:``|:`3esn`]->(`5esn` {`6esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]}).`2esn`?,[`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1|true[9e-12...0e-0][`5esn`.._usn4]].usn2!,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..]).`4esn`!._usn4! Union Delete $12[01],.9e-12 =~$`2esn` =~`4esn` Remove {#usn7:.0e0[1e1..][01234567..],@usn5:`2esn` Is Not Null Is Not Null}.#usn8?.`7esn`?,`1esn`:``:usn1,$12.`8esn`!.usn2!._usn4"), + octest:ct_string("With *,None(_usn3 In ``[$``..] Where .0e0 In 10.12e12 In $`5esn`) Is Null Is Null As ``,Count ( * ) Starts With 10.12e12 Starts With `` Skip Count(*)[..Count(*)][..9e0] Where $`6esn` Starts With `4esn` Union All With Count ( * ) Starts With 10.12e12 Starts With `` Order By Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Ascending,4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Ascending,$`2esn`[$1000][2.9e1] Desc Remove {`4esn`:01[..01]}.`8esn`?.`8esn`?.usn1?,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`2esn`[010..`5esn`][``..0.12]).`4esn` Create (:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[`6esn`?:`4esn`|:@usn5{usn1:00,`1esn`:.0e0[1e1..][01234567..]}]->(`3esn` ),usn1=((:_usn3:_usn3{usn1:.9e1[12]})) Union Remove {@usn6:$0 Starts With 010}.@usn6?,[`8esn` In 01234567[..0.0][..false] Where 6.0e0 Is Not Null|`1esn` Starts With 999 Starts With 3.9e-1].@usn5!,[`2esn` In .12e-12[$@usn6..5.9e-12] Where $`6esn` Starts With `4esn`|$`5esn` Is Null Is Null]._usn3"), + octest:ct_string("Return Distinct *,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null As usn2,1.9e0[$12][``] As `5esn` Merge (((`7esn` :usn1)<-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(_usn3 :#usn8)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`2esn`:`8esn`))) Match (((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) Union Return Distinct 0[..$@usn5] As `` Skip $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Limit 1e1 Is Not Null Is Not Null"), + octest:ct_string("Optional Match (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where 123.654 Starts With 2.9e1 Remove All(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1).usn1!.`7esn`.`2esn`!,Filter(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8).@usn5?,(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})._usn3.@usn6!.@usn5"), + octest:ct_string("Return 123.654 Starts With Count ( * ) As `4esn`,(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})-[usn1?:usn1|:#usn8*..]-(`7esn` {`3esn`:.9e-1 Is Null})[..Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 's_str'[12][00])][..usn2($#usn8[...9e1])],Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..] As `8esn` Order By 12 Contains _usn3 Descending Skip 12 In 1000 In \"d_str\" Remove Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567).`4esn`!.`8esn`!.`4esn`,(:`1esn`{`7esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[`7esn`*..]-(`7esn` :usn1).`6esn` Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where ``[..$#usn7]|2.9e1).`1esn`?,None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]).`3esn`? Union Match _usn3=((usn2 {`4esn`:12e12 Is Not Null})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4})) Delete 0.12['s_str'],[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Create `3esn`=(({usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7}))"), + octest:ct_string("With _usn3[`2esn`..][0x0..] As usn1 Order By 01234567 Starts With `4esn` Starts With 10.12e12 Ascending,0Xa In 0.12 In $#usn7 Descending,$999 Is Not Null Desc Skip $@usn5 Ends With $@usn6 Ends With \"d_str\" Limit (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Where 11.12e-12 =~$`4esn` =~.12e12 Optional Match (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Where 999[0.12..8.1e1] Delete $`2esn` Ends With 2.9e1 Ends With $usn1 Union All Merge (`` {_usn4:9e0[..1e1]})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}) On Match Set Any(`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]).usn1!.``?.``? =false =~4.9e12,usn1 =7.0e-0[3.9e-1..`1esn`] On Match Set {@usn5:12e-12 Contains .9e-1 Contains 9e-1}.``! =usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]),@usn6 =0.0 Is Not Null Is Not Null,[`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0]._usn3?._usn3? =.1e1 Starts With .1e-1 Optional Match usn1=((`8esn` :_usn3:_usn3)<-[_usn4? *..7{#usn7:Count ( * )[7]}]->(`6esn` :`7esn`)<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)) Where .9e-12[_usn4..#usn8][9.1e-1..0.12]"), + octest:ct_string("Remove `1esn`:usn2,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where false[$1000..$@usn6][7..12]].`5esn`? Detach Delete Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 07[.0e0][3.9e-1]) Contains Extract(`` In $_usn3 Is Not Null),$`4esn` Ends With 0e-0 Match `5esn`=(`8esn` $12)<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}),`7esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where `1esn`[11.12e-12..]"), + octest:ct_string("Detach Delete .0e-0[3.9e-1][.12e12] Union All Remove (`2esn` {usn2:7.0e-0 Starts With $7 Starts With true})-[{usn2:$`8esn`[#usn7][.9e1],`7esn`:@usn5[$``]}]->(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}).#usn7.usn1!,`5esn`(.9e-1 Ends With `8esn`,0xabc In 10.12e12).#usn7?,Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7).``!.usn2? Create `1esn`=((:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[usn1 *12..0Xa]->({`5esn`:07 Starts With usn1 Starts With 010})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}))"), + octest:ct_string("Return Distinct Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2|0e-0[...9e12])..[`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]|.9e1[..`5esn`]]][Extract(`5esn` In 12[0xabc..][$0..] Where .9e0 Is Null Is Null|$7 Is Null Is Null)..Any(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null)] As `6esn` Order By Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12e12 Starts With 4.9e12 Starts With 0e0)[Extract(`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0|12e12[..$`8esn`][...0e-0])] Descending,07 Starts With usn1 Starts With 010 Ascending Union Merge (((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) On Create Set _usn3 =5.9e-12 Contains `3esn` Contains Null Create _usn3=((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]})) Return Distinct usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]) As usn1 Order By .9e-12 Starts With .0e-0 Starts With usn2 Ascending Skip `4esn`[..$#usn7][..0X7]"), + octest:ct_string("Return 9e12[7.0e-0] As #usn7 Skip Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Limit $usn2[4.9e12..false][.0e-0..00] Union All Return *,07 =~7.0e-0 =~`8esn` Order By 9e12[...12e12][..$`2esn`] Ascending Limit Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) Remove None(_usn3 In ``[$``..] Where 0xabc[7.0e-0..][12e12..]).`3esn`.usn2?.@usn5!,Filter(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])._usn3?"), + octest:ct_string("Create usn1=(:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}) Union All Delete #usn8 In $#usn8 In \"d_str\",01[..01] Return Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,07 =~_usn4 =~.9e12 As `` Skip 12e12 =~#usn7 =~.9e-1 Merge ((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) On Create Set @usn6(9.1e-1[$`4esn`..][$`4esn`..]).@usn5?.#usn8!.`2esn` =usn1[12e-12],`4esn` =$`6esn`[..12e12][.._usn3] On Match Set Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999).#usn8? =07 Is Null Is Null,`4esn` =[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null][..`1esn`(Distinct `5esn` Contains `6esn`,`3esn` Contains $`8esn` Contains 0e0)][..Single(`5esn` In 12[0xabc..][$0..] Where 1000[_usn3..`8esn`])],@usn5 =All(usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null])[``($_usn3[1e-1..],.12e12[Count(*)..])][None(_usn4 In Count(*)[9e1..][12e-12..] Where 123456789 Ends With _usn4)] Union All With Distinct *,.9e1 Starts With `4esn` As `5esn`,Count ( * )[`7esn`..] Order By $``[`4esn`..][0.0..] Desc,07 =~7.0e-0 =~`8esn` Descending Skip .9e-12[01][Count(*)] Where 1e-1 =~0.0 =~9.1e-1 Merge (`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6) On Match Set count(@usn6[..$`3esn`][..4.9e12]).`1esn`! =(`1esn` :`3esn`)-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}) In Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) In {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]} On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)]"), + octest:ct_string("Return *,`8esn` Is Null As `6esn` Order By [usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc,0x0 =~$7 =~Null Desc,12e-12[9e0..1.9e0] Asc Create @usn5=((@usn5 :`1esn`)),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null})"), + octest:ct_string("Create `7esn`=(`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Optional Match `3esn`=(@usn5 :`7esn`),((#usn8 {_usn3:$usn2 In usn1 In 1e-1})) Where usn2[..10.12e12][..$`7esn`] Create ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((`` :``:usn1)) Union Remove Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn`[..0x0][..\"d_str\"]).#usn8!"), + octest:ct_string("Match (usn1 :usn2),usn2=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Where @usn6[.9e12..0e0] Unwind 0e0 Ends With 0X7 Ends With .1e1 As _usn4"), + octest:ct_string("Create ((usn1 :usn2{``:$`` Is Not Null})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})),((`7esn` {usn2:12.0[..123456789][..01]})-[_usn3{#usn7:Count(*)}]->(`2esn` :_usn3:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``}))"), + octest:ct_string("Remove Any(`5esn` In 12[0xabc..][$0..] Where `3esn` Starts With _usn4).`3esn`?,[_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]].#usn8? Unwind $@usn5 Is Null Is Null As @usn5 Create `6esn`=((_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))"), + octest:ct_string("With Distinct .9e12[$usn2..][7..] As `2esn`,4.9e12[..Null] As `` Limit .9e-12 =~$`2esn` =~`4esn` Detach Delete 1e1 Is Not Null,1e1 Ends With Null Ends With `7esn`,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1])[Filter(_usn3 In ``[$``..] Where Null[`2esn`..])..][Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)..] Match usn2=(((_usn4 :`7esn`{@usn6:.12e-12[999...12]})-[#usn7? *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null}))),#usn8=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Union Return 0.0[..Null][..9e-12] As `1esn`,$0 =~01234567 As `2esn` Order By All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Asc,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Skip (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null) Remove _usn3:`1esn`,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']).`2esn`! Union Merge (({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`))"), + octest:ct_string("Unwind .9e1[Count(*)..$`3esn`] As `5esn` Unwind .0e-0[0e0..00][.9e1..12] As usn2 Union Remove `3esn`.`2esn`? Delete Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12),$usn2[4.9e12..false][.0e-0..00],usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) Detach Delete .0[usn2.._usn4],.12[.0e-0..] Union Optional Match `8esn`=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(usn1 :usn1),`7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) Where `7esn` Ends With 9e12 Create `2esn`=((:`4esn`:`7esn`{`3esn`:`1esn`[9.1e-1]})<-[?:@usn6|:_usn3 *07..]-(#usn8 :`2esn`:`8esn`{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:@usn5[...9e12]})-[? *..0X7{_usn3:00[$`6esn`]}]->({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})) Optional Match `7esn`=(`` {_usn4:9e0[..1e1]}),usn2=(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})"), + octest:ct_string("Create (`1esn` :``:usn1{usn1:123.654 Ends With 0Xa Ends With .12e12})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``}) Union All Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct),Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..],Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) Unwind 0e0 Ends With `7esn` Ends With usn1 As _usn3 Union All Merge ({_usn4:$`3esn` In 's_str' In $#usn7}) On Match Set Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 999 Starts With .9e12 Starts With 3.9e-1).`6esn`.@usn6!._usn4? =`4esn`[0.0..][.1e-1..],Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).@usn5! =9e1 Contains 4.9e12 Contains .9e0,`1esn`+=00[0e-0...9e-1][1e-1..``] On Match Set Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1)._usn4 =$7 Contains _usn4 Contains $`1esn` Remove All(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).``!,{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null}.usn2? Optional Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),(({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})<-[`4esn`:_usn4|`1esn` *123456789..0x0{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})-[_usn3 *..7]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]}))"), + octest:ct_string("Delete 12e-12[`7esn`..][5.9e-12..],#usn7[`5esn`..`2esn`][$`4esn`...1e1] Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1 Union All Remove _usn3:`1esn`,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']).`2esn`! Match ((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Where 0[$`1esn`..][9e12..] Delete 12 Is Null Is Null,[usn1 In 7.0e-0[.._usn4][..0X7]|7.0e-0 Is Null Is Null] =~#usn7 =~`4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`),$`2esn` In 0X7 In 3.9e-1 Union All With Distinct Null =~9e12 As #usn7 Where @usn6 In 3.9e-1 In 9e-12 Create `1esn`=({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[@usn6?:@usn5]->(usn1 :``:usn1{``:#usn8 In $#usn8 In \"d_str\",`2esn`:'s_str' Ends With 0.0 Ends With .12e12})"), + octest:ct_string("Unwind 0.0[0x0..0.12]['s_str'..false] As `2esn` Merge `8esn`=((`4esn` )<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})) On Match Set None(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).@usn5! =$`2esn`[8.1e1] On Create Set #usn8+=12 In Count(*) In 0e0,`8esn` =$usn2[.1e1..][.0e-0..],`5esn`+=true[`6esn`..10.12e12] Remove {`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567}._usn3!,Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]).@usn6?"), + octest:ct_string("Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})) Merge `6esn`=(usn2 {_usn4:$999 Ends With .9e-12})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``}) On Create Set Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3|`4esn` Starts With .0e0 Starts With usn2).`3esn`?.`4esn`!.`8esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct),_usn4+=0X7[$999...12e12][12..`2esn`],`7esn` =6.0e0 In 12 On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} Optional Match (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),`1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) Where `1esn` Starts With 999 Starts With 3.9e-1"), + octest:ct_string("Return {`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``} In All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) In {`6esn`:999[...12e12][..0]} As `6esn` Order By Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7) Contains {`1esn`:$`1esn`[.9e0][$_usn3]} Contains None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]) Ascending,{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Asc,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) Asc Limit Count(*) Delete [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]],All(`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])[None(`` In $_usn3 Is Not Null)..][All(`8esn` In 01234567[..0.0][..false] Where .12e-12[$@usn6..5.9e-12])..] Union Delete Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) With All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..] As `3esn` Order By (usn1 {`6esn`:$`5esn`[true],usn2:1e1 Is Not Null Is Not Null})-[`3esn`?:`5esn` *07..{#usn7:9e-1 =~6.0e0 =~``}]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}) Is Not Null Is Not Null Desc,{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1} In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) Descending,$usn2 Contains $`4esn` Contains true Ascending Where false =~4.9e12 Union Remove {#usn8:``[$``..],`1esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}.#usn8.#usn8?,`4esn`:`6esn`:`3esn`,`7esn`(9.1e-1 Contains 0xabc).`7esn`"), + octest:ct_string("Return All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Union Remove Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 01[..0Xa]).`1esn`!.`1esn`! Merge #usn8=(usn1 :_usn3:_usn3) Optional Match `5esn`=(:``:usn1{_usn3:00[$`6esn`]})-[?:_usn3|`2esn`]->(`1esn` :`7esn`),`7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) Where 1e-1 =~0.0 =~9.1e-1"), + octest:ct_string("Create `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set usn1+=9e0[..1e1] On Match Set usn1+=Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],@usn6+={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) Create (:_usn3:_usn3{`5esn`:`2esn` Is Not Null Is Not Null,`7esn`:2.9e1})<-[`7esn`*..]-(`7esn` :usn1),(`1esn` :``:usn1{usn1:123.654 Ends With 0Xa Ends With .12e12})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``}) Union All With Distinct `8esn`[6.0e0..][$`1esn`..],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Unwind (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)] As `` Union Unwind 2.9e1[...9e-12][..0] As usn2 Return Distinct *,`4esn`(Distinct 01[..0.12],$`8esn` Is Null) Contains All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]),Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} As `3esn` Limit Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null"), + octest:ct_string("Create ((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})),#usn8=(#usn7 :usn2)<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}) Optional Match (_usn4 :`7esn`{@usn6:.12e-12[999...12]}) Where Null Starts With 9e1 Starts With `` Union With All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Where .9e1 Contains Null"), + octest:ct_string("Remove [`2esn` In .9e-12[0e0...9e-1]|$1000[$1000...9e0]].`1esn`._usn3!,{@usn5:`2esn` =~usn1,#usn8:$`` Is Not Null Is Not Null}.@usn5!,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0 Starts With 0Xa Starts With $0].`7esn`! Return Distinct 10.12e12[12e12..0X7],false Starts With 3.9e-1,$`4esn` In 123456789 In `5esn` As @usn5 Skip 123456789[Count(*)] Union Detach Delete {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})] Union Delete 9e12[.0e-0] Merge #usn7=((`7esn` {`3esn`:.9e-1 Is Null})<-[`2esn`? *..7]->(#usn8 {_usn3:$_usn4 Contains .12e-12})) On Create Set #usn7:usn2,({usn1:usn2 Ends With 10.12e12})<-[`8esn` *1000]->(#usn8 ).usn2! =$`` In `2esn` In 07,`5esn` =`8esn`[6.0e0..][$`1esn`..] On Create Set #usn7 =_usn4 In `3esn` In 7.0e-0,[_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8].`5esn`! ={_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12),usn1 =({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null}"), + octest:ct_string("With Distinct None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn`[..0x0][..\"d_str\"])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1])..Single(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])] As `4esn`,Null Is Not Null Is Not Null Order By {`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1} In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) Descending,$`6esn` In `2esn` Ascending,usn2 Starts With usn1 Descending Skip 12e-12[.0..] With Distinct *,.9e-12[9e1..6.0e0][`1esn`..9e0] As @usn6,$`6esn` In $`3esn` In 9e1 Order By 5.9e-12 Ends With 1e1 Ends With false Descending,$`2esn` Starts With .12e12 Starts With 3.9e-1 Ascending,`6esn`[`6esn`..] Descending Skip $_usn4 =~$_usn4 =~2.9e1 Where .9e0 Is Null Is Null Remove Any(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).`2esn`!,({``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-(:`3esn`{_usn4:Count(*) =~`5esn` =~$usn2,`7esn`:$123456789[$_usn3..][$usn2..]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`).@usn6.@usn5? Union Remove #usn7:`3esn`,Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]).usn2!.@usn6!.`1esn`?,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1].`6esn`._usn4?._usn4! Delete $12[01],.9e-12 =~$`2esn` =~`4esn`"), + octest:ct_string("Unwind .9e-12[_usn4..#usn8][9.1e-1..0.12] As #usn8 Union Unwind Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] As usn2 Merge ((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3))"), + octest:ct_string("Unwind (`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As `7esn` Union All Return Distinct $`2esn` Contains 123.654,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] As usn2,.9e-12[01][Count(*)] Order By (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] Ascending Skip $`3esn` Ends With 010 Ends With $`7esn` Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}))"), + octest:ct_string("Return Distinct `` =~$`5esn`,`2esn`[..3.9e-1],1e1 As `2esn` Order By (:`3esn`{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1})<-[?:@usn6|:_usn3 *07..]-({_usn4:01234567[6.0e0][$usn2]})<-[`2esn`?:`2esn`|`7esn` *..0X7{@usn5:$12 Contains $`7esn` Contains .0}]->(:``:usn1) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]) In {usn1:`7esn` Is Not Null} Descending,.9e12[..$usn1][..10.12e12] Descending Skip @usn6[..$`3esn`][..4.9e12]"). diff --git a/test/performance_query_legacy_SUITE.erl b/test/performance_query_legacy_SUITE.erl index 1f5ff1b..a22ee0d 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 : 15.12.2016 +%%% Created : 29.12.2016 %%%------------------------------------------------------------------- -module(performance_query_legacy_SUITE). @@ -38,1003 +38,1003 @@ all() -> %%-------------------------------------------------------------------- test_query(_Config) -> - 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]}))))"). + octest_legacy:ct_string("Load Csv From Shortestpath((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))[[`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`}[@usn5..{@usn6}]|{1000}[..`5esn`][..9e12]]..][{_usn4:`8esn`[.12e12..]}..] As usn1 Fieldterminator \"d_str\" Create Unique #usn8=Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))),`2esn`=(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1}) Merge Allshortestpaths(({`4esn`:{7}[0x0][1e1]})) On Create Set #usn8 =Null In {7} Union Remove ({`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}).#usn8,None(_usn3 In `8esn`[_usn4] Where $`4esn`[usn2..]).@usn6?.`1esn` Union All Foreach(@usn6 In {usn2} Contains {0}| Create Unique Shortestpath(((:usn1{#usn8:2.9e1[{`2esn`}]})<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``))),((_usn3 {`3esn`:`3esn` Is Null,`1esn`:$`8esn`[0x0][.9e0]}))) With Distinct *,$`5esn`[{@usn6}..{`7esn`}],.9e-12[.12e12..][0Xa..] As _usn3 Order By {12}[true..][7..] Ascending,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Asc,({#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]})<-[`8esn`*]-(#usn8 )[..Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn`[0X0123456789ABCDEF..][`8esn`..]|$_usn3 =~'s_str' =~12)][..`1esn`(Distinct .9e1[$`1esn`..][$``..])] Ascending Skip {#usn7} Is Not Null Match ``=Shortestpath(({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})),#usn7=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 ))) Using Join On usn1,`1esn`,_usn4 Using Join On `5esn`,usn1,`7esn`"), + octest_legacy:ct_string("Foreach(`1esn` In [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12][All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3])..][Case When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else @usn5[9e-1..{`1esn`}] End..]| Remove Single(`6esn` In 010[{`1esn`}..] Where $usn1[9e1][{999}]).usn1!,Single(usn1 In {#usn7} =~.12e12 =~9e0 Where ``[$#usn7]).`2esn`)"), + octest_legacy:ct_string("Create `5esn`=Shortestpath((({_usn3:.9e12 Contains 0 Contains $0}))),usn2=(`8esn` :@usn6:_usn3)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) With Distinct 0.0[$999][`6esn`] Order By $`2esn`[`8esn`..] Descending,({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}) Contains Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Contains All(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]) Descending Limit $`5esn` =~Count(*) =~1.9e0 With Distinct Count(*)[Null..][01234567..] As `1esn`,{#usn7} Is Not Null As `7esn`,10.12e12[usn2] Union Start ``=Node:`7esn`({#usn7}) Where {`7esn`} =~\"d_str\" =~{``} Create Allshortestpaths((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})),`8esn`=(((`3esn` $0)-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})))"), + octest_legacy:ct_string("Optional Match #usn8=({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)}),`7esn`=(((usn2 :`2esn`:`4esn`{`6esn`:Count(*)[$7]})<-[_usn3:@usn5|:#usn7 *..07]-({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000})<-[?:_usn3{#usn7:3.9e-1[..$1000][..0.12]}]-(_usn3 {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}))) Using Index @usn5:`5esn`(usn2) Union All Unwind {`8esn`} Contains $@usn5 As _usn4"), + octest_legacy:ct_string("Unwind $`` =~.1e-1 As usn1 Union All Match `6esn`=(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Where 0[..{#usn7}][..$_usn3]"), + octest_legacy:ct_string("Merge Allshortestpaths((((`4esn` :``{_usn4:$_usn3[0x0][{0}],@usn6:9e-12 Is Not Null Is Not Null})-[`3esn`:@usn6|:`4esn`]-(`1esn` :usn2{`8esn`:12.0[...0e0]})-[usn2:_usn3 *0xabc..12]->(usn1 :usn1{#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})))) On Match Set Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999}).`5esn`.#usn8!.`3esn`? =$12 In {usn2},`4esn`(Distinct .9e0[07..][4.9e12..]).`4esn`! =Reduce(#usn7=#usn8[\"d_str\"..usn2],#usn7 In .0e-0 In 12|`` Ends With 1.0 Ends With usn1) Ends With [_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3]] Ends With Shortestpath((((:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[`2esn`?:`8esn`|:#usn8]->(`` )<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)))),`5esn`+=7 Starts With 9e-12 Load Csv With Headers From $`1esn`[4.9e12..][_usn3..] As `2esn` Fieldterminator 's_str' Foreach(_usn4 In Shortestpath((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5))[Allshortestpaths((#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}))]| Delete 9e12 Is Not Null Is Not Null,.9e1 Is Null Is Null Delete $1000[$`2esn`..])"), + octest_legacy:ct_string("Create (((@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[`7esn`?:`2esn`|`5esn` *0]->({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000}))),((#usn8 :@usn5)<-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 )<-[?:`1esn`|:`1esn`{`5esn`:9e1[0.0]}]->(`8esn` )) Remove .1e-1._usn3"), + octest_legacy:ct_string("Load Csv With Headers From $`8esn` Starts With {`7esn`} As #usn8 Fieldterminator \"d_str\" Union Merge @usn6=((`1esn` :`8esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})) On Create Set #usn7 =0.0[$`4esn`],count({123456789} Starts With $_usn4 Starts With 0x0).#usn7? =5.9e-12 Contains {12} Contains {#usn8} On Create Set `3esn` =$`1esn`[4.9e12..][_usn3..] Load Csv With Headers From 0Xa In 1.0 In $@usn5 As @usn5 Fieldterminator \"d_str\" Start @usn6=Relationship:usn2({usn2}) ,`7esn`=Node:#usn8(@usn5={@usn6}) Union Delete 1e-1 Contains 0.0,1e-1 Starts With .1e1 Starts With 12.0 With $@usn5[.9e-1],.1e1 In 12.0 In $``,@usn5[9e-1..{`1esn`}] As `` Order By Filter(usn1 In $@usn6 Is Null Is Null Where {`3esn`}[#usn7]) Is Null Is Null Desc,`4esn`[12.0..][9.1e-1..] Descending,$_usn3 In `2esn` In `3esn` Asc Limit 1.9e0 =~.0e0 =~0X7 Foreach(usn2 In (`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End]| Start _usn4=Relationship( {#usn8}) ,`4esn`=Node:usn2(usn1={_usn3}))"), + octest_legacy:ct_string("Merge usn2=Shortestpath((`6esn` {`3esn`:Count ( * )[_usn4..]})<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(`5esn` :``{_usn3:$_usn4[..$999],`7esn`:0X0123456789ABCDEF Ends With {1000}})) Merge `7esn`=(({_usn4:1e-1[$`4esn`]})) On Create Set `3esn` =.9e-12[{@usn5}] Union All Unwind Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) As @usn6 Union All Delete 0e-0[..7.0e-0][..{`8esn`}] Remove (`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[{`2esn`:9e1[$``.._usn4][999..`3esn`],usn1:0.0[`7esn`]}]->(#usn8 :`5esn`:`7esn`{usn2})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}).@usn5!,Case When 11.12e-12 Ends With 's_str' Then #usn7 Contains .0e0 Contains $@usn6 When $#usn7 Then `7esn`[1.9e0..5.9e-12][9e0..@usn5] Else 0.12 Is Not Null End.#usn7!"), + octest_legacy:ct_string("Remove Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]).`1esn`.#usn8!,(`6esn` {`3esn`:Count ( * )[_usn4..]})-[#usn8? *0Xa..12]->(`7esn` {#usn8:2.9e1[{`2esn`}]}).#usn8.`3esn`,{usn2:{usn1} In Count ( * ) In 12e12}.`7esn`?.`3esn`! Detach Delete $`6esn`[..01][..{_usn3}],true Contains 0X7 Contains $#usn8 Union Start `2esn`=Rel:`6esn`(`4esn`=\"d_str\") ,`8esn`=Relationship:`8esn`(#usn7='s_str')Where 0e-0 In 0X0123456789ABCDEF In `3esn` Create _usn4=((:@usn5{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null})) Match `7esn`=Allshortestpaths((`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})<-[_usn3? *..123456789{`6esn`:.0e-0[..``][..$7],usn2:{usn2} Ends With {@usn6} Ends With 1000}]-(`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(#usn8 :_usn4:`2esn`{`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})) Using Index ``:@usn5(usn1) Using Scan `1esn`:_usn3 Union Remove (:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[?:`1esn`|:`1esn` *999..123456789]->(_usn3 {`3esn`:`3esn` Is Null,`1esn`:$`8esn`[0x0][.9e0]})-[`6esn`:``|:`7esn` *0{`4esn`:00 Is Not Null Is Not Null}]->(`2esn` {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}).`4esn` Create Unique ``=Shortestpath(((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})-[? *..123456789{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:`7esn`{`5esn`:{`8esn`} Starts With .9e-1 Starts With 1000})<-[_usn3?:`6esn`{_usn4:07[{@usn5}..],usn2:$`4esn` Is Null Is Null}]->(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))),Allshortestpaths((`6esn` :`5esn`:`7esn`)-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 {`2esn`:5.9e-12[0x0..]}))"), + octest_legacy:ct_string("Match _usn4=(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[:`6esn` *..0x0{``}]-(#usn8 :``{usn2:9e1 =~$`8esn` =~10.12e12}) Using Scan @usn5:`5esn` Where 's_str' =~$usn2 =~{7} Create Unique (`1esn` {usn2:.9e-12[.12e12..][0Xa..]}),Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})))"), + octest_legacy:ct_string("Match `3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})),usn1=((`` :`7esn`)) Using Index @usn5:_usn4(usn2) Using Join On `1esn`,`3esn`,`5esn` Union Return Distinct *,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) As #usn8,Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``}) In (_usn4 :_usn3)<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-({#usn7:12e12[.9e12..07]}) In @usn5({1000}[0..]) Unwind .1e-1 Is Not Null As `3esn` Union All Detach Delete .1e-1 Contains .12e-12,{`5esn`:$`6esn`[@usn6...9e-12]}[{usn1:$_usn3[0x0][{0}]}..Filter(_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`])][Case When .12e12 Ends With 07 Ends With 3.9e-1 Then 01234567[\"d_str\"..][$`4esn`..] End..Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End],0xabc Is Null Is Null Start _usn4=Node:@usn6(#usn8='s_str') "), + octest_legacy:ct_string("Load Csv From None(`2esn` In $@usn5 Is Not Null Is Not Null Where usn1 Ends With 11.12e-12 Ends With 5.9e-12) Is Not Null Is Not Null As `` Create Shortestpath(((`7esn` {@usn5:Count ( * )[_usn4..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))) Union Start @usn5=Rel:#usn7(usn1={`6esn`}) Where #usn7 Contains .0e0 Contains $@usn6 Return Count(*) Starts With {usn2} Starts With `2esn` As `3esn`,0.12 Ends With 7 Ends With 12,`5esn`({`5esn`}[01234567..][5.9e-12..],5.9e-12 Is Null Is Null)[Reduce(#usn7={12} Ends With $`3esn` Ends With 0xabc,usn1 In $@usn6 Is Null Is Null|`1esn`[Null][{@usn6}])..@usn5(`3esn` Contains `2esn` Contains {_usn4},2.9e1 In {``})][Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789}))..Any(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`)] As usn2 Delete $`8esn`[0x0][.9e0],12e12[usn2..$`6esn`]"), + octest_legacy:ct_string("Optional Match #usn8=Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))),Shortestpath(((@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})-[@usn5:`6esn` *..00]->(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Using Index `3esn`:_usn4(@usn6) Where @usn6[0x0..][$_usn4..] Load Csv From Any(usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-12[010..{#usn7}][{123456789}..7])[[usn1 In $@usn6 Is Null Is Null Where _usn3 =~{7} =~123.654|`1esn` =~{12} =~{999}]][(`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[#usn8?:`8esn`|:#usn8 *999..123456789]->(`3esn` :usn2)<-[{usn2:{1000}[..{usn1}][..1e-1]}]->(`4esn` {`6esn`})] As `4esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Unwind Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null As `2esn` Union All Remove `8esn`(#usn7[$`8esn`][{`3esn`}],`6esn`[$@usn5][01]).usn1.@usn5.`4esn`?,({``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]}).`1esn`?,None(usn1 In \"d_str\" Contains {@usn6} Where false =~{`8esn`} =~00).`5esn`!.#usn8! Create Unique ((`4esn` :#usn7:`8esn`)<-[:`8esn`|:#usn8{_usn4:$#usn7 Ends With {`5esn`} Ends With 01}]-({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[usn1:#usn7|:@usn5 *999..123456789]->(`5esn` :``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})),(`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}) Foreach(`1esn` In None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..])| Create Unique (((@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?*..]-(`` {`6esn`:1000[{`1esn`}..][$`3esn`..]})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))),Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`))) Union Delete @usn6[0x0..][$_usn4..],1e1 =~{@usn5} =~`7esn`,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]) Is Null"), + octest_legacy:ct_string("Foreach(`7esn` In $`1esn`[..1000][..\"d_str\"]| Create Unique #usn8=((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) Create usn2=Allshortestpaths(((:`8esn`{@usn6:$`6esn`[$_usn3..{1000}],_usn3:0xabc[..{usn1}][..\"d_str\"]}))),#usn7=Shortestpath(()<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]-({`4esn`:.9e12[6.0e0..][@usn5..],``:1.0 Is Not Null})-[`3esn`? *..07]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}))) Optional Match ``=(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}) Using Scan `6esn`:#usn8 Using Index @usn5:@usn6(`5esn`) Union With Distinct [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End As `5esn` Order By `1esn` In 6.0e0 In 12 Descending Limit {`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}} Starts With Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999|$`1esn`[..12e-12][...9e12]) Starts With (`4esn` :`8esn`{12})<-[`2esn`?:`4esn`|:`2esn`]-(`4esn` {`8esn`:5.9e-12[0x0..]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}) Union All With Distinct *,$`5esn`[{@usn6}..{`7esn`}],.9e-12[.12e12..][0Xa..] As _usn3 Order By {12}[true..][7..] Ascending,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Asc,({#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]})<-[`8esn`*]-(#usn8 )[..Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn`[0X0123456789ABCDEF..][`8esn`..]|$_usn3 =~'s_str' =~12)][..`1esn`(Distinct .9e1[$`1esn`..][$``..])] Ascending Skip {#usn7} Is Not Null Start `5esn`=Node:#usn7({usn1}) Where {1000} =~4.9e12 =~9e1 Unwind Case When {usn2} In false Then {`3esn`} Is Not Null Is Not Null When 6.0e0 Is Null Then {`4esn`}[{`3esn`}][$`2esn`] End[exists(Distinct {`3esn`}[#usn7],@usn5 =~$#usn7 =~{usn1})..] As #usn8"), + octest_legacy:ct_string("Create _usn3=(`3esn` :`2esn`:`4esn`) Start @usn5=Node:#usn7(usn1={`6esn`}) ,`4esn`=Node( {``})Where $123456789 Match usn2=(((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(#usn7 :`8esn`))),#usn7=Shortestpath((`1esn` :usn2{`8esn`:12.0[...0e0]})-[?:`1esn`|:`1esn` *..0x0{@usn6:.0e-0 In 12}]-(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})) Using Scan `8esn`:`4esn` Where $`7esn` In $@usn5 Union All Create Unique `2esn`=((_usn3 :`6esn`{usn2:.9e1 In .1e-1,usn2:1e-1 Contains 0.0})) Union All Remove Case $`8esn`[0x0][.9e0] When 9e1 Starts With $@usn6 Starts With 0e-0 Then {#usn8} Starts With {`2esn`} Else 9e-12[$7..] End.#usn7 Load Csv From $``[Count(*)..{12}] As usn2 Fieldterminator 's_str'"), + octest_legacy:ct_string("Load Csv From Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] As `3esn` Fieldterminator \"d_str\" Union All Merge `3esn`=Allshortestpaths(((`4esn` :`8esn`{`4esn`:4.9e12 Starts With {``},`8esn`:$12 Ends With {_usn4} Ends With $`8esn`})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`)<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))) On Match Set `3esn` =0x0 Ends With #usn8 Ends With .9e-1,`7esn`+=`4esn` Ends With 9e12 Ends With {`5esn`} Load Csv From {@usn5:$@usn5 Is Not Null Is Not Null} Contains None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[..0xabc][..{`6esn`}]) As `6esn` Return Distinct Case When 9e-12[010..{#usn7}][{123456789}..7] Then $999 =~false =~{`8esn`} When {0}[.0e-0][$`2esn`] Then 12e12 Is Not Null Is Not Null Else false[..usn2][..999] End[Allshortestpaths(((({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(@usn6 :@usn5)-[`2esn`? *7{`5esn`:false[..usn2][..999]}]-(`4esn` :@usn6:_usn3))))..All(usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null)][.9e0..`4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`)] Order By $`5esn` Is Null Desc,8.1e1[..9.1e-1][...9e1] Ascending,[`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]) Asc Skip @usn5[{`1esn`}..][Count ( * )..] Union Start `5esn`=Node:`1esn`(@usn6={`4esn`}) ,`7esn`=Node:@usn6(`3esn`={``})Where {@usn6} In 9e12"), + octest_legacy:ct_string("Unwind Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 10.12e12[usn2]|usn1 Ends With 11.12e-12 Ends With 5.9e-12)[Reduce(usn1={usn1} Is Not Null,usn1 In \"d_str\" Contains {@usn6}|{`3esn`} =~$`` =~$`8esn`)..Single(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)][[usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 00 =~`4esn` =~.9e-12]..Single(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12)] As @usn5 Return *,$1000[..0e-0][..010] As _usn4,Any(usn1 In $@usn6 Is Null Is Null)[Case {_usn3}[{0}...9e-1][9e-1...0e0] When 010[..9e-1][..0X7] Then $0 Ends With $usn1 Ends With {``} End..Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]})))] As `4esn` Order By 9e-12[0e0..@usn5] Ascending,{``:01234567[10.12e12][0Xa]} Is Null Is Null Descending,{_usn3} In $#usn8 In $12 Asc Skip Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789)[..All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 1e1 =~{@usn5} =~`7esn`)][..Case 07[..$`5esn`] When 00[$_usn4][$`1esn`] Then {#usn7}[.12e-12] Else `5esn` Contains 0 Contains $12 End] Start ``=Node:_usn4({999}) ,``=Node:#usn8(usn2={@usn5}) Union All Foreach(`` In Filter(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Starts With (#usn7 :``)-[`3esn`{`4esn`:12e12[.9e12..07]}]-(`1esn` :``{_usn4:$@usn5 =~{`3esn`}})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}) Starts With Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)| Create ((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})),`4esn`=((`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[?$999]-(`8esn` :@usn6:_usn3)<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})) Start usn1=Rel:`8esn`({`3esn`}) ,#usn8=Rel:`1esn`(`4esn`={@usn5}))"), + octest_legacy:ct_string("Load Csv From {@usn6} Is Null As _usn3 Union All Merge `8esn`=Allshortestpaths(((`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})-[`2esn`?:@usn6|:`4esn` *010..0{`4esn`:Null[$`3esn`..][`1esn`..],_usn3:6.0e0[$#usn7..$1000]}]-(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]})-[`3esn`:#usn8|:``{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}]->(:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]}))) On Match Set `` =6.0e0[$12..0.12],#usn7+=7 In 1e1 In {``} On Match Set `` =$usn2 Starts With $999 Starts With .0e0,All(usn1 In \"d_str\" Contains {@usn6} Where $1000 Is Null)._usn3?._usn4!.`7esn`? ={usn1:$usn1[9e1][{999}],#usn8:0e-0[$``..10.12e12]}[Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End] Create `8esn`=Shortestpath(((:usn1{#usn8:2.9e1[{`2esn`}]})<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``))) Unwind {12}[true..][7..] As @usn5"), + octest_legacy:ct_string("With $#usn8 Starts With 9.1e-1 Starts With {#usn7} As `8esn`,$`1esn` Contains 1000 Contains $123456789 As _usn3 Order By 00[{1000}] Descending,'s_str'[$_usn3..][9.1e-1..] Desc,$_usn4 =~$#usn8 =~{`4esn`} Desc Skip $@usn6[...9e-1] Limit $#usn7[01..2.12][2.12..3.9e-1] Where {#usn7} Starts With .1e-1 Return Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] As #usn8,[`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]),{`7esn`} Is Not Null Is Not Null As `1esn` Order By 00[{1000}] Descending,'s_str'[$_usn3..][9.1e-1..] Desc,$_usn4 =~$#usn8 =~{`4esn`} Desc Skip $``[9e12..] Limit Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[`8esn`(0X0123456789ABCDEF Is Not Null Is Not Null,{usn1} Is Not Null Is Not Null)..][{usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}..] Create Unique `7esn`=Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}))))"), + octest_legacy:ct_string("Using Periodic Commit 07 Load Csv With Headers From $@usn5[.9e-1] As `7esn` Return *,123456789[#usn7..9e-1][10.12e12..{0}] Order By [`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]] Is Not Null Is Not Null Desc,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) Desc Merge usn1=Shortestpath((`1esn` :`7esn`{usn1:3.9e-1 Starts With .9e0 Starts With {#usn7}})<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`6esn` :`4esn`:usn2)-[`1esn`]-(`2esn` :`2esn`:`4esn`{#usn7:0 Starts With `7esn` Starts With 9e0})) On Create Set _usn4+=123456789[_usn4..`1esn`][$`6esn`..{@usn6}],#usn7+=1.9e0[..1.0][..`6esn`]"), + octest_legacy:ct_string("Load Csv With Headers From $0 Is Null As `7esn` Fieldterminator \"d_str\" Detach Delete $_usn3[0X0123456789ABCDEF..][0x0..],0[10.12e12]"), + octest_legacy:ct_string("Unwind $12 =~4.9e12 As `5esn` Merge _usn3=Shortestpath(((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))) On Create Set @usn5 ={``}[$usn2..00][{_usn3}..123.654],_usn4 =Reduce(`3esn`=`7esn`[1.9e0..5.9e-12][9e0..@usn5],`` In `7esn` =~#usn8 =~\"d_str\"|{_usn3}[{0}...9e-1][9e-1...0e0])[Case false Contains {`7esn`} When `3esn` Is Null Then `1esn` Is Not Null Is Not Null Else .9e-1 Is Null Is Null End..][Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999})..],{@usn5:`2esn`}.``! =\"d_str\" Starts With ``"), + octest_legacy:ct_string("Load Csv With Headers From Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[`8esn`(0X0123456789ABCDEF Is Not Null Is Not Null,{usn1} Is Not Null Is Not Null)..][{usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}..] As usn2 Fieldterminator \"d_str\" Union All Load Csv From None(`2esn` In $@usn5 Is Not Null Is Not Null Where {7}[$@usn5..123456789][1e1..1.9e0]) Ends With Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End Ends With {_usn3:$1000 Starts With {@usn6} Starts With $@usn5} As `4esn` Fieldterminator \"d_str\" Union All Load Csv With Headers From 2.9e1 =~{123456789} =~01 As _usn3 Fieldterminator \"d_str\" With Distinct Any(`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]) In Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Skip {usn2} Contains {0}"), + octest_legacy:ct_string("Start #usn7=Rel:@usn6({1000}) ,`5esn`=Node:`1esn`(@usn6={`4esn`})Where Count(*) Starts With 07 Starts With $#usn7 Union Create Unique @usn6=((`1esn` :`8esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))"), + octest_legacy:ct_string("Optional Match `6esn`=(:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[:`2esn`|`5esn`{`8esn`:$`4esn`[$@usn6...12e12]}]-(usn1 {@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]})<-[?:usn1|usn2{#usn8:'s_str'[`2esn`][12.0]}]->(:`1esn`:``),(({`6esn`:3.9e-1[..$1000][..0.12]})-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-(:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})) Using Join On @usn5,_usn4 Using Index `6esn`:`8esn`(`2esn`) Union Match `8esn`=Allshortestpaths(({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})),``=(((#usn7 )-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(`2esn` :@usn5)<-[?:`2esn`|`5esn` *..123456789$1000]-({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}))) Using Scan `8esn`:#usn7 Using Index `3esn`:usn2(`5esn`) Merge Allshortestpaths((`4esn` :@usn6:_usn3)-[?:_usn3{usn2:010[{`1esn`}..],`1esn`:`5esn` Contains 0 Contains $12}]-(@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})<-[ *01234567..{usn1:{12} Contains `8esn` Contains @usn5}]->(`5esn` )) Union All Create Allshortestpaths(((`4esn` :#usn7:`8esn`)<-[:`8esn`|:#usn8{_usn4:$#usn7 Ends With {`5esn`} Ends With 01}]-({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[usn1:#usn7|:@usn5 *999..123456789]->(`5esn` :``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null}))),(`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})"), + octest_legacy:ct_string("Start `5esn`=Node:_usn4(`3esn`={_usn3}) Match ``=Allshortestpaths(((`8esn` :`8esn`)<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))) Using Scan @usn6:usn1 Using Index @usn5:`3esn`(_usn4) Load Csv From Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]) In (`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) In `4esn`($#usn7[01..2.12][2.12..3.9e-1]) As _usn3 Fieldterminator 's_str' Union All Unwind `3esn`[{`4esn`}] As #usn7 Foreach(`1esn` In 07 Ends With {@usn5:.1e1 Is Null Is Null} Ends With Filter(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 1.9e0[.12e-12][9e-12])| Unwind Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`|.9e-12[.12e12..][0Xa..])[{#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}..] As `1esn`) With 0xabc[..Count(*)][..$`5esn`],Case {1000}[..`5esn`][..9e12] When $`8esn` Then Null[$`3esn`..][`1esn`..] End =~None(`` In `7esn` =~#usn8 =~\"d_str\" Where 7 In 1e1 In {``}) =~{`6esn`:usn2 Contains `2esn` Contains {1000}} As `3esn` Order By Single(usn1 In $@usn6 Is Null Is Null Where 0X0123456789ABCDEF Ends With {1000}) In (`1esn` :#usn8:@usn6{usn1:#usn8 Is Null Is Null,_usn3:{`4esn`} In 1000 In {@usn5}})-[``:``|:`7esn`*{#usn8:{#usn7}[.12e-12],`3esn`:1.9e0[`6esn`][`7esn`]}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})-[usn1?:`3esn`|`3esn`*..]->(:usn1) In Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1) Ascending Skip $_usn3[.0e-0..999] Where 3.9e-1 Ends With {usn1} Ends With {`5esn`}"), + octest_legacy:ct_string("Start @usn5=Rel:`8esn`(usn1={#usn7}) ,``=Node:`7esn`({#usn7})Where 00[$``] Optional Match (:usn2)<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:#usn8|:``{#usn8:{_usn4} In 0X7 In 0e0,`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]-(@usn5 ) Union Delete [`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null] =~`6esn`(Distinct 2.9e1[Count ( * )..]),{`3esn`} Is Not Null Is Not Null Union Merge Allshortestpaths(((`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})<-[usn2? *0xabc..12{`6esn`:`8esn`[_usn4]}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]}))) On Match Set usn1 ={`6esn`} In 11.12e-12 In 2.9e1,#usn8+={@usn5} Contains .1e1 Contains {`5esn`},@usn6+={`3esn`}[#usn7] On Create Set @usn6 =$`5esn` In ``"), + octest_legacy:ct_string("Unwind Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})[Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})<-[`5esn`?:`7esn`|usn1{@usn5:9e0[`3esn`][0]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )))..][Case When $#usn7 Contains 3.9e-1 Then .12e12 Starts With 5.9e-12 Starts With `4esn` When {1000}[`2esn`...0e-0][9e-1..0X7] Then 010[...12e-12] End..] As `3esn` With Distinct .0e0[$usn1][0] As ``,0xabc[0Xa..],9e-12 Ends With 9e1 Ends With 4.9e12 As `5esn` Order By $`` Ends With 1e-1 Ends With $@usn6 Ascending Limit .9e0 Ends With $0"), + octest_legacy:ct_string("Unwind .9e12 Is Not Null Is Not Null As _usn3 Merge Allshortestpaths(((`4esn` :#usn7:`8esn`)<-[:`8esn`|:#usn8{_usn4:$#usn7 Ends With {`5esn`} Ends With 01}]-({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[usn1:#usn7|:@usn5 *999..123456789]->(`5esn` :``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})))"), + octest_legacy:ct_string("Foreach(@usn5 In {@usn5} Contains .1e1 Contains {`5esn`}| Return $`7esn` In $`4esn` Order By 0x0 Ends With #usn8 Ends With .9e-1 Descending,$12 Is Not Null Descending,$`` =~$_usn3 Asc Skip {#usn8} Starts With {`2esn`}) Foreach(_usn3 In 01 Is Not Null| Create Unique _usn4=((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})),`4esn`=(({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)) Detach Delete {`1esn`} Contains 1.0 Contains 4.9e12,{999}[..`6esn`],{`3esn`} =~$`` =~$`8esn`) Union Load Csv With Headers From 1000 As @usn6 Fieldterminator \"d_str\" Union All Start usn2=Relationship:@usn6(#usn8='s_str') ,`6esn`=Rel:@usn6(`8esn`='s_str')"), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv With Headers From $`1esn`[4.9e12..][_usn3..] As `2esn` Fieldterminator 's_str' Merge @usn5=(_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]}) On Match Set `7esn`+=$_usn3[0x0][{0}],Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}}))._usn3 =9e0[{7}...0e-0][Null..@usn5],usn1+=Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null Match `6esn`=Shortestpath((((:`6esn`{`3esn`:9e12[..usn2][.._usn3]})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})<-[_usn4 *010..0{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}]-(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})))),Allshortestpaths((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})) Using Scan `1esn`:_usn3 Using Index `3esn`:`2esn`(`7esn`)"), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv From Single(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`)[Case When $999 Is Not Null Then {`3esn`} =~$@usn5 =~`2esn` Else .12e-12 Ends With `2esn` End][[`2esn` In $@usn5 Is Not Null Is Not Null Where $1000[..0e-0][..010]|00[$``]]] As _usn3 Fieldterminator 's_str' Create Unique Allshortestpaths((`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`)) Match ((`8esn` :`2esn`:`4esn`)-[?:#usn7|:@usn5 *12]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}))"), + octest_legacy:ct_string("Delete Count(*) Is Not Null Is Not Null,All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3]) In Allshortestpaths((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]}))) In (`1esn` :`2esn`:`4esn`)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[#usn8]->(`2esn` :_usn3{`6esn`:_usn4[{``}..{`6esn`}][$7..$_usn3],`6esn`:$`4esn` Ends With {999}})"), + octest_legacy:ct_string("Unwind $123456789[{usn1}][.12e-12] As `1esn` Load Csv From {_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}[Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)][[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1]] As `5esn` Fieldterminator 's_str' Detach Delete 8.1e1[usn2..{1000}][0X7..9e12],$1000[_usn4][{@usn5}]"), + octest_legacy:ct_string("With *,\"d_str\" Starts With $`7esn` Starts With 999 As `3esn`,5.9e-12[\"d_str\"..][{`6esn`}..] As #usn7 Skip `2esn`[`7esn`][1000] Limit (@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[`8esn`?:_usn3 *12{usn1:#usn7[.9e0..`3esn`][{`6esn`}..1000],_usn4:$usn2 In #usn7 In #usn7}]-(_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(usn2 :`2esn`:`4esn`)[..Reduce(`2esn`={1000}[..{usn1}][..1e-1],_usn3 In `8esn`[_usn4]|Count(*)[$7])][..{_usn3}] Where .12e-12 Is Null Optional Match Shortestpath(((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})))),_usn3=Allshortestpaths((((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999})<-[``?:@usn5|:#usn7 *..00{#usn8:$`8esn`[...1e-1]}]->(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]})))) Using Index `3esn`:`8esn`(`5esn`) Where .12e12 Ends With 07 Ends With 3.9e-1 Detach Delete .9e-1 Is Not Null Is Not Null,$_usn3[.0e-0..999],0X0123456789ABCDEF Ends With {1000} Union All Create Unique `4esn`=((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})<-[ *01234567..{usn1:{12} Contains `8esn` Contains @usn5}]->(usn1 :@usn6:_usn3)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})),(:`3esn`{@usn5:9e12[..usn2][.._usn3]})<-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]->(:`5esn`:`7esn`{`1esn`:{1000}[..`5esn`][..9e12]})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1})"), + octest_legacy:ct_string("Foreach(`` In Case Count(*) =~01234567 =~.1e-1 When {123456789} Starts With $_usn4 Starts With 0x0 Then .9e-12[usn2] When {`8esn`}[@usn5][$`2esn`] Then 00[$``] End[..Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 999[..$@usn5][..``])][..Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End]| Remove Reduce(`6esn`=$999 =~0x0,@usn6 In 9e12[..usn2][.._usn3]|.9e1 Is Null Is Null).`2esn`,Reduce(@usn5={`3esn`}[01234567][{#usn7}],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|0e0 =~{12} =~{1000}).#usn7!)"), + octest_legacy:ct_string("Create `5esn`=(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})<-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-(@usn5 :@usn6:_usn3{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`2esn` *1000..{`2esn`:{@usn6} In 9e12}]->(:usn1{usn1:true In 0.0,@usn5:{`1esn`} Is Null}),@usn6=(`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[ *0X0123456789ABCDEF]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}) Merge ((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]}))"), + octest_legacy:ct_string("Delete $_usn3 Is Null,9e1[...9e1][..$`6esn`] Union All Create Unique Shortestpath(((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}))),`7esn`=((`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})<-[_usn4?:`8esn`|:#usn8 *01234567..]->(`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(usn2 {`7esn`:.9e12 Contains 0 Contains $0})) Delete {7} Is Not Null,.1e1 Is Not Null Is Not Null,`2esn`[`7esn`][1000] Union Foreach(`1esn` In $usn1 =~.0e0 =~{`4esn`}| Load Csv From $`5esn` Is Not Null As `3esn` ) Create Unique usn2=Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))),@usn6=Allshortestpaths(((#usn7 {`2esn`:`8esn`[.12e12..],_usn3:usn1 =~0Xa =~0})))"), + octest_legacy:ct_string("Create Unique `2esn`=(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1}) With .9e0 Is Not Null,$`7esn` Contains .12e12,false Starts With 0 Starts With 2.9e1 As `4esn` Skip (:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]-(:_usn3{_usn3:010[..9e-1][..0X7]}) Starts With Case When $1000 Starts With {@usn6} Starts With $@usn5 Then `2esn` When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else 12[4.9e12..] End Starts With (_usn4 {`3esn`:.0e-0 In 12})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc}) Create `5esn`=(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}) Union All Create Allshortestpaths(((`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]})-[`1esn`?]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}))) Unwind Shortestpath((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5))[Allshortestpaths((#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}))] As `1esn` Foreach(usn1 In Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000)| With *,$999 Ends With `2esn` Ends With 12.0 As #usn8,All(usn1 In $@usn6 Is Null Is Null Where $`1esn`[4.9e12..][_usn3..])[..@usn5(Count(*)[Count ( * )][{0}],`4esn` =~010)] As `3esn` Load Csv From #usn7 Is Null Is Null As `2esn` Fieldterminator 's_str')"), + octest_legacy:ct_string("Remove @usn6(07[{@usn5}..],$999[usn1..0e-0]).`1esn`?._usn4!._usn3?,[`7esn` In 0.12 Is Not Null Where 0X0123456789ABCDEF In false|_usn3 =~{7} =~123.654].`6esn`.@usn6.usn1,#usn8:`4esn`:usn2 Create @usn5=(((`2esn` :_usn3{usn1:5.9e-12 Is Null Is Null})-[`7esn`?:#usn7|:@usn5 *1000..]->(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]}))) Remove {usn2}.`7esn`?,(:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`2esn` *1000..{`2esn`:{@usn6} In 9e12}]->(:usn1{usn1:true In 0.0,@usn5:{`1esn`} Is Null})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]}).#usn8?.`3esn`!.`2esn`!,Case .12e12[..$123456789] When .12e-12[9e1] Then 1e-1[$`4esn`] When $`8esn` Then 999[..$@usn5][..``] Else $#usn8 Is Not Null Is Not Null End.usn2?.`6esn`._usn3? Union Return #usn8[..'s_str'][..'s_str'] As `2esn`,None(@usn6 In 9e12[..usn2][.._usn3] Where $7) Is Not Null Is Not Null Limit `7esn`[1.9e0..5.9e-12][9e0..@usn5] Foreach(`7esn` In {`5esn`}[01234567..][5.9e-12..]| Detach Delete .12e12[01..{1000}][8.1e1..Count ( * )] Return Distinct Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As @usn6,07 Ends With {1000} Ends With 01234567 Order By Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null) In `4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`) Desc Skip true Contains 0X7 Contains $#usn8) Union All Unwind {usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'} Contains Allshortestpaths((`8esn` :`2esn`:`4esn`)-[`2esn`?:``|:`7esn` *1000..]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})) Contains None(`6esn` In 010[{`1esn`}..] Where {``}[$usn2..00][{_usn3}..123.654]) As #usn7 Start `5esn`=Node:_usn4(@usn5={`4esn`}) Remove Case 9e-12 Starts With {1000} When `1esn`[Null][{@usn6}] Then {_usn3} Is Null Is Null When 10.12e12[usn2] Then $12 =~4.9e12 Else .9e12[6.0e0..][@usn5..] End.@usn5!"), + octest_legacy:ct_string("Create #usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2)))),(((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))) Remove Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`).`6esn`?._usn4?.#usn8,usn2(0Xa In 1.0 In $@usn5).usn2! Merge `2esn`=((`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[?:`2esn`|`5esn` *..123456789$1000]-({`1esn`:$`8esn` Is Null Is Null,`1esn`:0.12 =~2.9e1 =~9e1})-[usn2:`5esn`]-(:`4esn`:usn2{@usn5:`8esn`[.12e12..],usn1:$#usn8[$0..`3esn`][1e-1..$7]})) Union Return $#usn8 Starts With 9.1e-1 Starts With {#usn7} As `8esn`,$`1esn` Contains 1000 Contains $123456789 As _usn3 Order By 00[{1000}] Descending,'s_str'[$_usn3..][9.1e-1..] Desc,$_usn4 =~$#usn8 =~{`4esn`} Desc Skip $@usn6[...9e-1] Limit $#usn7[01..2.12][2.12..3.9e-1] Remove [usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null].`1esn`! Union All Merge ((`1esn` {@usn6:6.0e0[$#usn7..$1000]})) On Create Set `3esn` =9e0[`7esn`..][#usn8..],Shortestpath(((#usn7 :`1esn`:``)<-[?:`4esn`|:`2esn`]-(_usn3 :`4esn`:usn2)-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}))).usn1 =$_usn3[.0e-0..999],{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}.`6esn`? =$0[1e1][12e-12] On Match Set Shortestpath(((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(_usn3 :usn1))).usn2 =Count(*) Is Not Null Is Not Null,[`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 10.12e12[usn2]|9e0[`3esn`][0]].`6esn`? =3.9e-1[..$1000][..0.12] Foreach(`8esn` In {1000}[`2esn`...0e-0][9e-1..0X7]| Load Csv From usn2(Distinct $_usn3 =~'s_str' =~12) In (`` :usn1)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}) In Case When {_usn4}[{`6esn`}] Then 12e12 Is Not Null Is Not Null When #usn7 Is Null Is Null Then {`8esn`} Starts With .9e-1 Starts With 1000 End As usn2 ) Remove @usn5:`8esn`"), + octest_legacy:ct_string("Delete .1e1 In 12.0 In $``,@usn6 Starts With #usn7,Any(@usn6 In 9e12[..usn2][.._usn3] Where 12e12[.9e12..07]) Ends With Shortestpath(((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))) Union Create ((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})),`4esn`=((`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[?$999]-(`8esn` :@usn6:_usn3)<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})) Union Foreach(@usn6 In 0.12 Ends With 7 Ends With 12| Delete 1.9e0[$`4esn`],07[..$`5esn`] Create Unique `2esn`=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))),((:`4esn`:usn2{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(_usn4 :usn2))) Match ``=(((#usn7 )-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(`2esn` :@usn5)<-[?:`2esn`|`5esn` *..123456789$1000]-({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}))) Where `4esn` Contains 0X0123456789ABCDEF Contains $usn2 Create Unique Allshortestpaths((((@usn6 :`5esn`:`7esn`)-[`8esn`{#usn8:.12e12[..7]}]-({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))))"), + octest_legacy:ct_string("With Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,999 Starts With 7.0e-0 Starts With true As _usn3 Order By 2.12[010..][{999}..] Descending Limit Shortestpath((:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})) Starts With {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF} Starts With Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})) Start `2esn`=Node:`8esn`('s_str') ,`1esn`=Rel:``({`4esn`}) With Distinct *,Any(usn2 In $`5esn`[{`4esn`}][{0}] Where .1e-1[2.9e1..][$`7esn`..]) Contains Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Contains Allshortestpaths((_usn3 :`4esn`:usn2)),9e1[...9e1][..$`6esn`] As `4esn`"), + octest_legacy:ct_string("Using Periodic Commit 0X7 Load Csv From Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]) In (`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) In `4esn`($#usn7[01..2.12][2.12..3.9e-1]) As _usn3 Fieldterminator 's_str'"), + octest_legacy:ct_string("Merge `4esn`=Shortestpath(((`1esn` :`7esn`)<-[usn2:#usn8|:``]->({`6esn`:9e0[`4esn`..$_usn4][9.1e-1..0e0]}))) On Match Set Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where Count ( * ) Starts With 0.12).`7esn`.`2esn`? =12e12[{`4esn`}..`4esn`][999..{@usn6}],Reduce(`8esn`=.9e0 =~#usn7,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|#usn8 Is Null Is Null).#usn7? =00[..@usn6] On Match Set `6esn`(Distinct 1.0 In {usn1}).`5esn`! =.0e-0 Contains $1000,Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0).`1esn`! =`8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End,Reduce(`5esn`={``} Contains 0.0 Contains `4esn`,`2esn` In $@usn5 Is Not Null Is Not Null|0.0[`7esn`]).`2esn`.`8esn`!.`` =1.0 In {usn1} Optional Match ``=(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}) Using Scan `6esn`:#usn8 Using Index @usn5:@usn6(`5esn`) Union All Foreach(`` In `6esn`(00[$``],.1e1 Is Not Null Is Not Null)[`6esn`({usn2}[{999}..][9e12..],`4esn` Ends With 9e12 Ends With {`5esn`})..][exists(Distinct {`3esn`}[#usn7],@usn5 =~$#usn7 =~{usn1})..]| Delete $7 In 1.0 In 01234567 Create (((`1esn` :`3esn`{@usn6:$12 Is Null})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),((:`1esn`:``{@usn6:$`7esn` Ends With 7.0e-0 Ends With $usn2}))) Load Csv With Headers From 0X0123456789ABCDEF In .9e-1 In 123456789 As usn1 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Using Periodic Commit 0 Load Csv From $999[usn1..0e-0] As `1esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Create (_usn4 :`6esn`)<-[`2esn` *7]->(`4esn` :@usn5),_usn3=(_usn3 :`1esn`:``{`8esn`:{#usn8} In {12} In .9e12})<-[?:`3esn`|`3esn` *999..123456789{_usn3:$`4esn`[$@usn6...12e12]}]->(usn1 {#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}) Create Unique `7esn`=Shortestpath((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})-[:#usn7|:@usn5]-(:`1esn`:``{`8esn`:5.9e-12[0x0..]})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)),Allshortestpaths(((`` :`7esn`))) With Distinct Count(*)[Null..][01234567..] As `1esn`,{#usn7} Is Not Null As `7esn`,10.12e12[usn2]"), + octest_legacy:ct_string("Delete Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]) Is Null,Reduce(`5esn`=$7 =~01234567 =~12.0,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{`8esn`}[..999][.._usn3])[{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}..],Any(usn2 In $`5esn`[{`4esn`}][{0}] Where .1e-1[2.9e1..][$`7esn`..]) Contains Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Contains Allshortestpaths((_usn3 :`4esn`:usn2)) Unwind `8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End As @usn6 Union All Remove [usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`3esn`[0e-0]|'s_str' =~$usn2 =~{7}].@usn5 Foreach(@usn5 In 0.0 In .0e-0| With Distinct *,{usn1} Is Not Null,{`2esn`}[0x0..9e0] As `6esn` Limit Allshortestpaths((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))[usn1..])"), + octest_legacy:ct_string("Unwind .1e-1 Is Not Null As `3esn` Optional Match Shortestpath(((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(`4esn` :`8esn`{12})-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2))) Using Index `3esn`:usn2(`5esn`) Union All Unwind {`7esn`}[0.12] As usn2"), + octest_legacy:ct_string("Return Distinct #usn8[..'s_str'][..'s_str'] As `2esn`,None(@usn6 In 9e12[..usn2][.._usn3] Where $7) Is Not Null Is Not Null"), + octest_legacy:ct_string("Remove Reduce(`8esn`=1e1[$_usn3],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e-0[..``][..$7]).`6esn`.`8esn`?,[`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1].`2esn`! Unwind {usn2} Ends With {@usn6} Ends With 1000 As `` Union All Detach Delete Case When `4esn` Contains 0X0123456789ABCDEF Contains $usn2 Then {1000} Starts With {`1esn`} End Starts With Case $`8esn`[0x0][.9e0] When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null Else $usn1 =~.0e0 =~{`4esn`} End Starts With .0e-0,Reduce(`5esn`={`8esn`}[..999][.._usn3],usn2 In $`5esn`[{`4esn`}][{0}]|`` Ends With 1.0 Ends With usn1) =~({@usn6:$@usn6 Is Null Is Null})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5),{`6esn`} Starts With @usn6 Create Unique _usn4=(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[:`6esn` *..0x0{``}]-(#usn8 :``{usn2:9e1 =~$`8esn` =~10.12e12}) Delete {999} =~$`6esn` =~$`6esn` Union All Match ``=(((@usn5 {@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))),`2esn`=Allshortestpaths((((#usn8 :`3esn`{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})-[? *0]-(:`3esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`})-[?:``|:`7esn` *12{#usn8:10.12e12 Contains .9e0,usn1:0xabc Contains {12} Contains {`6esn`}}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1})))) Using Scan @usn5:`8esn` Create Unique ((`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})),`8esn`=Shortestpath((_usn3 )-[usn2:_usn3 *0xabc..12]->(:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`))"), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv From Extract(`1esn` In $12 In {usn2} Where 2.9e1 =~Count(*) =~{123456789})[{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}..][123.654..] As @usn6 Fieldterminator 's_str' Load Csv From $@usn6 Is Null As `1esn` "), + octest_legacy:ct_string("Foreach(`` In 10.12e12[.0e0]| Create `7esn`=((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[_usn3?:`7esn`|usn1]-(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[usn2 *7]-(`8esn` :#usn7:`8esn`)) Load Csv From 12[11.12e-12..][`4esn`..] As @usn6 ) Union All Delete .0e0 =~Case $`6esn` Starts With 0.0 When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] End =~All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}]),`8esn`(Distinct 8.1e1 Contains .9e-1 Contains false,usn1 =~false =~{999}) In {12} In (usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12})<-[#usn8:`3esn`|`3esn` *1000..{#usn7}]-(:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[? *..00]->(:usn1{#usn8:2.9e1[{`2esn`}]}),Case .12e-12 Is Null When Count ( * )[_usn4..] Then 7.0e-0 Is Not Null When 2.12[{12}] Then {usn2} Ends With {@usn6} Ends With 1000 End[Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..])][({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})] Foreach(`8esn` In None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Contains (`8esn` :@usn6:_usn3{_usn4:{#usn7} =~$@usn6 =~$7})<-[`1esn`? *0{usn2:.9e12[6.0e0..][@usn5..]}]->(usn2 :@usn6:_usn3)-[usn1:#usn7|:@usn5 *999..123456789]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})| Unwind $`1esn` =~`8esn` As @usn5)"), + octest_legacy:ct_string("Unwind {`8esn`}[.0e0..][999..] As `1esn` Union All Foreach(_usn3 In Null| Optional Match ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),_usn3=Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)))) Return *,$12 Is Null As #usn8 Order By ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[_usn3?:@usn5|:#usn7]->(`` :``)-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Starts With Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`) Ascending,{`8esn`} =~$#usn7 =~2.12 Desc,Count(*) Starts With 07 Starts With $#usn7 Desc Skip @usn6[true..] Create ({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12}),#usn8=Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))) Union All Foreach(`7esn` In 9e1[..@usn5][..$`5esn`]| Unwind $`5esn`[{@usn6}..{`7esn`}] As `8esn`) Merge ((({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[_usn3?:@usn5|:#usn7]->(@usn5 {`8esn`:123456789[#usn7..9e-1][10.12e12..{0}],@usn6:1.0 Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(`4esn` {`8esn`:5.9e-12[0x0..]}))) On Match Set [`6esn` In 010[{`1esn`}..] Where {`8esn`}[@usn5][$`2esn`]|$123456789[{usn1}][.12e-12]].@usn5?.`6esn`! =010[.0e-0..\"d_str\"][.9e0..123.654],_usn4 =0xabc[..Count(*)][..$`5esn`] With *,Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,Case \"d_str\"[0x0..{@usn6}][$@usn5..0] When 0e0 Contains {`2esn`} Then 0X0123456789ABCDEF[1e1..] Else .12e12 Starts With 5.9e-12 Starts With `4esn` End In {usn1:$#usn7[01..2.12][2.12..3.9e-1],`6esn`:.0e-0 Ends With $`2esn` Ends With `5esn`} Order By .9e12 Contains 5.9e-12 Contains 9e-1 Descending Skip $123456789[..$999][..`6esn`]"), + octest_legacy:ct_string("Using Periodic Commit 0Xa Load Csv From Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]) Is Not Null Is Not Null As #usn8 Create Unique @usn5=Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))),(@usn6 :_usn4:`2esn`)"), + octest_legacy:ct_string("Create Unique ((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})-[{``:{`3esn`}[01234567][{#usn7}],_usn4:999 Is Null Is Null}]->(usn2 {``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})),``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))) Match @usn5=Allshortestpaths((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``))),_usn4=(({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[#usn8? *0Xa..12]->(`7esn` {#usn8:2.9e1[{`2esn`}]})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]})) Using Scan @usn5:`5esn` Using Scan `1esn`:`2esn` Where .12e-12[@usn6..'s_str']"), + octest_legacy:ct_string("Foreach(`4esn` In 9e-12 Starts With {1000}| Unwind $`3esn`[..{`5esn`}] As @usn6 Match Shortestpath(((_usn3 :`7esn`{_usn4:$12[$`6esn`..][01..]})-[`4esn`{_usn3:010[..9e-1][..0X7]}]-(:`7esn`{#usn7:$999 =~false =~{`8esn`}})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3))),Allshortestpaths((:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[`7esn`?:`7esn`|usn1 *1000..{@usn6:#usn7 In 07,#usn8:$999[usn1..0e-0]}]->(#usn8 :`5esn`:`7esn`{usn2})-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})) Using Index #usn8:usn2(@usn5) Where {`6esn`} =~2.12 =~123.654) Match (:`4esn`:usn2{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[`3esn`?:`1esn`|:`1esn`]-(`7esn` :usn1)<-[:`4esn`|:`2esn`{usn1:3.9e-1 Contains $@usn5}]->(@usn6 {``:$`6esn` Starts With 0.0}) Load Csv With Headers From `2esn`[`7esn`][1000] As `2esn` Fieldterminator 's_str' Union Load Csv From Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where {7}[$@usn5..123456789][1e1..1.9e0]) Ends With (`3esn` :_usn3{@usn6:0.12 Is Not Null})-[#usn8:`5esn`]-({`6esn`:12[@usn6][{`2esn`}]}) As #usn8 Create Unique #usn7=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 ))) Delete $`4esn`[12e-12..$`1esn`][$`2esn`...9e12]"), + octest_legacy:ct_string("Unwind $@usn6 Is Null Is Null As _usn4 Detach Delete 1.9e0 In $@usn6 In $_usn3,$@usn5 =~{`3esn`} Load Csv With Headers From $`5esn` In $12 In `2esn` As usn1 Union Merge Shortestpath(((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))) On Create Set `6esn` =_usn4 On Create Set `4esn` =Single(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Is Not Null Detach Delete Single(_usn3 In `8esn`[_usn4] Where `3esn` Contains `2esn` Contains {_usn4}) In Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`) In {7},$usn2 Ends With 9e12 Ends With Count ( * ),$`5esn` =~Count(*) =~1.9e0 Union All Load Csv From {#usn8}[..@usn5] As `4esn` Foreach(`6esn` In Any(usn1 In $@usn6 Is Null Is Null Where 9e0[`3esn`][0]) Ends With None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[01234567][{#usn7}]) Ends With Any(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}])| Load Csv With Headers From 0[..{#usn7}][..$_usn3] As `7esn` Fieldterminator 's_str' Unwind `8esn`[0e-0.._usn3][Null..`6esn`] As `2esn`) Detach Delete 9e0[`1esn`..0e-0][00..`1esn`],.0e-0 Ends With $`2esn` Ends With `5esn`"), + octest_legacy:ct_string("Unwind #usn7 Is Null Is Null As usn1 Foreach(`4esn` In 11.12e-12 In {usn1}| Match Shortestpath((@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?:`8esn`|:#usn8 *999..123456789]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})),`3esn`=(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0})-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[usn1?:`3esn`|`3esn`*..]-(`1esn` ) Using Scan ``:#usn8 Remove ``(.9e-1 Is Null Is Null,{`8esn`}[@usn5][$`2esn`]).`1esn`._usn4) Union Create Unique `7esn`=Shortestpath((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})-[:#usn7|:@usn5]-(:`1esn`:``{`8esn`:5.9e-12[0x0..]})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)),Allshortestpaths(((`` :`7esn`)))"), + octest_legacy:ct_string("Merge (`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})<-[`6esn`?:@usn6|:`4esn` *12{`6esn`:{12} Starts With $`` Starts With 0X0123456789ABCDEF,@usn6:0 Starts With `7esn` Starts With 9e0}]->({_usn3:.9e12 Contains 0 Contains $0})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]}) On Create Set #usn8:`8esn` With 1.9e0 =~.0e0 =~0X7 As #usn7,0 Ends With .0e-0 Ends With false As _usn4,0X0123456789ABCDEF In .9e-1 In 123456789 Order By Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Desc,[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1][Shortestpath((({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})))..Shortestpath(((:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12})-[``?:#usn7|:@usn5{``:$usn1 Ends With {`2esn`} Ends With $usn1}]->(:`5esn`:`7esn`$usn2)-[{#usn8:\"d_str\" Contains {@usn6}}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12})))] Descending,$@usn5[.9e-1] Descending Skip Case When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 Else 9e-12 Ends With {1000} End[Shortestpath((:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[`1esn`:`4esn`|:`2esn`{`5esn`:$_usn3[usn2..][usn1..]}]->(:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`}))..] Where 2.9e1[Count ( * )..]"), + octest_legacy:ct_string("Start `5esn`=Node:`1esn`(`4esn`={@usn5}) ,`2esn`=Rel( {_usn3}) Load Csv From {0}[.1e-1..][_usn4..] As `6esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Load Csv With Headers From 7.0e-0 Is Null Is Null As _usn3 Union All Remove {`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true}.#usn7!,@usn6:`1esn`:``"), + octest_legacy:ct_string("With Distinct 5.9e-12[01][`4esn`],$#usn8 Starts With 9.1e-1 Starts With {#usn7} As `8esn`,`5esn` Ends With 's_str' Ends With @usn5 As `1esn` Order By 's_str'[$_usn3..][9.1e-1..] Desc Where 1.0 Is Null Is Null Match (:#usn8:@usn6{@usn6:$_usn4 Ends With {#usn8},_usn4:0e0[12.0][{#usn7}]})<-[?{@usn5:@usn6[999][1000]}]->(`1esn` )<-[usn2:@usn5|:#usn7 *01{@usn6:.0e-0 In 12}]-(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]}),usn1=Allshortestpaths(((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})))) Load Csv With Headers From 0Xa In 1.0 In $@usn5 As @usn5 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Unwind Allshortestpaths((`` $999)<-[? *0X0123456789ABCDEF]->(`1esn` :_usn3)<-[#usn8?:#usn7|:@usn5]-(@usn5 :#usn7:`8esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true}))[All(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Is Null Is Null)..][Allshortestpaths((({@usn6:01 Contains 9e-12 Contains $7})))..] As @usn5 Merge Allshortestpaths(((@usn6 :`5esn`:`7esn`)-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)-[`3esn`:`6esn` *..0x0]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}))) On Match Set `2esn`+=9e1[0.0],#usn8+=.12e-12[@usn6..'s_str'],{`6esn`:4.9e12 Is Not Null Is Not Null,_usn4:`4esn`[9e-12..true]}.#usn8._usn3? =Shortestpath((((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))))[None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0.0[`7esn`])..Single(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])][`5esn`(Distinct .9e1[$`1esn`..][$``..])..Case When 12e12 Ends With `5esn` Ends With .0e0 Then .9e0 In 8.1e1 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else .9e1 Ends With 0x0 End] On Create Set @usn6+=00 =~`4esn` =~.9e-12,`3esn` =$123456789,[usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF].`5esn`! =.0e-0 Ends With $`2esn` Ends With `5esn`"), + octest_legacy:ct_string("Return Distinct _usn4[$_usn4] As _usn4,`3esn` Starts With 9.1e-1 Starts With .9e-1 As `8esn` Order By $`5esn`[{@usn6}..{`7esn`}] Ascending Skip [usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0|4.9e12 Is Not Null Is Not Null] =~Case {_usn3} In $#usn8 In $12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else 0[..{0}][..true] End =~Case Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else $_usn3 Starts With 010 End Create Shortestpath((_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})),Shortestpath(((@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})-[@usn5:`6esn` *..00]->(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Create ``=Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))) Union All Detach Delete {_usn3} Is Null Is Null,Case {#usn7} =~.12e12 =~9e0 When `1esn`[{usn1}..] Then false =~$7 When 7 In 1e1 In {``} Then {0}[.0e-0][$`2esn`] End[`4esn`(Distinct \"d_str\" In usn2 In $`7esn`)],usn2[..$0][..`3esn`] Union All Merge @usn6=(({usn2:01[`4esn`..]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})-[`1esn`?:`3esn`|`3esn` *..00]-(`1esn` :usn2)) On Match Set `6esn`+=01[$`1esn`..$`7esn`][{usn2}..12.0],[usn1 In {#usn7} =~.12e12 =~9e0 Where $`4esn`[12e-12..$`1esn`][$`2esn`...9e12]|$`1esn`[4.9e12..][_usn3..]].#usn7 =9.1e-1[..Null][..#usn8] Return *,{`7esn`} =~\"d_str\" =~{``} Skip $_usn4 Ends With {#usn8} Limit $12 Is Not Null Is Not Null"), + octest_legacy:ct_string("Using Periodic Commit 12 Load Csv From 6.0e0 In 9e-1 In 123456789 As `4esn` Remove `2esn`:`3esn`,(`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->(:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[ *1000..{`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]->(`` ).#usn8!"), + octest_legacy:ct_string("Return Distinct $`8esn`[..12][..9e12] As @usn5,_usn4[{`3esn`}][00] As usn2 Skip 0X0123456789ABCDEF Is Not Null Is Not Null Remove Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0[..{#usn7}][..$_usn3]).#usn7?,($12)<-[#usn8?{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(usn1 {@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}).#usn7!.@usn5._usn3? Remove Case #usn7[$`8esn`][{`3esn`}] When Count(*) =~01234567 =~.1e-1 Then 1000[{123456789}][usn1] End.`1esn`!,Reduce(`7esn`=12e12 Contains {0},`1esn` In $12 In {usn2}|{``} Is Null Is Null).@usn5"), + octest_legacy:ct_string("Return [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,$`7esn` In $`4esn` As `8esn`,Extract(`1esn` In $12 In {usn2} Where 2.9e1 =~Count(*) =~{123456789})[{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}..][123.654..] Order By 0x0[{`6esn`}..] Descending Limit usn1 =~false =~{999} Remove Allshortestpaths((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}})).``!"), + octest_legacy:ct_string("Create ``=Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))) With Distinct 0.0[$`4esn`] As `4esn` Order By 9e1 Ends With `7esn` Ends With 2.12 Descending,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null Asc,{0} =~{999} Desc Skip 6.0e0[None(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0)..][[_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]]..] Limit [usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]] With *,_usn4['s_str'][8.1e1] Order By 999 Starts With 07 Ascending Where 1.0 Is Not Null Union Optional Match (:usn2)<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:#usn8|:``{#usn8:{_usn4} In 0X7 In 0e0,`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]-(@usn5 ) Union Return *,Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,Case \"d_str\"[0x0..{@usn6}][$@usn5..0] When 0e0 Contains {`2esn`} Then 0X0123456789ABCDEF[1e1..] Else .12e12 Starts With 5.9e-12 Starts With `4esn` End In {usn1:$#usn7[01..2.12][2.12..3.9e-1],`6esn`:.0e-0 Ends With $`2esn` Ends With `5esn`} Order By .9e12 Contains 5.9e-12 Contains 9e-1 Descending Skip $123456789[..$999][..`6esn`]"), + octest_legacy:ct_string("With `4esn` =~_usn4 =~0e-0 As `3esn`,$12[$`6esn`..][01..] Order By [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]][None(#usn7 In .0e-0 In 12 Where $12 In {usn2})..{`1esn`:{0} Is Null Is Null}][Extract(#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12|{`5esn`} Is Not Null Is Not Null)..Reduce(`7esn`=`7esn` Ends With 10.12e12,usn2 In $`5esn`[{`4esn`}][{0}]|@usn5[9e-1..{`1esn`}])] Descending,$usn2 Contains $`3esn` Contains 6.0e0 Asc Optional Match ``=Shortestpath((`1esn` :`2esn`:`4esn`)<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})),@usn5=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))) Where 01234567[10.12e12][0Xa] With $0 =~{@usn5} =~1e1,.1e-1[$@usn6] As `3esn` Order By {7} Is Not Null Descending Skip [`6esn` In 010[{`1esn`}..] Where {`4esn`}[00..]][Case $123456789[{usn1}][.12e-12] When .12e-12[9e1] Then 2.9e1[2.9e1..][`4esn`..] Else 00 =~`4esn` =~.9e-12 End..[usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF]]"), + octest_legacy:ct_string("Remove {usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}.#usn7?,All(`` In `7esn` =~#usn8 =~\"d_str\" Where {12} Starts With $`` Starts With 0X0123456789ABCDEF)._usn4?.`6esn` Create @usn5=(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]}),((`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})<-[_usn4?:`8esn`|:#usn8 *01234567..]->(`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(usn2 {`7esn`:.9e12 Contains 0 Contains $0})) Union With Distinct 0.0[$999][`6esn`] Order By $`2esn`[`8esn`..] Descending,({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}) Contains Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Contains All(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]) Descending Limit $`5esn` =~Count(*) =~1.9e0 Where $12 =~4.9e12 Start #usn7=Node:``('s_str') Foreach(`7esn` In {`6esn`} =~2.12 =~123.654| Remove [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where @usn6[true..]|.0e0['s_str'..][0Xa..]].usn2!,(usn2 :@usn5{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})<-[`7esn`{`7esn`:6.0e0 =~12.0 =~9e1}]-({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}).#usn8?.``?,All(usn1 In \"d_str\" Contains {@usn6} Where 0.0[00..][0xabc..]).`3esn`?)"), + octest_legacy:ct_string("Unwind Allshortestpaths(((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}))) Is Null Is Null As usn2 Merge Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))) On Match Set Case .12e12 Ends With 07 Ends With 3.9e-1 When 0.12 In $`` Then 0e-0 In 0X0123456789ABCDEF In `3esn` When 01 Ends With .0e0 Ends With 7.0e-0 Then $`6esn`[@usn6...9e-12] End.`1esn`.`1esn` =1e-1 Starts With .1e1 Starts With 12.0 Delete false,$`6esn`[@usn6...9e-12],$`4esn` Contains `4esn` Contains .0e-0 Union All With Distinct 0.0[$`4esn`] As `4esn` Order By All(usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]) In Allshortestpaths(((`5esn` :`4esn`:usn2{_usn4:Count ( * ) Is Not Null Is Not Null,#usn8:`1esn`[{usn1}..]}))) In Filter(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Asc,{usn1}[9e-1][{@usn5}] Ascending,(`8esn` :@usn6:_usn3{`2esn`:#usn7 =~$@usn5 =~{7},`2esn`:{`3esn`}[..{`4esn`}][..usn2]})-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})[[`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where Count(*)[$7]|01[`6esn`..][0e0..]]..] Asc Skip 0X0123456789ABCDEF In $`2esn` In .9e-12 Limit $0 Ends With $usn1 Ends With {``} Create Unique Allshortestpaths((:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[`7esn`?:`7esn`|usn1 *1000..{@usn6:#usn7 In 07,#usn8:$999[usn1..0e-0]}]->(#usn8 :`5esn`:`7esn`{usn2})-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})) Optional Match (usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[``:`1esn`|:`1esn`{@usn5:999[..$@usn5][..``],@usn5:0xabc[..Count(*)][..$`5esn`]}]-(`1esn` :``{_usn4:$@usn5 =~{`3esn`}}) Using Scan `8esn`:`4esn` Where .9e12 Contains 0 Contains $0 Union Start usn2=Relationship(999,010,07,123456789) ,`7esn`=Node:`6esn`(@usn6='s_str')Where 123.654 Ends With {1000} Ends With 9e12"), + octest_legacy:ct_string("Create Allshortestpaths(((:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))),`6esn`=Shortestpath((((:`6esn`{`3esn`:9e12[..usn2][.._usn3]})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})<-[_usn4 *010..0{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}]-(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})))) Start `1esn`=Node( {`5esn`}) ,usn2=Node:_usn3(`7esn`='s_str')Where $12[$`6esn`..][01..]"), + octest_legacy:ct_string("Foreach(@usn6 In ({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})-[`8esn`?:_usn3]->(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Ends With {_usn3:{123456789} Starts With `6esn`} Ends With {usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}| Unwind $`6esn` =~$#usn7 =~$`4esn` As usn1) Load Csv From Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)) Is Not Null Is Not Null As `1esn` Merge `8esn`=((`8esn` :`6esn`)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(@usn5 :@usn6:_usn3)) On Create Set ``+=12e12 Contains {0},`4esn`+=$`2esn` Contains {`4esn`} Union All Delete 9e12 Is Not Null Is Not Null,.9e1 Is Null Is Null Remove {@usn6:6.0e0[$#usn7..$1000]}.`8esn`?,{`3esn`:9e0[`3esn`][0],usn2:$`5esn` Is Not Null}.`8esn` Merge `2esn`=((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0})) On Create Set `2esn`+=9e1[0.0],#usn8+=.12e-12[@usn6..'s_str'],{`6esn`:4.9e12 Is Not Null Is Not Null,_usn4:`4esn`[9e-12..true]}.#usn8._usn3? =Shortestpath((((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))))[None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0.0[`7esn`])..Single(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])][`5esn`(Distinct .9e1[$`1esn`..][$``..])..Case When 12e12 Ends With `5esn` Ends With .0e0 Then .9e0 In 8.1e1 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else .9e1 Ends With 0x0 End] Union Return *,\"d_str\" In usn2 In $`7esn` As `5esn`,12[11.12e-12..][`4esn`..] Order By Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Is Null Ascending,'s_str'[$`8esn`..$999] Descending,$`2esn`[`8esn`..] Descending Remove Case 2.9e1 Ends With `5esn` Ends With 1000 When @usn6[999][1000] Then .0e0 =~0 =~.0e0 When {`4esn`} In 1000 In {@usn5} Then 123456789[_usn4..`1esn`][$`6esn`..{@usn6}] Else .12e12 Is Not Null End.`2esn`? Delete (usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..])"), + octest_legacy:ct_string("Return Distinct *"), + octest_legacy:ct_string("Detach Delete Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null,(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])],.1e1 Is Null Is Null With Distinct 0.0[$`4esn`] As `4esn` Order By All(usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]) In Allshortestpaths(((`5esn` :`4esn`:usn2{_usn4:Count ( * ) Is Not Null Is Not Null,#usn8:`1esn`[{usn1}..]}))) In Filter(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Asc,{usn1}[9e-1][{@usn5}] Ascending,(`8esn` :@usn6:_usn3{`2esn`:#usn7 =~$@usn5 =~{7},`2esn`:{`3esn`}[..{`4esn`}][..usn2]})-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})[[`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where Count(*)[$7]|01[`6esn`..][0e0..]]..] Asc Skip 0X0123456789ABCDEF In $`2esn` In .9e-12 Limit $0 Ends With $usn1 Ends With {``} Merge ``=Shortestpath(((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[ *..123456789{@usn5:1e-1[$`4esn`]}]->(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0}))) On Match Set `3esn` ={`4esn`:12e12 Is Not Null Is Not Null} Contains Case When {_usn4}[{`6esn`}] Then 12e12 Is Not Null Is Not Null When #usn7 Is Null Is Null Then {`8esn`} Starts With .9e-1 Starts With 1000 End"), + octest_legacy:ct_string("Create Unique _usn4=Allshortestpaths(((`5esn` :_usn3)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}))),((`8esn` :`2esn`:`4esn`)-[?:#usn7|:@usn5 *12]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})) Load Csv From `4esn`[..7][..$usn2] As _usn4 Unwind Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1) Starts With Case 7.0e-0[$`6esn`..] When \"d_str\"[0x0..{@usn6}][$@usn5..0] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else $`5esn`[{`4esn`}][{0}] End Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`) As @usn6"), + octest_legacy:ct_string("Remove (@usn5 :@usn6:_usn3{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`3esn`:`6esn` *..0x0]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}).`3esn`,count($`8esn`).@usn6 Create Shortestpath(((usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})-[{#usn7:1e-1[$`4esn`]}]->(_usn4 :`1esn`:``{`3esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}))) Detach Delete Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`) Is Null Is Null,6.0e0[$#usn7..$1000],$12 Is Not Null Is Not Null Union Remove `7esn`:`4esn`:usn2,Filter(usn2 In .12e-12 Ends With `2esn` Where $7).usn1.#usn7!.`5esn` Start `8esn`=Node( {`4esn`}) ,`3esn`=Node( {1000}) Union All Remove Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `6esn` Ends With 1e1 Ends With $#usn7).`8esn`!.`2esn`!.`1esn`!,Case When 0e-0[$``..10.12e12] Then 3.9e-1[{@usn6}..][01234567..] End.@usn5.`4esn`?.`3esn` With *,$123456789[..$999][..`6esn`] As @usn5,Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07)[Case 9e-12 Ends With 9e1 Ends With 4.9e12 When `3esn` =~$#usn7 Then $@usn5 Starts With #usn7 When {`4esn`}[{`3esn`}][$`2esn`] Then #usn7[$`8esn`][{`3esn`}] Else 9e0[`4esn`..$_usn4][9.1e-1..0e0] End][[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]] Skip @usn5[9e-1..{`1esn`}] Limit 11.12e-12 Contains usn1"), + octest_legacy:ct_string("Merge `6esn`=Shortestpath((`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})) On Match Set _usn4+=01234567[10.12e12][0Xa],Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01).#usn7!.`2esn`.@usn6! =4.9e12 Ends With $@usn6,`3esn`+=.1e-1 Is Not Null On Create Set _usn3+=Count ( * ) =~123456789 =~{@usn5} Load Csv From {@usn6:3.9e-1[..$1000][..0.12]}[All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000)] As `3esn` Union Remove Reduce(`3esn`={0} Is Not Null,`` In `7esn` =~#usn8 =~\"d_str\"|01234567[\"d_str\"..][$`4esn`..])._usn4.@usn6 Delete 2.9e1 Ends With 12e12 Ends With .9e12,{123456789} Contains $0,$12 Is Null Unwind [_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12] As _usn3 Union Unwind Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null As @usn5 Detach Delete Case .12e-12 Is Null When Count ( * )[_usn4..] Then 7.0e-0 Is Not Null When 2.12[{12}] Then {usn2} Ends With {@usn6} Ends With 1000 End[Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..])][({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})],{`1esn`}[7.0e-0..9e-1][01234567..{`4esn`}],1e-1 Starts With .1e1 Starts With 12.0 Detach Delete 's_str'[`3esn`..0x0],0xabc Contains 12 Contains Null"), + octest_legacy:ct_string("Unwind {`6esn`} In {_usn4} In $12 As `1esn`"), + octest_legacy:ct_string("Create Unique `1esn`=Allshortestpaths(((:usn1{`6esn`:$_usn3[usn2..][usn1..],#usn7:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}))),#usn8=Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789})) Remove Reduce(#usn7={`4esn`} In 1000 In {@usn5},usn2 In .12e-12 Ends With `2esn`|false Starts With 0 Starts With 2.9e1).usn1!,None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 12e12 Ends With `5esn` Ends With .0e0).`5esn`?,All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where $`4esn`[usn2..]).`2esn`! Union Merge ((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[ *..123456789{@usn5:1e-1[$`4esn`]}]->(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})) Start @usn5=Rel:`8esn`(usn1={#usn7}) ,``=Relationship:@usn6(#usn8='s_str')Where 12e-12 In .9e0 Union Merge `7esn`=(({_usn4:1e-1[$`4esn`]})) Create Unique (`1esn` {usn2:.9e-12[.12e12..][0Xa..]}),@usn6=Allshortestpaths(((`5esn` :_usn3)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}))) Match Shortestpath(((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1))),(((usn2 :`4esn`:usn2)<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})-[usn1?:#usn8|:`` *0xabc..12{usn2:01234567[10.12e12][0Xa]}]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}))) Using Join On @usn5,`1esn`"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv With Headers From #usn8 Is Null Is Null As _usn4 With *,$999 Ends With `2esn` Ends With 12.0 As #usn8,All(usn1 In $@usn6 Is Null Is Null Where $`1esn`[4.9e12..][_usn3..])[..@usn5(Count(*)[Count ( * )][{0}],`4esn` =~010)] As `3esn` With (`2esn` :`4esn`:usn2{`8esn`:.9e-1 Contains .9e0 Contains ``,_usn4:8.1e1 Contains .9e-1 Contains false})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Is Null Is Null As `1esn`,00 Is Not Null Is Not Null As `6esn`,{`5esn`} Ends With $`7esn` Ends With {@usn5} Order By {@usn6} =~Count ( * ) =~1.0 Desc,$`6esn` Contains All(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) Descending,`6esn`[0X0123456789ABCDEF..][`8esn`..] Ascending Limit None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Contains (`8esn` :@usn6:_usn3{_usn4:{#usn7} =~$@usn6 =~$7})<-[`1esn`? *0{usn2:.9e12[6.0e0..][@usn5..]}]->(usn2 :@usn6:_usn3)-[usn1:#usn7|:@usn5 *999..123456789]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})"), + octest_legacy:ct_string("Match `1esn`=(`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[ *0X0123456789ABCDEF]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]}))) Load Csv From usn2 Starts With $usn1 Starts With 10.12e12 As `3esn` Fieldterminator 's_str' Union Start `7esn`=Node:`5esn`({0}) ,usn2=Relationship:#usn8(usn2={@usn5})Where $`6esn`[0..{@usn6}][@usn5..1000] Foreach(`6esn` In {`5esn`} Is Not Null Is Not Null| Load Csv From {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]} Is Not Null As `6esn` Fieldterminator 's_str') Union All Merge `1esn`=({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})-[`4esn`{_usn3:010[..9e-1][..0X7]}]->(#usn7 :`1esn`:``) Start `2esn`=Rel:usn1('s_str') Where 9e1 Starts With $@usn6 Starts With 0e-0 Create Unique (((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))),`4esn`=(((`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})-[?:_usn3]->(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})-[:`2esn`|`5esn` *01]-(@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0})))"), + octest_legacy:ct_string("Return {12}[6.0e0..{usn2}][{_usn3}..{#usn7}] As _usn4,usn1 =~0Xa =~0 As @usn5 Limit $usn2 Ends With 9e12 Ends With Count ( * ) Union All Return $`7esn` Is Null Is Null,$`5esn`[{0}][1.9e0],Reduce(`3esn`=`7esn`[1.9e0..5.9e-12][9e0..@usn5],`` In `7esn` =~#usn8 =~\"d_str\"|{_usn3}[{0}...9e-1][9e-1...0e0]) Ends With None(usn1 In $@usn6 Is Null Is Null Where $999 =~false =~{`8esn`}) Ends With Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})))) As `` Order By 123.654 Ends With {1000} Ends With 9e12 Descending,{`6esn`} Starts With 12e12 Starts With {`2esn`} Descending Limit Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`) Is Null Is Null Union All Return Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End In (:usn1)<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}) In [_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|usn2 Ends With $123456789 Ends With {999}] As _usn4 Skip $_usn3 Contains 1.0 Contains 0.12 Create Unique (`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]}),@usn6=Shortestpath((@usn6 :`5esn`:`7esn`)) Merge Allshortestpaths(((`4esn` :#usn7:`8esn`)<-[:`8esn`|:#usn8{_usn4:$#usn7 Ends With {`5esn`} Ends With 01}]-({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[usn1:#usn7|:@usn5 *999..123456789]->(`5esn` :``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})))"), + octest_legacy:ct_string("Merge `2esn`=Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}})<-[?{@usn5:@usn6[999][1000]}]-(:usn1{#usn8:2.9e1[{`2esn`}]})) Load Csv From $@usn5 Starts With #usn7 As usn2 Return Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]|@usn5 =~$#usn7 =~{usn1}) In Case 9.1e-1 Contains {`3esn`} Contains $12 When {@usn6} In 9e12 Then 01[$`1esn`..$`7esn`][{usn2}..12.0] When {#usn8} In {12} In .9e12 Then @usn6 Starts With #usn7 End In All(usn1 In $@usn6 Is Null Is Null Where {7} Starts With 0x0 Starts With 9e1) As usn1 Skip Any(#usn8 In 07[..$`5esn`] Where .9e0[07..][4.9e12..]) =~_usn3 =~(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``) Union All Create `4esn`=(({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)) Load Csv From $`8esn` Starts With {`7esn`} As `8esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Detach Delete (`4esn` :`8esn`{12})<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:`6esn`]-({`6esn`:1000[{`1esn`}..][$`3esn`..]}) =~[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Is Not Null Is Not Null] =~Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true),$12 Contains false Contains {`1esn`} Union Merge Shortestpath((#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7})<-[_usn3?{`8esn`:{usn2} Is Not Null Is Not Null}]->(`7esn` {@usn5:Count ( * )[_usn4..]})<-[?:`3esn`|`3esn` *0X7..0Xa{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}]->(#usn8 :`8esn`)) On Match Set `6esn`(Distinct 1.0 In {usn1}).`5esn`! =.0e-0 Contains $1000,Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0).`1esn`! =`8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End,Reduce(`5esn`={``} Contains 0.0 Contains `4esn`,`2esn` In $@usn5 Is Not Null Is Not Null|0.0[`7esn`]).`2esn`.`8esn`!.`` =1.0 In {usn1} On Create Set ``+=12e12 Contains {0},`4esn`+=$`2esn` Contains {`4esn`} Union Unwind $`7esn` Ends With 7.0e-0 Ends With $usn2 As `5esn` With Distinct 0.0[$`4esn`] As `4esn` Order By 9e1 Ends With `7esn` Ends With 2.12 Descending,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null Asc,{0} =~{999} Desc Skip 6.0e0[None(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0)..][[_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]]..] Limit [usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]]"), + octest_legacy:ct_string("Create `4esn`=((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})<-[ *01234567..{usn1:{12} Contains `8esn` Contains @usn5}]->(usn1 :@usn6:_usn3)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})),(:`3esn`{@usn5:9e12[..usn2][.._usn3]})<-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]->(:`5esn`:`7esn`{`1esn`:{1000}[..`5esn`][..9e12]})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1}) Detach Delete Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,{``:01234567[10.12e12][0Xa]} Is Null Is Null Union Return Distinct _usn3($0 Ends With 9e-12 Ends With $_usn4) Is Null Is Null As `4esn`,1.9e0 In 2.12 As usn2,$#usn7[$``..999][$usn2..$usn2] Order By Any(`1esn` In $12 In {usn2} Where @usn6[true..]) Contains Any(usn2 In .12e-12 Ends With `2esn` Where 9e12 Ends With 9e-1 Ends With 9e1) Contains (`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3) Desc,`1esn`({12} Starts With $`` Starts With 0X0123456789ABCDEF,3.9e-1 Contains $@usn5)[..Case 01 =~{_usn3} =~01 When .12e12[..7] Then $_usn4[..$999] End] Desc,01234567 Ends With .0e0 Ends With 12e12 Ascending Skip 1e-1 =~$`7esn` =~1e1 Limit $999 =~0x0 Create Allshortestpaths(((:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))),((usn2 :`2esn`:`4esn`)<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]->(_usn4 :`6esn`$_usn3)-[usn2?*]->(@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})) Create Allshortestpaths((:`8esn`$@usn5))"), + octest_legacy:ct_string("Create Unique (_usn4 {#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12})"), + octest_legacy:ct_string("Optional Match @usn5=(((`1esn` :usn2{`8esn`:12.0[...0e0]})-[`5esn`?:@usn5|:#usn7{`4esn`:9e-12[$7..]}]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]}))),Shortestpath((`6esn` :``)<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})) Where $@usn6 Is Null Optional Match (:_usn4:`2esn`{`8esn`:12.0[...0e0]}),(`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Using Join On @usn6,usn1,`5esn` Using Index @usn5:`3esn`(`8esn`) Create Unique ((`3esn` :#usn8:@usn6)) Union All Foreach(_usn3 In Null| Optional Match ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),_usn3=Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)))) Return *,$12 Is Null As #usn8 Order By ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[_usn3?:@usn5|:#usn7]->(`` :``)-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Starts With Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`) Ascending,{`8esn`} =~$#usn7 =~2.12 Desc,Count(*) Starts With 07 Starts With $#usn7 Desc Skip @usn6[true..] Create ({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12}),#usn8=Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))) Union Remove All(#usn7 In .0e-0 In 12 Where 0xabc =~123456789).@usn6.#usn8!.`7esn`,Case {_usn3} In $#usn8 In $12 When `3esn` Starts With 9.1e-1 Starts With .9e-1 Then $1000[_usn4][{@usn5}] Else 12[@usn6][{`2esn`}] End._usn3!.#usn8?.`7esn`?,Case 010[...12e-12] When .9e1[$`1esn`..][$``..] Then Count ( * ) Starts With 0.12 End.`8esn`!.#usn8 Remove Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}).`8esn`!._usn3!._usn3!,Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))).`5esn`?.`8esn`?.@usn5?,[usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-12[010..{#usn7}][{123456789}..7]|Count(*)[..{#usn7}]]._usn4! Load Csv From \"d_str\" Contains {@usn6} As `3esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Start `5esn`=Relationship:#usn8(@usn5={@usn6}) Where 0.12 =~`6esn` =~.9e-1 Load Csv From #usn7[.9e0..`3esn`][{`6esn`}..1000] As _usn3 Delete All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0)[..(_usn4 {`3esn`:.0e-0 In 12})-[`4esn`{_usn3:010[..9e-1][..0X7]}]-(@usn5 :`8esn`{12})-[_usn3:`6esn`]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})]"), + octest_legacy:ct_string("Unwind (:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 )[Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..][(#usn8 :`4esn`:usn2)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})..] As `3esn` Return Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999|{`6esn`} Starts With {`5esn`} Starts With 2.9e1) Is Not Null Is Not Null Foreach(`1esn` In {usn1} In Count ( * ) In 12e12| Return Distinct 01 Starts With 12 Starts With $`2esn` As usn1,{`8esn`} In {_usn3} In 6.0e0 Order By {`4esn`} Ends With Count(*) Asc,.0e0[{`5esn`}..3.9e-1] Descending,$999 Ends With `2esn` Ends With 12.0 Ascending) Union All Merge `3esn`=(usn1 :#usn8:@usn6) On Create Set (`3esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[?:`4esn`|:`2esn` *01]-(`` :``).`1esn`.@usn5! =None(`` In `7esn` =~#usn8 =~\"d_str\" Where $`4esn` In {999}) Starts With ({usn1:12[..$`5esn`]})-[:`1esn`|:`1esn` *999..123456789{@usn5:$999 Ends With `2esn` Ends With 12.0}]->(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}) Starts With Case When $#usn8 Is Not Null Is Not Null Then $#usn8[$0..`3esn`][1e-1..$7] When $`` Starts With $`4esn` Starts With `3esn` Then .12e12[$usn1..][{@usn6}..] End,Reduce(`7esn`=123.654[01..][Count(*)..],`6esn` In 010[{`1esn`}..]|0.0[$`4esn`]).`6esn` ={_usn4} Starts With `2esn`(Distinct .1e-1[..$_usn3][..0]) Starts With #usn7(Distinct usn1 =~false =~{999},{`3esn`} =~$@usn5 =~`2esn`) Unwind exists(usn1 Ends With 11.12e-12 Ends With 5.9e-12)[All(`7esn` In 0.12 Is Not Null Where 0X0123456789ABCDEF In false)..] As _usn4 Merge `3esn`=(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})<-[?:`5esn`]-($12)<-[?:@usn5|:#usn7 *0]-(`7esn` :`5esn`:`7esn`)"), + octest_legacy:ct_string("Create Unique (({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})),`2esn`=(((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}))) Remove Extract(#usn8 In 07[..$`5esn`] Where $usn2[..$999][..#usn8])._usn3?,Single(`` In `7esn` =~#usn8 =~\"d_str\" Where 9e1 Ends With 9e12 Ends With 0x0).`5esn`!,usn2({`6esn`} In .0e0 In $0,0X0123456789ABCDEF Is Not Null Is Not Null).``? Union All Remove (`` :`8esn`)-[#usn7? *..00{_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}]->(:`3esn`)-[usn1?:usn1|usn2]->(#usn7 :@usn5).usn1,{12}.`6esn`? Create Unique #usn8=((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) Merge (((`1esn` :#usn8:@usn6{`7esn`:.1e-1 Contains .12e-12,`2esn`:.1e1 Ends With #usn7 Ends With {#usn7}})-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5)-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5))) On Match Set Allshortestpaths((:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})).@usn6! =12 Is Not Null Is Not Null On Create Set Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})).`5esn`!._usn3!._usn3? =$`1esn` Ends With 1000,(`8esn` :usn1)<-[usn2 *7]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})-[ *01{usn1:false[..usn2][..999]}]-(_usn3 ).#usn7!.`` =4.9e12 Ends With $@usn6,usn2 =10.12e12[.0e0] Union All Remove Case #usn8[\"d_str\"..usn2] When $12[$`6esn`..][01..] Then $`4esn`[$@usn6...12e12] End.`7esn`!.``!.`7esn`?,All(`6esn` In 010[{`1esn`}..] Where `3esn` Starts With 9.1e-1 Starts With .9e-1).#usn8.`3esn`! Merge `4esn`=Allshortestpaths((usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) Unwind ``[$7..$_usn4] As ``"), + octest_legacy:ct_string("Optional Match `4esn`=Shortestpath(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))),((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))"), + octest_legacy:ct_string("Create `2esn`=(({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})) Detach Delete None(`` In `7esn` =~#usn8 =~\"d_str\" Where $`4esn` In {999}) Starts With ({usn1:12[..$`5esn`]})-[:`1esn`|:`1esn` *999..123456789{@usn5:$999 Ends With `2esn` Ends With 12.0}]->(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}) Starts With Case When $#usn8 Is Not Null Is Not Null Then $#usn8[$0..`3esn`][1e-1..$7] When $`` Starts With $`4esn` Starts With `3esn` Then .12e12[$usn1..][{@usn6}..] End,{123456789} Contains $0,Filter(#usn7 In .0e-0 In 12 Where 00[$``])[[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $`4esn`[usn2..]|3.9e-1 Contains $@usn5]] Union All Unwind Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Is Null As #usn8"), + octest_legacy:ct_string("Start _usn4=Rel:`4esn`({7}) Foreach(`3esn` In {`8esn`} Ends With true Ends With {`3esn`}| Create (`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]}))))"), + octest_legacy:ct_string("Match Shortestpath(((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999}))),_usn3=(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}) Using Join On `4esn`,`5esn`,@usn6 Where #usn8 =~{@usn5} Unwind {7} Is Not Null As _usn3 Union All Optional Match `5esn`=Shortestpath(((`8esn` :`8esn`)-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`8esn`*]-(`7esn` :``{usn2:$7}))),`3esn`=Allshortestpaths((((`4esn` :`3esn`)<-[@usn5?*..]->(:_usn3{_usn3:010[..9e-1][..0X7]})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)))) Using Index `5esn`:#usn8(_usn3) Return Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] As #usn8,[`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]),{`7esn`} Is Not Null Is Not Null As `1esn` Order By 00[{1000}] Descending,'s_str'[$_usn3..][9.1e-1..] Desc,$_usn4 =~$#usn8 =~{`4esn`} Desc Skip $``[9e12..] Limit Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[`8esn`(0X0123456789ABCDEF Is Not Null Is Not Null,{usn1} Is Not Null Is Not Null)..][{usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}..] Union All Foreach(`6esn` In $_usn4[..01234567][..$`6esn`]| Match ((`4esn` {@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})) Using Index `5esn`:`4esn`(_usn3) Using Join On #usn7,`7esn`)"), + octest_legacy:ct_string("Return 9e1[12] Order By 0xabc[01234567][.12e-12] Ascending,Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Asc Foreach(`4esn` In 7.0e-0[true]| Unwind None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Starts With {@usn5:999 Ends With {#usn8},_usn4:Null In {7}} As `5esn` Create #usn7=(`8esn` :`7esn`)-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``),((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))) With $`1esn`[..12e-12][...9e12] As `7esn` Order By .12e12[01..{1000}][8.1e1..Count ( * )] Asc,{12} Starts With $`` Starts With 0X0123456789ABCDEF Asc,$_usn3[0x0][{0}] Descending Skip 9e1[..{usn1}] Union Create `6esn`=((:#usn7:`8esn`{usn2:`1esn` =~{12} =~{999}})),`5esn`=(:usn2{`6esn`:9e12[..usn2][.._usn3],`1esn`:01[`6esn`..][0e0..]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}) Load Csv From 010[{`1esn`}..] As #usn7 "), + octest_legacy:ct_string("Using Periodic Commit 01 Load Csv With Headers From None(`6esn` In 010[{`1esn`}..] Where 0 In 2.9e1 In 7) Ends With [@usn6 In 9e12[..usn2][.._usn3] Where .12e12 Ends With 07 Ends With 3.9e-1|$@usn5 Is Null Is Null] As _usn3 Create (({`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654})-[$#usn8]->({usn2:01[`4esn`..]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1})),@usn6=((:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[?:`5esn`]-(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}))"), + octest_legacy:ct_string("Merge _usn4=((_usn3 :`6esn`)<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})) On Create Set `7esn`+=$``[Count(*)..{12}],@usn5 =All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))]"), + octest_legacy:ct_string("Merge Shortestpath((usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})) On Create Set `7esn` ={`1esn`}[7.0e-0..9e-1][01234567..{`4esn`}],`7esn`+=$`` =~$_usn3,`2esn` =[usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF] Is Null Is Null On Match Set Any(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])._usn4._usn3!.usn1! ={usn1} Is Not Null Optional Match (:`3esn`{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}),(:usn1{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`) Using Index `3esn`:`2esn`(`7esn`) Using Index usn2:`1esn`(`3esn`) Merge (({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})<-[usn2:`4esn`|:`2esn` *0X7..0Xa]-(#usn7 :#usn7:`8esn`)) Union All Load Csv With Headers From Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] As `7esn` Start `4esn`=Node(0x0) "), + octest_legacy:ct_string("Unwind Allshortestpaths(((@usn6 :@usn6:_usn3))) Is Null Is Null As `2esn` Start @usn6=Relationship:#usn8(usn2={12}) ,@usn5=Rel:usn2({`1esn`}) Return Distinct 2.9e1 =~{123456789} =~01 As usn1,.9e12 Is Not Null Is Not Null,12e12[usn2..$`6esn`] As usn1 Order By [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..] Asc,Case When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else {123456789} Starts With `6esn` End =~Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where `4esn` Contains 0X0123456789ABCDEF Contains $usn2) =~Allshortestpaths((`7esn` :``{usn2:$7})) Descending Skip Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End In (:usn1)<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}) In [_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|usn2 Ends With $123456789 Ends With {999}] Limit $`6esn`[$_usn3..{1000}] Union Unwind Single(`6esn` In 010[{`1esn`}..] Where {`4esn`} In 1000 In {@usn5}) Starts With Any(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01234567 Ends With .0e0 Ends With 12e12) As `1esn` Return Distinct 4.9e12[{_usn4}..],{`5esn`} Ends With $`7esn` Ends With {@usn5} Skip 00[{`4esn`}..] Limit false Contains {`7esn`} Merge `6esn`=(((`8esn` :usn2)-[@usn5:`2esn`|`5esn` *7]->(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})-[? *12{@usn6:$`` =~.1e-1}]->(:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}}))) On Match Set {usn1:{123456789} Starts With $_usn4 Starts With 0x0,`3esn`:$`4esn` Is Null Is Null}.`7esn`?.`7esn`?.#usn7 =1.9e0 In 2.12,Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where {0}[.1e-1..][_usn4..]).`6esn`.usn1.`7esn`? =12e-12 Ends With $999 Ends With ``,Extract(#usn8 In 07[..$`5esn`] Where 123.654 Ends With {1000} Ends With 9e12|$usn1[..$999][..0e0])._usn3! ={1000} Starts With {`1esn`}"), + octest_legacy:ct_string("With *,Reduce(#usn7=$usn1 Ends With {`2esn`} Ends With $usn1,`6esn` In 010[{`1esn`}..]|.9e-12[.12e12..][0Xa..])[#usn7(8.1e1 Contains $@usn6,$12[$`6esn`..][01..])..Reduce(@usn5=`1esn` In 6.0e0 In 12,`` In `7esn` =~#usn8 =~\"d_str\"|$`6esn` =~$#usn7 =~$`4esn`)] Order By Allshortestpaths(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0}))[Reduce(@usn6=10.12e12 Starts With $`4esn` Starts With 0e0,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$1000 Contains $123456789 Contains #usn8)..Case 7[..123456789][..true] When $1000[..0e-0][..010] Then 999 Starts With 7.0e-0 Starts With true End][[`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]]..Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When 0.12[Count ( * )..Count ( * )][$999..`5esn`] Then $123456789[..$999][..`6esn`] Else 7[{`4esn`}..] End] Asc,{`3esn`} =~$`` =~$`8esn` Ascending Skip Reduce(`1esn`={`5esn`}[01234567..][5.9e-12..],usn1 In {#usn7} =~.12e12 =~9e0|$`6esn`[..01][..{_usn3}]) Ends With (`2esn` :usn1)<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-(_usn3 :`1esn`:``) Ends With {usn1:{12}[6.0e0..{usn2}][{_usn3}..{#usn7}]} Limit {`3esn`}[...1e1][..0] Where $7[.1e-1..{@usn6}][$7..{`1esn`}] Start ``=Node(00) ,`2esn`=Rel(07,0Xa) Union All With @usn5[{`1esn`}..][Count ( * )..] As `8esn` Limit Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Contains (:`2esn`:`4esn`{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``) Contains {@usn6:10.12e12 Contains .9e0,`3esn`:`6esn` =~999 =~$999} Where {`1esn`}[..$_usn4] Union Delete Filter(@usn6 In 9e12[..usn2][.._usn3] Where 1.9e0[..0][.._usn3]) Ends With {`6esn`:9e12 Ends With \"d_str\" Ends With 0X7,`3esn`:0X0123456789ABCDEF[1e1..]} Ends With Reduce(@usn5=`` Contains {`6esn`} Contains 123456789,`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|00[$``]) Foreach(`5esn` In 0 Contains {`2esn`}| Optional Match Allshortestpaths((:`3esn`)) Using Index `6esn`:usn1(`3esn`) Where {``} Is Null Is Null)"), + octest_legacy:ct_string("Load Csv From #usn8(Distinct 12e12[{`4esn`}..`4esn`][999..{@usn6}])[Any(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1])..{``:9e1[0.0]}] As `7esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Load Csv With Headers From $999 =~false =~{`8esn`} As @usn6 Fieldterminator 's_str' Merge @usn5=(_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]}) On Match Set `7esn`+=$_usn3[0x0][{0}],Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}}))._usn3 =9e0[{7}...0e-0][Null..@usn5],usn1+=Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null"), + octest_legacy:ct_string("Optional Match ((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})) Using Index usn1:#usn8(``) Remove Case {0}[.0e-0][$`2esn`] When Count(*)[$7] Then $12 Ends With {_usn4} Ends With $`8esn` End.`6esn`,Shortestpath(((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))).``?,None(`2esn` In $@usn5 Is Not Null Is Not Null Where `6esn`[3.9e-1..`8esn`][12.0..0.0]).`7esn`! Create `6esn`=Shortestpath((@usn5 :_usn4:`2esn`{@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})),`2esn`=Shortestpath(((`1esn` :`7esn`{usn1:3.9e-1 Starts With .9e0 Starts With {#usn7}})<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]}))) Union Create Unique _usn4=((:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)),#usn8=(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]}) Unwind {7} Is Not Null As _usn3 Remove {``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}._usn3?"), + octest_legacy:ct_string("Optional Match #usn8=({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)}),((:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]})-[``:usn1|usn2{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]}]-(`7esn` {@usn5:Count ( * )[_usn4..]})-[usn2:_usn3 *0xabc..12]->(:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})) Using Scan ``:#usn8 Using Scan #usn7:`8esn` Match `3esn`=({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}),((:#usn7:`8esn`{@usn6:123456789[_usn4..`1esn`][$`6esn`..{@usn6}]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}})) Using Index `5esn`:`4esn`(_usn3) Union Delete Filter(@usn6 In 9e12[..usn2][.._usn3] Where 1.9e0[..0][.._usn3]) Ends With {`6esn`:9e12 Ends With \"d_str\" Ends With 0X7,`3esn`:0X0123456789ABCDEF[1e1..]} Ends With Reduce(@usn5=`` Contains {`6esn`} Contains 123456789,`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|00[$``]) Foreach(`5esn` In 0 Contains {`2esn`}| Optional Match Allshortestpaths((:`3esn`)) Using Index `6esn`:usn1(`3esn`) Where {``} Is Null Is Null)"), + octest_legacy:ct_string("Create Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))),@usn6=((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})) Foreach(`8esn` In {1000}[`2esn`...0e-0][9e-1..0X7]| Load Csv From usn2(Distinct $_usn3 =~'s_str' =~12) In (`` :usn1)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}) In Case When {_usn4}[{`6esn`}] Then 12e12 Is Not Null Is Not Null When #usn7 Is Null Is Null Then {`8esn`} Starts With .9e-1 Starts With 1000 End As usn2 ) Load Csv With Headers From $0[.9e12..] As `1esn` "), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv With Headers From $999 =~false =~{`8esn`} As @usn6 Fieldterminator 's_str' Foreach(usn2 In 's_str'[$_usn3..][9.1e-1..]| Start `7esn`=Node( {999}) ,`5esn`=Node:_usn4(@usn5={`4esn`})Where $#usn7)"), + octest_legacy:ct_string("Delete {#usn7} Ends With 999 Ends With 12,\"d_str\"[0x0..{@usn6}][$@usn5..0],{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1] Optional Match `2esn`=Allshortestpaths(((:#usn8:@usn6{`3esn`:$#usn7}))) Using Join On `5esn`,`8esn`,#usn7 Using Join On usn1,`1esn`,_usn4 Where {@usn5}[10.12e12..] Union All Remove (_usn3 :#usn7:`8esn`)<-[? *0X7..0Xa]->(`1esn` ).`6esn`!.@usn5 Remove {`1esn`:$#usn7 Starts With $123456789,`4esn`:{_usn3}[{0}...9e-1][9e-1...0e0]}.`1esn`?.@usn6?.`8esn`!"), + octest_legacy:ct_string("Return Distinct $usn2[{`1esn`}] As `5esn`,[usn1 In $@usn6 Is Null Is Null Where 9e0[`4esn`..$_usn4][9.1e-1..0e0]][Any(`` In `7esn` =~#usn8 =~\"d_str\" Where 9e-12 Ends With 9e1 Ends With 4.9e12)][(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]})] As _usn3,0e0[2.9e1..][.12e-12..] As `2esn` Order By `6esn`[0X0123456789ABCDEF..][`8esn`..] Ascending,[usn2 In .12e-12 Ends With `2esn` Where @usn5 In Null|false =~{`8esn`} =~00][Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where Count ( * ) =~123456789 =~{@usn5})..Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)] Descending,usn2($usn1 =~.0e0 =~{`4esn`}) Contains Allshortestpaths(((#usn8 :@usn5)<-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 )<-[?:`1esn`|:`1esn`{`5esn`:9e1[0.0]}]->(`8esn` ))) Ascending Limit {`8esn`}[.0e0..][999..] Create Unique `1esn`=((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})),`1esn`=((_usn4 )-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]}))"), + octest_legacy:ct_string("Match `4esn`=(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0}) Start `5esn`=Node:`8esn`('s_str') "), + octest_legacy:ct_string("Start `2esn`=Relationship(0) Where $12 Ends With 12.0 Ends With $`4esn` Union All With *,$_usn3[.0e-0..999],0 In 2.9e1 In 7 As usn2 Skip #usn8 Contains 7 Contains {`4esn`} Limit Allshortestpaths((((@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[``? *..00{@usn5:$`8esn` =~{`1esn`} =~$7,#usn7:.12e-12 Starts With .12e-12}]->({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]})-[:`8esn`|:#usn8 *01]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))))[..Case When {#usn7} Ends With 999 Ends With 12 Then {`3esn`}[999..$`4esn`] End] Load Csv With Headers From $`1esn`[4.9e12..][_usn3..] As `2esn` Fieldterminator 's_str' Start `5esn`=Node:`1esn`(`4esn`={@usn5}) Where {`8esn`} In {_usn3} In 6.0e0 Union Unwind 9e0 Is Null As ``"), + octest_legacy:ct_string("Return Distinct 0.0 Starts With 0X0123456789ABCDEF,{123456789} =~.9e1 =~$_usn3,Case When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 Else $12 Is Not Null Is Not Null End Starts With usn1(Distinct .9e1[$`1esn`..][$``..]) Starts With Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End Order By Null Ends With `4esn` Ends With `3esn` Descending,None(`6esn` In 010[{`1esn`}..] Where 0 In 2.9e1 In 7) Ends With [@usn6 In 9e12[..usn2][.._usn3] Where .12e12 Ends With 07 Ends With 3.9e-1|$@usn5 Is Null Is Null] Ascending,Case When true In 0.0 Then {`4esn`}[{`3esn`}][$`2esn`] Else @usn6 Starts With #usn7 End =~{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}} =~{_usn3:010[..9e-1][..0X7]} Descending Union All Remove `5esn`:`6esn`,[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01|_usn4 Ends With {`8esn`} Ends With usn2].usn1.`7esn`.@usn6 Match (((:`6esn`)-[? *0Xa..12{`4esn`:9e-12[$7..]}]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(usn2 {`7esn`:.9e12 Contains 0 Contains $0}))),@usn6=Shortestpath((:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})) Using Index `6esn`:usn1(#usn8) Using Scan `1esn`:#usn8"), + octest_legacy:ct_string("With Distinct *,0X0123456789ABCDEF In .9e-1 In 123456789 Limit 1.9e0 =~.0e0 =~0X7"), + octest_legacy:ct_string("Create Shortestpath((`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})),((_usn3 :`7esn`{@usn6:$`4esn` Ends With .12e12 Ends With 123.654})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)<-[#usn7? *0xabc..12]-(:`3esn`)) With {`2esn`}[0x0..9e0] As `6esn`,{`8esn`} Ends With true Ends With {`3esn`} As `2esn` Skip {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null) Where 2.9e1 Ends With `5esn` Ends With 1000"), + octest_legacy:ct_string("Match ``=Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))),`7esn`=Shortestpath(((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})))) Where 0X0123456789ABCDEF[1e1..]"), + octest_legacy:ct_string("Load Csv From $`6esn`[0..{@usn6}][@usn5..1000] As _usn3 Fieldterminator \"d_str\" Union All Delete `2esn` In .9e0 In ``,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Unwind 9e1[0.0] As @usn5 Remove {``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}._usn3? Union All Load Csv With Headers From Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null As @usn5 Fieldterminator \"d_str\" Foreach(`3esn` In Reduce(`7esn`=#usn7 Contains .0e0 Contains $@usn6,`6esn` In 010[{`1esn`}..]|00 Is Not Null Is Not Null)[$7..]| Load Csv From {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null) As @usn6 Start `5esn`=Node:usn2(_usn4='s_str') ) Return {0}[.1e-1..][_usn4..] As _usn3,9e0[{7}...0e-0][Null..@usn5] As `` Limit $_usn3 Is Null"), + octest_legacy:ct_string("Create Unique `4esn`=Shortestpath(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))),((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))"), + octest_legacy:ct_string("Detach Delete $usn1 =~9e1 =~$1000 Union Optional Match `3esn`=({#usn8:_usn4[$_usn4]})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7}) Where .12e12[..$123456789] Detach Delete Reduce(`1esn`={`5esn`}[01234567..][5.9e-12..],usn1 In {#usn7} =~.12e12 =~9e0|$`6esn`[..01][..{_usn3}]) Ends With (`2esn` :usn1)<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-(_usn3 :`1esn`:``) Ends With {usn1:{12}[6.0e0..{usn2}][{_usn3}..{#usn7}]},{7}[0x0][1e1],$1000 Is Null"), + octest_legacy:ct_string("Delete true[..{`2esn`}],Allshortestpaths(({usn1:12[..$`5esn`]})<-[:`4esn`|:`2esn`{`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]}]-(#usn8 :usn2))[..`1esn`][..Case .12e-12 Starts With .12e-12 When 0xabc Starts With {`3esn`} Starts With {``} Then {usn2} Is Not Null Is Not Null Else {`4esn`} Ends With Count(*) End],$`4esn` Contains `4esn` Contains .0e-0 Load Csv From [usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0|4.9e12 Is Not Null Is Not Null] =~Case {_usn3} In $#usn8 In $12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else 0[..{0}][..true] End =~Case Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else $_usn3 Starts With 010 End As #usn7 Load Csv With Headers From 12 Ends With 12e12 As usn1 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Create ((`5esn` :#usn8:@usn6))"), + octest_legacy:ct_string("Unwind `6esn`[0X0123456789ABCDEF..][`8esn`..] As `1esn` Foreach(_usn3 In 12e12 Is Not Null Is Not Null| Remove [`3esn` In 8.1e1 Contains .9e-1 Contains false Where 07 Ends With {1000} Ends With 01234567|$`5esn` Ends With 's_str' Ends With $`6esn`].`2esn`,{`2esn`:0xabc[01234567][.12e-12],`1esn`:{`3esn`}[#usn7]}._usn4?,(_usn3 )<-[:`8esn`|:#usn8 *0X7..0Xa]->(`4esn` :`8esn`{12}).`8esn`!._usn3? Return *,@usn5[{`1esn`}..][Count ( * )..] As `8esn` Order By {_usn3:.0e-0[..``][..$7]}[..(`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`)][..@usn5] Descending Skip $999[9e0] Limit false =~{`8esn`} =~00) Union All Detach Delete {`8esn`}[9e-12..0],`` Ends With 1.0 Ends With usn1 Remove Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With ``).`5esn`,{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}._usn3.`2esn`!,Reduce(`8esn`=@usn6[999][1000],#usn8 In 07[..$`5esn`]|{`8esn`}[9e12..][{_usn4}..]).`4esn`? Detach Delete {`1esn`} Contains 1.0 Contains 4.9e12,{999}[..`6esn`],{`3esn`} =~$`` =~$`8esn` Union All Foreach(_usn3 In Null| Optional Match ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),_usn3=Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)))) Return *,$12 Is Null As #usn8 Order By ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[_usn3?:@usn5|:#usn7]->(`` :``)-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Starts With Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`) Ascending,{`8esn`} =~$#usn7 =~2.12 Desc,Count(*) Starts With 07 Starts With $#usn7 Desc Skip @usn6[true..] Create ({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12}),#usn8=Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]})))"), + octest_legacy:ct_string("With Distinct All(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`]) Ends With Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e-12[9e1]),9e0[`3esn`][0] As #usn7,`1esn`[..$1000] As _usn3 Load Csv From (usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[_usn3?:@usn5|:#usn7]->(`2esn` :usn1)<-[?:usn1|usn2{#usn8:'s_str'[`2esn`][12.0]}]->(_usn3 :``)[[usn2 In .12e-12 Ends With `2esn` Where .9e0[07..][4.9e12..]|12.0[...0e0]]] As _usn4 Fieldterminator \"d_str\""), + octest_legacy:ct_string("With Distinct *,Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null Skip 0xabc Contains 12 Contains Null Limit $123456789 Contains 07 Contains 0.0 Load Csv From {_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}[Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)][[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1]] As `5esn` Fieldterminator 's_str' Union All Start `7esn`=Node:usn1(\"d_str\") ,`5esn`=Relationship(999,010,07,123456789) Union All Start #usn7=Node( {``}) Where $`6esn`[..01][..{_usn3}] Optional Match `7esn`=(@usn5 :@usn5{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6})-[usn2?:`1esn`|:`1esn` *..123456789]-(:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[:_usn3]-(`3esn` ),(({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 {#usn7:$999 =~false =~{`8esn`}})) Where {#usn7} Starts With .1e-1"), + octest_legacy:ct_string("Load Csv From Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As #usn8 Optional Match `2esn`=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))) Using Join On _usn3,usn2 Using Index _usn4:`1esn`(@usn5) Where 0e0 Contains {`2esn`} Start @usn6=Relationship:usn2({usn2}) ,usn2=Node:`2esn`(_usn4={#usn7})Where `7esn`[1.9e0..5.9e-12][9e0..@usn5] Union Start _usn3=Rel:usn2(#usn7='s_str') ,_usn3=Node( {usn2}) Union All With *,$_usn3[.0e-0..999],0 In 2.9e1 In 7 As usn2 Skip #usn8 Contains 7 Contains {`4esn`} Limit Allshortestpaths((((@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[``? *..00{@usn5:$`8esn` =~{`1esn`} =~$7,#usn7:.12e-12 Starts With .12e-12}]->({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]})-[:`8esn`|:#usn8 *01]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))))[..Case When {#usn7} Ends With 999 Ends With 12 Then {`3esn`}[999..$`4esn`] End] Load Csv With Headers From $`1esn`[4.9e12..][_usn3..] As `2esn` Fieldterminator 's_str' Start `5esn`=Node:`1esn`(`4esn`={@usn5}) Where {`8esn`} In {_usn3} In 6.0e0"), + octest_legacy:ct_string("Return *,$`3esn`[..{`5esn`}],$_usn3 Contains 1.0 Contains 0.12 As `` Skip 5.9e-12[..9e0] Union With Distinct 4.9e12 Starts With {``} Where $0 Ends With 9e-12 Ends With $_usn4"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv From {`8esn`:`1esn` In 6.0e0 In 12} =~Case 7 Starts With 9e-12 When .9e12 Is Not Null Is Not Null Then 1000[{`1esn`}..][$`3esn`..] Else {`6esn`}[6.0e0..9e0][.9e1..12e12] End As `5esn` Merge Allshortestpaths(((_usn4 {_usn3:.0e-0[..``][..$7]}))) On Match Set @usn5+=Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null Return Distinct *,{``}[$usn2..00][{_usn3}..123.654],`5esn` Ends With 's_str' Ends With @usn5 Skip Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn`) Contains (`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) Contains Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}) Limit (`1esn` :`5esn`:`7esn`)-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})[[#usn8 In 07[..$`5esn`] Where `8esn`[_usn4]]..Reduce(`7esn`=$@usn5 Is Null Is Null,`2esn` In $@usn5 Is Not Null Is Not Null|{`1esn`}[..$_usn4])][Case When `4esn` =~010 Then {7}[$@usn5..123456789][1e1..1.9e0] Else 1e-1 =~$`7esn` =~1e1 End..#usn7(Distinct usn1 =~false =~{999},{`3esn`} =~$@usn5 =~`2esn`)]"), + octest_legacy:ct_string("Foreach(@usn6 In {`6esn`} Starts With 12e12 Starts With {`2esn`}| Delete {123456789} Contains $#usn7 Contains {#usn8} Load Csv From None(`1esn` In $12 In {usn2})[..Reduce(usn2=.9e0 In 8.1e1,`3esn` In 8.1e1 Contains .9e-1 Contains false|$_usn3 Is Not Null)] As #usn7 Fieldterminator 's_str')"), + octest_legacy:ct_string("Match Allshortestpaths((`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`)) Using Index usn1:``(@usn5) Union Unwind {`8esn`}[.0e0..][999..] As `1esn` Union All Remove All(`` In `7esn` =~#usn8 =~\"d_str\" Where 9e12 Ends With 9e-1 Ends With 9e1)._usn4?.`2esn`,#usn8({`4esn`} Ends With Count(*),`6esn`[3.9e-1..`8esn`][12.0..0.0]).`3esn`!.`6esn`? Remove Allshortestpaths(((`7esn` {#usn8:2.9e1[{`2esn`}]})-[?:`1esn`|:`1esn` *..0x0{@usn6:.0e-0 In 12}]-(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0})-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]-(`1esn` :_usn4:`2esn`))).`2esn`?.`7esn`.`5esn`,Shortestpath((`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]}))._usn3.`3esn`.`1esn`!,#usn7(Distinct \"d_str\" Is Not Null Is Not Null,$`6esn`[$_usn3..{1000}])._usn3!.#usn7?"), + octest_legacy:ct_string("Load Csv From $@usn5 =~{`3esn`} As `8esn` Fieldterminator 's_str' Foreach(`` In 07 Ends With {1000} Ends With 01234567| Remove `8esn`:`1esn`:``,[usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000|{#usn8} In {12} In .9e12].`5esn`!.`8esn`._usn4?,{`7esn`:.9e12 Contains 0 Contains $0}.`3esn`!.@usn5?.usn1 Unwind Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null As @usn5) Union Delete @usn5[@usn6],{`5esn`}[{usn2}..$`1esn`] Foreach(#usn8 In usn2 Starts With $usn1 Starts With 10.12e12| With {1000} Starts With 10.12e12 Starts With .0e-0 As `8esn`,Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) As _usn4 Skip Count ( * ) Starts With 0.12 Limit Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Create ``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))))"), + octest_legacy:ct_string("Create Unique #usn7=Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)),#usn7=((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})) Union With Case false =~{`8esn`} =~00 When usn2 Starts With $usn1 Starts With 10.12e12 Then usn2 Starts With $usn1 Starts With 10.12e12 When {1000} =~4.9e12 =~9e1 Then `3esn` =~$#usn7 End Ends With All(usn2 In $`5esn`[{`4esn`}][{0}] Where 0e0 Contains {`2esn`}) Ends With [#usn7 In .0e-0 In 12 Where Count ( * ) Is Not Null Is Not Null|$`7esn` Starts With 's_str'] As #usn7,{`8esn`:{usn2}[{999}..][9e12..]}[(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[`3esn` *..0x0]-(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:_usn4|:`1esn` *01]-(`4esn` {`3esn`:{`7esn`} =~\"d_str\" =~{``},`3esn`:{`1esn`} Contains 1.0 Contains 4.9e12})][Reduce(`7esn`=123.654[01..][Count(*)..],`6esn` In 010[{`1esn`}..]|0.0[$`4esn`])] As `7esn`,`4esn`[12.0..][9.1e-1..] As `4esn` Order By 1.9e0 In 2.12 Asc,usn1 =~false =~{999} Desc Where 0[..12][..{`8esn`}] With Distinct 4.9e12 Is Not Null Is Not Null,$`7esn` In $0 Order By Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $#usn7[01..2.12][2.12..3.9e-1]) =~_usn3(.0e-0 Ends With $`2esn` Ends With `5esn`,$usn1 =~.9e12 =~`6esn`) =~Reduce(_usn3=5.9e-12 Is Null Is Null,_usn3 In `8esn`[_usn4]|2.9e1[Count ( * )..]) Asc Limit 0[10.12e12] Where .12e12 Starts With 5.9e-12 Starts With `4esn` Delete [usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]][`5esn`(Distinct $@usn5[`8esn`][12e12])..][``(Distinct $1000 Is Null,1e-1[$`4esn`])..],$`4esn` Is Null Is Null Union All Foreach(_usn3 In Case When $12 Ends With 12.0 Ends With $`4esn` Then `8esn`[.12e12..] End[Single(`6esn` In 010[{`1esn`}..] Where _usn4 Ends With {`8esn`} Ends With usn2)][Filter(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 1.9e0[`6esn`][`7esn`])]| Remove #usn7(Distinct \"d_str\" Is Not Null Is Not Null,$`6esn`[$_usn3..{1000}])._usn3!.#usn7?,[usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $12 Is Null Is Null].``.`3esn`?) Create Unique `1esn`=(`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}) Start @usn5=Node:_usn4({_usn3}) ,`3esn`=Node(0xabc,7,0Xa,01234567)Where {123456789} Contains $0"), + octest_legacy:ct_string("Detach Delete 0.12[Count ( * )..Count ( * )][$999..`5esn`],123.654 Contains true Contains 7.0e-0 Unwind 9e12[..usn2][.._usn3] As @usn5 Union All Match `2esn`=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))),((:`4esn`:usn2{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(_usn4 :usn2)) Using Join On `5esn`,`8esn`,#usn7"), + octest_legacy:ct_string("Remove Shortestpath(({@usn6:`3esn` Contains 01 Contains 01})<-[#usn8?]->(#usn8 {usn2:$0 Ends With 9e-12 Ends With $_usn4,`5esn`:0e-0[{@usn6}]})).`5esn`!.`5esn`?,{`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}.``!.`6esn`?,{`1esn`:{123456789} =~.9e1 =~$_usn3,#usn8:`5esn` Contains 0 Contains $12}.#usn8!.#usn8!.`1esn`? Union All Match `1esn`=((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})),`1esn`=((_usn4 )-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})) Remove Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where Null In {7}).#usn7?,Single(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).usn1!"), + octest_legacy:ct_string("Create Unique `3esn`=(`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999})-[`3esn`?:`1esn`|:`1esn`]-(#usn8 {``:@usn6 Starts With #usn7,@usn6:7[..123456789][..true]})<-[?:`1esn`|:`1esn`]-(`1esn` :#usn8:@usn6{`7esn`:.1e-1 Contains .12e-12,`2esn`:.1e1 Ends With #usn7 Ends With {#usn7}}),`2esn`=((`8esn` :`5esn`:`7esn`)-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})<-[#usn8?:_usn3 *..123456789]->(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})) Foreach(`7esn` In [`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0|2.12[`4esn`][.9e-1]][Reduce(usn2={_usn4} Ends With {0} Ends With `1esn`,`` In `7esn` =~#usn8 =~\"d_str\"|$123456789 Is Not Null Is Not Null)]| With Distinct {_usn3} Is Null Is Null As #usn8,None(`` In `7esn` =~#usn8 =~\"d_str\" Where 1e-1 =~$`7esn` =~1e1) Is Not Null Is Not Null As @usn5,Null[{999}..$usn2] As `7esn` Order By 7.0e-0 Starts With {123456789} Starts With @usn6 Asc,9.1e-1 In {`1esn`} Asc,Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] Ascending Load Csv With Headers From 0xabc Starts With `2esn` Starts With 10.12e12 As usn2 ) Create Unique (((`8esn` :`8esn`)<-[usn1?{`5esn`:$0 Ends With 9e-12 Ends With $_usn4}]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})-[?:_usn3]->(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]}))),((`` :`7esn`)) Union All Unwind 9e0 In {usn2} In {@usn6} As @usn5 Start `2esn`=Relationship:_usn4(@usn6=\"d_str\") Union All Load Csv From $12 Contains false Contains {`1esn`} As usn1 Fieldterminator \"d_str\" Remove Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When $1000[_usn4][{@usn5}] Then 4.9e12[{_usn4}..] End.@usn6?.#usn8! Unwind {`8esn`} Contains $@usn5 As _usn4"), + octest_legacy:ct_string("Start ``=Rel:_usn3({7}) ,`1esn`=Rel:#usn8(`8esn`={123456789}) Merge ((`8esn` :`8esn`)-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`8esn`*]-(`7esn` :``{usn2:$7})) Unwind 0e-0[{12}] As #usn8 Union All Foreach(`7esn` In Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End =~{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}| Remove {`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}.`5esn`!) Unwind 9e12[..usn2][.._usn3] As @usn5 Load Csv From \"d_str\" Contains {@usn6} As `3esn` Fieldterminator 's_str' Union All Optional Match (`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5) Using Index _usn3:usn2(`4esn`) Using Index @usn5:`3esn`(`8esn`) Where $0 Contains $123456789 Contains {`3esn`} Return *,{`4esn`} In 1000 In {@usn5} Order By .0e-0[010..] Asc,6.0e0 In 9e-1 In 123456789 Ascending,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) Desc Limit Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}])"), + octest_legacy:ct_string("Return {_usn4}[{`6esn`}],true In 0.0 As #usn7 Skip 0.12[{@usn6}..{#usn7}] Limit (`1esn` :`5esn`:`7esn`)-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})[[#usn8 In 07[..$`5esn`] Where `8esn`[_usn4]]..Reduce(`7esn`=$@usn5 Is Null Is Null,`2esn` In $@usn5 Is Not Null Is Not Null|{`1esn`}[..$_usn4])][Case When `4esn` =~010 Then {7}[$@usn5..123456789][1e1..1.9e0] Else 1e-1 =~$`7esn` =~1e1 End..#usn7(Distinct usn1 =~false =~{999},{`3esn`} =~$@usn5 =~`2esn`)]"), + octest_legacy:ct_string("Load Csv With Headers From 11.12e-12 Starts With 1.0 Starts With 12.0 As `4esn` Fieldterminator \"d_str\" Union Unwind Shortestpath(((`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))[All(_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null)] As #usn8 Create `1esn`=Allshortestpaths((usn2 :@usn5{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})),@usn6=Shortestpath((_usn4 )) Unwind 1000[{12}..][0e0..] As `5esn`"), + octest_legacy:ct_string("Load Csv With Headers From 0Xa In 1.0 In $@usn5 As @usn5 Fieldterminator \"d_str\" Union All Unwind {`6esn`} In 11.12e-12 In 2.9e1 As `5esn` Union All Create Unique (:usn1$1000)"), + octest_legacy:ct_string("Merge `3esn`=Shortestpath(((`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})<-[usn2? *0xabc..12{`6esn`:`8esn`[_usn4]}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]}))) On Create Set Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0[..{#usn7}][..$_usn3]).#usn7? ={@usn5}[10.12e12..],[`1esn` In $12 In {usn2} Where 9e-1[1.9e0]]._usn4!.`4esn`? ={`8esn`}[@usn5][$`2esn`],`1esn` ={@usn6:$12 Is Null} In (`4esn` {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}) On Create Set #usn7 =usn1 =~false =~{999},Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}).`2esn`! =9e12 Is Null Is Null,`2esn`+=Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`}) Ends With Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))) Ends With Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1)"), + octest_legacy:ct_string("Start #usn7=Node:@usn6(#usn8='s_str') ,_usn4=Rel:`5esn`(@usn5=\"d_str\") Merge (@usn5 :`6esn`{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]})-[:usn1|usn2]->(`8esn` :`5esn`:`7esn`)-[:usn1|usn2{#usn7:{`3esn`}[#usn7],`4esn`:010[..9e-1][..0X7]}]-(_usn3 {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}) On Match Set Reduce(usn1={usn1} Contains `4esn`,_usn3 In `8esn`[_usn4]|{`8esn`}[..999][.._usn3]).`2esn` =Case When 9e-12[010..{#usn7}][{123456789}..7] Then $999 =~false =~{`8esn`} When {0}[.0e-0][$`2esn`] Then 12e12 Is Not Null Is Not Null Else false[..usn2][..999] End[Allshortestpaths(((({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(@usn6 :@usn5)-[`2esn`? *7{`5esn`:false[..usn2][..999]}]-(`4esn` :@usn6:_usn3))))..All(usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null)][.9e0..`4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`)],Reduce(_usn4=5.9e-12 Contains {12} Contains {#usn8},`7esn` In 0.12 Is Not Null|{`5esn`}[.1e-1..1e-1][999..{_usn3}]).#usn8.``? =$usn2[{`1esn`}],`5esn` =0[4.9e12] Return Distinct *,$12 Is Null Is Null As #usn8 Skip {@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] Union All With Distinct *,(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[`3esn` *..0x0]-(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:_usn4|:`1esn` *01]-(`4esn` {`3esn`:{`7esn`} =~\"d_str\" =~{``},`3esn`:{`1esn`} Contains 1.0 Contains 4.9e12}) =~Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 9e12 Is Null Is Null) =~(:@usn5{#usn7:Null,`5esn`:{@usn5} Ends With 0Xa Ends With .12e-12})-[:`3esn`|`3esn` *1000..]-(@usn6 ),(`2esn` :`4esn`:usn2{`8esn`:.9e-1 Contains .9e0 Contains ``,_usn4:8.1e1 Contains .9e-1 Contains false})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Is Null Is Null As `1esn` Skip _usn4['s_str'][8.1e1] Match `2esn`=(((:`7esn`{`4esn`:@usn5 =~$#usn7 =~{usn1}})<-[?:`1esn`|:`1esn`]-(usn2 :``{#usn7:1e-1 =~$`7esn` =~1e1,`7esn`:{0}[`4esn`..{`8esn`}]})<-[:`6esn` *1000..{#usn7:`2esn`,`7esn`:$@usn5 Is Not Null Is Not Null}]->(@usn5 {`8esn`:123456789[#usn7..9e-1][10.12e12..{0}],@usn6:1.0 Is Not Null}))),#usn7=Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)) Where 7[..123456789][..true] Start `4esn`=Node( {``}) ,@usn5=Relationship:``(`4esn`='s_str') Union All With *,$123456789[..$999][..`6esn`] As @usn5,Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07)[Case 9e-12 Ends With 9e1 Ends With 4.9e12 When `3esn` =~$#usn7 Then $@usn5 Starts With #usn7 When {`4esn`}[{`3esn`}][$`2esn`] Then #usn7[$`8esn`][{`3esn`}] Else 9e0[`4esn`..$_usn4][9.1e-1..0e0] End][[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]] Skip @usn5[9e-1..{`1esn`}] Limit 11.12e-12 Contains usn1 Delete $999 =~false =~{`8esn`},{0}[`4esn`..{`8esn`}],usn2[..$0][..`3esn`]"), + octest_legacy:ct_string("Merge #usn7=Allshortestpaths(((_usn4 :`6esn`$_usn3)-[`8esn`? *0X7..0Xa{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}]-(:``{usn2:00 Is Not Null Is Not Null})<-[? *999..123456789]->(usn2 :@usn5{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Union All Foreach(`` In Shortestpath(((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(_usn3 :usn1)))[..{_usn4:.9e-1 Ends With .0e-0 Ends With {_usn3},_usn4:9e1 Ends With 9e12 Ends With 0x0}][..Reduce(#usn8=`8esn`[_usn4],`1esn` In $12 In {usn2}|$`4esn` Is Not Null)]| Start #usn7=Relationship:#usn8(usn2={12}) Where 01234567 Ends With .0e0 Ends With 12e12 Unwind `6esn`[0X0123456789ABCDEF..][`8esn`..] As _usn4) Merge ((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})) On Create Set Case When 01234567 Ends With .0e0 Ends With 12e12 Then 00[$``] End.`1esn` ={1000} Ends With .12e12 Ends With 010 Optional Match `6esn`=((`3esn` :#usn8:@usn6)) Using Join On `6esn`,`1esn`"), + octest_legacy:ct_string("Detach Delete All(_usn3 In `8esn`[_usn4] Where 5.9e-12[0x0..])[(`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})][Reduce(`8esn`=#usn7 =~$@usn5 =~{7},usn2 In $`5esn`[{`4esn`}][{0}]|{@usn5}[10.12e12..])] Return {#usn7}[.12e-12] As `1esn`,5.9e-12[\"d_str\"..][{`6esn`}..] As #usn7 Limit Case When #usn7 Contains .0e0 Contains $@usn6 Then .12e-12[@usn6..'s_str'] Else {0}[`4esn`..{`8esn`}] End Is Not Null Is Not Null Merge `2esn`=Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) On Create Set Case 0xabc[..Count(*)][..$`5esn`] When `6esn`[0X0123456789ABCDEF..][`8esn`..] Then `2esn`[`7esn`][1000] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} Else 12e12[{`4esn`}..`4esn`][999..{@usn6}] End.``!.#usn8! =Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})),(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})-[_usn4:_usn3{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]}).#usn7! =8.1e1 Contains .9e-1 Contains false,`5esn` =false Is Not Null Is Not Null"), + octest_legacy:ct_string("Merge Shortestpath((`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[:`1esn`|:`1esn` *0{`8esn`:2.12[{12}],`7esn`:$@usn6[``..][3.9e-1..]}]->(:`2esn`:`4esn`{usn2:$@usn6[.1e-1][9e12],`5esn`:12e12 Is Not Null Is Not Null})-[`5esn`?:#usn7|:@usn5{usn2:#usn7[123.654][{12}]}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})) On Create Set _usn3+=Case {`4esn`} Ends With Count(*) When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] When $#usn7 Contains 3.9e-1 Then 123.654[10.12e12..$12][6.0e0..{#usn8}] Else $usn1[0e0...9e-12] End[Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))..][Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})..],#usn7+=[`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|01[$`1esn`..$`7esn`][{usn2}..12.0]][(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]-(:_usn3{_usn3:010[..9e-1][..0X7]})..][[`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 0X0123456789ABCDEF Is Not Null Is Not Null]..],Case When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else `6esn`[3.9e-1..`8esn`][12.0..0.0] End.`7esn`?.`5esn`?.#usn8! =7.0e-0 Is Not Null Create `1esn`=Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))),usn2=((:`7esn`{`4esn`:@usn5 =~$#usn7 =~{usn1}})-[`8esn`{#usn8:.12e12[..7]}]-({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`1esn`? *0{@usn6:true Is Null}]-(_usn4 ))"), + octest_legacy:ct_string("Foreach(usn2 In {#usn7}[.12e-12]| With $`7esn` In $@usn5,{999} =~$`6esn` =~$`6esn` As `1esn`,12[4.9e12..] As #usn8 Skip [@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null] Starts With Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789) Starts With All(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0) Where {_usn4} In 0X7 In 0e0 With $`1esn`[..12e-12][...9e12] As `7esn` Order By .12e12[01..{1000}][8.1e1..Count ( * )] Asc,{12} Starts With $`` Starts With 0X0123456789ABCDEF Asc,$_usn3[0x0][{0}] Descending Skip 9e1[..{usn1}]) Union Merge Shortestpath(((`7esn` {@usn5:Count ( * )[_usn4..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))) On Match Set Case 0xabc[..Count(*)][..$`5esn`] When `6esn`[0X0123456789ABCDEF..][`8esn`..] Then `2esn`[`7esn`][1000] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} Else 12e12[{`4esn`}..`4esn`][999..{@usn6}] End.``!.#usn8! =Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})),(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})-[_usn4:_usn3{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]}).#usn7! =8.1e1 Contains .9e-1 Contains false,`5esn` =false Is Not Null Is Not Null On Match Set @usn5+=Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null"), + octest_legacy:ct_string("With Distinct *,$usn1[..$999][..0e0] As #usn7,.9e-12[{@usn5}] As `7esn` Limit 999 Ends With {#usn8} Union All Create Allshortestpaths((`1esn` :`5esn`:`7esn`)-[{``:{`3esn`}[01234567][{#usn7}],_usn4:999 Is Null Is Null}]->(usn2 {``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})) Optional Match Shortestpath((@usn6 :@usn5)) Where `3esn` Is Null Is Null"), + octest_legacy:ct_string("Load Csv With Headers From 2.9e1 In {``} As `7esn` Unwind {`7esn`}[0.12] As usn2"), + octest_legacy:ct_string("Load Csv From {`5esn`}[.1e-1..1e-1][999..{_usn3}] As _usn3 Fieldterminator 's_str' Match `2esn`=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))),Shortestpath((((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[`8esn`*]-(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)))) Using Scan #usn8:`8esn` Using Scan `4esn`:#usn7 Where 2.9e1 =~Count(*) =~{123456789} Union All Start _usn3=Relationship:`3esn`(#usn7={_usn3}) ,`1esn`=Rel:``({`4esn`})"), + octest_legacy:ct_string("Optional Match @usn5=Allshortestpaths(((:usn1{#usn8:2.9e1[{`2esn`}]}))) Using Scan #usn7:`` Using Index #usn8:usn2(@usn5) Where 10.12e12 Contains .9e0"), + octest_legacy:ct_string("Merge ``=Shortestpath((`1esn` {`6esn`:{`5esn`},usn1:$`4esn` Ends With {999}})) On Match Set Shortestpath((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})-[`3esn`? *..07]-(#usn7 {_usn4:$12[$`6esn`..][01..]})).@usn6! =Single(usn1 In $@usn6 Is Null Is Null Where 0X0123456789ABCDEF Ends With {1000}) In (`1esn` :#usn8:@usn6{usn1:#usn8 Is Null Is Null,_usn3:{`4esn`} In 1000 In {@usn5}})-[``:``|:`7esn`*{#usn8:{#usn7}[.12e-12],`3esn`:1.9e0[`6esn`][`7esn`]}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})-[usn1?:`3esn`|`3esn`*..]->(:usn1) In Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1),Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When $1000[_usn4][{@usn5}] Then 4.9e12[{_usn4}..] End._usn3! =7[..123456789][..true] On Create Set `3esn` =$7[.1e-1..{@usn6}][$7..{`1esn`}],None(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {0}[.1e-1..][_usn4..]).usn2 =$`7esn` In $`4esn`,usn1+=$`4esn` Ends With {999}"), + octest_legacy:ct_string("With Distinct *,$`5esn` Ends With 's_str' Ends With $`6esn` As usn1 Order By {`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]} In Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}))) In Extract(_usn3 In `8esn`[_usn4] Where 0[..{#usn7}][..$_usn3]|0x0 Ends With #usn8 Ends With .9e-1) Descending,$12 Contains false Contains {`1esn`} Descending,\"d_str\" Starts With .1e-1 Asc Skip $`1esn`[..12e-12][...9e12] Where 0X7[#usn7..][$@usn5..] Load Csv From {usn1:$usn1[9e1][{999}],#usn8:0e-0[$``..10.12e12]}[Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End] As `8esn` Union Load Csv From $_usn3[usn2..][usn1..] As @usn5 Fieldterminator 's_str' Merge usn1=Allshortestpaths(((:`4esn`:usn2{usn2:$usn2 Ends With 00 Ends With 9e12,_usn4:{`5esn`}})-[?:``|:`7esn` *12{#usn8:10.12e12 Contains .9e0,usn1:0xabc Contains {12} Contains {`6esn`}}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))) On Create Set Single(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`).usn2!.`5esn`.`2esn`! =11.12e-12 Contains usn1,(_usn4 :`1esn`:``{`3esn`})-[:`5esn` *01234567..{`2esn`:{usn1} Contains {`2esn`},#usn7:`4esn`[9e-12..true]}]-(:`5esn`:`7esn`{`1esn`:{1000}[..`5esn`][..9e12]}).`3esn`?.usn2!.`6esn` =Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})),`5esn`+=[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12][All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3])..][Case When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else @usn5[9e-1..{`1esn`}] End..] On Match Set {usn2:.9e-12[.12e12..][0Xa..]}.usn2.#usn8.usn2! =.9e1 Ends With 0x0 Load Csv From Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] As `8esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Merge _usn4=(`8esn` :`4esn`:usn2)-[#usn8?:`8esn`|:#usn8 *999..123456789]->(#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Match #usn7=((:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}})<-[usn2? *0X0123456789ABCDEF]-($12)) Using Scan `1esn`:#usn8 Delete 1.9e0[$`4esn`],07[..$`5esn`] Union All Load Csv From {@usn6} In 9e12 As usn2 Union Unwind 123.654 =~12 =~{_usn3} As `7esn`"), + octest_legacy:ct_string("Optional Match Allshortestpaths((((:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})-[`7esn`:`1esn`|:`1esn` *0Xa..12]-(`8esn` :`7esn`)<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})))),#usn7=((`1esn` :usn2{`8esn`:12.0[...0e0]})) Using Scan #usn8:_usn3 Using Index @usn5:@usn5(_usn4) Where {`6esn`}[@usn5..{@usn6}] Return *,_usn4[{``}..{`6esn`}][$7..$_usn3] Order By 9e0 Ends With {7} Desc,`4esn` =~_usn4 =~0e-0 Descending Union All Optional Match `6esn`=((`1esn` :`8esn`)<-[:usn1|usn2]-(`` :`4esn`:usn2)<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``)) Using Index usn1:#usn8(``) Using Join On `4esn`,`2esn`,`` Where 0.0[$`4esn`] Load Csv With Headers From Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) As usn2 Union Merge `6esn`=(((`8esn` :usn2)-[@usn5:`2esn`|`5esn` *7]->(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})-[? *12{@usn6:$`` =~.1e-1}]->(:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}}))) On Match Set `7esn`+=$_usn3[0x0][{0}],Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}}))._usn3 =9e0[{7}...0e-0][Null..@usn5],usn1+=Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null On Match Set _usn4+=01234567[10.12e12][0Xa],Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01).#usn7!.`2esn`.@usn6! =4.9e12 Ends With $@usn6,`3esn`+=.1e-1 Is Not Null"), + octest_legacy:ct_string("Optional Match `5esn`=({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}),`6esn`=(((`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn2 *7]-(`8esn` {_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`})))"), + octest_legacy:ct_string("Start ``=Node:`7esn`({#usn7}) Where 01234567[1000..][$`8esn`..] Match Shortestpath(((:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(`2esn` :_usn3)<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(:#usn7:`8esn`))),_usn4=((`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})) Using Scan #usn8:`1esn` Where $`4esn`[$@usn6...12e12] Return Distinct {@usn5} Ends With 0Xa Ends With .12e-12 As @usn6,_usn4['s_str'][8.1e1] Order By 1.9e0[$`4esn`] Descending"), + octest_legacy:ct_string("With Distinct #usn8[..'s_str'][..'s_str'] As `2esn`,None(@usn6 In 9e12[..usn2][.._usn3] Where $7) Is Not Null Is Not Null Limit `7esn`[1.9e0..5.9e-12][9e0..@usn5] Create Unique (((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})-[`2esn`?:@usn6|:`4esn` *010..0{`4esn`:Null[$`3esn`..][`1esn`..],_usn3:6.0e0[$#usn7..$1000]}]-(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]}))) Merge ((:_usn3{@usn6:$1000 Starts With {@usn6} Starts With $@usn5})<-[{`3esn`:Count ( * )[_usn4..]}]->(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})) On Create Set `4esn` =$@usn6 Is Null Is Null,#usn7 ={`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]} Is Null Is Null"), + octest_legacy:ct_string("Remove Reduce(usn2=12e12[{`4esn`}..`4esn`][999..{@usn6}],`1esn` In $12 In {usn2}|$`8esn`).`5esn`?,(`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})<-[_usn3?:`5esn`*..]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}).@usn5!"), + octest_legacy:ct_string("Create ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]}) Foreach(usn2 In $`7esn` Is Null Is Null| Optional Match `4esn`=Allshortestpaths((:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[*{usn1:{`6esn`} In .0e0 In $0,usn1:07[..$`5esn`]}]-(:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})) Using Join On `6esn`,_usn3 Where {`3esn`}[#usn7] Return Distinct Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]|0e-0[{@usn6}])[Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3))][Case When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] When {123456789} Starts With $_usn4 Starts With 0x0 Then 9e0[`3esn`][0] End] As `3esn`,Extract(#usn8 In 07[..$`5esn`] Where $usn2[..$999][..#usn8]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )])[Case {#usn7}[.12e-12] When $`4esn`[$@usn6...12e12] Then .12e-12[@usn6..'s_str'] Else .12e-12 Starts With .12e-12 End..(`` :``)-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})][Reduce(`5esn`=Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|{usn2}[9e-1])..All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}])] As @usn5,({`7esn`:{`3esn`}[$#usn8..],`4esn`:{`8esn`}[..999][.._usn3]})-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Contains Reduce(``=0xabc Starts With 12 Starts With 0e-0,_usn3 In `8esn`[_usn4]|12.0 Starts With 00) Contains Any(@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null) Order By usn2($usn1 =~.0e0 =~{`4esn`}) Contains Allshortestpaths(((#usn8 :@usn5)<-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 )<-[?:`1esn`|:`1esn`{`5esn`:9e1[0.0]}]->(`8esn` ))) Ascending Skip $_usn4 Ends With {#usn8}) Merge Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))) On Match Set Case .12e12 Ends With 07 Ends With 3.9e-1 When 0.12 In $`` Then 0e-0 In 0X0123456789ABCDEF In `3esn` When 01 Ends With .0e0 Ends With 7.0e-0 Then $`6esn`[@usn6...9e-12] End.`1esn`.`1esn` =1e-1 Starts With .1e1 Starts With 12.0 Union Start usn1=Rel:`7esn`(`8esn`={`3esn`}) ,`5esn`=Node:usn2(_usn4='s_str')Where {@usn5}[10.12e12..]"), + octest_legacy:ct_string("Unwind Shortestpath(((`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))[All(_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null)] As #usn8 Create `1esn`=Allshortestpaths((usn2 :@usn5{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})),@usn6=Shortestpath((_usn4 )) Unwind 1000[{12}..][0e0..] As `5esn` Union Return Distinct 0.0[$999][`6esn`] Order By $`2esn`[`8esn`..] Descending,({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}) Contains Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Contains All(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]) Descending Limit $`5esn` =~Count(*) =~1.9e0 Start _usn3=Node:`5esn`({`2esn`}) ,usn2=Relationship:`8esn`(#usn8='s_str') Remove Allshortestpaths(((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))).`6esn`.`5esn`?,(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}})<-[:`8esn`|:#usn8{usn2:$0 Ends With 9e-12 Ends With $_usn4}]->(`4esn` {`8esn`:5.9e-12[0x0..]}).`5esn`?,[usn1 In \"d_str\" Contains {@usn6} Where .9e12[6.0e0..][@usn5..]].#usn7"), + octest_legacy:ct_string("Using Periodic Commit 01 Load Csv With Headers From {@usn5} As `8esn` "), + octest_legacy:ct_string("Unwind Single(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1])[Case When 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Then $#usn8 Is Not Null Is Not Null When \"d_str\" Starts With $`7esn` Starts With 999 Then \"d_str\"[0x0..{@usn6}][$@usn5..0] Else .0e-0[..01234567] End..] As `` Unwind \"d_str\" Is Not Null Is Not Null As `3esn` With *,Reduce(`4esn`={0} Is Not Null,#usn7 In .0e-0 In 12|12e12[{`4esn`}..`4esn`][999..{@usn6}]) Contains Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 0xabc[..{usn1}][..\"d_str\"]) Contains `3esn` As `5esn`,None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null) As _usn3 Order By {12}[true..][7..] Ascending,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Asc,({#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]})<-[`8esn`*]-(#usn8 )[..Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn`[0X0123456789ABCDEF..][`8esn`..]|$_usn3 =~'s_str' =~12)][..`1esn`(Distinct .9e1[$`1esn`..][$``..])] Ascending Skip 7[..123456789][..true] Where {#usn7}[.12e-12]"), + octest_legacy:ct_string("Unwind `3esn` Ends With $`` Ends With #usn7 As usn1 Remove Reduce(usn1=0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],#usn7 In .0e-0 In 12|{0} Is Not Null Is Not Null)._usn4!,Reduce(usn1=7[..123456789][..true],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|0xabc Starts With 12 Starts With 0e-0).#usn8! Remove [`6esn` In 010[{`1esn`}..] Where `6esn` Ends With 1e1 Ends With $#usn7|2.9e1 =~Count(*) =~{123456789}].`5esn`?.usn2!,Reduce(`4esn`=9e1[0.0],`6esn` In 010[{`1esn`}..]|01[$`1esn`..$`7esn`][{usn2}..12.0])._usn4! Union Optional Match `8esn`=Allshortestpaths(((:`4esn`:usn2{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(_usn4 :usn2))) Return Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0]) Is Null Is Null As _usn3,1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As usn2,false[9e12] Order By 0xabc[01234567][.12e-12] Ascending,Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`8esn`}[..999][.._usn3]) Starts With Reduce(``=$#usn7 Ends With 999 Ends With {12},`2esn` In $@usn5 Is Not Null Is Not Null|{`6esn`} Starts With .12e-12) Descending Skip 2.12[10.12e12][_usn4] Limit $`5esn` In $12 In `2esn` Optional Match ((:``{usn1:`4esn` Is Not Null})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})) Using Join On usn1,_usn4,`1esn` Where 7.0e-0[$`6esn`..] Union All Match #usn7=(`4esn` {#usn7:$usn1[0e0...9e-12]}) Where $`7esn` In $`4esn`"), + octest_legacy:ct_string("With @usn6 Ends With $`2esn` Ends With 1.0,(usn2 )-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(_usn4 :`1esn`:``{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}})-[:`2esn`|`5esn` *999..123456789{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]}]-(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}) =~Case When {`1esn`} Is Null Then .1e1[{@usn6}][true] When \"d_str\" Starts With $`7esn` Starts With 999 Then 07[..$`5esn`] Else 00[Null..usn2] End As usn2 Limit 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Start `3esn`=Rel:`7esn`(`8esn`={`3esn`}) ,`2esn`=Node( {`6esn`})Where $`6esn` Starts With 0.0 Foreach(_usn4 In \"d_str\" Contains {@usn6}| Remove Shortestpath((:usn1$1000)).@usn5? Create (`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5))"), + octest_legacy:ct_string("Merge usn1=Allshortestpaths(((:`4esn`:usn2{usn2:$usn2 Ends With 00 Ends With 9e12,_usn4:{`5esn`}})-[?:``|:`7esn` *12{#usn8:10.12e12 Contains .9e0,usn1:0xabc Contains {12} Contains {`6esn`}}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))) On Create Set Single(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`).usn2!.`5esn`.`2esn`! =11.12e-12 Contains usn1,(_usn4 :`1esn`:``{`3esn`})-[:`5esn` *01234567..{`2esn`:{usn1} Contains {`2esn`},#usn7:`4esn`[9e-12..true]}]-(:`5esn`:`7esn`{`1esn`:{1000}[..`5esn`][..9e12]}).`3esn`?.usn2!.`6esn` =Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})),`5esn`+=[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12][All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3])..][Case When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else @usn5[9e-1..{`1esn`}] End..] On Match Set {usn2:.9e-12[.12e12..][0Xa..]}.usn2.#usn8.usn2! =.9e1 Ends With 0x0 Union All Start _usn3=Relationship(0x0) Create Unique @usn6=Allshortestpaths(((#usn8 :usn2)<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))),usn1=Allshortestpaths((`6esn` :`5esn`:`7esn`)-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 {`2esn`:5.9e-12[0x0..]})) Merge @usn6=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) On Match Set usn2+=Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null),#usn8 =None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..])"), + octest_legacy:ct_string("With Distinct $`8esn` Is Not Null Is Not Null As _usn3 Order By Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Descending,\"d_str\" In 7.0e-0 Desc Skip Reduce(_usn3=7.0e-0[$`6esn`..],`7esn` In 0.12 Is Not Null|false Starts With 0 Starts With 2.9e1) =~Case $`3esn` =~0x0 When $12[$@usn5] Then 11.12e-12 In {usn1} When 4.9e12[{_usn4}..] Then $@usn5 Contains _usn3 Else .12e-12 Starts With .12e-12 End =~Reduce(_usn4=_usn4 Is Not Null Is Not Null,`2esn` In $@usn5 Is Not Null Is Not Null|7.0e-0 Is Not Null) Limit {_usn3:.0e-0[..``][..$7]}[..(`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`)][..@usn5]"), + octest_legacy:ct_string("Create Unique `2esn`=Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}})<-[?{@usn5:@usn6[999][1000]}]-(:usn1{#usn8:2.9e1[{`2esn`}]})),(((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(`2esn` :_usn3)<-[_usn3?{``:{1000} Starts With {`1esn`}}]->(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))) Foreach(`5esn` In {`6esn`} Contains 1e1 Contains ``| Unwind `8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End As @usn6 With Distinct 0.0[$999][`6esn`] Order By $`2esn`[`8esn`..] Descending,({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}) Contains Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Contains All(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]) Descending Limit $`5esn` =~Count(*) =~1.9e0) Union All Delete $1000[$`2esn`..] Detach Delete \"d_str\"[0x0..{@usn6}][$@usn5..0] Create Unique `7esn`=(`3esn` :usn2),#usn8=(({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[ *12{#usn8:0e0 =~{12} =~{1000}}]-(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})) Union Merge Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) On Match Set `6esn` =_usn4 Remove ``({1000}[..`5esn`][..9e12]).`4esn`!,Reduce(usn2=0xabc =~123456789,#usn8 In 07[..$`5esn`]|8.1e1[..9.1e-1][...9e1]).`6esn`.`1esn`?,None(`` In `7esn` =~#usn8 =~\"d_str\" Where {12} Starts With $`` Starts With 0X0123456789ABCDEF).@usn6!.``?"), + octest_legacy:ct_string("Start ``=Node:_usn3({0}) ,usn2=Rel:``(_usn3='s_str')Where {1000}[`2esn`...0e-0][9e-1..0X7]"), + octest_legacy:ct_string("Remove Case When $usn2 Ends With 00 Ends With 9e12 Then $#usn7 Ends With 999 Ends With {12} Else 0e0 =~{12} =~{1000} End.@usn6.usn1?,None(@usn6 In 9e12[..usn2][.._usn3] Where {`8esn`}[@usn5][$`2esn`])._usn3!"), + octest_legacy:ct_string("Start `4esn`=Node:@usn6(\"d_str\") Where $usn2 Is Not Null Is Not Null Optional Match `3esn`=((:`1esn`:``{@usn6:$`7esn` Ends With 7.0e-0 Ends With $usn2})),#usn8=((`` {_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})) Using Join On usn2,`1esn` Where 12.0[...0e0] Remove {`6esn`:.12e-12 Ends With `2esn`}.usn2,(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}})<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})<-[usn1?:`3esn`|`3esn`*..]->(:usn1{#usn8:$`8esn` Is Not Null Is Not Null,`5esn`:3.9e-1 Starts With .9e0 Starts With {#usn7}}).`8esn`!.usn1?,Case .9e-1 Ends With .0e-0 Ends With {_usn3} When $12 Is Not Null Is Not Null Then {``}[$usn2..00][{_usn3}..123.654] When .1e-1 Starts With @usn6 Starts With _usn3 Then 9e0[{7}...0e-0][Null..@usn5] Else $12 =~4.9e12 End._usn4!"), + octest_legacy:ct_string("Start _usn4=Relationship:@usn6(\"d_str\") Where $`4esn` Is Null Is Null Return Distinct [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,$`7esn` In $`4esn` As `8esn`,Extract(`1esn` In $12 In {usn2} Where 2.9e1 =~Count(*) =~{123456789})[{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}..][123.654..] Order By Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}])[{usn1:\"d_str\"[0x0..{@usn6}][$@usn5..0],`6esn`:.9e-12[usn2]}][Reduce(`2esn`=$1000 Contains $123456789 Contains #usn8,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$1000 Contains {`2esn`} Contains {`8esn`})] Desc,$12 Ends With 7.0e-0 Ends With 9e-12 Descending,$`4esn`[$@usn6...12e12] Descending Limit 9.1e-1 In 9e1 Union All Merge #usn7=(:`5esn`:`7esn`) On Match Set @usn5:@usn5 Load Csv With Headers From Filter(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}]) Starts With Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3)) Starts With {@usn5:$123456789 Is Not Null Is Not Null} As `4esn` With .0e0 Starts With 1.0 Starts With $12 As `7esn`,Case When 9e-12[010..{#usn7}][{123456789}..7] Then $999 =~false =~{`8esn`} When {0}[.0e-0][$`2esn`] Then 12e12 Is Not Null Is Not Null Else false[..usn2][..999] End[Allshortestpaths(((({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(@usn6 :@usn5)-[`2esn`? *7{`5esn`:false[..usn2][..999]}]-(`4esn` :@usn6:_usn3))))..All(usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null)][.9e0..`4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`)],@usn5[{`1esn`}..][Count ( * )..] Order By None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null) Asc,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Ascending,8.1e1 Contains .9e-1 Contains false Descending Limit 0x0 Ends With #usn8 Ends With .9e-1 Where {`3esn`}[..{`4esn`}][..usn2]"), + octest_legacy:ct_string("Using Periodic Commit Load Csv From $@usn6[``..][3.9e-1..] As usn1 "), + octest_legacy:ct_string("Start `1esn`=Node:_usn4(`5esn`={usn1}) Where $usn2 Contains $`3esn` Contains 6.0e0 Merge `2esn`=(`3esn` :`2esn`:`4esn`) On Match Set `3esn`(Count ( * )[_usn4..],`2esn`).usn1!._usn4 =`1esn` In 010 In 1e-1,Any(#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null).`2esn`! =Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null,usn2+=8.1e1[$``] On Match Set @usn5:`1esn`:`` Union Match `5esn`=((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})) Using Index usn2:``(`3esn`) Where 0e-0[..7.0e-0][..{`8esn`}] Start _usn4=Relationship:`7esn`({123456789}) Where 3.9e-1[..$1000][..0.12] Remove `2esn`:_usn3,Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $usn1 Contains 4.9e12 Contains $`2esn`).usn2?.`1esn`!,`1esn`:`5esn`:`7esn`"), + octest_legacy:ct_string("Detach Delete Filter(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}]) Starts With Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3)) Starts With {@usn5:$123456789 Is Not Null Is Not Null},9e1 Starts With $`8esn` Starts With `3esn`,Reduce(_usn3=`4esn`[9e-12..true],`8esn` In {usn1}[7.0e-0..][3.9e-1..]|999 Starts With 7.0e-0 Starts With true) Starts With None(`2esn` In $@usn5 Is Not Null Is Not Null Where {12} Ends With $`3esn` Ends With 0xabc) Starts With Allshortestpaths((usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[`8esn`*]-(`7esn` :``{usn2:$7})) Foreach(@usn6 In 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))]| Remove Single(`2esn` In $@usn5 Is Not Null Is Not Null Where false =~$7).`7esn`!.`5esn`?,Reduce(#usn7={`5esn`},`2esn` In $@usn5 Is Not Null Is Not Null|`1esn` =~{12} =~{999})._usn4! Remove (#usn8 )<-[:_usn4|:`1esn`{@usn5:.0e-0 In 12}]-(:_usn4:`2esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1})-[`3esn`? *..07]-(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}).`7esn`?,Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[..0][.._usn3]).usn1) Union All Unwind $999[usn1..0e-0] As `8esn` Match `5esn`=Shortestpath((`5esn` :``{_usn3:$_usn4[..$999],`7esn`:0X0123456789ABCDEF Ends With {1000}})-[*{@usn5:`6esn` =~999 =~$999}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})),`1esn`=Allshortestpaths(((:usn1{`6esn`:$_usn3[usn2..][usn1..],#usn7:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}))) Using Join On `6esn`,``,usn2 Using Join On @usn5,`5esn` Where .12e12[$usn1..][{@usn6}..]"), + octest_legacy:ct_string("Start `1esn`=Relationship:_usn4(`5esn`={usn1}) ,`7esn`=Relationship:usn2(`8esn`=\"d_str\") Detach Delete 00 =~`4esn` =~.9e-12 Match #usn7=((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})),`5esn`=(`` $999)<-[? *0X0123456789ABCDEF]->(`1esn` :_usn3)<-[#usn8?:#usn7|:@usn5]-(@usn5 :#usn7:`8esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true}) Using Scan `3esn`:`` Using Scan ``:#usn8"), + octest_legacy:ct_string("Delete 1.0 Is Null Is Null,None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Contains (`8esn` :@usn6:_usn3{_usn4:{#usn7} =~$@usn6 =~$7})<-[`1esn`? *0{usn2:.9e12[6.0e0..][@usn5..]}]->(usn2 :@usn6:_usn3)-[usn1:#usn7|:@usn5 *999..123456789]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7}) Remove @usn6:`3esn` Union All With Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] As #usn8,[`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]),{`7esn`} Is Not Null Is Not Null As `1esn` Order By 1000 Ends With 0x0 Asc Union Create Allshortestpaths((`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`)),Allshortestpaths(((`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]})-[_usn4*{`3esn`:{``} Is Null Is Null}]-({`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))) Return *,1.9e0[$`4esn`],Null In {7} As usn2 Order By 0xabc[..{usn1}][..\"d_str\"] Asc Limit $`6esn` Contains All(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) Create Unique usn1=((`` :`7esn`))"), + octest_legacy:ct_string("Return Distinct Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null)[#usn7(`1esn`[..$1000])..][Reduce(`5esn`=$@usn5 =~{`3esn`},`1esn` In $12 In {usn2}|$`5esn` Ends With 's_str' Ends With $`6esn`)..] Skip @usn5[{`1esn`}..][Count ( * )..] Union All Create Unique usn1=((`4esn` :_usn4:`2esn`{#usn8:\"d_str\" Contains {@usn6}})<-[?{@usn5:@usn6[999][1000]}]->(`1esn` )) Union All Delete 9e12 Is Not Null Is Not Null,.9e1 Is Null Is Null Remove {@usn6:6.0e0[$#usn7..$1000]}.`8esn`?,{`3esn`:9e0[`3esn`][0],usn2:$`5esn` Is Not Null}.`8esn` Merge `2esn`=((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0})) On Create Set `2esn`+=9e1[0.0],#usn8+=.12e-12[@usn6..'s_str'],{`6esn`:4.9e12 Is Not Null Is Not Null,_usn4:`4esn`[9e-12..true]}.#usn8._usn3? =Shortestpath((((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))))[None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0.0[`7esn`])..Single(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])][`5esn`(Distinct .9e1[$`1esn`..][$``..])..Case When 12e12 Ends With `5esn` Ends With .0e0 Then .9e0 In 8.1e1 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else .9e1 Ends With 0x0 End]"), + octest_legacy:ct_string("Create `3esn`=(`4esn` :`3esn`)-[`3esn`?:`1esn`|:`1esn`]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}),@usn6=Allshortestpaths(({_usn3:.9e12 Contains 0 Contains $0})) Union Foreach(`3esn` In {`8esn`} Ends With true Ends With {`3esn`}| Create (`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})))) Unwind 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As `1esn` Union All Return Distinct *,7[..123456789][..true] Limit Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Is Null Remove Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0).`8esn`!,Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0).``? Start @usn5=Node:usn1(_usn3={@usn6}) ,@usn5=Rel:#usn7(\"d_str\")Where .1e1 Ends With #usn7 Ends With {#usn7}"), + octest_legacy:ct_string("Remove Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .12e12 Starts With 5.9e-12 Starts With `4esn`).`7esn`? Create (((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(`2esn` :_usn3)<-[_usn3?{``:{1000} Starts With {`1esn`}}]->(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))) Start `7esn`=Rel( {`8esn`}) ,`6esn`=Node:@usn6({999})Where `1esn`[{@usn5}..][{_usn4}..]"), + octest_legacy:ct_string("Load Csv With Headers From Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null)[#usn7(`1esn`[..$1000])..][Reduce(`5esn`=$@usn5 =~{`3esn`},`1esn` In $12 In {usn2}|$`5esn` Ends With 's_str' Ends With $`6esn`)..] As `7esn` With *,_usn4['s_str'][8.1e1] Order By 999 Starts With 07 Ascending Where 1.0 Is Not Null"), + octest_legacy:ct_string("With Distinct *,7 Starts With 9e-12 As #usn7,$_usn3 In `2esn` In `3esn` Order By Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null Desc,0X7 Contains $12 Contains 0e0 Descending,{@usn5:5.9e-12 Is Null Is Null} Ends With Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where _usn4['s_str'][8.1e1]|0.12 =~2.9e1 =~9e1) Ends With All(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12) Descending Where {`1esn`} Contains 1.0 Contains 4.9e12"), + octest_legacy:ct_string("Unwind $@usn6[``..][3.9e-1..] As `3esn` Match @usn5=Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))) Using Index _usn3:usn2(`4esn`) Where 0.12[Count ( * )..Count ( * )][$999..`5esn`]"), + octest_legacy:ct_string("Create @usn5=((#usn7 :`7esn`)-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)})),(((`1esn` :`3esn`{@usn6:$12 Is Null})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))) Start ``=Relationship:@usn6(#usn8='s_str') ,_usn3=Node:`8esn`(#usn8='s_str')Where {`3esn`}[..0xabc][..{`6esn`}]"), + octest_legacy:ct_string("With Distinct *,#usn8[\"d_str\"..usn2] Order By {`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]} Starts With [`6esn` In 010[{`1esn`}..] Where `3esn` Starts With 9.1e-1 Starts With .9e-1] Starts With Case {`6esn`} In {_usn4} In $12 When {0} Is Not Null Then $12 In {usn2} Else $999 =~false =~{`8esn`} End Descending,Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Asc,{#usn8} Starts With {`2esn`} Ascending Skip Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) Return Distinct false Contains {`7esn`},{0} Is Not Null As `` Order By [usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`|{#usn8}[..@usn5]][Case When .9e1 In {#usn7} In .9e-12 Then #usn7 Is Null Is Null End..] Asc,Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] Asc,(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[`3esn`?:`1esn`|:`1esn`]-({_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})[{@usn5:07[..$`5esn`]}..][$#usn8..] Descending Skip $7[.1e-1..{@usn6}][$7..{`1esn`}] Limit {``} Is Null Is Null With Distinct 999 Ends With {#usn8},9e1[..@usn5][..$`5esn`],$@usn6[...9e-1] As `2esn` Limit $123456789 Is Not Null Is Not Null Where $7 Union All Create Unique ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})),``=Shortestpath((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) Start @usn5=Rel:`8esn`(usn1={#usn7}) ,``=Node:`7esn`({#usn7})Where 00[$``] Load Csv With Headers From Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] As usn1 "), + octest_legacy:ct_string("Create Unique Shortestpath((`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[:`1esn`|:`1esn` *0{`8esn`:2.12[{12}],`7esn`:$@usn6[``..][3.9e-1..]}]->(:`2esn`:`4esn`{usn2:$@usn6[.1e-1][9e12],`5esn`:12e12 Is Not Null Is Not Null})-[`5esn`?:#usn7|:@usn5{usn2:#usn7[123.654][{12}]}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})),((:`7esn`{`4esn`:@usn5 =~$#usn7 =~{usn1}})-[`8esn`{#usn8:.12e12[..7]}]-({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`1esn`? *0{@usn6:true Is Null}]-(_usn4 )) Union All Load Csv With Headers From 9.1e-1 In 9e1 As @usn5 "), + octest_legacy:ct_string("Create Unique Allshortestpaths(((@usn6 :@usn6:_usn3))),Allshortestpaths(((@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1}))) Union All Create Allshortestpaths(((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))),`8esn`=Allshortestpaths(((:`4esn`:usn2{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(_usn4 :usn2))) Union Unwind $`8esn`[...1e-1] As usn2 Match Shortestpath(((`` :`7esn`))),Allshortestpaths((:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[*{usn1:{`6esn`} In .0e0 In $0,usn1:07[..$`5esn`]}]-(:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})) Using Index @usn5:usn1(`4esn`) Where {0}[.1e-1..][_usn4..] Optional Match `5esn`=Shortestpath((({_usn3:.9e12 Contains 0 Contains $0}))),usn2=(`8esn` :@usn6:_usn3)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Where 010[...12e-12]"), + octest_legacy:ct_string("Create Unique @usn5=Shortestpath((`7esn` {#usn8:2.9e1[{`2esn`}]})<-[usn2:#usn8|:``]->({`6esn`:9e0[`4esn`..$_usn4][9.1e-1..0e0]})),(usn1 :`3esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 )<-[_usn4{`5esn`:9e0[..{#usn7}][..`4esn`]}]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}) Remove [#usn7 In .0e-0 In 12 Where $999 Is Not Null].`8esn`.@usn6!.`1esn`,Extract(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1]|0[$usn1..])._usn3!.usn2.`8esn`! Union All With Distinct (`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` Ends With 10.12e12) As `8esn` Order By 9e-12[010..{#usn7}][{123456789}..7] Desc Limit 7.0e-0 Ends With {123456789} Ends With @usn6"), + octest_legacy:ct_string("Return Distinct @usn6[Reduce(`5esn`=_usn4['s_str'][8.1e1],_usn3 In `8esn`[_usn4]|$_usn3 =~'s_str' =~12)..][(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[`7esn`?]-(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})..],9e0 In {usn2} In {@usn6} As `8esn` Order By None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) Desc,0e-0[..$usn2] Descending Limit $`5esn` Starts With 4.9e12 Starts With 0e-0 With {#usn7}[..\"d_str\"][..#usn8] As `3esn`,Any(_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12)[(`5esn` :`8esn`{`1esn`:{`8esn`} Starts With .9e-1 Starts With 1000,@usn5:10.12e12 In Null In .12e12})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})..] As usn1,$999 Ends With `2esn` Ends With 12.0 As @usn6 Skip $`1esn` Limit {7}[.1e-1] Where `4esn`[9e-12..true] Union Remove `2esn`:`2esn`:`4esn`,Single(usn1 In {#usn7} =~.12e12 =~9e0 Where {1000} Starts With 10.12e12 Starts With .0e-0).usn2 Start `3esn`=Node(0xabc,7,0Xa,01234567) Where $`8esn` Is Not Null Is Not Null Union All Unwind Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] As `1esn` Create Unique Allshortestpaths(({`6esn`:8.1e1 Contains .9e-1 Contains false})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})),@usn6=((`` {_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})) Load Csv With Headers From 2.12[10.12e12][_usn4] As `1esn` "), + octest_legacy:ct_string("Remove None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]).#usn8!.`6esn`.``?,`8esn`({0} In {`1esn`},.9e-1 Ends With .0e-0 Ends With {_usn3}).`6esn`!,None(`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0).`8esn`! Union Load Csv With Headers From Filter(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}]) Starts With Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3)) Starts With {@usn5:$123456789 Is Not Null Is Not Null} As `4esn` Load Csv From {`1esn`}[{usn2}] As @usn5 Fieldterminator 's_str' Union All Remove Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {#usn8}[..@usn5]|{0}[.0e-0][$`2esn`]).@usn6?.``?,(`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[?:`1esn`|:`1esn`]-(:@usn5{`1esn`:$999 =~0e0 =~0X7})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12}).`7esn`,{_usn4:$7}.@usn5 Return Distinct 0.12[{@usn6}..{#usn7}] Order By Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) Ascending,Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Descending,.9e-1[`1esn`][7] Ascending Limit {`4esn`}[{`3esn`}][$`2esn`]"), + octest_legacy:ct_string("Merge ``=((@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})-[@usn5:`6esn` *..00]->(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) On Create Set @usn5+=Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null"), + octest_legacy:ct_string("Foreach(usn1 In $usn1 In 4.9e12 In ``| Create Unique ``=(((@usn5 {@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})))) Union Merge Shortestpath(((@usn6 :`2esn`:`4esn`{@usn6:$12[10.12e12][.1e1],`8esn`:@usn5 In Null})<-[`3esn`?:`6esn`{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(@usn5 :usn1{`4esn`:$12 Is Null,`8esn`:\"d_str\" Starts With ``})<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) Return Distinct Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null) In `4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`),9e-1 Contains 3.9e-1 As `7esn`,All(#usn8 In 07[..$`5esn`] Where $@usn6 Starts With 0xabc Starts With {`7esn`}) As `6esn` Limit Any(`7esn` In 0.12 Is Not Null Where $0 Contains $7) Is Not Null Is Not Null Load Csv From Reduce(`6esn`=$`5esn`[$_usn3][$12],`2esn` In $@usn5 Is Not Null Is Not Null|1.9e0 In $@usn6 In $_usn3)[{``:.12e-12 Is Null}..][Case When $1000 Starts With {@usn6} Starts With $@usn5 Then `2esn` When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else 12[4.9e12..] End..] As #usn7 "), + octest_legacy:ct_string("Remove Shortestpath(((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}))).`5esn`?._usn3?,$7.@usn6.`1esn` Merge `2esn`=Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) On Create Set Case 0xabc[..Count(*)][..$`5esn`] When `6esn`[0X0123456789ABCDEF..][`8esn`..] Then `2esn`[`7esn`][1000] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} Else 12e12[{`4esn`}..`4esn`][999..{@usn6}] End.``!.#usn8! =Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})),(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})-[_usn4:_usn3{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]}).#usn7! =8.1e1 Contains .9e-1 Contains false,`5esn` =false Is Not Null Is Not Null With 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Order By $1000 Is Null Descending,7.0e-0 Ends With {123456789} Ends With @usn6 Descending Limit 1000[{`1esn`}..][$`3esn`..]"), + octest_legacy:ct_string("Start `2esn`=Node:``(#usn8=\"d_str\") ,`2esn`=Relationship:``(`1esn`=\"d_str\") With Distinct *,{usn1} Is Not Null,{`2esn`}[0x0..9e0] As `6esn` Limit Allshortestpaths((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))[usn1..] Optional Match #usn8=Allshortestpaths((usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[`3esn`:#usn8|:``{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}]->(:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})) Using Join On _usn4,usn2,`` Using Join On `7esn` Where $_usn3 In `2esn` In `3esn` Union Return Distinct Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null],7 Starts With 9e-12 As #usn7 Order By All(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12)[usn1({#usn7} Ends With 999 Ends With 12)] Descending,$`1esn` In 0Xa Desc,10.12e12[.0e0] Desc Skip Case {1000}[..{usn1}][..1e-1] When {@usn5}[10.12e12..] Then 1.0 Is Null Is Null When {`3esn`} Is Not Null Is Not Null Then .1e1 Contains 1e-1 Contains #usn8 Else $`5esn`[{`4esn`}][{0}] End[..{usn1:1.9e0[..0][.._usn3],`7esn`:1.9e0[.12e-12][9e-12]}][..{`1esn`:{0} Is Null Is Null}]"), + octest_legacy:ct_string("Create Unique usn1=((@usn6 :`5esn`:`7esn`)-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)-[`3esn`:`6esn` *..0x0]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})),Shortestpath((:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[:`6esn` *999..123456789]->(:_usn3{@usn5:`2esn`[`7esn`][1000]})) Remove Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 6.0e0 =~12.0 =~9e1|1.9e0[..0][.._usn3]).``,{`6esn`:12e12[usn2..$`6esn`]}.`3esn`?,{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}}.`5esn` Delete {``:$`8esn`[..5.9e-12][..`8esn`]}[[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .9e12[6.0e0..][@usn5..]|2.9e1[2.9e1..][`4esn`..]]..][Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End..],010[...12e-12]"), + octest_legacy:ct_string("Start #usn8=Node(07,0Xa) Where 123456789[_usn4..`1esn`][$`6esn`..{@usn6}] Return 0Xa[999],Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)) Is Not Null Is Not Null As `8esn` Order By 10.12e12 Contains .9e0 Ascending,0e0[2.9e1..][.12e-12..] Ascending Skip {0} In {`1esn`} Limit `6esn` =~999 =~$999 Union Load Csv From {usn1:$usn1[9e1][{999}],#usn8:0e-0[$``..10.12e12]}[Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End] As `8esn` Merge `2esn`=Shortestpath(((`4esn` :`3esn`))) Merge Shortestpath(((`5esn` :#usn8:@usn6{``:Count(*) Starts With {usn2} Starts With `2esn`,`1esn`:12e12[{`4esn`}..`4esn`][999..{@usn6}]})<-[?:`2esn`|`5esn` *..123456789$1000]-({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]}))) On Match Set `1esn` ={`2esn`}[0x0..9e0],Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]).`8esn`? ={123456789} Contains $#usn7 Contains {#usn8},`5esn` =Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End Ends With Reduce(``={`3esn`}[$#usn8..],usn1 In {#usn7} =~.12e12 =~9e0|2.9e1[{`2esn`}]) Ends With [`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}|$`` =~$_usn3] On Match Set `2esn` =7[{`4esn`}..],usn2 =$@usn5 Contains _usn3 Union All Unwind Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {12} Ends With $`3esn` Ends With 0xabc)[Case When {0} Is Null Is Null Then $``[1.0..][_usn3..] Else 999[..$@usn5][..``] End..] As @usn5 Optional Match ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})),``=Shortestpath((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) Where 7[{`4esn`}..] Return *,0xabc Starts With `2esn` Starts With 10.12e12,`1esn` In 010 In 1e-1 As usn2 Skip Case false =~$7 When 999 Ends With {#usn8} Then `1esn` =~{12} =~{999} Else @usn5 In Null End[..Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $#usn8[$0..`3esn`][1e-1..$7])] Limit 12e12 Starts With {``}"), + octest_legacy:ct_string("Delete {`4esn`} In 1000 In {@usn5} Unwind [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..] As `2esn`"), + octest_legacy:ct_string("Start `3esn`=Rel:`7esn`(`8esn`={`3esn`}) ,`2esn`=Node( {`6esn`})Where $`6esn` Starts With 0.0 Union Return usn2($12 =~4.9e12) Ends With Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Ends With Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End As `7esn` Skip `5esn` Is Not Null Is Not Null Limit .1e1 Is Null Is Null Merge usn2=(`8esn` :@usn6:_usn3)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) On Match Set usn1 ={`6esn`} In 11.12e-12 In 2.9e1,#usn8+={@usn5} Contains .1e1 Contains {`5esn`},@usn6+={`3esn`}[#usn7] On Match Set Reduce(`1esn`=12.0[..Count ( * )][..@usn6],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|5.9e-12 Contains {12} Contains {#usn8}).usn2? =5.9e-12[..9e0] Create ((#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[@usn6?{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})),`6esn`=Allshortestpaths(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0}))"), + octest_legacy:ct_string("Load Csv From 8.1e1['s_str'..] As #usn7 Fieldterminator 's_str' Remove Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where `6esn` Ends With 1e1 Ends With $#usn7).usn2 Unwind Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null)[#usn7(`1esn`[..$1000])..][Reduce(`5esn`=$@usn5 =~{`3esn`},`1esn` In $12 In {usn2}|$`5esn` Ends With 's_str' Ends With $`6esn`)..] As `4esn` Union Unwind 0.0[$`4esn`] As `8esn`"), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv From Count(*)[Null..][01234567..] As usn1 Fieldterminator \"d_str\" Create Allshortestpaths((`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`)),Allshortestpaths(((`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]})-[_usn4*{`3esn`:{``} Is Null Is Null}]-({`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})))"), + octest_legacy:ct_string("Return `7esn` In _usn4 In $`7esn` Skip 's_str'[`3esn`..0x0] Union Detach Delete $7[999..10.12e12][$`1esn`..{usn1}]"), + octest_legacy:ct_string("Using Periodic Commit 0x0 Load Csv From {`5esn`} As usn1 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Merge (usn1 :#usn8:@usn6) On Match Set usn1 ={`8esn`}[..`5esn`][..01],usn2+={#usn7} Ends With 999 Ends With 12 On Create Set _usn4+={``} Ends With @usn5 Ends With $_usn3,Reduce(#usn7=9e1[0.0],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|0.0[$`4esn`]).#usn8!.`1esn`!.`1esn`? =$`4esn` Ends With .12e12 Ends With 123.654,`5esn` =$usn2 Starts With $999 Starts With .0e0 Remove Case When {usn2} Is Not Null Is Not Null Then false Contains {`7esn`} When {_usn3} Is Null Is Null Then .12e12 Ends With 07 Ends With 3.9e-1 End.#usn7!,Reduce(#usn8={`6esn`} =~2.12 =~123.654,`` In `7esn` =~#usn8 =~\"d_str\"|usn2 Contains `2esn` Contains {1000}).`5esn`,Reduce(usn2=.9e1[$`1esn`..][$``..],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|`3esn` Contains 01 Contains 01).#usn7! Union Delete Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where usn2[..$0][..`3esn`]|{0}[`4esn`..{`8esn`}])[Reduce(``=Null,`7esn` In 0.12 Is Not Null|{#usn7} Starts With .1e-1)..][Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1)..],{`6esn`} Starts With 12e12 Starts With {`2esn`} Foreach(usn2 In usn2 Contains `2esn` Contains {1000}| Load Csv From 9e-1 Contains .12e-12 Contains $0 As `6esn` With Distinct 12e12[usn2..$`6esn`] As usn1,0Xa Contains 12e-12,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As #usn7 Order By 9e12 Ends With \"d_str\" Ends With 0X7 Desc Skip {12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1] Where $@usn6 Is Null) Optional Match _usn3=(((`4esn` )-[{#usn7:1e-1[$`4esn`]}]->(`1esn` :`2esn`:`4esn`)-[?:#usn8|:``{usn2:{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],usn1:\"d_str\"[0x0..{@usn6}][$@usn5..0]}]-(:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12}))),`1esn`=Allshortestpaths((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[?$999]-(`4esn` {#usn7:$usn1[0e0...9e-12]})-[:`5esn` *01234567..{`2esn`:{usn1} Contains {`2esn`},#usn7:`4esn`[9e-12..true]}]-(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})) Union Return Distinct *,Case Count ( * ) =~123456789 =~{@usn5} When 0[10.12e12] Then 12.0 Starts With 00 Else 2.9e1 In {``} End[..Case $`8esn`[0x0][.9e0] When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null Else $usn1 =~.0e0 =~{`4esn`} End][..Extract(#usn8 In 07[..$`5esn`] Where 07[{@usn5}..]|9e-1 Contains 3.9e-1)] As `4esn`,(`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3)[Case When 3.9e-1 Ends With {usn1} Ends With {`5esn`} Then 5.9e-12 Is Null Is Null When 9e1 Ends With 9e12 Ends With 0x0 Then .9e0 =~#usn7 Else 0 Starts With `7esn` Starts With 9e0 End..Filter(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null)] As _usn4 Skip 00[$``]"), + octest_legacy:ct_string("Delete .9e12 Is Not Null Is Not Null,12.0 In `7esn` Delete .12e-12[{`1esn`}][`1esn`]"), + octest_legacy:ct_string("Create Unique @usn5=(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})<-[{usn1:$_usn3 Starts With 010}]-(#usn8 :`8esn`) Create @usn5=Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))),usn1=Allshortestpaths(((:`4esn`:usn2{usn2:$usn2 Ends With 00 Ends With 9e12,_usn4:{`5esn`}})-[?:``|:`7esn` *12{#usn8:10.12e12 Contains .9e0,usn1:0xabc Contains {12} Contains {`6esn`}}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))) Union Return Distinct .9e12 Is Not Null Is Not Null,Shortestpath((:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})) Starts With {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF} Starts With Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})),.9e12 Contains 0 Contains $0 As #usn7 Order By .0e-0 Ends With $`2esn` Ends With `5esn` Descending Limit 12e-12 =~$_usn3"), + octest_legacy:ct_string("Load Csv With Headers From `4esn` Is Not Null As _usn4 Fieldterminator 's_str' Remove `7esn`:`4esn`:usn2,Filter(usn2 In .12e-12 Ends With `2esn` Where $7).usn1.#usn7!.`5esn` Union All Load Csv With Headers From $`1esn`[9e0..$12] As #usn7 Fieldterminator \"d_str\" Union All Return Distinct *,`1esn`[..$1000] As _usn3 Order By $@usn5 =~{`3esn`} Descending,_usn4['s_str'][8.1e1] Descending Limit $`8esn` Is Null Is Null Match `1esn`=(((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))) Using Join On _usn4,usn1,`` Using Index usn2:``(`3esn`) Where .0e0['s_str'..][0Xa..]"), + octest_legacy:ct_string("Unwind 1000[{123456789}][usn1] As `7esn` Create Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))),@usn6=((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})) Union All Remove (`` :`8esn`)-[#usn7? *..00{_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}]->(:`3esn`)-[usn1?:usn1|usn2]->(#usn7 :@usn5).usn1,{12}.`6esn`? Create Unique #usn8=((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) Merge (((`1esn` :#usn8:@usn6{`7esn`:.1e-1 Contains .12e-12,`2esn`:.1e1 Ends With #usn7 Ends With {#usn7}})-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5)-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5))) On Match Set Allshortestpaths((:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})).@usn6! =12 Is Not Null Is Not Null On Create Set Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})).`5esn`!._usn3!._usn3? =$`1esn` Ends With 1000,(`8esn` :usn1)<-[usn2 *7]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})-[ *01{usn1:false[..usn2][..999]}]-(_usn3 ).#usn7!.`` =4.9e12 Ends With $@usn6,usn2 =10.12e12[.0e0] Union All Create Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}})) Return (usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[_usn3?:@usn5|:#usn7]->(`2esn` :usn1)<-[?:usn1|usn2{#usn8:'s_str'[`2esn`][12.0]}]->(_usn3 :``)[[usn2 In .12e-12 Ends With `2esn` Where .9e0[07..][4.9e12..]|12.0[...0e0]]] As `1esn`,$_usn4 =~$#usn8 =~{`4esn`} Order By $1000 Is Null Desc,9e-12 Is Not Null Is Not Null Desc,{`1esn`} In 0 Asc Unwind 12e-12 Starts With $`7esn` As usn2"), + octest_legacy:ct_string("Create `5esn`=Allshortestpaths((({`6esn`:8.1e1 Contains .9e-1 Contains false}))),(:usn1{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`) Delete Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}) Ends With ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[ *12{#usn8:0e0 =~{12} =~{1000}}]->(:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}) Ends With Case When $@usn5[``..] Then `3esn` Is Null When $7[.1e-1..{@usn6}][$7..{`1esn`}] Then 0xabc[0Xa..] Else 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] End,$12[$@usn5],`2esn`[.9e12..] Start `2esn`=Rel( {_usn3}) Where $_usn4 =~$#usn8 =~{`4esn`} Union Delete $`6esn` In 999 In {_usn3},0[.9e-1..0e0][.1e1.._usn4],\"d_str\" Is Not Null Is Not Null Delete {`3esn`}[..{`4esn`}][..usn2],`1esn`({`4esn`} Ends With Count(*),$usn1 Contains 4.9e12 Contains $`2esn`) Is Not Null Is Not Null,Single(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1])[Case When 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Then $#usn8 Is Not Null Is Not Null When \"d_str\" Starts With $`7esn` Starts With 999 Then \"d_str\"[0x0..{@usn6}][$@usn5..0] Else .0e-0[..01234567] End..] Merge @usn6=((`2esn` :usn1)<-[_usn3:@usn5|:#usn7 *..07]-({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2)) Union Create ((`4esn` :``{_usn4:$_usn3[0x0][{0}],@usn6:9e-12 Is Not Null Is Not Null})<-[usn2:_usn3 *0xabc..12]-(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]})),``=Shortestpath((:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})<-[`3esn` *..0x0]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})-[`6esn`?:@usn5|:#usn7{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}]-(`4esn` {@usn5:5.9e-12[12e-12][$`8esn`],`5esn`:{123456789} Contains $0}))"), + octest_legacy:ct_string("Load Csv With Headers From Case When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 Else $12 Is Not Null Is Not Null End Starts With usn1(Distinct .9e1[$`1esn`..][$``..]) Starts With Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End As @usn6 Merge `4esn`=((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})<-[ *01234567..{usn1:{12} Contains `8esn` Contains @usn5}]->(usn1 :@usn6:_usn3)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) On Create Set {``:`6esn` =~999 =~$999}.`3esn`! =.1e1 In $999 In {#usn8},{`1esn`:$usn2 Is Not Null Is Not Null,`8esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}.#usn8 =7.0e-0 Ends With {123456789} Ends With @usn6,usn1 =$#usn7 Ends With {`5esn`} Ends With 01 On Create Set Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})).`5esn`!._usn3!._usn3? =$`1esn` Ends With 1000,(`8esn` :usn1)<-[usn2 *7]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})-[ *01{usn1:false[..usn2][..999]}]-(_usn3 ).#usn7!.`` =4.9e12 Ends With $@usn6,usn2 =10.12e12[.0e0] Create Unique `5esn`=Shortestpath((({_usn3:.9e12 Contains 0 Contains $0})))"), + octest_legacy:ct_string("Remove Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])._usn3 Start `1esn`=Node(0x0) ,``=Node( {#usn7})Where 00[Null..usn2]"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv From None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) As `6esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Remove (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}).`7esn`!._usn4.usn1,[@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`4esn`} Ends With Count(*)|$0 Ends With $usn1 Ends With {``}].`7esn`?.``!.`3esn`,Reduce(@usn5=0xabc[..Count(*)][..$`5esn`],usn1 In \"d_str\" Contains {@usn6}|123456789[#usn7..9e-1][10.12e12..{0}])._usn4.`7esn`!.`8esn`? Match `2esn`=Allshortestpaths((`6esn` :`6esn`)-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5)-[``:``|:`7esn`*{#usn8:{#usn7}[.12e-12],`3esn`:1.9e0[`6esn`][`7esn`]}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})),(((:`1esn`:``{`8esn`:5.9e-12[0x0..]})<-[`1esn` *010..0]->(@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[{usn2:{1000}[..{usn1}][..1e-1]}]->(`4esn` {`6esn`}))) Using Index #usn7:`2esn`(`8esn`) Foreach(`4esn` In Single(`2esn` In $@usn5 Is Not Null Is Not Null Where {_usn3} Is Null Is Null) =~Reduce(``=Null,`7esn` In 0.12 Is Not Null|{#usn7} Starts With .1e-1)| With Distinct {usn1} Contains {`2esn`},[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]],`6esn`[0X0123456789ABCDEF..][`8esn`..] As #usn8 Limit Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null Where $usn2 Contains $`3esn` Contains 6.0e0)"), + octest_legacy:ct_string("Return *,$123456789[..$999][..`6esn`] As @usn5,Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07)[Case 9e-12 Ends With 9e1 Ends With 4.9e12 When `3esn` =~$#usn7 Then $@usn5 Starts With #usn7 When {`4esn`}[{`3esn`}][$`2esn`] Then #usn7[$`8esn`][{`3esn`}] Else 9e0[`4esn`..$_usn4][9.1e-1..0e0] End][[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]] Skip @usn5[9e-1..{`1esn`}] Limit 11.12e-12 Contains usn1 Load Csv From false =~{`8esn`} =~00 As `7esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Create Allshortestpaths((`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`)) Create Unique `6esn`=(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})<-[?$999]-(`4esn` {#usn7:$usn1[0e0...9e-12]})-[:`8esn`|:#usn8 *01]-(:#usn7:`8esn`{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}),_usn3=(((`4esn` )-[{#usn7:1e-1[$`4esn`]}]->(`1esn` :`2esn`:`4esn`)-[?:#usn8|:``{usn2:{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],usn1:\"d_str\"[0x0..{@usn6}][$@usn5..0]}]-(:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12}))) Union Detach Delete 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))],{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1] Create Unique _usn4=(#usn8 :`5esn`:`7esn`{usn2}) Delete {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null),0.0[$`4esn`] Union Remove Reduce(`3esn`={123456789} =~.9e1 =~$_usn3,`8esn` In {_usn4} Ends With {0} Ends With `1esn`|{usn1}[`7esn`..Count(*)]).usn2.`6esn`?"), + octest_legacy:ct_string("Unwind 9e0 In {usn2} In {@usn6} As @usn5 Start `2esn`=Relationship:_usn4(@usn6=\"d_str\") Union All Start `7esn`=Node:@usn6(`3esn`={``}) Start `3esn`=Node(0xabc,7,0Xa,01234567) Where $`8esn` Is Not Null Is Not Null Union Create Unique `7esn`=Shortestpath(((usn1 :_usn4:`2esn`)<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[?{#usn7:`2esn`,`7esn`:$@usn5 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))) Optional Match (({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 {#usn7:$999 =~false =~{`8esn`}})),(((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}))) Using Scan `4esn`:`1esn` Using Index `6esn`:`8esn`(`3esn`) Where $#usn7[01..2.12][2.12..3.9e-1]"), + octest_legacy:ct_string("Remove Extract(`7esn` In 0.12 Is Not Null Where {`1esn`}[{usn2}]|9e1 Ends With `7esn` Ends With 2.12).`2esn`?.`1esn`.usn2!,Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where {`3esn`} =~$@usn5 =~`2esn`|$1000 Starts With {@usn6} Starts With $@usn5).`3esn`?.`3esn`?.`4esn`? Delete 1e1[$_usn3],9e-1[0],$#usn8 Starts With 9.1e-1 Starts With {#usn7} Detach Delete $@usn6[.1e-1][9e12]"), + octest_legacy:ct_string("With $#usn7 Contains 3.9e-1 Order By Count(*)[{12}..{#usn8}] Asc Where 2.12[{12}] Union With Distinct $`8esn` Is Not Null Is Not Null As _usn3 Order By Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Descending,\"d_str\" In 7.0e-0 Desc Skip Reduce(_usn3=7.0e-0[$`6esn`..],`7esn` In 0.12 Is Not Null|false Starts With 0 Starts With 2.9e1) =~Case $`3esn` =~0x0 When $12[$@usn5] Then 11.12e-12 In {usn1} When 4.9e12[{_usn4}..] Then $@usn5 Contains _usn3 Else .12e-12 Starts With .12e-12 End =~Reduce(_usn4=_usn4 Is Not Null Is Not Null,`2esn` In $@usn5 Is Not Null Is Not Null|7.0e-0 Is Not Null) Limit {_usn3:.0e-0[..``][..$7]}[..(`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`)][..@usn5] Union All Foreach(`` In true[0Xa..]| With *,0e0[12.0][{#usn7}] As `8esn`,Extract(#usn8 In 07[..$`5esn`] Where $usn2[..$999][..#usn8])[..Extract(`1esn` In $12 In {usn2} Where {123456789} =~.9e1 =~$_usn3|9e1 =~$`8esn` =~10.12e12)][..Reduce(`8esn`=.1e1[{@usn6}][true],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|0X7 Is Not Null Is Not Null)] As `3esn` Order By .0e-0[..01234567] Descending,Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null) Ascending Skip 9e1[...9e1][..$`6esn`] Limit 9e-1[0] Where Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Return *,Reduce(`2esn`=$@usn5[``..],`7esn` In 0.12 Is Not Null|$`4esn` Is Not Null) =~Any(_usn3 In `8esn`[_usn4] Where {`6esn`} In {_usn4} In $12) =~Reduce(`1esn`=false =~{`8esn`} =~00,`2esn` In $@usn5 Is Not Null Is Not Null|`1esn`[{@usn5}..][{_usn4}..]),1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Skip .12e-12 Starts With .12e-12 Limit (@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(:`6esn`{`2esn`:`5esn` Ends With Count(*)})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12}) In Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}) In Single(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str') Start #usn7=Rel:@usn6({1000}) "), + octest_legacy:ct_string("Detach Delete 9.1e-1 Starts With .9e0,Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null,Case 9e1 In $1000 When 999 Starts With 7.0e-0 Starts With true Then {usn2}[{999}..][9e12..] End[Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End..][Any(`1esn` In $12 In {usn2} Where @usn6[true..])..]"), + octest_legacy:ct_string("Merge Shortestpath(((`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(`1esn` {@usn6:6.0e0[$#usn7..$1000]}))) On Match Set {usn1:1.0 Is Not Null}.usn1? ={123456789} Contains $0,usn1+=01 Is Not Null,usn1 ={999} =~$`6esn` =~$`6esn` With Distinct {usn1} Contains {`2esn`},[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]],`6esn`[0X0123456789ABCDEF..][`8esn`..] As #usn8 Limit Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null Where $usn2 Contains $`3esn` Contains 6.0e0 Unwind $usn1[0e0...9e-12] As usn1 Union Return Distinct {`5esn`} Ends With $`7esn` Ends With {@usn5} As `4esn`,{#usn8} Is Not Null As `6esn`,{`3esn`}[...1e1][..0] Order By usn1 Ends With 11.12e-12 Ends With 5.9e-12 Descending,.1e-1 Is Not Null Ascending,Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}] Descending Skip 9e0[{7}...0e-0][Null..@usn5] Limit $`5esn` =~Count(*) =~1.9e0 Create Unique _usn4=((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})) Merge Allshortestpaths(((`8esn` :`7esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 )))"), + octest_legacy:ct_string("Merge Allshortestpaths(({`4esn`:{7}[0x0][1e1]})) On Create Set #usn8 =Null In {7} Match (((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))),Shortestpath(((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1))) Using Join On ``,usn1,`2esn` Using Index #usn7:`2esn`(`8esn`) Remove Case When 0.12 Is Not Null Then $`` =~$_usn3 When 00[$_usn4][$`1esn`] Then {#usn7}[.12e-12] End.usn2!.`3esn`! Union All Load Csv From false[9e12] As `2esn` With *,Allshortestpaths((_usn4 {`3esn`:.0e-0 In 12})) Is Null Is Null,{@usn6} Is Null As `5esn` Skip Shortestpath((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))[[`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`}[@usn5..{@usn6}]|{1000}[..`5esn`][..9e12]]..][{_usn4:`8esn`[.12e12..]}..] Where {@usn5}[10.12e12..] Optional Match `7esn`=(@usn5 :@usn5{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6})-[usn2?:`1esn`|:`1esn` *..123456789]-(:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[:_usn3]-(`3esn` ),(({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 {#usn7:$999 =~false =~{`8esn`}})) Where {#usn7} Starts With .1e-1 Union Create Unique _usn4=(((`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]}))) Unwind Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) As @usn6"), + octest_legacy:ct_string("Unwind Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Contains (:`2esn`:`4esn`{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``) Contains {@usn6:10.12e12 Contains .9e0,`3esn`:`6esn` =~999 =~$999} As `2esn` Union All Optional Match Shortestpath(((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})))),_usn3=Allshortestpaths((((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999})<-[``?:@usn5|:#usn7 *..00{#usn8:$`8esn`[...1e-1]}]->(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]})))) Using Index `3esn`:`8esn`(`5esn`) Where .12e12 Ends With 07 Ends With 3.9e-1 Foreach(`8esn` In 2.9e1 In {``}| Create Shortestpath(((`7esn` {@usn5:Count ( * )[_usn4..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))) Unwind Allshortestpaths(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0}))[Reduce(@usn6=10.12e12 Starts With $`4esn` Starts With 0e0,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$1000 Contains $123456789 Contains #usn8)..Case 7[..123456789][..true] When $1000[..0e-0][..010] Then 999 Starts With 7.0e-0 Starts With true End][[`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]]..Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When 0.12[Count ( * )..Count ( * )][$999..`5esn`] Then $123456789[..$999][..`6esn`] Else 7[{`4esn`}..] End] As @usn6)"), + octest_legacy:ct_string("Foreach(`2esn` In [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01|_usn4 Ends With {`8esn`} Ends With usn2][Any(usn1 In $@usn6 Is Null Is Null Where `3esn` Is Null)..]| Unwind .12e12[01..{1000}][8.1e1..Count ( * )] As `2esn` With 4.9e12[{_usn4}..],{`5esn`} Ends With $`7esn` Ends With {@usn5} Skip {999}[..`6esn`]) Optional Match _usn4=(((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))) Using Scan `3esn`:`` Where $`5esn` =~Count(*) =~1.9e0 Union All Remove #usn7(Distinct \"d_str\" Is Not Null Is Not Null,$`6esn`[$_usn3..{1000}])._usn3!.#usn7?,[usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $12 Is Null Is Null].``.`3esn`? Remove Case #usn8[\"d_str\"..usn2] When $`5esn`[$_usn3][$12] Then 0[$usn1..] End.`6esn`?,Case When `5esn` Contains 0 Contains $12 Then true In 0.0 Else 9e12 Ends With \"d_str\" Ends With 0X7 End._usn4"), + octest_legacy:ct_string("Match `3esn`=({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}),((:#usn7:`8esn`{@usn6:123456789[_usn4..`1esn`][$`6esn`..{@usn6}]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}})) Using Index `5esn`:`4esn`(_usn3) Merge (`1esn` :@usn5{@usn6:$`7esn` Ends With 7.0e-0 Ends With $usn2}) On Create Set `` =$`3esn` =~$123456789 =~`3esn`,Reduce(#usn7=4.9e12 Starts With {``},usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|3.9e-1 Contains $@usn5).`7esn`?.#usn7.`1esn`? =12 Ends With {#usn8} Ends With $_usn4,(_usn3 )<-[:`8esn`|:#usn8 *0X7..0Xa]->(`4esn` :`8esn`{12}).`8esn`!._usn3? =Filter(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Starts With (#usn7 :``)-[`3esn`{`4esn`:12e12[.9e12..07]}]-(`1esn` :``{_usn4:$@usn5 =~{`3esn`}})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}) Starts With Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12) On Match Set Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999}).`5esn`.#usn8!.`3esn`? =$12 In {usn2},`4esn`(Distinct .9e0[07..][4.9e12..]).`4esn`! =Reduce(#usn7=#usn8[\"d_str\"..usn2],#usn7 In .0e-0 In 12|`` Ends With 1.0 Ends With usn1) Ends With [_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3]] Ends With Shortestpath((((:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[`2esn`?:`8esn`|:#usn8]->(`` )<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)))),`5esn`+=7 Starts With 9e-12 Unwind $@usn5 =~{`3esn`} As `5esn` Union All Create Unique (((:`5esn`:`7esn`{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[#usn8:usn2]->({`6esn`:12[@usn6][{`2esn`}]})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(`5esn` {_usn4:0xabc[..Count(*)][..$`5esn`]}))),Shortestpath((_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn2 *7]-(`` )) With Distinct 00[..@usn6] As `6esn`,{`3esn`}[...1e1][..0],Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null As `2esn` Skip $usn2 Ends With 9e12 Ends With Count ( * ) Limit 0xabc Starts With {`3esn`} Starts With {``} Where 123456789[_usn4..`1esn`][$`6esn`..{@usn6}] Union Return *,None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12)[Case When .12e12 Is Not Null Then {`6esn`} Starts With .12e-12 When .1e-1 Starts With @usn6 Starts With _usn3 Then $`5esn` Ends With 's_str' Ends With $`6esn` End..][Extract(usn1 In $@usn6 Is Null Is Null Where $999 =~false =~{`8esn`}|$@usn6[``..][3.9e-1..])..],@usn6[true..] As _usn4 Order By $`4esn` Ends With .12e12 Ends With 123.654 Desc,Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) =~usn2({`1esn`} Is Null) =~Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 1.9e0 In $@usn6 In $_usn3) Descending Skip $`7esn` Is Null Limit Reduce(`5esn`=$usn1[..$999][..0e0],`2esn` In $@usn5 Is Not Null Is Not Null|``[$#usn7]) Starts With [`6esn` In 010[{`1esn`}..] Where 9e-12[$7..]] Starts With Any(_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12) Optional Match @usn5=(((`1esn` :usn2{`8esn`:12.0[...0e0]})-[`5esn`?:@usn5|:#usn7{`4esn`:9e-12[$7..]}]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]}))),Shortestpath((`6esn` :``)<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})) Where $@usn6 Is Null With Distinct *,Case Count ( * ) =~123456789 =~{@usn5} When 0[10.12e12] Then 12.0 Starts With 00 Else 2.9e1 In {``} End[..Case $`8esn`[0x0][.9e0] When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null Else $usn1 =~.0e0 =~{`4esn`} End][..Extract(#usn8 In 07[..$`5esn`] Where 07[{@usn5}..]|9e-1 Contains 3.9e-1)] As `4esn`,(`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3)[Case When 3.9e-1 Ends With {usn1} Ends With {`5esn`} Then 5.9e-12 Is Null Is Null When 9e1 Ends With 9e12 Ends With 0x0 Then .9e0 =~#usn7 Else 0 Starts With `7esn` Starts With 9e0 End..Filter(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null)] As _usn4 Skip 00[$``] Where @usn6 Ends With $`2esn` Ends With 1.0"), + octest_legacy:ct_string("Unwind 0.0[..9e1][..2.12] As _usn4 With Distinct Any(`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]) In Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Skip {usn2} Contains {0} Union All With Distinct $_usn3 Contains 1.0 Contains 0.12 As ``,0x0 Ends With #usn8 Ends With .9e-1 As _usn4 Order By All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3]) In Allshortestpaths((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]}))) In (`1esn` :`2esn`:`4esn`)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[#usn8]->(`2esn` :_usn3{`6esn`:_usn4[{``}..{`6esn`}][$7..$_usn3],`6esn`:$`4esn` Ends With {999}}) Descending Skip Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) Where 9e1 =~$`8esn` =~10.12e12 Remove Filter(`6esn` In 010[{`1esn`}..] Where Count(*) Starts With {usn2} Starts With `2esn`).`4esn`?,Case {`6esn`}[@usn5..{@usn6}] When _usn4 Ends With {`8esn`} Ends With usn2 Then $`8esn` Is Not Null Is Not Null When $999 =~0e0 =~0X7 Then $`7esn` Starts With 's_str' End.@usn5?.`7esn`!"), + octest_legacy:ct_string("Optional Match (((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(`2esn` :_usn3)<-[_usn3?{``:{1000} Starts With {`1esn`}}]->(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))) Using Scan #usn8:`1esn` Using Scan #usn7:`4esn` Where `4esn` Ends With 9e12 Ends With {`5esn`} Merge `7esn`=Shortestpath(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) Foreach(#usn7 In 0.12[{@usn6}..{#usn7}]| With *,Case 9e1 In $1000 When 999 Starts With 7.0e-0 Starts With true Then {usn2}[{999}..][9e12..] End[Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End..][Any(`1esn` In $12 In {usn2} Where @usn6[true..])..] As usn2 Order By {`7esn`} =~\"d_str\" =~{``} Desc,`2esn` In .9e0 In `` Ascending,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) Desc Skip 10.12e12 Contains .9e0 Limit Count(*)[{12}..{#usn8}]) Union Foreach(`8esn` In None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Contains (`8esn` :@usn6:_usn3{_usn4:{#usn7} =~$@usn6 =~$7})<-[`1esn`? *0{usn2:.9e12[6.0e0..][@usn5..]}]->(usn2 :@usn6:_usn3)-[usn1:#usn7|:@usn5 *999..123456789]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})| Unwind $`1esn` =~`8esn` As @usn5) Load Csv With Headers From ({`4esn`:#usn8[\"d_str\"..usn2],`1esn`:12.0[..Count ( * )][..@usn6]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ) =~Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End =~{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} As #usn7 Start `7esn`=Node:#usn7(usn1={`6esn`}) Where false[..usn2][..999] Union All With Distinct [`1esn` In $12 In {usn2} Where 12e-12 Starts With $`7esn`][{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}..] As `5esn`,{`3esn`}[..{`4esn`}][..usn2] As #usn8 Skip Case When .9e1 In .1e-1 Then $7 =~01234567 =~12.0 When {`8esn`} Is Not Null Is Not Null Then $12 =~4.9e12 Else {#usn7}[.12e-12] End[..Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`}))] Limit #usn7[123.654][{12}] Foreach(usn2 In {usn1:12[..$`5esn`]}[None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..])]| Optional Match Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))),(((usn1 :@usn6:_usn3)<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->(:usn1)<-[:``|:`7esn`{@usn6:{#usn8}[..@usn5],@usn6:$1000 Contains $123456789 Contains #usn8}]->(`1esn` :@usn6:_usn3{#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12}))) Create Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))),@usn6=((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})))"), + octest_legacy:ct_string("Match @usn6=((({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(@usn6 :@usn5)-[`2esn`? *7{`5esn`:false[..usn2][..999]}]-(`4esn` :@usn6:_usn3))),(#usn7 :`6esn`{usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[`2esn`?:``|:`7esn` *1000..]-(:_usn3{@usn5:`2esn`[`7esn`][1000]}) Using Scan `3esn`:_usn3 Using Index `6esn`:`8esn`(`2esn`) Union Return Distinct .0e0[{#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]}][All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0)],$123456789[{usn1}][.12e-12] As `3esn`,Reduce(`2esn`=$@usn5[``..],`7esn` In 0.12 Is Not Null|$`4esn` Is Not Null) =~Any(_usn3 In `8esn`[_usn4] Where {`6esn`} In {_usn4} In $12) =~Reduce(`1esn`=false =~{`8esn`} =~00,`2esn` In $@usn5 Is Not Null Is Not Null|`1esn`[{@usn5}..][{_usn4}..]) As @usn6 Limit {``} Is Null Is Null Remove Extract(usn2 In .12e-12 Ends With `2esn` Where `3esn` Contains 01 Contains 01|.9e0[$#usn8][Count ( * )]).`4esn`,Reduce(#usn8={12} Contains `8esn` Contains @usn5,usn1 In \"d_str\" Contains {@usn6}|$12 =~4.9e12).``?,Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}}))).`2esn`?.`` Detach Delete Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] Union All Start `1esn`=Rel:`5esn`(@usn5=\"d_str\") ,`5esn`=Node:@usn6(#usn8='s_str') With Distinct 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Skip {usn1:$1000 Is Null}[Shortestpath((:usn1$1000))..][Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true)..] Where `3esn` Starts With 9.1e-1 Starts With .9e-1 Match ((`4esn` :`6esn`)<-[{``:7.0e-0 Is Not Null}]->(:#usn7:`8esn`{@usn5:{0} In {`1esn`}})-[``?{``:{#usn7} =~$@usn6 =~$7}]-(`3esn` :@usn5)) Using Join On #usn8"), + octest_legacy:ct_string("Merge `1esn`=(((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))) On Match Set `6esn` =(`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Is Not Null Is Not Null On Match Set `2esn` =7[{`4esn`}..],usn2 =$@usn5 Contains _usn3"), + octest_legacy:ct_string("Merge `4esn`=((_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[`3esn`?:usn2]-(:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})) On Create Set Case $`8esn` Is Not Null Is Not Null When #usn8[\"d_str\"..usn2] Then .12e-12 Is Null End.`1esn`?.`7esn`?.usn2? =Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End[(`4esn` :#usn7:`8esn`)-[_usn3?:@usn6|:`4esn`{_usn4:$12 Ends With 12.0 Ends With $`4esn`}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2)..][Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1)..] Remove Case $`8esn` Is Not Null Is Not Null When #usn8[\"d_str\"..usn2] Then .12e-12 Is Null End.@usn6? Union Merge ((:`1esn`:``{`8esn`:5.9e-12[0x0..]})) On Create Set #usn7 =usn1 =~false =~{999},Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}).`2esn`! =9e12 Is Null Is Null,`2esn`+=Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`}) Ends With Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))) Ends With Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1) On Create Set `3esn` =$7[.1e-1..{@usn6}][$7..{`1esn`}],None(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {0}[.1e-1..][_usn4..]).usn2 =$`7esn` In $`4esn`,usn1+=$`4esn` Ends With {999}"), + octest_legacy:ct_string("Return *,\"d_str\" In usn2 In $`7esn` As `5esn`,12[11.12e-12..][`4esn`..] Order By Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Is Null Ascending,'s_str'[$`8esn`..$999] Descending,$`2esn`[`8esn`..] Descending Remove Case 2.9e1 Ends With `5esn` Ends With 1000 When @usn6[999][1000] Then .0e0 =~0 =~.0e0 When {`4esn`} In 1000 In {@usn5} Then 123456789[_usn4..`1esn`][$`6esn`..{@usn6}] Else .12e12 Is Not Null End.`2esn`? Delete (usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..])"), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv With Headers From 1e-1 =~$`7esn` =~1e1 As @usn5 Fieldterminator 's_str' With None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0) As usn2 Skip Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])[..(#usn7 {`5esn`:.12e12 Is Not Null,@usn5:.12e12 Is Not Null})-[#usn8:`7esn`|usn1 *0X7..0Xa{usn1:_usn4 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})][..Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`)] Where 0Xa In 1.0 In $@usn5 Match `2esn`=(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1}),``=Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))) Where 7[{`4esn`}..]"), + octest_legacy:ct_string("Delete (`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[`3esn` *..0x0]-(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:_usn4|:`1esn` *01]-(`4esn` {`3esn`:{`7esn`} =~\"d_str\" =~{``},`3esn`:{`1esn`} Contains 1.0 Contains 4.9e12}) =~Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 9e12 Is Null Is Null) =~(:@usn5{#usn7:Null,`5esn`:{@usn5} Ends With 0Xa Ends With .12e-12})-[:`3esn`|`3esn` *1000..]-(@usn6 )"), + octest_legacy:ct_string("Using Periodic Commit 7 Load Csv With Headers From (@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[`8esn`?:_usn3 *12{usn1:#usn7[.9e0..`3esn`][{`6esn`}..1000],_usn4:$usn2 In #usn7 In #usn7}]-(_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(usn2 :`2esn`:`4esn`)[..Reduce(`2esn`={1000}[..{usn1}][..1e-1],_usn3 In `8esn`[_usn4]|Count(*)[$7])][..{_usn3}] As `2esn` "), + octest_legacy:ct_string("Optional Match ((:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})<-[*..{`4esn`:{1000} Starts With 10.12e12 Starts With .0e-0,`2esn`:$#usn7 Ends With {`5esn`} Ends With 01}]-({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})) Create Shortestpath((#usn8 :`5esn`:`7esn`{usn2})),((usn1 :@usn6:_usn3)-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})) Union Detach Delete [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,00[..@usn6] Load Csv With Headers From #usn8[$`2esn`] As `6esn` With Distinct 999 Ends With {#usn8},9e1[..@usn5][..$`5esn`],$@usn6[...9e-1] As `2esn` Limit $123456789 Is Not Null Is Not Null Where $7 Union Load Csv From `4esn`[..7][..$usn2] As _usn4 Return Distinct Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] As `7esn`,$#usn8[$0..`3esn`][1e-1..$7],_usn3 =~{7} =~123.654 As @usn6 Order By {`8esn`}[.0e0..][999..] Asc,#usn8(Distinct 12e12[{`4esn`}..`4esn`][999..{@usn6}])[Any(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1])..{``:9e1[0.0]}] Descending Skip Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07)[Case 9e-12 Ends With 9e1 Ends With 4.9e12 When `3esn` =~$#usn7 Then $@usn5 Starts With #usn7 When {`4esn`}[{`3esn`}][$`2esn`] Then #usn7[$`8esn`][{`3esn`}] Else 9e0[`4esn`..$_usn4][9.1e-1..0e0] End][[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]] Return Distinct None(`1esn` In $12 In {usn2})[..Reduce(usn2=.9e0 In 8.1e1,`3esn` In 8.1e1 Contains .9e-1 Contains false|$_usn3 Is Not Null)] As @usn5 Skip $`3esn` =~$123456789 =~`3esn`"), + octest_legacy:ct_string("Create ((:`8esn`{`2esn`:0[..{#usn7}][..$_usn3],#usn8:.9e-1 Is Null Is Null})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]-(`7esn` :#usn8:@usn6{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[usn2?:`2esn`|`5esn`{``:{#usn7} =~$@usn6 =~$7}]->(:`1esn`:``{`1esn`:{@usn5}[10.12e12..]})),usn2=Shortestpath((_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn2 *7]-(`` )) Union All Delete {#usn7} Is Not Null Create _usn4=((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})),`4esn`=(({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)) Match usn2=((({`5esn`:`1esn` In 010 In 1e-1})-[_usn3:`6esn`]-(`5esn` :#usn8:@usn6{``:Count(*) Starts With {usn2} Starts With `2esn`,`1esn`:12e12[{`4esn`}..`4esn`][999..{@usn6}]})<-[:``|:`7esn`{@usn6:{#usn8}[..@usn5],@usn6:$1000 Contains $123456789 Contains #usn8}]->(`1esn` :@usn6:_usn3{#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12}))) Where @usn5[{`1esn`}..][Count ( * )..]"), + octest_legacy:ct_string("With Distinct *,1.9e0[$`4esn`],All(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`]) Ends With Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e-12[9e1]) Merge ((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})) On Create Set (`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[? *..123456789{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:`7esn`{`5esn`:{`8esn`} Starts With .9e-1 Starts With 1000})._usn3._usn3?.`6esn`! =(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}) Is Not Null,#usn8 =0[4.9e12] Optional Match `7esn`=Shortestpath(((usn1 :_usn4:`2esn`)<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[?{#usn7:`2esn`,`7esn`:$@usn5 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))),Allshortestpaths((:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[_usn3?:`5esn`*..]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]})) Using Join On `5esn`,usn1,`7esn` Using Scan #usn8:`1esn` Where 8.1e1[..9.1e-1][...9e1] Union All Return Distinct false Contains {`7esn`},{0} Is Not Null As `` Order By [usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`|{#usn8}[..@usn5]][Case When .9e1 In {#usn7} In .9e-12 Then #usn7 Is Null Is Null End..] Asc,Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] Asc,(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[`3esn`?:`1esn`|:`1esn`]-({_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})[{@usn5:07[..$`5esn`]}..][$#usn8..] Descending Skip $7[.1e-1..{@usn6}][$7..{`1esn`}] Limit {``} Is Null Is Null Merge #usn8=Allshortestpaths((usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) On Match Set {#usn7:.9e1 In .1e-1,_usn4:{12}}.`8esn`!.@usn6!._usn4 =$`5esn` In $12 In `2esn`,`8esn` =Case When $123456789 Is Not Null Is Not Null Then $`5esn` Is Not Null End Ends With {_usn3:$12 Is Not Null Is Not Null} Ends With [`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 6.0e0 =~12.0 =~9e1|@usn6 Ends With $`2esn` Ends With 1.0] Start @usn5=Relationship:_usn3({`7esn`}) Where `5esn` Ends With Count(*)"), + octest_legacy:ct_string("Start `3esn`=Relationship:usn2({usn2}) ,`1esn`=Rel:`5esn`(@usn5=\"d_str\")Where {`8esn`} Contains $@usn5 Foreach(`8esn` In $`5esn` Starts With 4.9e12 Starts With 0e-0| Create Unique `6esn`=(({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[_usn4? *999..123456789{@usn6:$`4esn` Ends With .12e12 Ends With 123.654}]->(#usn8 {usn2:$0 Ends With 9e-12 Ends With $_usn4,`5esn`:0e-0[{@usn6}]})-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]-(`1esn` :_usn4:`2esn`))) Foreach(#usn8 In 9e12 Is Null| Unwind Allshortestpaths(((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}))) Is Null Is Null As usn2 Remove Filter(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12).`3esn`?.`7esn`?,Allshortestpaths((((`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})-[`8esn`:`4esn`|:`2esn`]->(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})))).`3esn`) Union All Create @usn5=Shortestpath(((:#usn8:@usn6{@usn6:$_usn4 Ends With {#usn8},_usn4:0e0[12.0][{#usn7}]})-[:#usn8|:``*{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]->(:``{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Start ``=Node:`7esn`({#usn7}) Where 01234567[1000..][$`8esn`..]"), + octest_legacy:ct_string("With Distinct 9e1 Ends With 9e12 Ends With 0x0 As #usn8,``(Distinct $999[usn1..0e-0]) Ends With {`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]} Ends With {`1esn`:$@usn5 Contains _usn3,usn2:9e12 Ends With \"d_str\" Ends With 0X7} Order By 0e0 Is Null Is Null Asc,usn1 =~false =~{999} Desc Where Count ( * )[9e0..$``] Create Unique Shortestpath((`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})),((_usn3 :`7esn`{@usn6:$`4esn` Ends With .12e12 Ends With 123.654})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)<-[#usn7? *0xabc..12]-(:`3esn`)) Unwind 12e-12 Starts With $`7esn` As usn2"), + octest_legacy:ct_string("Foreach(`2esn` In .1e-1[..$_usn3][..0]| Remove All(usn1 In $@usn6 Is Null Is Null Where _usn4 Is Not Null Is Not Null).`7esn`!.@usn5?) Union Remove Extract(usn1 In \"d_str\" Contains {@usn6} Where $`` =~.1e-1|$`3esn` =~0x0).@usn6.``!,Case When .9e1 In .1e-1 Then $7 =~01234567 =~12.0 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else $`7esn` In $@usn5 End.#usn8,(`2esn` {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`` $999)-[#usn8?:`8esn`|:#usn8 *999..123456789]->(`3esn` :usn2).#usn8.@usn5? Foreach(`5esn` In Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}]| Load Csv From 7 In 1e1 In {``} As `2esn` Fieldterminator \"d_str\") Load Csv From false[9e12] As `2esn` "), + octest_legacy:ct_string("Create Unique Allshortestpaths((`2esn` :_usn3{usn1:5.9e-12 Is Null Is Null})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(:`5esn`:`7esn`{`4esn`:2.9e1[{`2esn`}]})-[ *..123456789{@usn5:$`8esn`}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})),((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})) Create Unique usn1=((`` :`7esn`)) Foreach(@usn5 In Shortestpath(((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)))[..Any(#usn7 In .0e-0 In 12)]| Load Csv From [usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0|4.9e12 Is Not Null Is Not Null] =~Case {_usn3} In $#usn8 In $12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else 0[..{0}][..true] End =~Case Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else $_usn3 Starts With 010 End As #usn7 ) Union All Merge `5esn`=((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})) On Match Set (:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12}).`3esn`! =0x0[{`6esn`}..],_usn3+=Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`|.9e-12[.12e12..][0Xa..])[{#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}..],`4esn` ={`8esn`}[.0e0..][999..] Create Unique Shortestpath((@usn6 :@usn5)),@usn6=(({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)) Create (_usn4 :`6esn`)<-[`2esn` *7]->(`4esn` :@usn5),_usn3=(_usn3 :`1esn`:``{`8esn`:{#usn8} In {12} In .9e12})<-[?:`3esn`|`3esn` *999..123456789{_usn3:$`4esn`[$@usn6...12e12]}]->(usn1 {#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]})"), + octest_legacy:ct_string("Match ``=(#usn7 {#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})<-[@usn5?:#usn7|:@usn5]->(:`8esn`{`2esn`:0[..{#usn7}][..$_usn3],#usn8:.9e-1 Is Null Is Null})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}) Using Join On `4esn`,`5esn`,@usn6 Using Index usn2:`1esn`(`3esn`) Detach Delete [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,00[..@usn6] Union Load Csv From 12e12[usn2..$`6esn`] As usn2 Foreach(usn2 In (`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End]| Start _usn4=Relationship( {#usn8}) ,`4esn`=Node:usn2(usn1={_usn3}))"), + octest_legacy:ct_string("Create Unique (((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})-[`2esn`?:@usn6|:`4esn` *010..0{`4esn`:Null[$`3esn`..][`1esn`..],_usn3:6.0e0[$#usn7..$1000]}]-(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]}))) Unwind .9e12 Is Not Null Is Not Null As _usn3 Start usn1=Node:`2esn`({_usn3}) Where {usn1} Is Not Null"), + octest_legacy:ct_string("Merge (:``)-[`3esn`?:`1esn`|:`1esn`]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12}) On Create Set `8esn` =[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]] On Match Set @usn5:@usn5 Union All Create Unique ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})),``=Shortestpath((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) Start @usn5=Rel:`8esn`(usn1={#usn7}) ,``=Node:`7esn`({#usn7})Where 00[$``] Load Csv With Headers From Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] As usn1 Union All Create `4esn`=(({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)) Load Csv From $`8esn` Starts With {`7esn`} As `8esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Start @usn6=Relationship:`5esn`({0}) "), + octest_legacy:ct_string("Delete 2.9e1 Ends With `5esn` Ends With 1000"), + octest_legacy:ct_string("Delete .1e-1[2.9e1..][$`7esn`..],$1000[..0e-0][..010] Create (#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null}) Unwind Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn`) Contains (`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) Contains Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}) As `8esn` Union All Return Distinct usn2[12e-12..{`8esn`}][.12e12..{123456789}] As #usn8,Case When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] When {123456789} Starts With $_usn4 Starts With 0x0 Then 9e0[`3esn`][0] End[{`3esn`:false Starts With 0 Starts With 2.9e1,@usn6:9e-12 Ends With {1000}}..{`8esn`:_usn3[{#usn7}]}] As usn1 Skip Allshortestpaths((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))[usn1..] Limit usn2 Ends With $123456789 Ends With {999} Load Csv With Headers From [`6esn` In 010[{`1esn`}..] Where $`4esn` Is Null Is Null][..Case $`8esn`[0x0][.9e0] When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null Else $usn1 =~.0e0 =~{`4esn`} End][..Case When $`6esn` =~$#usn7 =~$`4esn` Then 2.9e1[2.12..1.9e0] When {`3esn`}[#usn7] Then 2.12[`4esn`][.9e-1] End] As usn2 Merge ({`1esn`:$`8esn` Is Null Is Null,`1esn`:0.12 =~2.9e1 =~9e1}) On Create Set _usn3+=Count ( * ) =~123456789 =~{@usn5} Union All Return Distinct *,{`3esn`}[#usn7] As _usn3 Skip {usn2}[..{@usn6}][..@usn5] Limit All(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Delete Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[..None(#usn7 In .0e-0 In 12 Where 0xabc =~123456789)][..11.12e-12],12e12[{`4esn`}..`4esn`][999..{@usn6}] Detach Delete .9e12 Ends With #usn8 Ends With {#usn7},2.9e1[2.12..1.9e0],.0e-0 In 12"), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv With Headers From Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000 As `` Start `5esn`=Node:usn1(\"d_str\") Where $usn2 In #usn7 In #usn7 Remove Case $999 Is Not Null When 0e0 =~{12} =~{1000} Then $#usn8[$0..`3esn`][1e-1..$7] When `3esn` Contains 01 Contains 01 Then 9e-1 Contains 3.9e-1 Else ``[$#usn7] End.`7esn`!,_usn4:@usn5"), + octest_legacy:ct_string("Merge usn2=(@usn6 {usn1:0Xa In 1.0 In $@usn5})-[#usn8?:`8esn`|:#usn8 *999..123456789]->(`3esn` :usn2) Start ``=Node( {#usn7}) With 1.0 In {usn1} As `5esn` Limit Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null"), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv From Filter(usn1 In $@usn6 Is Null Is Null Where {`3esn`}[#usn7]) Is Null Is Null As _usn4 Fieldterminator 's_str' Delete `4esn` =~usn1 =~Count(*) Optional Match Shortestpath((@usn6 :@usn5)) Where `3esn` Is Null Is Null"), + octest_legacy:ct_string("Unwind @usn5[#usn7..] As usn1 With Distinct 0Xa Starts With 9e0 Starts With Count(*) Skip \"d_str\" Is Not Null Is Not Null Limit {`4esn`}[{`3esn`}][$`2esn`] Where 3.9e-1[{@usn6}..][01234567..] With $_usn3 Contains 1.0 Contains 0.12 As ``,0x0 Ends With #usn8 Ends With .9e-1 As _usn4 Order By 01234567 Ends With .0e0 Ends With 12e12 Ascending,usn1(Distinct {usn1}[7.0e-0..][3.9e-1..]) Asc,.0e-0[..01234567] Descending Union Optional Match #usn7=Shortestpath(({`5esn`:`1esn` In 010 In 1e-1})<-[?:@usn6|:`4esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]-(`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})) Using Scan `6esn`:#usn8 Using Scan #usn7:`8esn` Remove Allshortestpaths((_usn3 {#usn7:$999 =~false =~{`8esn`}})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})).#usn8,Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0).`8esn`! Load Csv With Headers From usn2[12e-12..{`8esn`}][.12e12..{123456789}] As _usn3 Fieldterminator 's_str' Union With 12e-12 Starts With $`7esn` As `5esn`,10.12e12[usn2] As _usn4,$999 Ends With `2esn` Ends With 12.0 As #usn8 Order By #usn8(Distinct 12e12[{`4esn`}..`4esn`][999..{@usn6}])[Any(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1])..{``:9e1[0.0]}] Descending,{`8esn`}[..`5esn`][..01] Asc,9e1 Starts With $`8esn` Starts With `3esn` Ascending Return Distinct *,9e1[12] As usn1 Limit 9.1e-1[..Null][..#usn8]"), + octest_legacy:ct_string("Start `2esn`=Rel:`6esn`(`4esn`=\"d_str\") ,`8esn`=Relationship:`8esn`(#usn7='s_str')Where 0e-0 In 0X0123456789ABCDEF In `3esn` Create _usn4=((:@usn5{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null})) Match `7esn`=Allshortestpaths((`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})<-[_usn3? *..123456789{`6esn`:.0e-0[..``][..$7],usn2:{usn2} Ends With {@usn6} Ends With 1000}]-(`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(#usn8 :_usn4:`2esn`{`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})) Using Index ``:@usn5(usn1) Using Scan `1esn`:_usn3"), + octest_legacy:ct_string("Detach Delete {`1esn`} Contains 1.0 Contains 4.9e12,{999}[..`6esn`],{`3esn`} =~$`` =~$`8esn` Union Merge `8esn`=Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})) On Match Set Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where {0}[.1e-1..][_usn4..]).`6esn`.usn1.`7esn`? =0xabc Starts With `2esn` Starts With 10.12e12,`8esn` =[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]] Merge (#usn7 :@usn5)-[:`8esn`|:#usn8 *0X7..0Xa]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(_usn4 :`5esn`:`7esn`{_usn4:$_usn3[.0e-0..999]}) On Create Set usn2+=Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null),#usn8 =None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) Create (#usn7 :`6esn`{usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[`2esn`?:``|:`7esn` *1000..]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})"), + octest_legacy:ct_string("Merge Allshortestpaths((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})) Merge `7esn`=Shortestpath(((`6esn` :``)<-[`8esn`*]-(#usn8 )-[`3esn`?:`1esn`|:`1esn`]-(@usn6 :`4esn`:usn2))) On Match Set Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where .0e-0[..``][..$7]).``!.`8esn`? ={1000} Starts With {`1esn`},``:`1esn`:``,(#usn7 {usn1:2.12[{12}]})-[:usn1|usn2]->(`8esn` :`5esn`:`7esn`).@usn6! =false =~{`8esn`} =~00 On Match Set `7esn`+=Reduce(_usn3=5.9e-12 Is Null Is Null,_usn3 In `8esn`[_usn4]|2.9e1[Count ( * )..]) Is Null,#usn8 =0e0 Ends With .9e0 Ends With 01234567 Unwind `6esn`[0X0123456789ABCDEF..][`8esn`..] As _usn4"), + octest_legacy:ct_string("Foreach(`8esn` In $`5esn` Starts With 4.9e12 Starts With 0e-0| Create Unique `6esn`=(({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[_usn4? *999..123456789{@usn6:$`4esn` Ends With .12e12 Ends With 123.654}]->(#usn8 {usn2:$0 Ends With 9e-12 Ends With $_usn4,`5esn`:0e-0[{@usn6}]})-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]-(`1esn` :_usn4:`2esn`))) Remove Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0).`8esn`!,Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0).``? Union Create ``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))),``=Allshortestpaths(((@usn6 :@usn5))) Create Unique (((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))),`4esn`=(((`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})-[?:_usn3]->(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})-[:`2esn`|`5esn` *01]-(@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0})))"), + octest_legacy:ct_string("Delete $7 In 1.0 In 01234567 Foreach(#usn8 In usn2 Starts With $usn1 Starts With 10.12e12| With {1000} Starts With 10.12e12 Starts With .0e-0 As `8esn`,Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) As _usn4 Skip Count ( * ) Starts With 0.12 Limit Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Create ``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0})))) Create Unique Shortestpath((:`7esn`{#usn7:$999 =~false =~{`8esn`}})-[:`6esn` *12{#usn7:`3esn` =~$#usn7,`8esn`:0e-0[{@usn6}]}]->(@usn5 :@usn6:_usn3)<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]-(usn2 :`5esn`:`7esn`{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})),`6esn`=((:#usn7:`8esn`{usn2:`1esn` =~{12} =~{999}})) Union With *,Extract(#usn8 In 07[..$`5esn`] Where $usn2[..$999][..#usn8]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )])[Case {#usn7}[.12e-12] When $`4esn`[$@usn6...12e12] Then .12e-12[@usn6..'s_str'] Else .12e-12 Starts With .12e-12 End..(`` :``)-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})][Reduce(`5esn`=Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|{usn2}[9e-1])..All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}])] As `8esn` Limit $`5esn`[..{0}][..7.0e-0]"), + octest_legacy:ct_string("Optional Match #usn7=((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})) Using Join On #usn8 Using Join On _usn4"), + octest_legacy:ct_string("Return Distinct *,Filter(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn` =~999 =~$999) In All(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]) In Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`) As `1esn` Order By 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] Asc Skip $_usn3 Contains 1.0 Contains 0.12 Union All Foreach(@usn5 In 01 Starts With 12 Starts With $`2esn`| Load Csv With Headers From $`8esn` Starts With {`7esn`} As #usn8 Fieldterminator \"d_str\") Start usn1=Rel:_usn4(@usn5={`4esn`}) ,`1esn`=Rel:`5esn`(@usn5=\"d_str\")Where @usn6[true..]"), + octest_legacy:ct_string("Unwind {`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]} Contains Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 12e12 Ends With `5esn` Ends With .0e0) As usn1 Union All Merge Shortestpath((@usn5 :_usn4:`2esn`{@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})) Union All Delete `1esn`(Distinct) Contains All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 123.654 Ends With {1000} Ends With 9e12) Contains Case $0 Contains $7 When 9e0[`4esn`..$_usn4][9.1e-1..0e0] Then .1e1 Is Not Null Is Not Null When usn2[12e-12..{`8esn`}][.12e12..{123456789}] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else {usn1} In Count ( * ) In 12e12 End,{12} Ends With $`3esn` Ends With 0xabc,{0}[...9e1] Delete {``:$`8esn`[..5.9e-12][..`8esn`]}[[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .9e12[6.0e0..][@usn5..]|2.9e1[2.9e1..][`4esn`..]]..][Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End..],010[...12e-12] With Distinct Count ( * )[`5esn`..\"d_str\"][01234567..{1000}],$`8esn` Contains {@usn6} Contains `7esn`,5.9e-12[..9e0] As #usn8 Order By $`7esn` Contains .12e12 Ascending,Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where {7}[$@usn5..123456789][1e1..1.9e0]) Ends With (`3esn` :_usn3{@usn6:0.12 Is Not Null})-[#usn8:`5esn`]-({`6esn`:12[@usn6][{`2esn`}]}) Desc,$usn1[..$999][..0e0] Ascending Where $`6esn`[$_usn3..{1000}]"), + octest_legacy:ct_string("Create (@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})<-[#usn7?:_usn3 *999..123456789{@usn5:$12 In {usn2},usn1:5.9e-12 Is Null Is Null}]->(`` {`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654}) Match `6esn`=(:`3esn`{@usn5:9e12[..usn2][.._usn3]}) Using Scan `5esn`:usn1 Using Join On `5esn`,usn1,`7esn` Where $@usn5 Contains _usn3 Load Csv With Headers From #usn7({12} Starts With $`` Starts With 0X0123456789ABCDEF)[Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where .12e-12[9e1])..] As @usn5 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Load Csv From 12[11.12e-12..][`4esn`..] As @usn6 Union Remove Reduce(`3esn`={0} Is Not Null,`` In `7esn` =~#usn8 =~\"d_str\"|01234567[\"d_str\"..][$`4esn`..])._usn4.@usn6 Delete 2.9e1 Ends With 12e12 Ends With .9e12,{123456789} Contains $0,$12 Is Null Unwind [_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12] As _usn3 Union All Create `5esn`=((`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})-[ *..123456789{@usn5:1e-1[$`4esn`]}]->(#usn7 {usn1:2.12[{12}]})<-[`3esn`?*{`7esn`:.9e12 Contains 0 Contains $0}]->(:@usn5{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]})),Shortestpath((((`4esn` :`3esn`)<-[@usn5?*..]->(:_usn3{_usn3:010[..9e-1][..0X7]})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)))) Return Distinct $`` Ends With #usn7 Ends With _usn3 As _usn3,{@usn6:2.9e1[{`2esn`}],usn1:01 Contains 9e-12 Contains $7} Is Null Is Null As @usn6 Order By `6esn`[..$0][..{7}] Asc,Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null) In `4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`) Ascending,{123456789} =~@usn5 Asc Limit Single(_usn3 In `8esn`[_usn4] Where `3esn` Contains `2esn` Contains {_usn4}) In Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`) In {7} Create Unique Shortestpath(((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}))),usn2=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})))"), + octest_legacy:ct_string("Return Distinct *,$999 =~0e0 =~0X7 As `1esn` Skip {7} Is Not Null Create `6esn`=Shortestpath((((:`6esn`{`3esn`:9e12[..usn2][.._usn3]})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})<-[_usn4 *010..0{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}]-(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})))),Allshortestpaths((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})) With $usn1 Ends With {`2esn`} Ends With $usn1 Order By 123.654 Ends With {1000} Ends With 9e12 Descending,{`6esn`} Starts With 12e12 Starts With {`2esn`} Descending Union Start `2esn`=Relationship:_usn4(@usn6=\"d_str\") ,``=Node:``(`1esn`=\"d_str\")Where $`6esn`[..01][..{_usn3}] Remove Case usn1 Ends With 11.12e-12 Ends With 5.9e-12 When 01 Ends With .0e0 Ends With 7.0e-0 Then $`7esn` Starts With 's_str' Else true Is Null End.`5esn`!.`5esn`,Reduce(usn1=`7esn`[1.9e0..5.9e-12][9e0..@usn5],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$`` =~$_usn3).#usn7! Foreach(`7esn` In `1esn`[{usn1}..]| Remove None(#usn7 In .0e-0 In 12 Where `8esn`[.12e12..]).`5esn`!,Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0X0123456789ABCDEF Ends With {1000})._usn4?)"), + octest_legacy:ct_string("Match #usn8=Allshortestpaths((usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[`3esn`:#usn8|:``{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}]->(:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})) Using Index `7esn`:``(`8esn`) Where {#usn7} =~$@usn6 =~$7 Unwind Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1) Starts With Case 7.0e-0[$`6esn`..] When \"d_str\"[0x0..{@usn6}][$@usn5..0] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else $`5esn`[{`4esn`}][{0}] End Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`) As @usn6 Load Csv From #usn8 =~{@usn5} As #usn8 Fieldterminator 's_str' Union All Load Csv With Headers From Shortestpath(((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(_usn3 :usn1)))[..{_usn4:.9e-1 Ends With .0e-0 Ends With {_usn3},_usn4:9e1 Ends With 9e12 Ends With 0x0}][..Reduce(#usn8=`8esn`[_usn4],`1esn` In $12 In {usn2}|$`4esn` Is Not Null)] As `1esn` Fieldterminator 's_str' Union Merge (((@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[`7esn`?:`2esn`|`5esn` *0]->({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000}))) Start _usn3=Node( {123456789}) Where {`3esn`}[$#usn8..] Delete $7 =~01234567 =~12.0,9e1 Starts With $@usn6 Starts With 0e-0"), + octest_legacy:ct_string("With *,$#usn8[$0..`3esn`][1e-1..$7] As `5esn`,(usn1 :usn1{#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[`3esn`?:_usn4|:`1esn`]->(`6esn` :`4esn`:usn2)[Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {@usn6} In 9e12)][(`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})] As #usn7 Skip $`4esn`[$@usn6...12e12] Limit Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]) Where 0e-0 In 0X0123456789ABCDEF In `3esn` Create Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}})) Create Unique Allshortestpaths(({`6esn`:8.1e1 Contains .9e-1 Contains false})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})),@usn6=((`` {_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})) Union All Create Unique `6esn`=((`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]})) With *,usn2($12 =~4.9e12) Ends With Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Ends With Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End,0Xa Starts With 9e0 Starts With Count(*) As `2esn` Order By 0e-0[..7.0e-0][..{`8esn`}] Ascending,$`` Ends With 1e-1 Ends With $@usn6 Desc Limit {#usn8} Starts With .1e-1 Starts With 9e1 Where 0e-0 In 0X0123456789ABCDEF In `3esn` Foreach(`5esn` In $`5esn` Is Null| Remove Single(`2esn` In $@usn5 Is Not Null Is Not Null Where {`3esn`} =~$@usn5 =~`2esn`).`4esn`! Create usn2=(`8esn` :usn2)-[:`1esn`|:`1esn` *0{`8esn`:2.12[{12}],`7esn`:$@usn6[``..][3.9e-1..]}]->(:`2esn`:`4esn`{usn2:$@usn6[.1e-1][9e12],`5esn`:12e12 Is Not Null Is Not Null}))"), + octest_legacy:ct_string("Foreach(`4esn` In 123.654 Contains true Contains 7.0e-0| Return `3esn` Starts With 9.1e-1 Starts With .9e-1 As `8esn`,Any(usn1 In $@usn6 Is Null Is Null)[Case {_usn3}[{0}...9e-1][9e-1...0e0] When 010[..9e-1][..0X7] Then $0 Ends With $usn1 Ends With {``} End..Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]})))] Skip 9e0[`1esn`..0e-0][00..`1esn`]) Delete {#usn7} Is Not Null Load Csv With Headers From Case 12.0[...0e0] When {#usn8}[..@usn5] Then `3esn` Is Null End Is Null Is Null As `5esn` Fieldterminator 's_str' Union All Create Allshortestpaths((((:`7esn`{usn2:00 Is Not Null Is Not Null})<-[`8esn`? *..123456789{@usn6:5.9e-12[\"d_str\"..][{`6esn`}..],`7esn`:{@usn5}[10.12e12..]}]->(:`3esn`{usn2:01234567[10.12e12][0Xa]})<-[ *1000..{`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]->(`` )))) Remove {usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}.#usn7?,All(`` In `7esn` =~#usn8 =~\"d_str\" Where {12} Starts With $`` Starts With 0X0123456789ABCDEF)._usn4?.`6esn` Load Csv From 3.9e-1[{@usn6}..][01234567..] As `7esn` "), + octest_legacy:ct_string("Detach Delete (`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3)[Case When 3.9e-1 Ends With {usn1} Ends With {`5esn`} Then 5.9e-12 Is Null Is Null When 9e1 Ends With 9e12 Ends With 0x0 Then .9e0 =~#usn7 Else 0 Starts With `7esn` Starts With 9e0 End..Filter(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null)],2.9e1 =~Count(*) =~{123456789},.12e12[..7] Union All Remove [`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn`[0X0123456789ABCDEF..][`8esn`..]].usn1,`8esn`:@usn6:_usn3 Merge @usn6=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) On Match Set usn2+=Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null),#usn8 =None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) With Distinct $`8esn`[{`2esn`}..11.12e-12][{`7esn`}..@usn5],{999} Contains $12 Contains 00 As usn2 Order By {`8esn`}[..`5esn`][..01] Asc,[@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..] Asc Where {#usn7} Is Not Null Union All Foreach(`7esn` In (:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 )[Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..][(#usn8 :`4esn`:usn2)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})..]| Optional Match `5esn`=Shortestpath((({_usn3:.9e12 Contains 0 Contains $0}))),usn2=(`8esn` :@usn6:_usn3)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Where 010[...12e-12] Detach Delete 0X0123456789ABCDEF In .9e-1 In 123456789,`8esn`[0e-0.._usn3][Null..`6esn`]) Load Csv With Headers From 2.9e1[2.12..1.9e0] As `6esn` "), + octest_legacy:ct_string("Using Periodic Commit 0 Load Csv With Headers From `2esn` As `4esn` Fieldterminator 's_str' Remove Allshortestpaths((_usn3 {#usn7:$999 =~false =~{`8esn`}})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})).#usn8,Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0).`8esn`!"), + octest_legacy:ct_string("Unwind $`5esn`[..{0}][..7.0e-0] As `8esn`"), + octest_legacy:ct_string("With *,Allshortestpaths((_usn4 {`3esn`:.0e-0 In 12})) Is Null Is Null,{@usn6} Is Null As `5esn` Skip Shortestpath((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))[[`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`}[@usn5..{@usn6}]|{1000}[..`5esn`][..9e12]]..][{_usn4:`8esn`[.12e12..]}..] Where $12 Is Not Null Is Not Null Foreach(@usn5 In {`6esn`} Starts With 12e12 Starts With {`2esn`}| Load Csv With Headers From $`3esn` =~0x0 As usn1 Remove #usn7:`1esn`:``) Foreach(`4esn` In \"d_str\" In 7.0e-0| Delete Null[{999}..$usn2],{123456789}[...9e-1][..1.0]) Union Foreach(`3esn` In {`8esn`} Ends With true Ends With {`3esn`}| Create (`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})))) Unwind 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As `1esn` Union All Unwind (`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End] As `7esn` Start `4esn`=Rel:@usn5(_usn4='s_str') ,`4esn`=Node:@usn6(\"d_str\")"), + octest_legacy:ct_string("Detach Delete \"d_str\" Starts With .1e-1,Reduce(`2esn`=$@usn5[``..],`7esn` In 0.12 Is Not Null|$`4esn` Is Not Null) =~Any(_usn3 In `8esn`[_usn4] Where {`6esn`} In {_usn4} In $12) =~Reduce(`1esn`=false =~{`8esn`} =~00,`2esn` In $@usn5 Is Not Null Is Not Null|`1esn`[{@usn5}..][{_usn4}..]),{`2esn`:`5esn` Ends With Count(*)}[..`8esn`({#usn7}[.12e-12],$`` =~.1e-1)][..Allshortestpaths(((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})))] Foreach(usn1 In Single(_usn3 In `8esn`[_usn4] Where $_usn3[usn2..][usn1..])[{`6esn`:Count(*) =~01234567 =~.1e-1}..[usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]]]| Create ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})) Union Optional Match Shortestpath((`4esn` :_usn3)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})),#usn7=((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})) Using Join On @usn6,usn1,`5esn` Using Join On `2esn`,@usn5 Detach Delete `1esn`[Null][{@usn6}]"), + octest_legacy:ct_string("Delete 9e0 Is Null,1e-1 Ends With {@usn5} Ends With {usn2} Start `1esn`=Rel:`5esn`(@usn5=\"d_str\") ,usn1=Rel:`7esn`(`8esn`={`3esn`})Where {usn1} In Count ( * ) In 12e12 Start #usn8=Relationship:usn2(usn1={_usn3}) Union Start @usn5=Rel:#usn7(\"d_str\") ,`2esn`=Node(0X7,123456789,123456789,0X7)Where 999 Is Null Is Null Foreach(_usn4 In 1e1 Ends With $_usn3 Ends With .1e1| Detach Delete Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`) Is Null Is Null,6.0e0[$#usn7..$1000],$12 Is Not Null Is Not Null) Unwind `4esn`($@usn5[.9e-1],00[{1000}]) Ends With Reduce(`7esn`=0.0[00..][0xabc..],usn1 In {#usn7} =~.12e12 =~9e0|10.12e12 In Null In .12e12) As @usn6"), + octest_legacy:ct_string("Create Unique @usn6=(:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5}) Union All Foreach(usn2 In 1e-1[$#usn8]| Create Shortestpath(((usn2 :`4esn`:usn2)-[?:#usn7|:@usn5 *..00]-(:@usn5{`7esn`:01234567[\"d_str\"..][$`4esn`..]})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))),`2esn`=Shortestpath((@usn6 :@usn5)) Create `2esn`=Allshortestpaths((:`3esn`{@usn5:9e12[..usn2][.._usn3]})),``=Shortestpath((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[ *0X0123456789ABCDEF]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Optional Match (`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5) Using Index _usn3:usn2(`4esn`) Using Index @usn5:`3esn`(`8esn`) Where $0 Contains $123456789 Contains {`3esn`} Match ((`4esn` :`6esn`)<-[{``:7.0e-0 Is Not Null}]->(:#usn7:`8esn`{@usn5:{0} In {`1esn`}})-[``?{``:{#usn7} =~$@usn6 =~$7}]-(`3esn` :@usn5)) Using Index usn1:#usn8(``) Using Index @usn5:@usn5(_usn4)"), + octest_legacy:ct_string("Delete false,$`6esn`[@usn6...9e-12],$`4esn` Contains `4esn` Contains .0e-0 Return Distinct `7esn`[1.9e0..5.9e-12][9e0..@usn5] As `5esn`,#usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]),None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0) As usn2 Skip {`1esn`}[7.0e-0..9e-1][01234567..{`4esn`}] Limit Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where .0e-0 In 12|10.12e12 Contains .9e0) Contains (`` {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})-[usn2:#usn8|:``]->(:`3esn`{@usn5:9e12[..usn2][.._usn3]})<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains Any(usn1 In $@usn6 Is Null Is Null) With Distinct (`3esn` :#usn8:@usn6)<-[`8esn`? *..123456789{@usn6:5.9e-12[\"d_str\"..][{`6esn`}..],`7esn`:{@usn5}[10.12e12..]}]->(#usn7 :`7esn`)[None(usn2 In .12e-12 Ends With `2esn` Where `7esn`[1.9e0..5.9e-12][9e0..@usn5])..][usn1(`8esn`[.12e12..],usn2[12e-12..{`8esn`}][.12e12..{123456789}])..] As _usn4 Order By [_usn3 In `8esn`[_usn4] Where {#usn7} Starts With .1e-1|`3esn` Is Null] Contains `5esn`({#usn8} Ends With _usn3 Ends With `2esn`,.9e0 =~#usn7) Asc,{`5esn`}[{usn2}..$`1esn`] Descending Where 999 Is Null Is Null Union All Foreach(`3esn` In _usn3($`5esn`[$_usn3][$12])[None(#usn8 In 07[..$`5esn`])..][All(`` In `7esn` =~#usn8 =~\"d_str\" Where 12e12 Is Not Null Is Not Null)..]| Start usn2=Rel:`4esn`({7}) ) Union Start #usn7=Node:``('s_str') "), + octest_legacy:ct_string("Merge (#usn7 {#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})<-[@usn5?:#usn7|:@usn5]->(:`8esn`{`2esn`:0[..{#usn7}][..$_usn3],#usn8:.9e-1 Is Null Is Null})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}) Start `2esn`=Relationship(0) Where $12 Ends With 12.0 Ends With $`4esn` Return .9e0 Ends With $0 As @usn6,$0[1e1][12e-12] As _usn3 Skip .12e12 Is Not Null Limit 0e-0 In 0X0123456789ABCDEF In `3esn`"), + octest_legacy:ct_string("Using Periodic Commit 0 Load Csv From Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000 As `4esn` "), + octest_legacy:ct_string("Unwind $@usn5 =~{`3esn`} As `5esn` Union All Start #usn8=Relationship:``({7}) Union All Create Unique (({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`2esn` *7]->(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})),Allshortestpaths((:#usn7:`8esn`{`3esn`:0.12 In $``})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})<-[:#usn8|:`` *0]->({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})) Foreach(#usn7 In Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}])| Unwind 1e1 =~{@usn5} =~`7esn` As #usn8) Detach Delete 0.12[8.1e1..0Xa][Count ( * )..{_usn3}],7 Starts With `` Starts With usn2"), + octest_legacy:ct_string("Remove Shortestpath((({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))).@usn5.`1esn`?,{@usn5:{0} In {`1esn`}}.#usn7?.`4esn`!"), + octest_legacy:ct_string("Load Csv From _usn4['s_str'][8.1e1] As `` Union Optional Match `5esn`=Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))),#usn7=((`1esn` :`5esn`:`7esn`)) Using Index _usn4:`1esn`(@usn5) Where usn2[12e-12..{`8esn`}][.12e12..{123456789}] Union All With Distinct .1e-1[2.9e1..][$`7esn`..] As #usn8,Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Not Null Is Not Null As #usn8,07[9e-1..][1e1..] As `4esn` Skip {`4esn`} Contains 4.9e12 Match `2esn`=(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1}) Using Join On _usn3,usn2 Where Null With $#usn8[$0..`3esn`][1e-1..$7] As `5esn`,{0} Is Not Null As `` Limit $_usn3 In `2esn` In `3esn` Where _usn3[{#usn7}]"), + octest_legacy:ct_string("Using Periodic Commit 12 Load Csv From {123456789} Starts With `6esn` As @usn6 "), + octest_legacy:ct_string("Delete 0X0123456789ABCDEF,$usn1 =~9e1 =~$1000,{``} Contains $1000 Remove [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 01234567[1000..][$`8esn`..]|.9e-1 Is Not Null Is Not Null].@usn5!.``?.usn2!,Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))).`5esn`?.`8esn`?.@usn5?,Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null).@usn6! Detach Delete Reduce(`6esn`=`2esn`[`7esn`][1000],usn2 In .12e-12 Ends With `2esn`|010[..9e-1][..0X7]) Contains `7esn` Contains Case When 9e1 Ends With 9e12 Ends With 0x0 Then {12} Ends With 1e1 Else `4esn` Contains 0X0123456789ABCDEF Contains $usn2 End Union Unwind Extract(`1esn` In $12 In {usn2} Where 12e12[{`4esn`}..`4esn`][999..{@usn6}])[None(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}][Reduce(#usn7=12[..$`5esn`],usn1 In $@usn6 Is Null Is Null|12e12 Ends With `5esn` Ends With .0e0)..[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 0.12 Is Not Null]] As `1esn` Foreach(`3esn` In Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Not Null Is Not Null| Unwind {usn1} Contains {`2esn`} As `8esn`) With *,Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null) As `2esn` Limit `4esn` Is Not Null Where $@usn6 Starts With 0xabc Starts With {`7esn`}"), + octest_legacy:ct_string("With *,Single(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1])[Case When 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Then $#usn8 Is Not Null Is Not Null When \"d_str\" Starts With $`7esn` Starts With 999 Then \"d_str\"[0x0..{@usn6}][$@usn5..0] Else .0e-0[..01234567] End..] Order By {123456789} Starts With $_usn4 Starts With 0x0 Descending,9e-12 Ends With 9e1 Ends With 4.9e12 Ascending,$@usn6[.1e-1][9e12] Asc Load Csv With Headers From $`8esn` Contains _usn4 As #usn8 Union With Distinct 4.9e12 Starts With {``} Where $0 Ends With 9e-12 Ends With $_usn4 Union All Foreach(#usn8 In 9e12 Is Null| Unwind Allshortestpaths(((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}))) Is Null Is Null As usn2 Remove Filter(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12).`3esn`?.`7esn`?,Allshortestpaths((((`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})-[`8esn`:`4esn`|:`2esn`]->(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})))).`3esn`) Detach Delete [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End,8.1e1[$``] Remove (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)}).`8esn`.`3esn`?,@usn6:usn2"), + octest_legacy:ct_string("Remove [#usn7 In .0e-0 In 12 Where 0.0[00..][0xabc..]|0xabc[0Xa..]]._usn4.`1esn`!.`7esn`? Create @usn5=(`8esn` :#usn7:`8esn`) Merge @usn6=(({usn2:01[`4esn`..]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})-[`1esn`?:`3esn`|`3esn` *..00]-(`1esn` :usn2)) On Match Set `6esn`+=01[$`1esn`..$`7esn`][{usn2}..12.0],[usn1 In {#usn7} =~.12e12 =~9e0 Where $`4esn`[12e-12..$`1esn`][$`2esn`...9e12]|$`1esn`[4.9e12..][_usn3..]].#usn7 =9.1e-1[..Null][..#usn8] Union All Create (`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]}))) Return Distinct *,$12 Is Null Is Null As #usn8 Skip {@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] Merge ``=Allshortestpaths(((`8esn` :@usn6:_usn3)-[#usn8? *0X7..0Xa{`7esn`:{123456789} Contains $0,#usn8:{`3esn`}[$#usn8..]}]-({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`}))) On Create Set `` =6.0e0[$12..0.12],#usn7+=7 In 1e1 In {``}"), + octest_legacy:ct_string("Load Csv With Headers From 0X0123456789ABCDEF In .9e-1 In 123456789 As _usn3 Load Csv With Headers From $`3esn` =~#usn8 =~0x0 As `3esn` Foreach(`3esn` In `5esn` Contains 0 Contains $12| Load Csv From [usn2 In .12e-12 Ends With `2esn` Where @usn5 In Null|false =~{`8esn`} =~00][Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where Count ( * ) =~123456789 =~{@usn5})..Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)] As @usn6 Remove usn1:@usn6:_usn3,Reduce(usn1=0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],#usn7 In .0e-0 In 12|{0} Is Not Null Is Not Null).`2esn`!.`4esn`!) Union Return Distinct _usn4[$_usn4] As _usn4,`3esn` Starts With 9.1e-1 Starts With .9e-1 As `8esn` Order By $`5esn`[{@usn6}..{`7esn`}] Ascending Skip [usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0|4.9e12 Is Not Null Is Not Null] =~Case {_usn3} In $#usn8 In $12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else 0[..{0}][..true] End =~Case Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else $_usn3 Starts With 010 End Create Shortestpath((_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})),Shortestpath(((@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})-[@usn5:`6esn` *..00]->(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Create ``=Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))) Union Detach Delete $@usn6[.1e-1][9e12] Remove count(Distinct 0e-0[..$usn2],12e12[{`4esn`}..`4esn`][999..{@usn6}]).`3esn`.`6esn`.`1esn`,[@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1|$`5esn` Ends With 's_str' Ends With $`6esn`].usn1?.#usn8?.usn1,{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1}.`3esn`!"), + octest_legacy:ct_string("Optional Match #usn8=Allshortestpaths((usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})),Allshortestpaths((:``{usn1:`4esn` Is Not Null})-[ *01{usn1:false[..usn2][..999]}]-(_usn3 )) Using Join On `1esn`,@usn6,usn1 Load Csv With Headers From Reduce(`3esn`=2.12[`4esn`][.9e-1],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{`8esn`} In {_usn3} In 6.0e0)[`3esn`(Distinct)..[`` In `7esn` =~#usn8 =~\"d_str\" Where $`4esn` In {999}|0e-0[$``..10.12e12]]][Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`6esn`} =~2.12 =~123.654|{`8esn`} Contains $@usn5)..`5esn`(Distinct $`7esn` Ends With 7.0e-0 Ends With $usn2)] As #usn8 With .0e-0 Ends With $`2esn` Ends With `5esn`,Case {`4esn`} Ends With Count(*) When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] When $#usn7 Contains 3.9e-1 Then 123.654[10.12e12..$12][6.0e0..{#usn8}] Else $usn1[0e0...9e-12] End[Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))..][Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})..] As `2esn`,true In 0.0 As @usn5 Order By 0 Ends With .0e-0 Ends With false Descending,Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where .9e1[$`1esn`..][$``..]) Ascending,Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] Asc Limit [`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..])"), + octest_legacy:ct_string("Start `2esn`=Relationship:@usn5({`4esn`}) Where 07 Ends With $_usn3 Ends With $#usn8"), + octest_legacy:ct_string("Unwind Single(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str') =~{``:01234567[10.12e12][0Xa]} As @usn6"), + octest_legacy:ct_string("Start @usn5=Node:``(`1esn`=\"d_str\") Where {`2esn`} Contains 0xabc Return Distinct `1esn` In 6.0e0 In 12 Limit {12} Starts With 01 Starts With $1000"), + octest_legacy:ct_string("Foreach(`6esn` In Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}]| Return Distinct 00[..@usn6] As `6esn`,{`3esn`}[...1e1][..0],Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null As `2esn` Skip $usn2 Ends With 9e12 Ends With Count ( * ) Limit 0xabc Starts With {`3esn`} Starts With {``}) Start `1esn`=Node( {`8esn`}) Union Merge usn1=({`1esn`:01 =~{_usn3} =~01,`8esn`:{#usn7} Ends With 999 Ends With 12})-[_usn4]-(#usn8 )-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}) Remove Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where .9e0 =~#usn7).`3esn`,`7esn`:`8esn` Remove Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where 2.12[{12}]|$`4esn` Contains `4esn` Contains .0e-0).``,None(usn1 In {#usn7} =~.12e12 =~9e0 Where {`1esn`} Is Null).#usn8!.``?._usn3!,Case 0X0123456789ABCDEF[1e1..] When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] End.@usn6!.`` Union Return {`8esn`}[@usn5][$`2esn`],$`6esn` In 999 In {_usn3},Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] As _usn4 Order By $12 Is Not Null Desc,`7esn`[1.9e0..5.9e-12][9e0..@usn5] Asc Skip $`5esn` Is Not Null Match `7esn`=Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)),`8esn`=Allshortestpaths((((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(#usn7 :`8esn`)))) Start `2esn`=Rel( {_usn3}) ,_usn3=Relationship(0x0)"), + octest_legacy:ct_string("Match ({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`}) Using Scan @usn5:usn1 Using Scan `4esn`:`1esn` Where usn2 Starts With $usn1 Starts With 10.12e12 Optional Match `4esn`=(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0}) Where 2.9e1 Ends With `5esn` Ends With 1000"), + octest_legacy:ct_string("Return Count(*) Starts With {usn2} Starts With `2esn` As `3esn`,0.12 Ends With 7 Ends With 12,`5esn`({`5esn`}[01234567..][5.9e-12..],5.9e-12 Is Null Is Null)[Reduce(#usn7={12} Ends With $`3esn` Ends With 0xabc,usn1 In $@usn6 Is Null Is Null|`1esn`[Null][{@usn6}])..@usn5(`3esn` Contains `2esn` Contains {_usn4},2.9e1 In {``})][Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789}))..Any(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`)] As usn2 Order By $#usn7[$``..999][$usn2..$usn2] Ascending,{usn1:12[..$`5esn`]}[None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..])] Ascending,0.12 =~2.9e1 =~9e1 Ascending Skip [usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1][Shortestpath((({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})))..Shortestpath(((:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12})-[``?:#usn7|:@usn5{``:$usn1 Ends With {`2esn`} Ends With $usn1}]->(:`5esn`:`7esn`$usn2)-[{#usn8:\"d_str\" Contains {@usn6}}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12})))] Limit Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where Count ( * ) Starts With 0.12|{`3esn`} =~$`` =~$`8esn`) Ends With Case {`5esn`} Is Not Null Is Not Null When {``} Is Null Is Null Then {usn2} Ends With {@usn6} Ends With 1000 When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Union All With Distinct $`` =~.1e-1,#usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]),$999 Ends With `2esn` Ends With 12.0 As #usn8 Limit \"d_str\" In 7.0e-0 Where {`3esn`}[999..$`4esn`] Create Unique ((`1esn` :`8esn`)<-[:usn1|usn2]-(`` :`4esn`:usn2)<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``)),Allshortestpaths(({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)})) Union Remove (`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[?:@usn5|:#usn7 *0]->(_usn3 {`2esn`:5.9e-12[0x0..]}).usn2?"), + octest_legacy:ct_string("Unwind Shortestpath((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5))[Allshortestpaths((#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}))] As `1esn` Union All Load Csv With Headers From $`1esn`[9e0..$12] As #usn7 Fieldterminator \"d_str\""), + octest_legacy:ct_string("With {`2esn`}[0x0..9e0] As `6esn`,{`8esn`} Ends With true Ends With {`3esn`} As `2esn` Skip {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null) Where 2.9e1 Ends With `5esn` Ends With 1000 Create `2esn`=(:@usn6:_usn3),(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})<-[`1esn`:#usn7|:@usn5 *..123456789]-({#usn7:{7}[0x0][1e1]}) Union All Merge usn1=Shortestpath((`1esn` :`7esn`{usn1:3.9e-1 Starts With .9e0 Starts With {#usn7}})<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`6esn` :`4esn`:usn2)-[`1esn`]-(`2esn` :`2esn`:`4esn`{#usn7:0 Starts With `7esn` Starts With 9e0})) On Match Set `1esn`+=[_usn3 In `8esn`[_usn4] Where {#usn7} Starts With .1e-1|`3esn` Is Null] Contains `5esn`({#usn8} Ends With _usn3 Ends With `2esn`,.9e0 =~#usn7),@usn6 =[`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0|{`4esn`} In 1000 In {@usn5}] Is Null,{`1esn`:$999 Is Not Null}.`6esn`? =Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) On Match Set `6esn`+=\"d_str\" Starts With ``,[usn1 In \"d_str\" Contains {@usn6} Where $`8esn`|$usn1 =~.0e0 =~{`4esn`}].`4esn`! =.9e0 Is Not Null,usn2 =Case When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else {123456789} Starts With `6esn` End =~Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where `4esn` Contains 0X0123456789ABCDEF Contains $usn2) =~Allshortestpaths((`7esn` :``{usn2:$7})) Merge Shortestpath(((:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})-[?:`4esn`|:`2esn`{usn1:{123456789} Starts With `6esn`,@usn5:9e1 Ends With 9e12 Ends With 0x0}]-(`2esn` :usn1))) On Create Set `3esn`+=12 Ends With 12e12,usn1+=Case 0e-0[$``..10.12e12] When $usn2 In #usn7 In #usn7 Then \"d_str\" In usn2 In $`7esn` When {`3esn`}[_usn4][2.9e1] Then `6esn` =~999 =~$999 End Ends With None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn5 Starts With #usn7) Ends With [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0X0123456789ABCDEF Ends With {1000}|Count ( * )[_usn4..]],`1esn` =0x0 Contains 7.0e-0 On Match Set `6esn` =(`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Is Not Null Is Not Null"), + octest_legacy:ct_string("Foreach(_usn3 In 5.9e-12 =~{12} =~{`2esn`}| Optional Match `4esn`=Allshortestpaths((_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})) Using Join On usn1,usn2 Using Join On usn1) Load Csv From Allshortestpaths((`4esn` :`3esn`)-[`3esn`?:`1esn`|:`1esn`]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})) Is Not Null Is Not Null As `5esn` Fieldterminator \"d_str\" Union Create `5esn`=(:`4esn`:usn2)-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})-[:`1esn`|:`1esn` *0{`8esn`:2.12[{12}],`7esn`:$@usn6[``..][3.9e-1..]}]-(#usn8 :@usn5) Union Remove ({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}).#usn8? Unwind ({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})-[`8esn`?:_usn3]->(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Ends With {_usn3:{123456789} Starts With `6esn`} Ends With {usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]} As _usn4"), + octest_legacy:ct_string("Load Csv With Headers From 2.9e1[2.12..1.9e0] As `6esn` Unwind {@usn5} As `5esn` Create Unique (({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})),`2esn`=(((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}))) Union Create Unique Allshortestpaths((:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[`7esn`?:`7esn`|usn1 *1000..{@usn6:#usn7 In 07,#usn8:$999[usn1..0e-0]}]->(#usn8 :`5esn`:`7esn`{usn2})-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})) Union Remove {usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}.#usn7!,Any(#usn7 In .0e-0 In 12 Where {`6esn`}[6.0e0..9e0][.9e1..12e12]).`6esn`?.`2esn`? Match (:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[_usn3?:`5esn`*..]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}),`1esn`=Shortestpath((:usn2{`6esn`:9e12[..usn2][.._usn3],`1esn`:01[`6esn`..][0e0..]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})) Using Index @usn5:`4esn`(usn1) Where $`` =~$_usn3 Start `4esn`=Rel:usn2(#usn7='s_str') ,`3esn`=Node:`6esn`(#usn7={_usn4})Where 9e12 Ends With \"d_str\" Ends With 0X7"), + octest_legacy:ct_string("Remove All(usn1 In $@usn6 Is Null Is Null Where _usn4 Is Not Null Is Not Null).`7esn`!.@usn5? Union Load Csv From .0e0 =~Case $`6esn` Starts With 0.0 When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] End =~All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}]) As #usn8 Match ((#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]})<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})) Using Index usn2:@usn6(@usn6) Create Unique Shortestpath(((@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})<-[? *999..123456789]->(@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1}))),Allshortestpaths((_usn3 {#usn7:$999 =~false =~{`8esn`}})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})) Union Delete $@usn5 Starts With #usn7,999 Starts With 7.0e-0 Starts With true,{`8esn`}[..999][.._usn3]"), + octest_legacy:ct_string("Using Periodic Commit 07 Load Csv With Headers From usn2[..$0][..`3esn`] As `` Foreach(`7esn` In {123456789} =~.9e1 =~$_usn3| Start @usn6=Node:`2esn`(#usn7={`4esn`}) With *,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null,{#usn8} Ends With _usn3 Ends With `2esn` Order By $`6esn`[{`4esn`}..][{#usn8}..] Ascending,$#usn8 Starts With 9.1e-1 Starts With {#usn7} Asc Skip Case When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 Else $12 Is Not Null Is Not Null End Starts With usn1(Distinct .9e1[$`1esn`..][$``..]) Starts With Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End)"), + octest_legacy:ct_string("Unwind _usn4[{`3esn`}][00] As _usn3 Union Merge ((:`1esn`:``{`8esn`:5.9e-12[0x0..]})) On Create Set #usn7 =usn1 =~false =~{999},Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}).`2esn`! =9e12 Is Null Is Null,`2esn`+=Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`}) Ends With Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))) Ends With Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1) On Create Set `3esn` =$7[.1e-1..{@usn6}][$7..{`1esn`}],None(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {0}[.1e-1..][_usn4..]).usn2 =$`7esn` In $`4esn`,usn1+=$`4esn` Ends With {999} Union All Return *,$123456789[..$999][..`6esn`] As @usn5,Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07)[Case 9e-12 Ends With 9e1 Ends With 4.9e12 When `3esn` =~$#usn7 Then $@usn5 Starts With #usn7 When {`4esn`}[{`3esn`}][$`2esn`] Then #usn7[$`8esn`][{`3esn`}] Else 9e0[`4esn`..$_usn4][9.1e-1..0e0] End][[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]] Skip @usn5[9e-1..{`1esn`}] Limit 11.12e-12 Contains usn1 Load Csv From false =~{`8esn`} =~00 As `7esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Using Periodic Commit 12 Load Csv From #usn7(Distinct $`8esn`[..5.9e-12][..`8esn`],{`3esn`}[01234567][{#usn7}]) =~Case When {`8esn`} Starts With .9e-1 Starts With 1000 Then $`6esn`[$_usn3..{1000}] When 3.9e-1 Starts With .9e0 Starts With {#usn7} Then .0e-0 Ends With $`2esn` Ends With `5esn` Else _usn4[$_usn4] End =~Single(#usn7 In .0e-0 In 12 Where #usn7[123.654][{12}]) As `1esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Return 01234567[1000..][$`8esn`..],Count ( * ) Is Not Null Is Not Null As _usn3,3.9e-1[..$1000][..0.12] As `` Limit {999} =~$`6esn` =~$`6esn` Unwind #usn7 In 07 As ``"), + octest_legacy:ct_string("Merge #usn7=(`8esn` :`7esn`)-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``) On Create Set None(`2esn` In $@usn5 Is Not Null Is Not Null Where {#usn8}[..@usn5]).usn2 =`1esn` In 6.0e0 In 12,`4esn`:_usn4:`2esn` On Create Set Single(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where `4esn` Ends With 9e12 Ends With {`5esn`})._usn3?.@usn6!.#usn8 =0[..12][..{`8esn`}],#usn8 =.1e1 In $999 In {#usn8},_usn3 =[usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]|{12} Contains `8esn` Contains @usn5] Contains Shortestpath(((({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(@usn6 :@usn5)-[`2esn`? *7{`5esn`:false[..usn2][..999]}]-(`4esn` :@usn6:_usn3)))) Contains (:usn1{#usn8:$`8esn` Is Not Null Is Not Null,`5esn`:3.9e-1 Starts With .9e0 Starts With {#usn7}})-[:#usn8|:`` *..07{@usn5:01234567[\"d_str\"..][$`4esn`..],`6esn`:$usn1 Ends With {`2esn`} Ends With $usn1}]-(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[? *0X7..0Xa]->(`1esn` )"), + octest_legacy:ct_string("Merge usn1=Allshortestpaths(((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) On Create Set `5esn`+=Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] Detach Delete Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})[Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})<-[`5esn`?:`7esn`|usn1{@usn5:9e0[`3esn`][0]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )))..][Case When $#usn7 Contains 3.9e-1 Then .12e12 Starts With 5.9e-12 Starts With `4esn` When {1000}[`2esn`...0e-0][9e-1..0X7] Then 010[...12e-12] End..]"), + octest_legacy:ct_string("Detach Delete $`5esn`[$_usn3][$12],.1e1 Ends With #usn7 Ends With {#usn7} Union All Merge `1esn`=Allshortestpaths(((:usn1{`6esn`:$_usn3[usn2..][usn1..],#usn7:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}))) On Create Set `7esn`+={`3esn`} =~$@usn5 =~`2esn` On Match Set {#usn8:$#usn7[01..2.12][2.12..3.9e-1],``:.9e0[$#usn8][Count ( * )]}.usn2! =Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]) Is Not Null Is Not Null Load Csv With Headers From 0e0 Contains {`2esn`} As `2esn` Fieldterminator \"d_str\" Merge `6esn`=(`4esn` :_usn3)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}) On Create Set @usn5 =Count(*)[$7] On Create Set usn1:`6esn`,{`7esn`:{#usn7}[.12e-12]}.@usn6!.#usn7?.`6esn`! ={12} Contains `8esn` Contains @usn5 Union All Merge `6esn`=(({`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654})-[$#usn8]->({usn2:01[`4esn`..]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1})) On Match Set `5esn` =({`4esn`:#usn8[\"d_str\"..usn2],`1esn`:12.0[..Count ( * )][..@usn6]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ) =~Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End =~{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} On Match Set @usn5 =$@usn5[`8esn`][12e12] Foreach(usn2 In Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Null Is Null| With Distinct *,$`1esn`[4.9e12..][_usn3..],Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End =~{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]} Order By Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) Descending,5.9e-12[01][`4esn`] Descending,[`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] Descending Skip Count(*) Is Not Null Is Not Null Limit 12e-12 =~$_usn3 Where false Contains {`7esn`} Create @usn6=(#usn7 {usn1:2.12[{12}]}))"), + octest_legacy:ct_string("Detach Delete (@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(:`6esn`{`2esn`:`5esn` Ends With Count(*)})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12}) In Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}) In Single(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str') Union All With $0 In {`5esn`:.9e-1 Contains .9e0 Contains ``} In {`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12} As `7esn`,.9e0 Ends With $0 As @usn6 Limit $`5esn` In $12 In `2esn` Union Create ((:#usn7:`8esn`{@usn5:{0} In {`1esn`}})),((`3esn` :#usn8:@usn6))"), + octest_legacy:ct_string("Start _usn4=Relationship:@usn6(\"d_str\") Where 07[{@usn5}..] Union All Unwind \"d_str\" In usn2 In $`7esn` As @usn6 Remove Filter(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12).`3esn`?.`7esn`?,Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0xabc[01234567][.12e-12]).`8esn`,Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`]).usn1 Union Load Csv From None(usn1 In \"d_str\" Contains {@usn6} Where $`5esn` =~Count(*) =~1.9e0) In [_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]] As @usn5 Fieldterminator \"d_str\" Start `4esn`=Rel:#usn8(usn2='s_str') "), + octest_legacy:ct_string("Return usn2[..$0][..`3esn`],{``:01234567[10.12e12][0Xa]} Is Null Is Null As #usn7,false Contains {`7esn`} Skip 0.0[$`4esn`] Limit (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])] Union All Detach Delete .12e12 Ends With 07 Ends With 3.9e-1 Foreach(usn2 In usn2[12e-12..{`8esn`}][.12e12..{123456789}]| Unwind {`7esn`}[0.12] As `6esn` Match `2esn`=Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}}))) Where $123456789[..$999][..`6esn`]) Union Load Csv With Headers From Shortestpath((`6esn` :``)) Contains Case When $@usn6[``..][3.9e-1..] Then 7[..123456789][..true] When `4esn` Contains 0X0123456789ABCDEF Contains $usn2 Then 12e12[{`4esn`}..`4esn`][999..{@usn6}] End As `6esn` Fieldterminator 's_str' Unwind {`8esn`}[9e12..][{_usn4}..] As #usn8"), + octest_legacy:ct_string("With @usn6[Reduce(`5esn`=_usn4['s_str'][8.1e1],_usn3 In `8esn`[_usn4]|$_usn3 =~'s_str' =~12)..][(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[`7esn`?]-(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})..],9e0 In {usn2} In {@usn6} As `8esn` Skip {#usn8:$`6esn`[..01][..{_usn3}]} Starts With Shortestpath(((`1esn` :`8esn`)-[`7esn`?:`2esn`|`5esn` *0]->(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))) Limit Single(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`)[(#usn7 {`2esn`:`8esn`[.12e12..],_usn3:usn1 =~0Xa =~0})<-[? *1000..]->({usn1:true In 0.0,@usn5:{`1esn`} Is Null})-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0})][Reduce(`2esn`=.9e0[07..][4.9e12..],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$``[9e0..][5.9e-12..])] Where {`4esn`} Ends With Count(*) With Distinct (`2esn` :`4esn`:usn2{`8esn`:.9e-1 Contains .9e0 Contains ``,_usn4:8.1e1 Contains .9e-1 Contains false})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Is Null Is Null As `1esn`,00 Is Not Null Is Not Null As `6esn`,{`5esn`} Ends With $`7esn` Ends With {@usn5} Order By {@usn6} =~Count ( * ) =~1.0 Desc,$`6esn` Contains All(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) Descending,`6esn`[0X0123456789ABCDEF..][`8esn`..] Ascending Limit None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Contains (`8esn` :@usn6:_usn3{_usn4:{#usn7} =~$@usn6 =~$7})<-[`1esn`? *0{usn2:.9e12[6.0e0..][@usn5..]}]->(usn2 :@usn6:_usn3)-[usn1:#usn7|:@usn5 *999..123456789]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7}) Where 4.9e12[{_usn4}..] Delete `1esn` Ends With 0.0 Ends With {`1esn`},Single(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Is Not Null Union With Distinct $7 In 1.0 In 01234567,.12e12[$`1esn`..0x0] As `4esn` Order By Filter(#usn7 In .0e-0 In 12 Where #usn7[123.654][{12}])[[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]..Reduce(`1esn`=`2esn`,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|.9e0 =~#usn7)] Desc,{0} =~{999} Desc,$999 =~0x0 Desc Skip `1esn`[..$1000] Limit 0e-0[#usn7..999]"), + octest_legacy:ct_string("Foreach(@usn6 In {`1esn`}[{usn2}]| Load Csv From All(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Ends With Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789 Is Not Null Is Not Null|{`8esn`}[@usn5][$`2esn`]) Ends With (#usn8 :`5esn`:`7esn`{usn2})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )-[_usn4? *..0x0{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null}) As `` Fieldterminator 's_str') Remove _usn4(Distinct).`6esn`?.`4esn`?,Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 999 Starts With 7.0e-0 Starts With true).``? Merge Allshortestpaths(((@usn6 :`5esn`:`7esn`)-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)-[`3esn`:`6esn` *..0x0]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}))) On Match Set `2esn`+=9e1[0.0],#usn8+=.12e-12[@usn6..'s_str'],{`6esn`:4.9e12 Is Not Null Is Not Null,_usn4:`4esn`[9e-12..true]}.#usn8._usn3? =Shortestpath((((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))))[None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0.0[`7esn`])..Single(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])][`5esn`(Distinct .9e1[$`1esn`..][$``..])..Case When 12e12 Ends With `5esn` Ends With .0e0 Then .9e0 In 8.1e1 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else .9e1 Ends With 0x0 End] On Create Set @usn6+=00 =~`4esn` =~.9e-12,`3esn` =$123456789,[usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF].`5esn`! =.0e-0 Ends With $`2esn` Ends With `5esn`"), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv With Headers From 4.9e12[{_usn4}..] As _usn4 Fieldterminator \"d_str\" Foreach(`8esn` In {1000}[`2esn`...0e-0][9e-1..0X7]| Load Csv From usn2(Distinct $_usn3 =~'s_str' =~12) In (`` :usn1)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}) In Case When {_usn4}[{`6esn`}] Then 12e12 Is Not Null Is Not Null When #usn7 Is Null Is Null Then {`8esn`} Starts With .9e-1 Starts With 1000 End As usn2 ) Unwind 01 =~{_usn3} =~01 As _usn4"), + octest_legacy:ct_string("Start #usn8=Node(7,0X7,0,01) ,#usn8=Relationship:_usn4(@usn6=\"d_str\") Start `6esn`=Rel(7,0X7,0,01) ,@usn5=Rel:usn1({usn2})Where 11.12e-12 Ends With 's_str' Union Remove usn2(.9e-12[usn2]).``,[@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e0 In 8.1e1|9e-1 Is Not Null].`4esn`? Union With Distinct [`1esn` In $12 In {usn2} Where $`8esn` Is Not Null Is Not Null|8.1e1 Contains $@usn6] In All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..]) In Extract(`7esn` In 0.12 Is Not Null Where .12e-12[@usn6..'s_str']) As @usn6,1.9e0 =~.0e0 =~0X7 As @usn6,{`3esn`}[$#usn8..] Order By $`` =~.1e-1 Asc,9e1[..@usn5][..$`5esn`] Descending,$#usn7 Ends With 999 Ends With {12} Descending Skip 3.9e-1 Contains 2.9e1 Contains `5esn` Where 01 Contains 9e-12 Contains $7 Merge `6esn`=(`4esn` :_usn3)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}) On Create Set @usn5 =Count(*)[$7] On Create Set usn1:`6esn`,{`7esn`:{#usn7}[.12e-12]}.@usn6!.#usn7?.`6esn`! ={12} Contains `8esn` Contains @usn5"), + octest_legacy:ct_string("Delete @usn5[#usn7..],(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]-(:_usn3{_usn3:010[..9e-1][..0X7]}) Starts With Case When $1000 Starts With {@usn6} Starts With $@usn5 Then `2esn` When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else 12[4.9e12..] End Starts With (_usn4 {`3esn`:.0e-0 In 12})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc}) Union All Foreach(`2esn` In `6esn` =~999 =~$999| Detach Delete Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789)[..All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 1e1 =~{@usn5} =~`7esn`)][..Case 07[..$`5esn`] When 00[$_usn4][$`1esn`] Then {#usn7}[.12e-12] Else `5esn` Contains 0 Contains $12 End] Create Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})))) Foreach(_usn3 In {usn1:12[..$`5esn`]}[None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..])]| Create Unique #usn8=Allshortestpaths((:usn1{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`))) Union All Return {12}[6.0e0..{usn2}][{_usn3}..{#usn7}] As _usn4,usn1 =~0Xa =~0 As @usn5 Limit $usn2 Ends With 9e12 Ends With Count ( * )"), + octest_legacy:ct_string("Start `2esn`=Rel( {``}) Where .9e1[$`1esn`..][$``..]"), + octest_legacy:ct_string("With Distinct * Where $123456789[{usn1}][.12e-12]"), + octest_legacy:ct_string("Match `3esn`=((_usn4 :_usn4:`2esn`{`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[_usn4]-(#usn8 )) Using Join On ``,`4esn`,_usn4 Unwind .12e-12[@usn6..'s_str'] As `7esn` Return Distinct 0xabc[..Count(*)][..$`5esn`],{12} Ends With 1e1 As `8esn`,{`4esn`} In 1000 In {@usn5} Order By {7} Ends With 999 Asc,_usn3 =~{`4esn`} Desc Skip [`1esn` In $12 In {usn2} Where 12e-12 Starts With $`7esn`][{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}..] Union All Load Csv From Reduce(`6esn`=$`5esn`[$_usn3][$12],`2esn` In $@usn5 Is Not Null Is Not Null|1.9e0 In $@usn6 In $_usn3)[{``:.12e-12 Is Null}..][Case When $1000 Starts With {@usn6} Starts With $@usn5 Then `2esn` When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else 12[4.9e12..] End..] As #usn7 Create (((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})))"), + octest_legacy:ct_string("Load Csv With Headers From [usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0|4.9e12 Is Not Null Is Not Null] =~Case {_usn3} In $#usn8 In $12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else 0[..{0}][..true] End =~Case Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else $_usn3 Starts With 010 End As `3esn` Match `8esn`=((@usn6 :@usn6:_usn3)),Allshortestpaths((((:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})-[`7esn`:`1esn`|:`1esn` *0Xa..12]-(`8esn` :`7esn`)<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})))) Using Scan #usn7:`3esn` Using Index `6esn`:`3esn`(``)"), + octest_legacy:ct_string("Delete `8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End,Any(_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12)[(`5esn` :`8esn`{`1esn`:{`8esn`} Starts With .9e-1 Starts With 1000,@usn5:10.12e12 In Null In .12e12})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})..],Reduce(#usn7=$usn1 Ends With {`2esn`} Ends With $usn1,`6esn` In 010[{`1esn`}..]|.9e-12[.12e12..][0Xa..])[#usn7(8.1e1 Contains $@usn6,$12[$`6esn`..][01..])..Reduce(@usn5=`1esn` In 6.0e0 In 12,`` In `7esn` =~#usn8 =~\"d_str\"|$`6esn` =~$#usn7 =~$`4esn`)] Merge `1esn`=Shortestpath((({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[`8esn`*]->(#usn7 :#usn7:`8esn`))) On Match Set `3esn`(Count ( * )[_usn4..],`2esn`).usn1!._usn4 =`1esn` In 010 In 1e-1,Any(#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null).`2esn`! =Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null,usn2+=8.1e1[$``] Union Return usn2[12e-12..{`8esn`}][.12e12..{123456789}] As #usn8,Case When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] When {123456789} Starts With $_usn4 Starts With 0x0 Then 9e0[`3esn`][0] End[{`3esn`:false Starts With 0 Starts With 2.9e1,@usn6:9e-12 Ends With {1000}}..{`8esn`:_usn3[{#usn7}]}] As usn1 Skip Allshortestpaths((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))[usn1..] Limit usn2 Ends With $123456789 Ends With {999}"), + octest_legacy:ct_string("Load Csv From `4esn`($@usn5[.9e-1],00[{1000}]) Ends With Reduce(`7esn`=0.0[00..][0xabc..],usn1 In {#usn7} =~.12e12 =~9e0|10.12e12 In Null In .12e12) As `5esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Merge @usn5=(usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[?$999]-(`4esn` {#usn7:$usn1[0e0...9e-12]})-[:`5esn` *01234567..{`2esn`:{usn1} Contains {`2esn`},#usn7:`4esn`[9e-12..true]}]-(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null}) On Create Set #usn8:`8esn` On Create Set #usn7+={_usn4} Ends With {0} Ends With `1esn`"), + octest_legacy:ct_string("With $123456789[{usn1}][.12e-12] As `3esn`,1.9e0 =~.0e0 =~0X7 As #usn7,9e1 Ends With 9e12 Ends With 0x0 As #usn8 Order By $@usn5 Is Null Is Null Ascending,`1esn` Is Not Null Is Not Null Desc Limit {`8esn`} Ends With true Ends With {`3esn`} Where $usn1[9e1][{999}] Unwind @usn5[#usn7..] As usn1 Create ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})),`6esn`=(usn1 :#usn8:@usn6) Union All Delete [usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]][`5esn`(Distinct $@usn5[`8esn`][12e12])..][``(Distinct $1000 Is Null,1e-1[$`4esn`])..],$`4esn` Is Null Is Null Create Unique ((:@usn5{`1esn`:$999 =~0e0 =~0X7})<-[usn2:_usn3 *0xabc..12]-(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]})<-[{usn1:$_usn3 Starts With 010}]-(_usn3 :usn1)),(usn2 :@usn5{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}) Detach Delete `7esn`[1.9e0..5.9e-12][9e0..@usn5]"), + octest_legacy:ct_string("Return Distinct *,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) As #usn8,Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``}) In (_usn4 :_usn3)<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-({#usn7:12e12[.9e12..07]}) In @usn5({1000}[0..]) Unwind .1e-1 Is Not Null As `3esn`"), + octest_legacy:ct_string("With Distinct 0e0 Is Null Is Null As `2esn`,{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]} In Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}))) In Extract(_usn3 In `8esn`[_usn4] Where 0[..{#usn7}][..$_usn3]|0x0 Ends With #usn8 Ends With .9e-1) As ``,$`6esn` In 999 In {_usn3} As usn2 Order By 010 =~9.1e-1 =~{`8esn`} Desc Skip false[9e12] Limit 0e-0[..7.0e-0][..{`8esn`}] Union Remove None(@usn6 In 9e12[..usn2][.._usn3] Where 01[`4esn`..]).#usn8?,Case When `5esn` Contains 0 Contains $12 Then true In 0.0 Else 9e12 Ends With \"d_str\" Ends With 0X7 End._usn4,0.0.@usn6!"), + octest_legacy:ct_string("Return Reduce(#usn7=#usn8[\"d_str\"..usn2],#usn7 In .0e-0 In 12|`` Ends With 1.0 Ends With usn1) Ends With [_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3]] Ends With Shortestpath((((:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[`2esn`?:`8esn`|:#usn8]->(`` )<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)))),Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As usn1 Limit Case Null[#usn7..][9.1e-1..] When 12.0[..Count ( * )][..@usn6] Then {0} In {`1esn`} When 4.9e12 Starts With {``} Then $`8esn` Is Null Is Null Else $#usn7 Contains 3.9e-1 End Contains None(#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null) Contains [usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]] Detach Delete $`5esn`[..{0}][..7.0e-0],`8esn` Contains usn2,usn2[12e-12..{`8esn`}][.12e12..{123456789}] Optional Match `4esn`=(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0}) Where 2.9e1 Ends With `5esn` Ends With 1000 Union Start `3esn`=Node:#usn8(usn2='s_str') Where $`6esn` =~$#usn7 =~$`4esn` Merge #usn7=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 ))) On Create Set #usn8:`8esn` On Match Set `8esn`+=Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null],@usn5+=Reduce(@usn6=0X0123456789ABCDEF Ends With {1000},usn1 In $@usn6 Is Null Is Null|.0e0 =~0 =~.0e0) Starts With None(`6esn` In 010[{`1esn`}..] Where _usn4 Ends With {`8esn`} Ends With usn2) Starts With Case When 01234567 Ends With .0e0 Ends With 12e12 Then @usn6 Starts With #usn7 Else .12e12 Ends With 07 Ends With 3.9e-1 End,#usn7 =$_usn3[0X0123456789ABCDEF..][0x0..] Optional Match #usn8=(`6esn` :`4esn`:usn2),(((:`3esn`)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))) Using Join On `5esn`,`8esn`,#usn7 Where $12[10.12e12][.1e1] Union All Foreach(`6esn` In 9e-12[{`1esn`}..]| Optional Match Shortestpath(((`7esn` {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))) Using Join On `2esn`,`6esn` Using Join On `4esn`,`2esn`,`` Where #usn8 Is Null Is Null) Start @usn5=Rel:`8esn`(usn1={#usn7}) ,usn1=Node:usn1(usn2='s_str')Where .12e12[..$123456789] Delete $@usn6 Is Null,{`1esn`} Is Null,{@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null)"), + octest_legacy:ct_string("Using Periodic Commit 0Xa Load Csv From {0} Is Null Is Null As `5esn` Fieldterminator 's_str' Unwind _usn4 As _usn3 Detach Delete \"d_str\" Starts With .1e-1,Reduce(`2esn`=$@usn5[``..],`7esn` In 0.12 Is Not Null|$`4esn` Is Not Null) =~Any(_usn3 In `8esn`[_usn4] Where {`6esn`} In {_usn4} In $12) =~Reduce(`1esn`=false =~{`8esn`} =~00,`2esn` In $@usn5 Is Not Null Is Not Null|`1esn`[{@usn5}..][{_usn4}..]),{`2esn`:`5esn` Ends With Count(*)}[..`8esn`({#usn7}[.12e-12],$`` =~.1e-1)][..Allshortestpaths(((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})))]"), + octest_legacy:ct_string("With *,Extract(#usn8 In 07[..$`5esn`] Where $usn2[..$999][..#usn8]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )])[Case {#usn7}[.12e-12] When $`4esn`[$@usn6...12e12] Then .12e-12[@usn6..'s_str'] Else .12e-12 Starts With .12e-12 End..(`` :``)-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})][Reduce(`5esn`=Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|{usn2}[9e-1])..All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}])] As `8esn` Limit $`5esn`[..{0}][..7.0e-0]"), + octest_legacy:ct_string("Foreach(usn1 In 4.9e12 Is Not Null Is Not Null| Unwind Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[..None(#usn7 In .0e-0 In 12 Where 0xabc =~123456789)][..11.12e-12] As @usn5) Start usn2=Node:`2esn`(_usn4={#usn7}) ,`5esn`=Rel:`6esn`(`4esn`='s_str')Where 12[..$`5esn`] Remove Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[01234567][{#usn7}]|00 =~`4esn` =~.9e-12).`5esn`.`3esn`! Union All Delete $12 Contains 's_str',`4esn` Ends With 9e12 Ends With {`5esn`},$1000[_usn4][{@usn5}] Start @usn5=Relationship:_usn3({`7esn`}) Union Foreach(_usn3 In {usn2} Ends With {@usn6} Ends With 1000| Load Csv With Headers From 123.654[..999] As `8esn` Fieldterminator \"d_str\") Match (`8esn` :@usn6:_usn3)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})-[`3esn`? *..07]-(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}) Using Index `5esn`:#usn8(_usn3) Where 9e-12 Is Not Null Is Not Null Create ({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})<-[_usn3? *0xabc..12]->(_usn3 {#usn7:$999 =~false =~{`8esn`}})"), + octest_legacy:ct_string("Foreach(`8esn` In `6esn` =~999 =~$999| Match (((`7esn` :usn1)<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})<-[`3esn`?:@usn6|:`4esn`]-(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))),``=((:_usn4:`2esn`{@usn5:1e-1[$`4esn`]})<-[? *0]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})) Using Scan ``:`1esn`) Unwind Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) As `4esn` Union All Foreach(`4esn` In .0e-0[..01234567]| Start _usn3=Relationship(0x0) ,``=Relationship( {@usn5})Where 0Xa In 1.0 In $@usn5 With Distinct {`6esn`} Starts With {`5esn`} Starts With 2.9e1 As _usn3,Case #usn8 Is Null Is Null When {`1esn`} Contains 1.0 Contains 4.9e12 Then 7 Is Null Is Null End[..Reduce(usn2=1.0 Is Null Is Null,`3esn` In 8.1e1 Contains .9e-1 Contains false|{`6esn`} =~2.12 =~123.654)][..{`3esn`:Count ( * )[_usn4..]}] As #usn8 Where 9e-1 Contains 3.9e-1)"), + octest_legacy:ct_string("Load Csv With Headers From (`1esn` {`2esn`})-[@usn6:`3esn`|`3esn` *0X7..0Xa]->(_usn4 :#usn8:@usn6)[Allshortestpaths((`3esn` :`6esn`{_usn3:.12e-12 Ends With `2esn`,usn1:Null[#usn7..][9.1e-1..]})-[_usn3?:@usn5|:#usn7]->(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]}))][Filter(usn2 In .12e-12 Ends With `2esn` Where 0.12 =~2.9e1 =~9e1)] As @usn6 "), + octest_legacy:ct_string("Load Csv With Headers From $`1esn`[4.9e12..][_usn3..] As `2esn` Fieldterminator 's_str' Detach Delete $`8esn` Contains _usn4,[usn1 In \"d_str\" Contains {@usn6} Where 5.9e-12[0x0..]|4.9e12 Ends With $@usn6] =~(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) =~(`3esn` :#usn8:@usn6)-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[:`2esn`|`5esn` *01]-({@usn6:{_usn4} In 0X7 In 0e0}),``(Distinct $1000 Is Null,1e-1[$`4esn`])[None(_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3])][[usn1 In \"d_str\" Contains {@usn6} Where 5.9e-12[0x0..]|4.9e12 Ends With $@usn6]] Match `2esn`=(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1}) Using Join On _usn3,usn2 Where Null"), + octest_legacy:ct_string("With $`5esn`[{@usn6}..{`7esn`}] As `2esn`,`8esn`[.12e12..],'s_str'[`3esn`..0x0] As @usn5 Order By Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Asc Skip `3esn` Is Null Union With $`5esn` =~Count(*) =~1.9e0 As @usn6,.9e12[6.0e0..][@usn5..],07[9e-1..][1e1..] As `4esn` Order By Reduce(`1esn`=#usn7[$`8esn`][{`3esn`}],#usn8 In 07[..$`5esn`]|7[{`4esn`}..]) =~Case 3.9e-1[..$1000][..0.12] When 0.12 Is Not Null Then $`` =~$_usn3 Else 1e-1 =~$`7esn` =~1e1 End Desc,{usn1} Desc Skip ({`4esn`:#usn8[\"d_str\"..usn2],`1esn`:12.0[..Count ( * )][..@usn6]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ) =~Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End =~{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Limit ``(Distinct $1000 Is Null,1e-1[$`4esn`])[..{`8esn`:{`3esn`}[..{`4esn`}][..usn2]}]"), + octest_legacy:ct_string("Foreach(usn2 In 9e0[..{#usn7}][..`4esn`]| Start _usn4=Relationship:usn2({usn1}) ,_usn4=Relationship:`4esn`(\"d_str\")) Union Create (({usn1:#usn7[.9e0..`3esn`][{`6esn`}..1000],_usn4:$usn2 In #usn7 In #usn7})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[``? *0Xa..12{@usn5:01 Ends With .0e0 Ends With 7.0e-0,_usn3:0.0[00..][0xabc..]}]-(`7esn` :`7esn`)),`4esn`=Allshortestpaths(((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null}))) Detach Delete $`8esn` =~{`1esn`} =~$7,010[{7}..][{`1esn`}..] Union Load Csv With Headers From $@usn5[.9e-1] As `7esn` Return Distinct $#usn7 Contains 3.9e-1,{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}} Starts With Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999|$`1esn`[..12e-12][...9e12]) Starts With (`4esn` :`8esn`{12})<-[`2esn`?:`4esn`|:`2esn`]-(`4esn` {`8esn`:5.9e-12[0x0..]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}) Skip {@usn6:{7} Starts With 0x0 Starts With 9e1}[Reduce(`5esn`=$999 Ends With `2esn` Ends With 12.0,_usn3 In `8esn`[_usn4]|_usn3 =~{7} =~123.654)..None(usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-1[1.9e0])] Limit Allshortestpaths(((#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[@usn6?{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}))) In All(`` In `7esn` =~#usn8 =~\"d_str\" Where {#usn7} =~$@usn6 =~$7) In Case When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 When $0 Ends With $usn1 Ends With {``} Then 4.9e12 Ends With $@usn6 Else 0[..{0}][..true] End"), + octest_legacy:ct_string("Using Periodic Commit 0X0123456789ABCDEF Load Csv From 0x0[{`6esn`}..] As usn1 Fieldterminator 's_str'"), + octest_legacy:ct_string("Create Unique (((`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(`3esn` $0)<-[usn2:#usn8|:``]->(`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0}))) Remove Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]).`6esn`!,Allshortestpaths((:`3esn`{usn2:01234567[10.12e12][0Xa]})).`1esn`? Union All Create Unique _usn4=((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})),`4esn`=(({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)) Detach Delete $usn1[..$999][..0e0],`4esn`[9e-12..true],{@usn5} Contains .1e1 Contains {`5esn`} Union All Load Csv From Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}] As @usn6 Fieldterminator 's_str'"), + octest_legacy:ct_string("Unwind Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) As @usn6 Union All Optional Match (({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})) Using Index usn1:#usn7(usn1) Remove Reduce(`3esn`={0} Is Not Null,`` In `7esn` =~#usn8 =~\"d_str\"|01234567[\"d_str\"..][$`4esn`..])._usn4.@usn6"), + octest_legacy:ct_string("Create Unique `8esn`=(({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})) Return Distinct `4esn`[12.0..][9.1e-1..] As `4esn`,true In 0.0 As `5esn` Order By $7 In 1.0 In 01234567 Ascending,@usn5 =~$#usn7 =~{usn1} Ascending Skip #usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Union Create Shortestpath(((({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(_usn4 :`1esn`:``{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}})-[?:@usn5|:#usn7 *0]->({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})))) Start _usn4=Relationship( {#usn8}) ,`4esn`=Node:usn2(usn1={_usn3}) Optional Match (((`8esn` :`5esn`:`7esn`{usn1:{``} Contains 0.0 Contains `4esn`})-[`2esn`?:`4esn`|:`2esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]->(@usn5 {`8esn`:123456789[#usn7..9e-1][10.12e12..{0}],@usn6:1.0 Is Not Null})-[#usn8?:usn2*..]->(:``{usn2:00 Is Not Null Is Not Null}))) Using Join On #usn8,_usn3,`6esn` Using Join On `1esn`,usn1,`7esn`"), + octest_legacy:ct_string("Merge ``=((:`7esn`{`1esn`:$`8esn` Is Null Is Null,`1esn`:0.12 =~2.9e1 =~9e1})-[:#usn8|:``*{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]->(:``{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) On Match Set Reduce(`4esn`=.12e12[..$123456789],usn1 In $@usn6 Is Null Is Null|2.9e1 Ends With `5esn` Ends With 1000).#usn7.usn1 =Count(*)[@usn5..],_usn3 =0.12 Ends With 7 Ends With 12 On Create Set (:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}).usn2 =Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] Delete Filter(@usn6 In 9e12[..usn2][.._usn3] Where 1.9e0[..0][.._usn3]) Ends With {`6esn`:9e12 Ends With \"d_str\" Ends With 0X7,`3esn`:0X0123456789ABCDEF[1e1..]} Ends With Reduce(@usn5=`` Contains {`6esn`} Contains 123456789,`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|00[$``]),12.0 Starts With 00,Case #usn8 Is Null Is Null When {`1esn`} Contains 1.0 Contains 4.9e12 Then 7 Is Null Is Null End[..Reduce(usn2=1.0 Is Null Is Null,`3esn` In 8.1e1 Contains .9e-1 Contains false|{`6esn`} =~2.12 =~123.654)][..{`3esn`:Count ( * )[_usn4..]}]"), + octest_legacy:ct_string("Return *,Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789)[..All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 1e1 =~{@usn5} =~`7esn`)][..Case 07[..$`5esn`] When 00[$_usn4][$`1esn`] Then {#usn7}[.12e-12] Else `5esn` Contains 0 Contains $12 End],1.0 Is Null Is Null Order By [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End Ascending,{`7esn`}[0.12] Descending Skip Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12])[Reduce(@usn5=1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$0 Ends With 9e-12 Ends With $_usn4)..] Detach Delete $#usn7 Contains 3.9e-1 Match ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})),`6esn`=(usn1 :#usn8:@usn6) Union All Match (((`7esn` :usn1)<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})<-[`3esn`?:@usn6|:`4esn`]-(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))),``=((:_usn4:`2esn`{@usn5:1e-1[$`4esn`]})<-[? *0]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})) Using Scan ``:`1esn` Merge Shortestpath(((:_usn3{_usn3:010[..9e-1][..0X7]}))) On Match Set `3esn`+=Case .12e-12 Is Null When Count ( * )[_usn4..] Then 7.0e-0 Is Not Null When 2.12[{12}] Then {usn2} Ends With {@usn6} Ends With 1000 End[Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..])][({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})],_usn4+=Single(_usn3 In `8esn`[_usn4] Where $_usn3[usn2..][usn1..])[{`6esn`:Count(*) =~01234567 =~.1e-1}..[usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]]],`2esn`+=0X0123456789ABCDEF In false Union All Unwind 's_str'[`2esn`][12.0] As `4esn`"), + octest_legacy:ct_string("Merge @usn6=((`1esn` :`8esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})) On Create Set {usn1:{123456789} Starts With $_usn4 Starts With 0x0,`3esn`:$`4esn` Is Null Is Null}.`7esn`?.`7esn`?.#usn7 =1.9e0 In 2.12,Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where {0}[.1e-1..][_usn4..]).`6esn`.usn1.`7esn`? =12e-12 Ends With $999 Ends With ``,Extract(#usn8 In 07[..$`5esn`] Where 123.654 Ends With {1000} Ends With 9e12|$usn1[..$999][..0e0])._usn3! ={1000} Starts With {`1esn`} On Match Set `7esn`+=Reduce(_usn3=5.9e-12 Is Null Is Null,_usn3 In `8esn`[_usn4]|2.9e1[Count ( * )..]) Is Null,#usn8 =0e0 Ends With .9e0 Ends With 01234567 Union All Start `8esn`=Relationship:`7esn`({`4esn`}) Where 's_str'[`2esn`][12.0] Load Csv From {_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}[Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)][[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1]] As `5esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Using Periodic Commit 0X0123456789ABCDEF Load Csv With Headers From Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As `` Fieldterminator \"d_str\" Load Csv From $`8esn`[..5.9e-12][..`8esn`] As `` Fieldterminator 's_str' Detach Delete [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..],{123456789} Contains $#usn7 Contains {#usn8}"), + octest_legacy:ct_string("Remove Shortestpath(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})).`7esn`?,All(`1esn` In $12 In {usn2} Where {`3esn`}[..0xabc][..{`6esn`}]).`8esn`? Create Unique Shortestpath((_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})),Shortestpath(((@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})-[@usn5:`6esn` *..00]->(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Foreach(@usn6 In {`1esn`}[{usn2}]| Load Csv From All(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Ends With Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789 Is Not Null Is Not Null|{`8esn`}[@usn5][$`2esn`]) Ends With (#usn8 :`5esn`:`7esn`{usn2})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )-[_usn4? *..0x0{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null}) As `` Fieldterminator 's_str') Union Optional Match `1esn`=((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})),`7esn`=Allshortestpaths(((:`7esn`)<-[#usn7?:_usn3 *999..123456789{@usn5:$12 In {usn2},usn1:5.9e-12 Is Null Is Null}]->(`` {`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654})-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:`8esn`{#usn8:2.9e1[2.12..1.9e0],#usn8:@usn6[true..]}))) Using Scan `4esn`:`1esn` Using Join On _usn4,usn1,`` Where 4.9e12 Ends With $@usn6"), + octest_legacy:ct_string("Merge Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))) On Match Set `6esn` =.1e-1[$@usn6],#usn7 =7.0e-0 Is Not Null On Create Set `1esn`+=[_usn3 In `8esn`[_usn4] Where {#usn7} Starts With .1e-1|`3esn` Is Null] Contains `5esn`({#usn8} Ends With _usn3 Ends With `2esn`,.9e0 =~#usn7),@usn6 =[`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0|{`4esn`} In 1000 In {@usn5}] Is Null,{`1esn`:$999 Is Not Null}.`6esn`? =Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) Return 0.0[$999][`6esn`] Order By $`2esn`[`8esn`..] Descending,({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}) Contains Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Contains All(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]) Descending Limit $`5esn` =~Count(*) =~1.9e0 Start `1esn`=Rel:`5esn`(@usn5=\"d_str\") ,`5esn`=Node:@usn6(#usn8='s_str') Union With {`2esn`}[0x0..9e0] As `6esn`,{`8esn`} Ends With true Ends With {`3esn`} As `2esn` Skip {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null) Where 2.9e1 Ends With `5esn` Ends With 1000 Create `2esn`=(:@usn6:_usn3),(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})<-[`1esn`:#usn7|:@usn5 *..123456789]-({#usn7:{7}[0x0][1e1]})"), + octest_legacy:ct_string("Create Allshortestpaths((:`3esn`{usn2:01234567[10.12e12][0Xa]})),Shortestpath((@usn5 :_usn4:`2esn`{@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})) Foreach(`7esn` In 12.0[..Count ( * )][..@usn6]| Remove exists(usn1 =~false =~{999},.12e12[..$123456789]).`7esn`?,[`` In `7esn` =~#usn8 =~\"d_str\" Where @usn6 Starts With #usn7|$12 Is Null].`6esn`?,`4esn`(Distinct {`3esn`}[...1e1][..0]).usn2? Unwind .12e12[01..{1000}][8.1e1..Count ( * )] As `2esn`) Load Csv From $`5esn` Contains .9e12 As _usn4 "), + octest_legacy:ct_string("Create Unique ((`8esn` :`2esn`:`4esn`)-[?:#usn7|:@usn5 *12]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})) Create Unique usn2=(((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(#usn7 :`8esn`))),#usn7=Shortestpath((`1esn` :usn2{`8esn`:12.0[...0e0]})-[?:`1esn`|:`1esn` *..0x0{@usn6:.0e-0 In 12}]-(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})) Match ((:`1esn`:``{`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})),Allshortestpaths((`4esn` :`3esn`)-[`3esn`?:`1esn`|:`1esn`]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})) Using Index `2esn`:usn1(_usn3) Using Scan #usn8:`8esn` Union Remove `4esn`:#usn8:@usn6 Delete {_usn3} Is Null Is Null,$999 Starts With 0e-0 Starts With .9e12,0.12[{@usn6}..{#usn7}] Load Csv From None(`1esn` In $12 In {usn2})[..Reduce(usn2=.9e0 In 8.1e1,`3esn` In 8.1e1 Contains .9e-1 Contains false|$_usn3 Is Not Null)] As #usn7 Fieldterminator 's_str' Union All Load Csv From 12[11.12e-12..][`4esn`..] As @usn6 "), + octest_legacy:ct_string("Unwind 00[{1000}] As usn1 Union Create `2esn`=Allshortestpaths((:`3esn`{@usn5:9e12[..usn2][.._usn3]})),``=Shortestpath((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[ *0X0123456789ABCDEF]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) Optional Match `7esn`=(((:`3esn`{usn2:01234567[10.12e12][0Xa]})-[_usn3?{`8esn`:{usn2} Is Not Null Is Not Null}]->({`7esn`:.9e12 Is Not Null Is Not Null})-[#usn8?:`4esn`|:`2esn` *7{`6esn`:{0} Ends With 0Xa,usn1:.9e1 Is Null Is Null}]->({`1esn`:01 =~{_usn3} =~01,`8esn`:{#usn7} Ends With 999 Ends With 12}))) Using Scan #usn7:_usn3 Using Index #usn7:`4esn`(@usn5) Union All With Distinct *,$`4esn`[...0e-0] Skip [`6esn` In 010[{`1esn`}..] Where 7 Starts With 9e-12|Null[#usn7..][9.1e-1..]][None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`})..][`1esn`(@usn5[9e-1..{`1esn`}],$`4esn`[$@usn6...12e12])..] Limit 00 In {#usn7} In $usn1 Where $#usn7 Ends With 999 Ends With {12} Merge (:@usn5)"), + octest_legacy:ct_string("Return Distinct 01 Starts With 12 Starts With $`2esn` As usn1,{`8esn`} In {_usn3} In 6.0e0 Order By {`4esn`} Ends With Count(*) Asc,.0e0[{`5esn`}..3.9e-1] Descending,$999 Ends With `2esn` Ends With 12.0 Ascending Load Csv From {@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] As `5esn` Match `5esn`=(((`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[?:_usn3]->(`8esn` :usn1)-[?:`1esn`|:`1esn` *999..123456789]-(`8esn` :#usn7:`8esn`))),`5esn`=Shortestpath(((@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))) Using Scan `4esn`:#usn7 Using Scan `7esn`:`` Where .12e-12[@usn6..'s_str']"), + octest_legacy:ct_string("Optional Match @usn5=Allshortestpaths((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})-[`3esn`? *..07]-(#usn7 {_usn4:$12[$`6esn`..][01..]})),((({`1esn`:10.12e12 In Null In .12e12})<-[?:`1esn`|:`1esn`]-(`1esn` :#usn8:@usn6{`7esn`:.1e-1 Contains .12e-12,`2esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[:`4esn`|:`2esn`{usn1:3.9e-1 Contains $@usn5}]->(`7esn` ))) Using Index ``:@usn5(usn1) Using Index usn1:#usn7(usn1) Start _usn4=Node:`4esn`({12}) Union Delete $`1esn` Ends With 1000 Foreach(@usn6 In $`7esn` In $0| With *,{`1esn`} In 0 As _usn3 Order By @usn5[9e-1..0e0][{_usn3}..$usn1] Descending,2.12[`4esn`][.9e-1] Ascending,$`1esn` In 0Xa Desc Skip {1000}[12] Load Csv From 8.1e1['s_str'..] As #usn7 Fieldterminator 's_str') Create (_usn3 {#usn7:$999 =~false =~{`8esn`}})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0}) Union Merge (#usn8 :@usn5{`8esn`:0x0 Ends With #usn8 Ends With .9e-1}) With Distinct *,_usn4['s_str'][8.1e1] Order By $@usn6[.1e-1][9e12] Asc,Case When $999 =~false =~{`8esn`} Then 999 Is Null Is Null When {``} Contains 0.0 Contains `4esn` Then $999 Is Not Null End Contains Case $usn2 In #usn7 In #usn7 When {12} Ends With $`3esn` Ends With 0xabc Then $@usn5 Contains _usn3 End Contains None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0xabc[01234567][.12e-12]) Asc Skip $`4esn`[{usn1}..] Limit {`6esn`} In .0e0 In $0 Foreach(`1esn` In {`7esn`:{`2esn`} Ends With 9e-1 Ends With .1e-1,`7esn`:{@usn6} In 9e12} =~Reduce(_usn3=$usn1[9e1][{999}],usn1 In \"d_str\" Contains {@usn6}|$@usn5 Contains _usn3)| Match `7esn`=(((#usn8 :``{usn2:9e1 =~$`8esn` =~10.12e12})-[_usn3:`6esn`]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}))) Using Index `3esn`:`8esn`(`5esn`) Using Index `3esn`:`8esn`(`5esn`) Create (`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))"), + octest_legacy:ct_string("Foreach(`7esn` In 01 Contains Reduce(usn2=$1000[_usn4][{@usn5}],`8esn` In {usn1}[7.0e-0..][3.9e-1..]|9e-12 Ends With 9e1 Ends With 4.9e12) Contains usn2(Distinct `7esn` In _usn4 In $`7esn`,999 Is Null Is Null)| Start `1esn`=Rel:``(#usn8=\"d_str\") ,#usn8=Rel:#usn8(usn2='s_str')Where $`4esn` Ends With .12e12 Ends With 123.654 Unwind 11.12e-12 =~Count ( * ) As `8esn`) Create (_usn4 {`3esn`:.0e-0 In 12}),Shortestpath((@usn6 :_usn4:`2esn`)) Union Match usn2=((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})),Shortestpath(({`6esn`:3.9e-1[..$1000][..0.12]})<-[:`4esn`|:`2esn`{`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]}]-({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]-({`5esn`:$`4esn` Ends With .12e12 Ends With 123.654,@usn6:{123456789} Contains $0})) Using Index usn1:#usn7(usn1) Union All Detach Delete 7.0e-0[$`6esn`..],`1esn` =~{12} =~{999},{_usn3} =~$12 =~$7 Load Csv With Headers From {#usn7} Starts With .1e-1 As `3esn` "), + octest_legacy:ct_string("Match usn2=Allshortestpaths(((@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0}))) Using Scan `1esn`:`8esn` Where {usn1} Is Not Null Is Not Null Remove Allshortestpaths((((@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})-[:`3esn`|`3esn`]-(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(:`4esn`:usn2)))).`6esn`?"), + octest_legacy:ct_string("Foreach(`7esn` In $`` =~.1e-1| Unwind $123456789 As #usn7) With Distinct *,0 Contains {`2esn`} Union All With Distinct .12e-12[@usn6..'s_str'],Allshortestpaths((((@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[``? *..00{@usn5:$`8esn` =~{`1esn`} =~$7,#usn7:.12e-12 Starts With .12e-12}]->({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]})-[:`8esn`|:#usn8 *01]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))))[..Case When {#usn7} Ends With 999 Ends With 12 Then {`3esn`}[999..$`4esn`] End],5.9e-12[01][`4esn`] As _usn4 Skip Single(`` In `7esn` =~#usn8 =~\"d_str\")[Reduce(`3esn`=1e1[$_usn3],`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1[..9.1e-1][...9e1])][[#usn7 In .0e-0 In 12 Where \"d_str\"[0x0..{@usn6}][$@usn5..0]|{7}[$@usn5..123456789][1e1..1.9e0]]] Remove Extract(usn1 In \"d_str\" Contains {@usn6} Where $`` =~.1e-1|$`3esn` =~0x0).`7esn`.`6esn`!,Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $1000[_usn4][{@usn5}]).#usn8!,Reduce(`2esn`=$`4esn`[$@usn6...12e12],`1esn` In $12 In {usn2}|{12} Starts With $`` Starts With 0X0123456789ABCDEF).usn1!._usn3 Merge `4esn`=((:``{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[? *..00$_usn3]-({`5esn`:`1esn` In 010 In 1e-1})) On Match Set #usn7 =All(#usn8 In 07[..$`5esn`] Where $@usn6 Starts With 0xabc Starts With {`7esn`})"), + octest_legacy:ct_string("Using Periodic Commit Load Csv From `4esn`($`6esn`[@usn6...9e-12],{12})[None(@usn6 In 9e12[..usn2][.._usn3] Where $7[999..10.12e12][$`1esn`..{usn1}])..Allshortestpaths((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})-[`5esn`?:`2esn`|`5esn`]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`))][usn1..Reduce(@usn5=`1esn` In 6.0e0 In 12,`` In `7esn` =~#usn8 =~\"d_str\"|$`6esn` =~$#usn7 =~$`4esn`)] As `` Remove `5esn`:usn1,Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 01234567[1000..][$`8esn`..]|07[..$`5esn`]).`6esn`.@usn5.usn1"), + octest_legacy:ct_string("Using Periodic Commit 0x0 Load Csv From 0.0[$`4esn`] As `` Fieldterminator 's_str' Unwind 12e-12 Starts With $`7esn` As usn2 Merge Shortestpath((((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})-[`2esn`?:@usn6|:`4esn` *010..0{`4esn`:Null[$`3esn`..][`1esn`..],_usn3:6.0e0[$#usn7..$1000]}]-(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]})))) On Create Set usn2 =0xabc Contains {12} Contains {`6esn`},`` =usn2($usn1 =~.0e0 =~{`4esn`}) Contains Allshortestpaths(((#usn8 :@usn5)<-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 )<-[?:`1esn`|:`1esn`{`5esn`:9e1[0.0]}]->(`8esn` ))),_usn3({1000} Is Null,123456789[#usn7..9e-1][10.12e12..{0}]).usn1.`2esn`._usn4 ={123456789} Is Not Null On Match Set Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}).`8esn`!._usn3!._usn3! =Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End Is Null Is Null,(`1esn` :`8esn`)<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})-[:#usn7|:@usn5]-(:`1esn`:``{`8esn`:5.9e-12[0x0..]}).`6esn`? =Any(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0xabc[..{usn1}][..\"d_str\"])[Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 0X0123456789ABCDEF Is Not Null Is Not Null)..None(#usn8 In 07[..$`5esn`] Where 8.1e1 Contains .9e-1 Contains false)][Case {0} Is Not Null Is Not Null When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End..[`` In `7esn` =~#usn8 =~\"d_str\"|$_usn4 Ends With {#usn8}]]"), + octest_legacy:ct_string("Create #usn7=(`4esn` {@usn5:5.9e-12[12e-12][$`8esn`],`5esn`:{123456789} Contains $0})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`) Union Create ((usn1 :@usn6:_usn3)-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})) Start `5esn`=Relationship:@usn6(#usn8='s_str') Where Count(*) Starts With 07 Starts With $#usn7 Create Allshortestpaths(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) Union Detach Delete 0.12[Count ( * )..Count ( * )][$999..`5esn`],Allshortestpaths(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0}))[Reduce(@usn6=10.12e12 Starts With $`4esn` Starts With 0e0,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$1000 Contains $123456789 Contains #usn8)..Case 7[..123456789][..true] When $1000[..0e-0][..010] Then 999 Starts With 7.0e-0 Starts With true End][[`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]]..Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When 0.12[Count ( * )..Count ( * )][$999..`5esn`] Then $123456789[..$999][..`6esn`] Else 7[{`4esn`}..] End] Create Unique Shortestpath(((:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(`3esn` $0)<-[`7esn`:#usn8|:`` *01234567..{`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7}]-(#usn8 :usn2))) Delete @usn5[@usn6],{`5esn`}[{usn2}..$`1esn`]"), + octest_legacy:ct_string("Using Periodic Commit 7 Load Csv From 0xabc[01234567][.12e-12] As `2esn` "), + octest_legacy:ct_string("Return Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0]) Is Null Is Null As _usn3,1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As usn2,false[9e12] Order By 0xabc[01234567][.12e-12] Ascending,Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`8esn`}[..999][.._usn3]) Starts With Reduce(``=$#usn7 Ends With 999 Ends With {12},`2esn` In $@usn5 Is Not Null Is Not Null|{`6esn`} Starts With .12e-12) Descending Skip 2.12[10.12e12][_usn4] Limit $`5esn` In $12 In `2esn`"), + octest_legacy:ct_string("Match @usn6=((({@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})<-[:@usn5|:#usn7 *0X0123456789ABCDEF{`5esn`:9e-1 Contains 3.9e-1}]->(`6esn` $_usn3)<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),(((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`}))) Using Join On usn1,`1esn`,_usn4 Using Scan `8esn`:`2esn` Foreach(`3esn` In $7| With Distinct $`8esn` Is Not Null Is Not Null As _usn3 Order By Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Descending,\"d_str\" In 7.0e-0 Desc Skip Reduce(_usn3=7.0e-0[$`6esn`..],`7esn` In 0.12 Is Not Null|false Starts With 0 Starts With 2.9e1) =~Case $`3esn` =~0x0 When $12[$@usn5] Then 11.12e-12 In {usn1} When 4.9e12[{_usn4}..] Then $@usn5 Contains _usn3 Else .12e-12 Starts With .12e-12 End =~Reduce(_usn4=_usn4 Is Not Null Is Not Null,`2esn` In $@usn5 Is Not Null Is Not Null|7.0e-0 Is Not Null) Limit {_usn3:.0e-0[..``][..$7]}[..(`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`)][..@usn5] Load Csv With Headers From {`1esn`} Is Null As @usn6 Fieldterminator \"d_str\") Create (((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))),(usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[``:`1esn`|:`1esn`{@usn5:999[..$@usn5][..``],@usn5:0xabc[..Count(*)][..$`5esn`]}]-(`1esn` :``{_usn4:$@usn5 =~{`3esn`}}) Union All Remove Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {#usn8}[..@usn5]|{0}[.0e-0][$`2esn`]).@usn6?.``?,(`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[?:`1esn`|:`1esn`]-(:@usn5{`1esn`:$999 =~0e0 =~0X7})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12}).`7esn`,{_usn4:$7}.@usn5 Return Distinct 0.12[{@usn6}..{#usn7}] Order By Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) Ascending,Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Descending,.9e-1[`1esn`][7] Ascending Limit {`4esn`}[{`3esn`}][$`2esn`] Union With Distinct *,$`4esn`[#usn7][8.1e1] As `2esn` Skip .1e1 Contains 1e-1 Contains #usn8 Limit 9e1 Ends With `7esn` Ends With 2.12 Where .1e1 Is Not Null Is Not Null Detach Delete Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000),{`4esn`}[..{`2esn`}] Create Allshortestpaths(({`6esn`:8.1e1 Contains .9e-1 Contains false})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})),@usn6=Allshortestpaths(({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})<-[usn2:usn1|usn2]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null}))"), + octest_legacy:ct_string("Create `5esn`=Shortestpath((((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})))) Foreach(`2esn` In $#usn7 Ends With 999 Ends With {12}| Start `8esn`=Node( {`4esn`}) ,`7esn`=Rel:``('s_str')) Union Merge `4esn`=((`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[?$999]-(`8esn` :@usn6:_usn3)<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})) Start _usn3=Relationship:usn2(`8esn`=\"d_str\") Where $1000[..0e-0][..010] Create Unique (`1esn` {usn2:.9e-12[.12e12..][0Xa..]}),@usn6=Allshortestpaths(((`5esn` :_usn3)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}))) Union Delete {usn2}[9e-1],{`6esn`}[@usn5..{@usn6}] Merge Allshortestpaths(((`4esn` :@usn5)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[:`3esn`|`3esn` *1000..]->(`1esn` :`7esn`))) On Match Set usn2+=[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]][None(#usn7 In .0e-0 In 12 Where $12 In {usn2})..{`1esn`:{0} Is Null Is Null}][Extract(#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12|{`5esn`} Is Not Null Is Not Null)..Reduce(`7esn`=`7esn` Ends With 10.12e12,usn2 In $`5esn`[{`4esn`}][{0}]|@usn5[9e-1..{`1esn`}])] With (usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..]) As `2esn`,0.0[..9e1][..2.12] As `` Order By 01234567 Ends With .0e0 Ends With 12e12 Asc,{@usn6:{7} Starts With 0x0 Starts With 9e1}[Reduce(`5esn`=$999 Ends With `2esn` Ends With 12.0,_usn3 In `8esn`[_usn4]|_usn3 =~{7} =~123.654)..None(usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-1[1.9e0])] Ascending,$`6esn` Starts With 0.0 Desc Skip $12[{_usn3}..] Limit 9e0[{7}...0e-0][Null..@usn5] Where 12e12 Contains {0}"), + octest_legacy:ct_string("Foreach(`5esn` In {@usn5:$@usn5 Is Not Null Is Not Null} Contains None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[..0xabc][..{`6esn`}])| Delete 9e-1[0.0..],7.0e-0 Ends With {123456789} Ends With @usn6,{`3esn`} Is Not Null Is Not Null Return Distinct 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )],0 In 2.9e1 In 7 As usn2 Limit Any(usn1 In $@usn6 Is Null Is Null)[Case {_usn3}[{0}...9e-1][9e-1...0e0] When 010[..9e-1][..0X7] Then $0 Ends With $usn1 Ends With {``} End..Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]})))]) Union Remove (`3esn` )<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(`7esn` )<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}).#usn8,#usn7(07[{@usn5}..],{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1])._usn3.`4esn`? Union Remove All(#usn7 In .0e-0 In 12 Where 0xabc =~123456789).@usn6.#usn8!.`7esn`,Case {_usn3} In $#usn8 In $12 When `3esn` Starts With 9.1e-1 Starts With .9e-1 Then $1000[_usn4][{@usn5}] Else 12[@usn6][{`2esn`}] End._usn3!.#usn8?.`7esn`?,Case 010[...12e-12] When .9e1[$`1esn`..][$``..] Then Count ( * ) Starts With 0.12 End.`8esn`!.#usn8 Remove Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}).`8esn`!._usn3!._usn3!,Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))).`5esn`?.`8esn`?.@usn5?,[usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-12[010..{#usn7}][{123456789}..7]|Count(*)[..{#usn7}]]._usn4! Load Csv From \"d_str\" Contains {@usn6} As `3esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Remove Case When {1000}[..`5esn`][..9e12] Then Count(*)[..{#usn7}] End.`3esn`? Match `1esn`=((`4esn` :`8esn`{12})) Using Join On `4esn`,`5esn`,@usn6 Using Join On @usn5,_usn4 Where #usn7 =~$@usn5 =~{7} Union All Foreach(`4esn` In [usn2 In $`5esn`[{`4esn`}][{0}] Where $usn2[..$999][..#usn8]][2.9e1..][None(usn2 In .12e-12 Ends With `2esn` Where `7esn`[1.9e0..5.9e-12][9e0..@usn5])..]| Load Csv From {usn2} In false As `6esn` ) Match Shortestpath((:`2esn`:`4esn`{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({#usn7:12e12[.9e12..07]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->()),(`4esn` :`8esn`{12})-[_usn3:`6esn`]-(`3esn` :#usn8:@usn6)-[`1esn`]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]}) Using Index `7esn`:``(`8esn`) Where $usn2 Starts With $999 Starts With .0e0 Foreach(`7esn` In `1esn`[{usn1}..]| Remove None(#usn7 In .0e-0 In 12 Where `8esn`[.12e12..]).`5esn`!,Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0X0123456789ABCDEF Ends With {1000})._usn4?) Union Foreach(`8esn` In 2.12 Is Not Null Is Not Null| Create Unique usn2=Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Optional Match ((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})) Using Index #usn7:`4esn`(@usn5) Using Join On `4esn`,`2esn`,`` Where {123456789} Starts With $_usn4 Starts With 0x0) Create `3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})),(:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[`7esn`?:`7esn`|usn1 *1000..{@usn6:#usn7 In 07,#usn8:$999[usn1..0e-0]}]->(#usn8 :`5esn`:`7esn`{usn2})-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})"), + octest_legacy:ct_string("Remove _usn3(Distinct 9e1 Starts With $@usn6 Starts With 0e-0,0.12 =~`6esn` =~.9e-1).usn2? Foreach(`4esn` In {0}[..`3esn`][..8.1e1]| Optional Match `7esn`=(@usn5 :@usn5{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6})-[usn2?:`1esn`|:`1esn` *..123456789]-(:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[:_usn3]-(`3esn` ),(({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 {#usn7:$999 =~false =~{`8esn`}})) Where {#usn7} Starts With .1e-1) Merge Allshortestpaths(((`8esn` :`7esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 ))) Union Create Unique (:`3esn`{@usn5:9e12[..usn2][.._usn3]}) Union All Delete {`5esn`}[01234567..][5.9e-12..]"), + octest_legacy:ct_string("Return Distinct @usn5[9e-1..{`1esn`}] As ``,`1esn` Is Not Null As `6esn`,Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) Ends With `2esn` As @usn5 Order By {@usn5}[10.12e12..] Asc,{@usn5}[10.12e12..] Asc Limit Reduce(``=$`3esn` =~#usn8 =~0x0,usn2 In $`5esn`[{`4esn`}][{0}]|_usn3 =~{7} =~123.654) Contains [usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF] Contains Allshortestpaths(((`8esn` :`7esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 )))"), + octest_legacy:ct_string("Unwind .9e12 Contains 5.9e-12 Contains 9e-1 As `7esn`"), + octest_legacy:ct_string("Foreach(`` In Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null)| Start `7esn`=Rel:``('s_str') Where Null[$`3esn`..][`1esn`..]) With 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Order By $1000 Is Null Descending,7.0e-0 Ends With {123456789} Ends With @usn6 Descending Limit 1000[{`1esn`}..][$`3esn`..] Load Csv From 1.0 Is Not Null As usn2 Union Unwind $12[$`6esn`..][01..] As @usn6 Union Return *,9e1[12] As usn1,Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``})[`3esn`(Distinct 0 Starts With `7esn` Starts With 9e0,$`4esn` Is Null Is Null)][`7esn`(Distinct $`4esn` Ends With .12e12 Ends With 123.654)] Order By Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1) Starts With Case 7.0e-0[$`6esn`..] When \"d_str\"[0x0..{@usn6}][$@usn5..0] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else $`5esn`[{`4esn`}][{0}] End Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`) Asc,Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``})[`3esn`(Distinct 0 Starts With `7esn` Starts With 9e0,$`4esn` Is Null Is Null)][`7esn`(Distinct $`4esn` Ends With .12e12 Ends With 123.654)] Desc,{`5esn`} Asc Foreach(_usn4 In {`5esn`:$`6esn`[@usn6...9e-12]}[{usn1:$_usn3[0x0][{0}]}..Filter(_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`])][Case When .12e12 Ends With 07 Ends With 3.9e-1 Then 01234567[\"d_str\"..][$`4esn`..] End..Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End]| Start @usn6=Node:usn1({usn2}) ,`7esn`=Node:`5esn`({0})Where #usn7[123.654][{12}]) Create ``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))),``=Allshortestpaths(((@usn6 :@usn5)))"), + octest_legacy:ct_string("Remove Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]).`1esn`.#usn8!,Allshortestpaths(((`4esn` :`8esn`{12})))._usn3! Load Csv With Headers From usn1 =~false =~{999} As @usn6 Union All Delete $12[10.12e12][.1e1],{#usn7}[.9e-12][4.9e12] Start `4esn`=Node:@usn6(\"d_str\") Where $usn2 Is Not Null Is Not Null Remove Case When `2esn` Starts With 010 Starts With `` Then 00[$``] Else @usn6[0x0..][$_usn4..] End.`6esn`,All(usn2 In $`5esn`[{`4esn`}][{0}] Where $`8esn` Is Not Null Is Not Null)._usn4!._usn3?,Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})).`8esn`!"), + octest_legacy:ct_string("With {usn2} In false As `1esn`,\"d_str\"[0x0..{@usn6}][$@usn5..0] Limit (:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})-[_usn4:_usn3{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]}) Ends With (`5esn` {`2esn`:00[Null..usn2],`2esn`:3.9e-1[..$1000][..0.12]})<-[#usn8]->(`2esn` :_usn3{`6esn`:_usn4[{``}..{`6esn`}][$7..$_usn3],`6esn`:$`4esn` Ends With {999}})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12}) Ends With Allshortestpaths((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) Return Distinct [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End As `5esn`,0[..12][..{`8esn`}] As usn1,{usn1} Is Not Null As `` Order By 0.0[00..][0xabc..] Ascending,.9e-12[.12e12..][0Xa..] Desc,Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) Asc Limit 123456789[_usn4..`1esn`][$`6esn`..{@usn6}]"), + octest_legacy:ct_string("With $#usn8[$0..`3esn`][1e-1..$7] As `5esn`,{0} Is Not Null As `` Limit $_usn3 In `2esn` In `3esn` Where _usn3[{#usn7}] Start _usn4=Relationship:@usn6(\"d_str\") ,`8esn`=Rel:`1esn`(`1esn`={usn1}) Union All Load Csv With Headers From {_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}[Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)][[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1]] As usn2 Create _usn3=Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)),Allshortestpaths((`6esn` :`4esn`:usn2)-[? *0Xa..12{`4esn`:9e-12[$7..]}]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))"), + octest_legacy:ct_string("Using Periodic Commit 0Xa Load Csv With Headers From $#usn7[01..2.12][2.12..3.9e-1] As usn2 Fieldterminator 's_str' Foreach(`` In [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01|_usn4 Ends With {`8esn`} Ends With usn2][Any(usn1 In $@usn6 Is Null Is Null Where `3esn` Is Null)..]| Return Distinct Count(*)[{12}..{#usn8}] As @usn6,$123456789 =~1e-1,`5esn`({`5esn`}[01234567..][5.9e-12..],5.9e-12 Is Null Is Null)[Reduce(#usn7={12} Ends With $`3esn` Ends With 0xabc,usn1 In $@usn6 Is Null Is Null|`1esn`[Null][{@usn6}])..@usn5(`3esn` Contains `2esn` Contains {_usn4},2.9e1 In {``})][Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789}))..Any(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`)] As _usn4 Order By ({`5esn`:$`4esn` Ends With .12e12 Ends With 123.654,@usn6:{123456789} Contains $0})-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 {`2esn`:5.9e-12[0x0..]})-[`5esn`?:@usn5|:#usn7{`4esn`:9e-12[$7..]}]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})[[`6esn` In 010[{`1esn`}..] Where $12 Ends With 7.0e-0 Ends With 9e-12]..Reduce(`6esn`=$@usn5[``..],usn1 In {#usn7} =~.12e12 =~9e0|0xabc[..Count(*)][..$`5esn`])][Case When .1e1 Is Not Null Is Not Null Then @usn6 Starts With #usn7 When {1000}[`2esn`...0e-0][9e-1..0X7] Then $`8esn`[..12][..9e12] End..{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}] Desc Limit 12[11.12e-12..][`4esn`..]) Start `6esn`=Rel(7,0X7,0,01) "), + octest_legacy:ct_string("Using Periodic Commit 7 Load Csv From `8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End As `` Delete {`6esn`} =~2.12 =~123.654,$`5esn` In $12 In `2esn` Return Distinct *,Any(`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]) In Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4})"), + octest_legacy:ct_string("Load Csv From $`5esn` Contains .9e12 As _usn4 "), + octest_legacy:ct_string("Detach Delete Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] Match #usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2)))) Using Join On ``,usn1,`2esn` Where $@usn6[``..][3.9e-1..] Union Remove (`` {usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]})<-[?:`3esn`|`3esn` *999..123456789{_usn3:$`4esn`[$@usn6...12e12]}]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}).#usn8._usn3.@usn6? Union Load Csv From {`7esn`}[$12..123456789] As _usn4 Fieldterminator \"d_str\" Start `4esn`=Node:@usn6(\"d_str\") With {@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] As ``,2.12[010..][{999}..] Limit {0}[..`3esn`][..8.1e1]"), + octest_legacy:ct_string("Load Csv From .9e0 Is Null As `3esn` Start _usn4=Node:`1esn`(`4esn`={@usn5}) ,`2esn`=Rel:`6esn`(`4esn`=\"d_str\")Where $`1esn`[..12e-12][...9e12] Union Return Distinct $`` Ends With #usn7 Ends With _usn3 As _usn3,{@usn6:2.9e1[{`2esn`}],usn1:01 Contains 9e-12 Contains $7} Is Null Is Null As @usn6 Skip {`8esn`}[.0e0..][999..] Union Create Unique @usn6=((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))"), + octest_legacy:ct_string("Create Shortestpath(((#usn7 :`1esn`:``)<-[?:`4esn`|:`2esn`]-(_usn3 :`4esn`:usn2)-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}))),usn2=((`4esn` :`8esn`{12})) Union Create Unique (`8esn` :`6esn`),`8esn`=(({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})-[`2esn`?:@usn6|:`4esn` *010..0{`4esn`:Null[$`3esn`..][`1esn`..],_usn3:6.0e0[$#usn7..$1000]}]-(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]})-[`3esn`{`4esn`:12e12[.9e12..07]}]-(:`4esn`:usn2{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})) Return *,`4esn`[..7][..$usn2] As #usn8,Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $#usn7[01..2.12][2.12..3.9e-1]) =~_usn3(.0e-0 Ends With $`2esn` Ends With `5esn`,$usn1 =~.9e12 =~`6esn`) =~Reduce(_usn3=5.9e-12 Is Null Is Null,_usn3 In `8esn`[_usn4]|2.9e1[Count ( * )..]) As `8esn` Order By 0.0[$999][`6esn`] Asc Limit 10.12e12 Contains .9e0 Union All Foreach(usn2 In $usn1 Ends With {`2esn`} Ends With $usn1| Match `5esn`=(((`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[?:_usn3]->(`8esn` :usn1)-[?:`1esn`|:`1esn` *999..123456789]-(`8esn` :#usn7:`8esn`))),`5esn`=Shortestpath(((@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))) Using Scan `4esn`:#usn7 Using Scan `7esn`:`` Where .12e-12[@usn6..'s_str'] Start #usn7=Relationship:#usn8(usn2={12}) Where 01234567 Ends With .0e0 Ends With 12e12)"), + octest_legacy:ct_string("Match ``=((:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})-[?:`4esn`|:`2esn`{usn1:{123456789} Starts With `6esn`,@usn5:9e1 Ends With 9e12 Ends With 0x0}]-(`2esn` :usn1)) Using Index `6esn`:`6esn`(`7esn`) Foreach(#usn7 In 0e0 =~{12} =~{1000}| With Distinct *,$`5esn` Is Null As `1esn`,.0e-0[..01234567] Order By 0[10.12e12] Descending,`1esn`({`4esn`} Ends With Count(*),$usn1 Contains 4.9e12 Contains $`2esn`) Is Not Null Is Not Null Asc,{`1esn`} Contains 1.0 Contains 4.9e12 Desc Where $0 Ends With $usn1 Ends With {``}) Optional Match `5esn`=((`3esn` :`1esn`:``{usn1:$usn1[9e1][{999}],#usn8:0e-0[$``..10.12e12]})<-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]->({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(`4esn` :@usn5)) Union Unwind [_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12] As _usn3 Create Unique `7esn`=Allshortestpaths((`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})<-[_usn3? *..123456789{`6esn`:.0e-0[..``][..$7],usn2:{usn2} Ends With {@usn6} Ends With 1000}]-(`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(#usn8 :_usn4:`2esn`{`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})),((:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(`2esn` :_usn3)<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(:#usn7:`8esn`))"), + octest_legacy:ct_string("Merge @usn5=Allshortestpaths(((`8esn` :`8esn`)<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))) On Create Set {@usn5:$@usn5 Is Not Null Is Not Null}._usn3.`7esn` =(:`1esn`:``{`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]})-[:`1esn`|:`1esn` *999..123456789{@usn5:$999 Ends With `2esn` Ends With 12.0}]->(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}) Contains Case {`8esn`} In {_usn3} In 6.0e0 When 9e0[..{#usn7}][..`4esn`] Then .12e12 Is Not Null When #usn8[$`2esn`] Then 3.9e-1 Starts With .9e0 Starts With {#usn7} Else 8.1e1 Contains .9e-1 Contains false End Contains Extract(#usn7 In .0e-0 In 12 Where {0}[.0e-0][$`2esn`]) On Create Set usn2+=[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]][None(#usn7 In .0e-0 In 12 Where $12 In {usn2})..{`1esn`:{0} Is Null Is Null}][Extract(#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12|{`5esn`} Is Not Null Is Not Null)..Reduce(`7esn`=`7esn` Ends With 10.12e12,usn2 In $`5esn`[{`4esn`}][{0}]|@usn5[9e-1..{`1esn`}])] Start `2esn`=Rel( {``}) Where .9e1[$`1esn`..][$``..] Remove count(Distinct $1000 Starts With {@usn6} Starts With $@usn5)._usn3.usn1?,@usn5(Distinct $7[999..10.12e12][$`1esn`..{usn1}],$`5esn` Is Null).usn1.``?.#usn8 Union With {0} Is Not Null As ``,00 Is Not Null Is Not Null Limit Allshortestpaths((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) In Extract(#usn7 In .0e-0 In 12 Where {#usn8}[..@usn5]) In [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 10.12e12[usn2]|{1000} Starts With 10.12e12 Starts With .0e-0] Create Unique ``=Shortestpath((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})),`2esn`=Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}})<-[?{@usn5:@usn6[999][1000]}]-(:usn1{#usn8:2.9e1[{`2esn`}]})) Foreach(`2esn` In 010[.0e-0..\"d_str\"][.9e0..123.654]| Create Unique `6esn`=(@usn6 :`5esn`:`7esn`) Remove (:`1esn`:``{`8esn`:0X0123456789ABCDEF Ends With {1000}})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`6esn` :`4esn`:usn2).`2esn`!._usn4?.`4esn`!,Case `1esn` =~{12} =~{999} When .9e1[$`1esn`..][$``..] Then $12 Is Null Is Null When $#usn7[01..2.12][2.12..3.9e-1] Then $999 Ends With `2esn` Ends With 12.0 End.usn1!.`6esn`!.#usn7!) Union All Remove Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .12e12 Starts With 5.9e-12 Starts With `4esn`).`3esn`? Delete {`6esn`}[@usn5..{@usn6}],00[$_usn4][$`1esn`] Create @usn5=Allshortestpaths(({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})<-[#usn7?]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})),#usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))))"), + octest_legacy:ct_string("Unwind [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..] As `2esn` Union All Merge Shortestpath((#usn8 {usn2:$0 Ends With 9e-12 Ends With $_usn4,`5esn`:0e-0[{@usn6}]})-[`8esn`?:_usn3]->(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})) On Create Set count(01234567 =~12e12 =~.0e-0,$999 Is Not Null).@usn6?.`1esn`.`8esn`? =All(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Ends With Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789 Is Not Null Is Not Null|{`8esn`}[@usn5][$`2esn`]) Ends With (#usn8 :`5esn`:`7esn`{usn2})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )-[_usn4? *..0x0{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null}),.12e12._usn3? =01[`4esn`..] Merge `4esn`=(`7esn` :``{usn2:$7})-[:#usn8|:`` *..07{@usn5:01234567[\"d_str\"..][$`4esn`..],`6esn`:$usn1 Ends With {`2esn`} Ends With $usn1}]->(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1}) On Create Set (`3esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[?:`4esn`|:`2esn` *01]-(`` :``).`1esn`.@usn5! =None(`` In `7esn` =~#usn8 =~\"d_str\" Where $`4esn` In {999}) Starts With ({usn1:12[..$`5esn`]})-[:`1esn`|:`1esn` *999..123456789{@usn5:$999 Ends With `2esn` Ends With 12.0}]->(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}) Starts With Case When $#usn8 Is Not Null Is Not Null Then $#usn8[$0..`3esn`][1e-1..$7] When $`` Starts With $`4esn` Starts With `3esn` Then .12e12[$usn1..][{@usn6}..] End,#usn7+=.9e-1 Is Null Is Null Unwind `1esn` In 010 In 1e-1 As `8esn` Union All Load Csv From {_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}[Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)][[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1]] As `5esn` Fieldterminator 's_str' Return Distinct *,$`8esn` Contains _usn4 As `8esn`,Count(*)[@usn5..] As #usn8 Limit 2.12[`4esn`][.9e-1]"), + octest_legacy:ct_string("Using Periodic Commit 12 Load Csv From `1esn`[{@usn5}..][{_usn4}..] As `6esn` "), + octest_legacy:ct_string("Merge (#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}) On Create Set {_usn3:$999 Is Not Null}.@usn6! =_usn4 On Create Set @usn5 ={``}[$usn2..00][{_usn3}..123.654],_usn4 =Reduce(`3esn`=`7esn`[1.9e0..5.9e-12][9e0..@usn5],`` In `7esn` =~#usn8 =~\"d_str\"|{_usn3}[{0}...9e-1][9e-1...0e0])[Case false Contains {`7esn`} When `3esn` Is Null Then `1esn` Is Not Null Is Not Null Else .9e-1 Is Null Is Null End..][Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999})..],{@usn5:`2esn`}.``! =\"d_str\" Starts With `` Foreach(usn2 In {123456789} In \"d_str\"| Unwind \"d_str\" In usn2 In $`7esn` As @usn6 Optional Match @usn5=Shortestpath((`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})<-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-(@usn5 :@usn6:_usn3{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`2esn` *1000..{`2esn`:{@usn6} In 9e12}]->(:usn1{usn1:true In 0.0,@usn5:{`1esn`} Is Null})) Where `6esn`[$@usn5][01]) Union All With $12 Ends With 7.0e-0 Ends With 9e-12 As usn1,{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] As ``,9e-1 Contains .12e-12 Contains $0 Order By `6esn`[$@usn5][01] Descending,{`5esn`} Desc Skip 123.654 Is Not Null Is Not Null Limit Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null"), + octest_legacy:ct_string("Detach Delete All(#usn8 In 07[..$`5esn`] Where $@usn6 Starts With 0xabc Starts With {`7esn`})[Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null|.0e0[usn1..7.0e-0][$`5esn`...9e-12])..],$`3esn` =~#usn8 =~0x0 Start usn2=Relationship:#usn8(usn2={@usn5}) Where `2esn`[`7esn`][1000] Match #usn8=Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789})),`4esn`=Allshortestpaths(((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null}))) Where .9e12 Contains 0 Contains $0"), + octest_legacy:ct_string("Foreach(usn2 In 0.12 Ends With 7 Ends With 12| Load Csv From $`8esn`[..5.9e-12][..`8esn`] As `` Fieldterminator 's_str') Remove Extract(usn1 In $@usn6 Is Null Is Null|010[...12e-12]).``.usn2?.usn1?,@usn5(`3esn` Contains `2esn` Contains {_usn4},2.9e1 In {``}).#usn8,Shortestpath((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})).`8esn`? Remove [usn1 In $@usn6 Is Null Is Null Where $`1esn`[4.9e12..][_usn3..]|$1000 Is Null].`8esn`?,Reduce(`3esn`=.1e1[{@usn6}][true],_usn3 In `8esn`[_usn4]|.9e-1 Contains .9e0 Contains ``).`5esn`.usn2?.`7esn` Union All Unwind Allshortestpaths((_usn4 {`3esn`:.0e-0 In 12})) Is Null Is Null As `4esn` Remove {#usn7:1e-1[$`4esn`]}.`1esn`!.usn1?.`4esn`!,[`6esn` In 010[{`1esn`}..] Where $usn1[..$999][..0e0]|true[1.9e0..]].@usn6! With Distinct * Where $123456789[{usn1}][.12e-12]"), + octest_legacy:ct_string("With 9e1 =~$`8esn` =~10.12e12 Limit 5.9e-12[\"d_str\"..][{`6esn`}..] Where {`8esn`}[..999][.._usn3] Unwind Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[$usn1..])[..Shortestpath((((`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn2 *7]-(`8esn` {_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}))))][..{`3esn`:$`6esn` Starts With 0.0,#usn8:$usn1 =~.0e0 =~{`4esn`}}] As @usn6 Create Unique #usn7=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 ))) Union All With Distinct {@usn5} As usn1 Skip Shortestpath(((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(_usn3 :usn1)))[..{_usn4:.9e-1 Ends With .0e-0 Ends With {_usn3},_usn4:9e1 Ends With 9e12 Ends With 0x0}][..Reduce(#usn8=`8esn`[_usn4],`1esn` In $12 In {usn2}|$`4esn` Is Not Null)] Optional Match Shortestpath(((`7esn` {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))) Using Join On `2esn`,`6esn` Using Join On `4esn`,`2esn`,`` Where #usn8 Is Null Is Null Detach Delete {999} =~$`6esn` =~$`6esn`,9e0[`7esn`..][#usn8..],$`4esn` Contains `4esn` Contains .0e-0 Union All Optional Match Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),_usn3=(#usn7 :@usn6:_usn3)-[`6esn`?:@usn5|:#usn7{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}) Foreach(#usn7 In .0e0 Starts With $usn1 Starts With {`6esn`}| Load Csv From $1000[$`2esn`..] As `1esn` Create (:@usn5),_usn3=((`1esn` :`8esn`)<-[:usn1|usn2]-(`` :`4esn`:usn2)<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``)))"), + octest_legacy:ct_string("Unwind $`6esn`[..01][..{_usn3}] As #usn7 Optional Match Shortestpath(((`` :`7esn`))),Allshortestpaths((:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[*{usn1:{`6esn`} In .0e0 In $0,usn1:07[..$`5esn`]}]-(:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})) Using Index @usn5:`5esn`(usn2) Using Index @usn5:usn1(`4esn`) Create Unique ((#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[@usn6?{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}))"), + octest_legacy:ct_string("Delete {12} Ends With 1e1,(`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Is Not Null Is Not Null,[`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where .0e-0[..``][..$7]|0[..12][..{`8esn`}]] Ends With Single(`2esn` In $@usn5 Is Not Null Is Not Null Where .9e1[$`1esn`..][$``..]) Ends With All(@usn6 In 9e12[..usn2][.._usn3] Where `8esn`[_usn4]) Remove Reduce(usn1=Null In {7},`3esn` In 8.1e1 Contains .9e-1 Contains false|00[$_usn4][$`1esn`]).usn1?,Reduce(@usn6=$`8esn` =~{`6esn`} =~12,#usn7 In .0e-0 In 12|123456789[_usn4..`1esn`][$`6esn`..{@usn6}]).`3esn`!,Case 7 Starts With 9e-12 When .9e12 Is Not Null Is Not Null Then 1000[{`1esn`}..][$`3esn`..] Else {`6esn`}[6.0e0..9e0][.9e1..12e12] End.`1esn`"), + octest_legacy:ct_string("Create Shortestpath(((`7esn` {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))),`5esn`=Shortestpath((((#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})<-[? *1000..]->({usn1:true In 0.0,@usn5:{`1esn`} Is Null})<-[`4esn`?:`4esn`|:`2esn`]->(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})))) Create Unique `4esn`=((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})<-[ *01234567..{usn1:{12} Contains `8esn` Contains @usn5}]->(usn1 :@usn6:_usn3)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})),(:`3esn`{@usn5:9e12[..usn2][.._usn3]})<-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]->(:`5esn`:`7esn`{`1esn`:{1000}[..`5esn`][..9e12]})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1}) Union Create (#usn8 :_usn4:`2esn`) Delete Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {12} Ends With $`3esn` Ends With 0xabc)[Case When {0} Is Null Is Null Then $``[1.0..][_usn3..] Else 999[..$@usn5][..``] End..],Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null,$0 =~{@usn5} =~1e1 Start _usn4=Node:@usn6(#usn8='s_str') Union Start `4esn`=Node:usn2(usn1={_usn3}) ,`4esn`=Node:@usn6(\"d_str\")"), + octest_legacy:ct_string("Create Unique `5esn`=Allshortestpaths((({`6esn`:8.1e1 Contains .9e-1 Contains false}))) Return {1000} Is Null As `2esn`,(`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` Ends With 10.12e12) As `8esn`,$`` =~$_usn3 Order By {`5esn`} Desc,@usn5 =~$#usn7 =~{usn1} Ascending Skip .12e-12[9e1] Limit (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])] Match _usn4=Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]}))),`3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})) Using Join On `6esn`,_usn3 Using Index @usn5:@usn6(`5esn`) Union All Optional Match `4esn`=(#usn7 :@usn5)-[:`8esn`|:#usn8 *0X7..0Xa]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(_usn4 :`5esn`:`7esn`{_usn4:$_usn3[.0e-0..999]}),({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`}) With @usn5[9e-1..{`1esn`}] As ``,`1esn` Is Not Null As `6esn`,Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) Ends With `2esn` As @usn5 Limit [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]][None(#usn7 In .0e-0 In 12 Where $12 In {usn2})..{`1esn`:{0} Is Null Is Null}][Extract(#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12|{`5esn`} Is Not Null Is Not Null)..Reduce(`7esn`=`7esn` Ends With 10.12e12,usn2 In $`5esn`[{`4esn`}][{0}]|@usn5[9e-1..{`1esn`}])] Where {`1esn`} Contains 1.0 Contains 4.9e12 Union All Foreach(@usn6 In $0 Ends With $usn1 Ends With {``}| Remove Shortestpath((({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))).@usn5.`1esn`?,{@usn5:{0} In {`1esn`}}.#usn7?.`4esn`! Load Csv From 0.12 In $`` As usn2 )"), + octest_legacy:ct_string("Match _usn4=((_usn3 :`6esn`)<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})),Allshortestpaths(((`1esn` :usn2{`8esn`:12.0[...0e0]}))) Where $`5esn`[$_usn3][$12] Return Distinct {@usn6:$12 Is Null} In (`4esn` {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}) As usn2,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null Limit 01 =~07 Remove {`7esn`:`3esn` Starts With 9.1e-1 Starts With .9e-1}.@usn6?,All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 0 In 2.9e1 In 7).#usn7!,#usn8(Distinct _usn4 Ends With {`8esn`} Ends With usn2).`6esn`?"), + octest_legacy:ct_string("With Distinct *,None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0) Optional Match (:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})<-[usn2?:`2esn`|`5esn`{``:{#usn7} =~$@usn6 =~$7}]->(usn2 :`2esn`:`4esn`{`6esn`:Count(*)[$7]}),Shortestpath((#usn8 :`5esn`:`7esn`{usn2})) Unwind `4esn` =~_usn4 =~0e-0 As `7esn` Union All Unwind $usn1[0e0...9e-12] As usn1 Match (`6esn` :_usn4:`2esn`) Using Index _usn3:usn2(`4esn`) Using Scan #usn8:`1esn` Where $`5esn` =~Count(*) =~1.9e0 Load Csv With Headers From 9e-1[{7}..1e-1][0.12..{12}] As @usn6 Union All Return *,0.12 In $`4esn` In $`3esn` As usn1 Skip #usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Limit Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] With Distinct *,0.12 In $`4esn` In $`3esn`,{`8esn`} In {_usn3} In 6.0e0 As `5esn` Order By {`3esn`} Is Not Null Is Not Null Ascending,01234567 Ends With .0e0 Ends With 12e12 Descending,Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) Asc Skip .9e1 In {#usn7} In .9e-12"), + octest_legacy:ct_string("Unwind {@usn6} In 9e12 As usn2 Unwind Case 9e-12[$7..] When {``} Is Null Is Null Then .9e12 Contains 0 Contains $0 When Null Then $@usn6[.1e-1][9e12] End[..Extract(usn1 In $@usn6 Is Null Is Null Where 0Xa In 1.0 In $@usn5|Null[#usn7..][9.1e-1..])][..(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`3esn`?:`1esn`|:`1esn`]-(#usn8 {``:@usn6 Starts With #usn7,@usn6:7[..123456789][..true]})] As `2esn` Remove Any(#usn7 In .0e-0 In 12 Where 123.654 Ends With {1000} Ends With 9e12).usn2.`6esn`.#usn7?,_usn3({`5esn`} Is Not Null Is Not Null,$usn1 Contains 4.9e12 Contains $`2esn`).usn2?,Any(`7esn` In 0.12 Is Not Null Where 01234567[1000..][$`8esn`..]).`1esn`.usn2?.usn1!"), + octest_legacy:ct_string("Using Periodic Commit 0X0123456789ABCDEF Load Csv From #usn7 Is Null Is Null As `2esn` Fieldterminator 's_str' Merge Shortestpath((((:`3esn`{usn2:01234567[10.12e12][0Xa]})-[_usn3?{`8esn`:{usn2} Is Not Null Is Not Null}]->({`7esn`:.9e12 Is Not Null Is Not Null})-[#usn8?:`4esn`|:`2esn` *7{`6esn`:{0} Ends With 0Xa,usn1:.9e1 Is Null Is Null}]->({`1esn`:01 =~{_usn3} =~01,`8esn`:{#usn7} Ends With 999 Ends With 12})))) On Create Set `4esn` =Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null,{``:`6esn` =~999 =~$999}.`3esn`! =.1e1 In $999 In {#usn8},@usn5 =9e1 In $1000"), + octest_legacy:ct_string("Merge (:`4esn`:usn2{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[`3esn`?:`1esn`|:`1esn`]-(`7esn` :usn1)<-[:`4esn`|:`2esn`{usn1:3.9e-1 Contains $@usn5}]->(@usn6 {``:$`6esn` Starts With 0.0}) On Match Set @usn6+=00 =~`4esn` =~.9e-12,`3esn` =$123456789,[usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF].`5esn`! =.0e-0 Ends With $`2esn` Ends With `5esn` With Distinct $`8esn`[{`2esn`}..11.12e-12][{`7esn`}..@usn5],{999} Contains $12 Contains 00 As usn2 Order By {`8esn`}[..`5esn`][..01] Asc,[@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..] Asc Where {#usn7} Is Not Null Unwind 00[{1000}] As usn1 Union All Unwind 0.0[$`4esn`] As `2esn` Create Allshortestpaths(((:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))),((usn2 :`2esn`:`4esn`)<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]->(_usn4 :`6esn`$_usn3)-[usn2?*]->(@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})) Remove (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)}).``"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv From [@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null] Starts With Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789) Starts With All(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0) As _usn4 Fieldterminator 's_str'"), + octest_legacy:ct_string("With Distinct Allshortestpaths((({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)))[Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0])..][Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End..] As #usn8,{12} Ends With 1e1 As `8esn` Skip {@usn6:$12 Is Null} In (`4esn` {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}) Where @usn6 Ends With $`2esn` Ends With 1.0 With {usn2} In false,{_usn4} In 0X7 In 0e0 As `2esn` Order By {#usn8} In {12} In .9e12 Asc,9e0[`1esn`..0e-0][00..`1esn`] Ascending With $12 As _usn4 Order By 123.654 Is Not Null Is Not Null Descending,(`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End] Asc,Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1) Starts With Case 7.0e-0[$`6esn`..] When \"d_str\"[0x0..{@usn6}][$@usn5..0] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else $`5esn`[{`4esn`}][{0}] End Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`) Asc Skip true In 0.0 Where `3esn` =~$#usn7 Union All Remove Reduce(`3esn`={usn2} Is Not Null Is Not Null,`7esn` In 0.12 Is Not Null|$@usn5 =~{`3esn`})._usn4! Union Merge Shortestpath((`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[:`1esn`|:`1esn` *0{`8esn`:2.12[{12}],`7esn`:$@usn6[``..][3.9e-1..]}]->(:`2esn`:`4esn`{usn2:$@usn6[.1e-1][9e12],`5esn`:12e12 Is Not Null Is Not Null})-[`5esn`?:#usn7|:@usn5{usn2:#usn7[123.654][{12}]}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})) On Create Set _usn3+=Case {`4esn`} Ends With Count(*) When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] When $#usn7 Contains 3.9e-1 Then 123.654[10.12e12..$12][6.0e0..{#usn8}] Else $usn1[0e0...9e-12] End[Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))..][Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})..],#usn7+=[`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|01[$`1esn`..$`7esn`][{usn2}..12.0]][(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]-(:_usn3{_usn3:010[..9e-1][..0X7]})..][[`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 0X0123456789ABCDEF Is Not Null Is Not Null]..],Case When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else `6esn`[3.9e-1..`8esn`][12.0..0.0] End.`7esn`?.`5esn`?.#usn8! =7.0e-0 Is Not Null Create `1esn`=Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))),usn2=((:`7esn`{`4esn`:@usn5 =~$#usn7 =~{usn1}})-[`8esn`{#usn8:.12e12[..7]}]-({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`1esn`? *0{@usn6:true Is Null}]-(_usn4 ))"), + octest_legacy:ct_string("Load Csv With Headers From Filter(#usn7 In .0e-0 In 12 Where 00[$``])[[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $`4esn`[usn2..]|3.9e-1 Contains $@usn5]] As usn1 Fieldterminator \"d_str\" Merge (({`3esn`:`5esn` Ends With Count(*)})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2)-[?:@usn5|:#usn7 *0]->({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})) On Create Set usn2+=Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null),#usn8 =None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) Merge `1esn`=Allshortestpaths((_usn3 {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})) On Match Set @usn6 =$@usn6[.1e-1][9e12] Union Delete $`1esn`[$`3esn`..`8esn`],Reduce(`6esn`=`2esn`[`7esn`][1000],usn2 In .12e-12 Ends With `2esn`|010[..9e-1][..0X7]) Contains `7esn` Contains Case When 9e1 Ends With 9e12 Ends With 0x0 Then {12} Ends With 1e1 Else `4esn` Contains 0X0123456789ABCDEF Contains $usn2 End Optional Match #usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2)))),(((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))) Using Scan `1esn`:`` Using Index _usn3:`3esn`(`4esn`) Return Distinct *,3.9e-1[{@usn6}..][01234567..] Skip 9e0[{7}...0e-0][Null..@usn5] Limit 0X0123456789ABCDEF[1e1..] Union All Match #usn8=Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[`7esn`:`4esn`|:`2esn`*{``:true Is Null,_usn3:$12 Ends With 7.0e-0 Ends With 9e-12}]->({`6esn`:3.9e-1[..$1000][..0.12]}))) Using Join On `4esn`,`2esn`,`` Remove {`8esn`:false Starts With 0 Starts With 2.9e1,@usn6:010 Starts With 9e12 Starts With 1000}.`3esn` Load Csv From (`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Is Not Null Is Not Null As `1esn` "), + octest_legacy:ct_string("Return Distinct {@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] As `` Order By $`1esn`[..12e-12][...9e12] Asc,`4esn` =~_usn4 =~0e-0 Descending,{12} Is Null Is Null Descending Skip Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]) Is Not Null Is Not Null Limit {7}[#usn7..0xabc] Create Unique `6esn`=((:#usn7:`8esn`{usn2:`1esn` =~{12} =~{999}})),(({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})<-[_usn4 *010..0{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}]-($123456789))"), + octest_legacy:ct_string("Merge @usn6=Allshortestpaths((((@usn6 :`5esn`:`7esn`)-[`8esn`{#usn8:.12e12[..7]}]-({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})))) On Create Set {#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}._usn3!.`6esn`!.`5esn` =`3esn`[{`4esn`}] On Create Set (@usn6 :@usn5)-[`3esn`? *..07]-(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]}).usn1!.`3esn`.`2esn`! ={`4esn`}[..{`2esn`}],@usn6 =$usn1[..$999][..0e0] Return .1e-1 Starts With @usn6 Starts With _usn3,Shortestpath((:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})) Starts With {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF} Starts With Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})),(usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..])"), + octest_legacy:ct_string("Return Distinct {0}[.1e-1..][_usn4..],`3esn` Contains 1000 Contains 7.0e-0 Order By $@usn6[...9e-1] Descending,$#usn7 Starts With $123456789 Descending,Case {1000}[..{usn1}][..1e-1] When {@usn5}[10.12e12..] Then 1.0 Is Null Is Null When {`3esn`} Is Not Null Is Not Null Then .1e1 Contains 1e-1 Contains #usn8 Else $`5esn`[{`4esn`}][{0}] End[..{usn1:1.9e0[..0][.._usn3],`7esn`:1.9e0[.12e-12][9e-12]}][..{`1esn`:{0} Is Null Is Null}] Asc Union All Create Allshortestpaths((((:`7esn`{usn2:00 Is Not Null Is Not Null})<-[`8esn`? *..123456789{@usn6:5.9e-12[\"d_str\"..][{`6esn`}..],`7esn`:{@usn5}[10.12e12..]}]->(:`3esn`{usn2:01234567[10.12e12][0Xa]})<-[ *1000..{`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]->(`` )))),usn1=((`4esn` :_usn4:`2esn`{#usn8:\"d_str\" Contains {@usn6}})<-[?{@usn5:@usn6[999][1000]}]->(`1esn` ))"), + octest_legacy:ct_string("With Distinct *,$`4esn`[#usn7][8.1e1] As `2esn` Skip .1e1 Contains 1e-1 Contains #usn8 Limit 9e1 Ends With `7esn` Ends With 2.12 Where .1e1 Is Not Null Is Not Null Detach Delete Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000),{`4esn`}[..{`2esn`}] Create Allshortestpaths(({`6esn`:8.1e1 Contains .9e-1 Contains false})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})),@usn6=Allshortestpaths(({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})<-[usn2:usn1|usn2]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null})) Union Start `6esn`=Rel:@usn6(`8esn`='s_str') Load Csv With Headers From {123456789} =~@usn5 As _usn4 Union All Unwind 4.9e12 In 9e12 In .9e-12 As `8esn` Optional Match usn1=((`4esn` :_usn4:`2esn`{#usn8:\"d_str\" Contains {@usn6}})<-[?{@usn5:@usn6[999][1000]}]->(`1esn` )) Detach Delete {`6esn`} In {_usn4} In $12,{``} Contains 0.0 Contains `4esn`,[`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0|$usn1[9e1][{999}]] In @usn5() In Case When $#usn7 Contains 3.9e-1 Then .12e12 Starts With 5.9e-12 Starts With `4esn` When {1000}[`2esn`...0e-0][9e-1..0X7] Then 010[...12e-12] End"), + octest_legacy:ct_string("Create _usn4=({`5esn`:`1esn` In 010 In 1e-1})<-[?:@usn6|:`4esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]-(`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})"), + octest_legacy:ct_string("Delete $@usn5 Starts With #usn7,999 Starts With 7.0e-0 Starts With true,{`8esn`}[..999][.._usn3] Union All Detach Delete `7esn`[1.9e0..5.9e-12][9e0..@usn5],[usn2 In $`5esn`[{`4esn`}][{0}] Where $usn2[..$999][..#usn8]][2.9e1..][None(usn2 In .12e-12 Ends With `2esn` Where `7esn`[1.9e0..5.9e-12][9e0..@usn5])..],8.1e1 Contains $@usn6 Create Unique Shortestpath((:`3esn`)),`3esn`=(usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})"), + octest_legacy:ct_string("Remove All(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where {1000}[0..]).usn2,Extract(#usn7 In .0e-0 In 12 Where {0}[.0e-0][$`2esn`]).`8esn`!"), + octest_legacy:ct_string("Unwind exists(`7esn` In _usn4 In $`7esn`,9e1 Ends With `7esn` Ends With 2.12)[..Reduce(#usn8=5.9e-12 Contains {12} Contains {#usn8},usn1 In \"d_str\" Contains {@usn6}|{`6esn`}[@usn5..{@usn6}])][..Extract(usn1 In \"d_str\" Contains {@usn6} Where {`1esn`} Is Null|`` Contains {`6esn`} Contains 123456789)] As _usn4"), + octest_legacy:ct_string("Delete $`8esn` Contains _usn4,{usn2} Contains {0} Unwind {@usn6} =~Count ( * ) =~1.0 As `4esn` Create Allshortestpaths((_usn3 {#usn7:$999 =~false =~{`8esn`}})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})),Shortestpath(((`1esn` :`5esn`:`7esn`))) Union With Distinct 0[..12][..{`8esn`}] As _usn3,{`2esn`} Contains 0xabc Order By ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[_usn3?:@usn5|:#usn7]->(`` :``)-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Starts With Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`) Ascending,`3esn` =~$#usn7 Desc Limit Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where $usn2[..$999][..#usn8])[Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`)..] Union With {`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]} In Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}))) In Extract(_usn3 In `8esn`[_usn4] Where 0[..{#usn7}][..$_usn3]|0x0 Ends With #usn8 Ends With .9e-1) As `` Order By `4esn` =~_usn4 =~0e-0 Ascending Limit None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Starts With {@usn5:999 Ends With {#usn8},_usn4:Null In {7}} Where 0e0 =~{12} =~{1000} Remove None(#usn8 In 07[..$`5esn`] Where 0.0[$`4esn`])._usn3?.``._usn3! Remove {usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}.#usn7?,All(`` In `7esn` =~#usn8 =~\"d_str\" Where {12} Starts With $`` Starts With 0X0123456789ABCDEF)._usn4?.`6esn`"), + octest_legacy:ct_string("Using Periodic Commit 07 Load Csv With Headers From `2esn`[`7esn`][1000] As `2esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Using Periodic Commit 07 Load Csv With Headers From _usn4[{`3esn`}][00] As `6esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Return Distinct (:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 ) Ends With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) As `4esn`,#usn7 Contains .0e0 Contains $@usn6 As @usn6,999 Ends With {#usn8} As `7esn` Order By .9e12 Is Not Null Is Not Null Descending Skip .9e-1 Contains {#usn7} Limit `7esn` Ends With $123456789 Ends With 1e-1 With Distinct 0xabc[9.1e-1..] As usn2 Order By 0xabc Starts With 12 Starts With 0e-0 Descending,{`7esn`}[0.12] Ascending"), + octest_legacy:ct_string("Unwind ``[$#usn7] As `3esn` Detach Delete 010[.0e-0..\"d_str\"][.9e0..123.654],1.9e0 In $@usn6 In $_usn3,Reduce(@usn6=0X0123456789ABCDEF Ends With {1000},usn1 In $@usn6 Is Null Is Null|.0e0 =~0 =~.0e0) Starts With None(`6esn` In 010[{`1esn`}..] Where _usn4 Ends With {`8esn`} Ends With usn2) Starts With Case When 01234567 Ends With .0e0 Ends With 12e12 Then @usn6 Starts With #usn7 Else .12e12 Ends With 07 Ends With 3.9e-1 End Union All Load Csv With Headers From {`8esn`}[9e-12..0] As `` With Distinct *,Any(usn2 In $`5esn`[{`4esn`}][{0}] Where .1e-1[2.9e1..][$`7esn`..]) Contains Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Contains Allshortestpaths((_usn3 :`4esn`:usn2)),9e1[...9e1][..$`6esn`] As `4esn` Create Unique `1esn`=((`4esn` :`8esn`{12}))"), + octest_legacy:ct_string("Match `2esn`=Allshortestpaths(((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]}))),#usn8=((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})-[?:#usn7|:@usn5 *..00]-(:@usn5{`7esn`:01234567[\"d_str\"..][$`4esn`..]}))"), + octest_legacy:ct_string("Unwind 0X0123456789ABCDEF[1e1..] As @usn5 Merge `2esn`=Shortestpath(((`4esn` :`3esn`))) Union Match _usn4=Shortestpath((_usn4 {`3esn`:.0e-0 In 12})),((`` :`4esn`:usn2)<-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]-(#usn7 {usn1:2.12[{12}]})) Start usn2=Node:_usn3(`7esn`='s_str') ,`8esn`=Rel:#usn7(\"d_str\")Where {`6esn`} Starts With @usn6"), + octest_legacy:ct_string("With Distinct Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End In (:usn1)<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}) In [_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|usn2 Ends With $123456789 Ends With {999}] As _usn4 Skip $_usn3 Contains 1.0 Contains 0.12 Remove (_usn3 :`1esn`:``{`8esn`:{#usn8} In {12} In .9e12})<-[ *1000..{`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]->(`` ).#usn8?"), + octest_legacy:ct_string("Foreach(#usn8 In 9e12 Is Null| Unwind Allshortestpaths(((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}))) Is Null Is Null As usn2 Remove Filter(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12).`3esn`?.`7esn`?,Allshortestpaths((((`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})-[`8esn`:`4esn`|:`2esn`]->(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})))).`3esn`) Detach Delete [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End,8.1e1[$``] Remove (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)}).`8esn`.`3esn`?,@usn6:usn2"), + octest_legacy:ct_string("Using Periodic Commit 0X7 Load Csv With Headers From $`1esn`[9e0..$12] As _usn3 Unwind .12e12[..7] As #usn8 Delete 1e1 Ends With 12 Ends With 999"), + octest_legacy:ct_string("Unwind [`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] As `8esn` Merge `8esn`=(@usn6 :`5esn`:`7esn`) On Match Set (`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[? *..123456789{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:`7esn`{`5esn`:{`8esn`} Starts With .9e-1 Starts With 1000})._usn3._usn3?.`6esn`! =(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}) Is Not Null,#usn8 =0[4.9e12] Remove Extract(`7esn` In 0.12 Is Not Null Where {`1esn`}[{usn2}]|9e1 Ends With `7esn` Ends With 2.12).`2esn`?.`1esn`.usn2!,Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where {`3esn`} =~$@usn5 =~`2esn`|$1000 Starts With {@usn6} Starts With $@usn5).`3esn`?.`3esn`?.`4esn`? Union All Foreach(@usn5 In $`` Ends With 1e-1 Ends With $@usn6| Return *,_usn4[{``}..{`6esn`}][$7..$_usn3] Order By 9e0 Ends With {7} Desc,`4esn` =~_usn4 =~0e-0 Descending) Union All Return Distinct $`` Ends With #usn7 Ends With _usn3 As _usn3,{@usn6:2.9e1[{`2esn`}],usn1:01 Contains 9e-12 Contains $7} Is Null Is Null As @usn6 Order By `6esn`[..$0][..{7}] Asc,Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null) In `4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`) Ascending,{123456789} =~@usn5 Asc Limit Single(_usn3 In `8esn`[_usn4] Where `3esn` Contains `2esn` Contains {_usn4}) In Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`) In {7} With *,$999 Ends With `2esn` Ends With 12.0 As #usn8,All(usn1 In $@usn6 Is Null Is Null Where $`1esn`[4.9e12..][_usn3..])[..@usn5(Count(*)[Count ( * )][{0}],`4esn` =~010)] As `3esn`"), + octest_legacy:ct_string("Load Csv With Headers From 0e0 Contains {`2esn`} As `2esn` Fieldterminator \"d_str\" Create ((`1esn` :`7esn`{usn1:3.9e-1 Starts With .9e0 Starts With {#usn7}})-[usn2? *01234567..]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})) Unwind None(#usn8 In 07[..$`5esn`]) Starts With (:#usn7:`8esn`{`5esn`:false[..usn2][..999]})<-[`7esn`:`4esn`|:`2esn`*{``:true Is Null,_usn3:$12 Ends With 7.0e-0 Ends With 9e-12}]->(`` :`7esn`) Starts With All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 123.654 Ends With {1000} Ends With 9e12) As `3esn`"), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv From $12 Contains false Contains {`1esn`} As usn1 Fieldterminator \"d_str\" Delete None(@usn6 In 9e12[..usn2][.._usn3] Where Count ( * )[_usn4..]) Is Null Is Null,{`5esn`}[.1e-1..1e-1][999..{_usn3}],$_usn3 Is Null Start `7esn`=Node:``(_usn3='s_str') Where 3.9e-1 Ends With {usn1} Ends With {`5esn`}"), + octest_legacy:ct_string("Create #usn7=(((:`3esn`)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1})))"), + octest_legacy:ct_string("Return Distinct Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null As #usn8,.9e1 Is Null Is Null As #usn8,00[..@usn6] Order By 12 Ends With 12e12 Asc,.9e12 Starts With 0X7 Starts With .9e-1 Asc Skip 00[Null..usn2] Limit 01[{usn2}..][1.9e0..] Return Distinct None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0) As usn2 Skip $#usn7[01..2.12][2.12..3.9e-1] Limit `5esn` Ends With Count(*) Union All With Distinct *,1.9e0[$`4esn`],All(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`]) Ends With Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e-12[9e1]) Merge ((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})) On Create Set (`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[? *..123456789{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:`7esn`{`5esn`:{`8esn`} Starts With .9e-1 Starts With 1000})._usn3._usn3?.`6esn`! =(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}) Is Not Null,#usn8 =0[4.9e12] Optional Match `7esn`=Shortestpath(((usn1 :_usn4:`2esn`)<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[?{#usn7:`2esn`,`7esn`:$@usn5 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))),Allshortestpaths((:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[_usn3?:`5esn`*..]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]})) Using Join On `5esn`,usn1,`7esn` Using Scan #usn8:`1esn` Where 8.1e1[..9.1e-1][...9e1] Union All Remove Reduce(`6esn`=.9e-12[.12e12..][0Xa..],#usn8 In 07[..$`5esn`]|.9e-12[.12e12..][0Xa..]).`5esn`?,Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 7 In 1e1 In {``}).`6esn`,All(usn2 In $`5esn`[{`4esn`}][{0}] Where Null[$`3esn`..][`1esn`..]).#usn8!.#usn8.`7esn` Optional Match ((usn1 :@usn6:_usn3)-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})) Where $usn2 In #usn7 In #usn7 Load Csv With Headers From 11.12e-12 Starts With 1.0 Starts With 12.0 As #usn8 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Unwind 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As `1esn` Return Distinct {@usn6:$12 Is Null} In (`4esn` {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}) As usn2,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null Limit 01 =~07 Remove Single(#usn8 In 07[..$`5esn`] Where 123.654 Ends With {1000} Ends With 9e12).``!"), + octest_legacy:ct_string("With Distinct usn2[12e-12..{`8esn`}][.12e12..{123456789}] As #usn8,$`1esn`[9e0..3.9e-1][`7esn`..`6esn`] As @usn6,Case 12.0[...0e0] When {#usn8}[..@usn5] Then `3esn` Is Null End Is Null Is Null Order By $`5esn` Is Not Null Is Not Null Ascending,Count ( * ) Contains 9.1e-1 Contains {`2esn`} Descending Skip $@usn5 Contains _usn3 Limit Extract(#usn8 In 07[..$`5esn`] Where .1e1 Ends With #usn7 Ends With {#usn7}|Null) Contains Allshortestpaths((`3esn` :`6esn`{_usn3:.12e-12 Ends With `2esn`,usn1:Null[#usn7..][9.1e-1..]})-[_usn3?:@usn5|:#usn7]->(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})) Where 12.0[...0e0] Create `2esn`=Shortestpath(((`7esn` {#usn8:2.9e1[{`2esn`}]})-[?:`1esn`|:`1esn` *..0x0{@usn6:.0e-0 In 12}]-(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0})-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]-(`1esn` :_usn4:`2esn`))),``=Shortestpath(({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})) Union All Foreach(`` In Shortestpath(((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(_usn3 :usn1)))[..{_usn4:.9e-1 Ends With .0e-0 Ends With {_usn3},_usn4:9e1 Ends With 9e12 Ends With 0x0}][..Reduce(#usn8=`8esn`[_usn4],`1esn` In $12 In {usn2}|$`4esn` Is Not Null)]| Start #usn7=Relationship:#usn8(usn2={12}) Where 01234567 Ends With .0e0 Ends With 12e12 Unwind `6esn`[0X0123456789ABCDEF..][`8esn`..] As _usn4) Merge ((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})) On Create Set Case When 01234567 Ends With .0e0 Ends With 12e12 Then 00[$``] End.`1esn` ={1000} Ends With .12e12 Ends With 010 Optional Match `6esn`=((`3esn` :#usn8:@usn6)) Using Join On `6esn`,`1esn` Union Remove `2esn`(Distinct \"d_str\" Starts With $`7esn` Starts With 999).#usn8.`5esn`?.`4esn`?,(:usn1{`6esn`:$_usn3[usn2..][usn1..],#usn7:$_usn4 =~$#usn8 =~{`4esn`}})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7}).`5esn`,Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..]|{_usn3} In $#usn8 In $12)._usn3!.#usn8?.`5esn`! Unwind 11.12e-12 Starts With 1.0 Starts With 12.0 As @usn6 Merge _usn4=((usn1 {@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]})-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})<-[_usn3?:`5esn`*..]-({`1esn`:01 =~{_usn3} =~01,`8esn`:{#usn7} Ends With 999 Ends With 12}))"), + octest_legacy:ct_string("Merge usn2=Shortestpath((((`3esn` $0)-[`4esn`? *01{#usn8:12.0[..Count ( * )][..@usn6]}]-(usn1 :#usn8:@usn6)-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2)))) Union All Load Csv With Headers From {@usn6} =~Count ( * ) =~1.0 As `6esn` Union Create Unique _usn4=((_usn3 :`6esn`)<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})) Return [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End,_usn3 =~{`4esn`},{usn1} Contains `4esn` As `6esn` Order By 12[@usn6][{`2esn`}] Ascending,Single(`` In `7esn` =~#usn8 =~\"d_str\")[Reduce(`3esn`=1e1[$_usn3],`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1[..9.1e-1][...9e1])][[#usn7 In .0e-0 In 12 Where \"d_str\"[0x0..{@usn6}][$@usn5..0]|{7}[$@usn5..123456789][1e1..1.9e0]]] Ascending,None(`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]) Starts With Reduce(`3esn`=.1e1 Ends With #usn7 Ends With {#usn7},usn2 In $`5esn`[{`4esn`}][{0}]|\"d_str\" In usn2 In $`7esn`) Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`1esn`}[{usn2}]) Asc Remove Allshortestpaths((((@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})-[:`3esn`|`3esn`]-(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(:`4esn`:usn2)))).`6esn`?"), + octest_legacy:ct_string("Create Unique #usn8=({`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}) With *,$999 =~0e0 =~0X7 As `1esn` Skip {7} Is Not Null Optional Match (usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[``:`1esn`|:`1esn`{@usn5:999[..$@usn5][..``],@usn5:0xabc[..Count(*)][..$`5esn`]}]-(`1esn` :``{_usn4:$@usn5 =~{`3esn`}}) Using Index #usn7:`4esn`(@usn5) Where {`6esn`} =~2.12 =~123.654"), + octest_legacy:ct_string("Detach Delete $usn1 Contains 4.9e12 Contains $`2esn`,Filter(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}]) Starts With Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3)) Starts With {@usn5:$123456789 Is Not Null Is Not Null},{#usn7} Is Not Null"), + octest_legacy:ct_string("Remove (`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[usn1?:`3esn`|`3esn`*..]->(:usn1{#usn8:$`8esn` Is Not Null Is Not Null,`5esn`:3.9e-1 Starts With .9e0 Starts With {#usn7}})-[:usn1|usn2 *7{`8esn`:{usn2}[{999}..][9e12..]}]->(`` {`7esn`:`4esn` =~010}).usn2!,Case When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null When $@usn6 Is Null Then {usn2} Is Not Null Is Not Null End.`8esn`.`3esn`?.usn2 With Distinct 1e-1[$`4esn`] Order By Count(*)[Null..][01234567..] Ascending,Count ( * ) =~.9e1 =~$#usn8 Ascending Skip Count ( * ) Contains 9.1e-1 Contains {`2esn`} Where .9e1 Is Null Is Null Optional Match `1esn`=((usn2 :`2esn`:`4esn`{`7esn`:@usn5 =~$#usn7 =~{usn1}})<-[`1esn`:`4esn`|:`2esn`{`5esn`:$_usn3[usn2..][usn1..]}]->(:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})) Where 3.9e-1[{@usn6}..][01234567..] Union Optional Match @usn6=Allshortestpaths(((#usn7 {`2esn`:`8esn`[.12e12..],_usn3:usn1 =~0Xa =~0}))),_usn4=((#usn7 :@usn6:_usn3{``:9e1[0.0]}))"), + octest_legacy:ct_string("Unwind Any(`7esn` In 0.12 Is Not Null Where $0 Contains $7) Is Not Null Is Not Null As `2esn` Start `3esn`=Node:`6esn`(#usn7={_usn4}) Match (({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})<-[usn2:`4esn`|:`2esn` *0X7..0Xa]-(#usn7 :#usn7:`8esn`)) Union All Unwind .0e-0 Contains $1000 As `` Start @usn5=Rel:`8esn`(usn1=\"d_str\") ,_usn3=Relationship(0x0)Where $@usn5 Is Null Is Null Union All Remove Filter(_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null).`6esn`,count(Distinct).`4esn`?.`2esn`,(@usn6 {usn1:0Xa In 1.0 In $@usn5})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]}).`8esn`! Return usn2[12e-12..{`8esn`}][.12e12..{123456789}] As #usn8,Case When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] When {123456789} Starts With $_usn4 Starts With 0x0 Then 9e0[`3esn`][0] End[{`3esn`:false Starts With 0 Starts With 2.9e1,@usn6:9e-12 Ends With {1000}}..{`8esn`:_usn3[{#usn7}]}] As usn1 Skip Allshortestpaths((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))[usn1..] Limit usn2 Ends With $123456789 Ends With {999} Create Shortestpath(((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})))"), + octest_legacy:ct_string("Start #usn7=Rel:@usn5('s_str') Where false Contains {`7esn`} Union Delete Reduce(`1esn`={`5esn`}[01234567..][5.9e-12..],usn1 In {#usn7} =~.12e12 =~9e0|$`6esn`[..01][..{_usn3}]) Ends With (`2esn` :usn1)<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-(_usn3 :`1esn`:``) Ends With {usn1:{12}[6.0e0..{usn2}][{_usn3}..{#usn7}]},6.0e0[$12..0.12],$`3esn` In 01 In Count ( * ) Merge Shortestpath(((:@usn5{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null})))"), + octest_legacy:ct_string("Load Csv From `1esn`[..$1000] As #usn8 Foreach(@usn6 In 9e1 =~$`8esn` =~10.12e12| Load Csv From Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]) Is Not Null Is Not Null As #usn8 ) Remove `5esn`:`6esn`,[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01|_usn4 Ends With {`8esn`} Ends With usn2].usn1.`7esn`.@usn6 Union All With Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,999 Starts With 7.0e-0 Starts With true As _usn3 Order By 2.12[010..][{999}..] Descending Limit Shortestpath((:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})) Starts With {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF} Starts With Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})) Start `2esn`=Node:`8esn`('s_str') ,`1esn`=Rel:``({`4esn`}) With Distinct *,Any(usn2 In $`5esn`[{`4esn`}][{0}] Where .1e-1[2.9e1..][$`7esn`..]) Contains Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Contains Allshortestpaths((_usn3 :`4esn`:usn2)),9e1[...9e1][..$`6esn`] As `4esn`"), + octest_legacy:ct_string("Using Periodic Commit 7 Load Csv With Headers From {@usn5} Ends With 0Xa Ends With .12e-12 As `5esn` Fieldterminator 's_str' Load Csv With Headers From 0Xa Contains 12e-12 As #usn7 Fieldterminator 's_str'"), + octest_legacy:ct_string("Remove 0e0.`4esn`!,usn1(Distinct #usn7 Contains .0e0 Contains $@usn6,.9e0 =~#usn7).`5esn`?,Single(usn2 In .12e-12 Ends With `2esn` Where $999 Ends With `2esn` Ends With 12.0).`8esn` Create ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})),`1esn`=Allshortestpaths(((#usn8 {@usn5:{7}[$@usn5..123456789][1e1..1.9e0],@usn6:usn2 Starts With $usn1 Starts With 10.12e12})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc}))) Load Csv With Headers From Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] As `7esn` "), + octest_legacy:ct_string("Start usn1=Relationship:@usn6({999}) "), + octest_legacy:ct_string("Detach Delete $usn2 In #usn7 In #usn7 Union All Create Unique `2esn`=Allshortestpaths(((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]}))),#usn8=((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})-[?:#usn7|:@usn5 *..00]-(:@usn5{`7esn`:01234567[\"d_str\"..][$`4esn`..]})) Return Distinct 9e-1 Is Not Null,{`6esn`} In 11.12e-12 In 2.9e1 Order By `3esn` Is Null Is Null Asc,8.1e1[.1e1..][`4esn`..] Asc Skip @usn5[@usn6] Union All With Distinct *,$usn1[..$999][..0e0] As #usn7,.9e-12[{@usn5}] As `7esn` Order By 01 Ends With .0e0 Ends With 7.0e-0 Asc,Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]) Desc,.0e0[$usn1][0] Desc Skip 12e12[.9e12..07] Limit {`2esn`} Contains 0xabc Where 0X7[#usn7..][$@usn5..]"), + octest_legacy:ct_string("Using Periodic Commit 0 Load Csv From .1e1 Ends With #usn7 Ends With {#usn7} As `4esn` "), + octest_legacy:ct_string("Create Unique `7esn`=Shortestpath((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})-[:#usn7|:@usn5]-(:`1esn`:``{`8esn`:5.9e-12[0x0..]})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)),Allshortestpaths(((`` :`7esn`))) Union All Foreach(_usn4 In {12} Ends With $`3esn` Ends With 0xabc| Optional Match #usn7=(((:`3esn`)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))),`7esn`=Allshortestpaths(((:`7esn`)<-[#usn7?:_usn3 *999..123456789{@usn5:$12 In {usn2},usn1:5.9e-12 Is Null Is Null}]->(`` {`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654})-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:`8esn`{#usn8:2.9e1[2.12..1.9e0],#usn8:@usn6[true..]}))) Using Index `6esn`:usn1(`3esn`) Using Index usn2:``(`3esn`) Remove All(usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-1[1.9e0]).usn1) Create Unique (`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}),#usn7=Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))) Create Unique `7esn`=(:`8esn`$@usn5),`7esn`=Shortestpath(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) Union All Create Unique ((`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})-[`3esn`?:`1esn`|:`1esn`]-({_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})) Detach Delete 9e12 Is Null,12 Ends With {#usn8} Ends With $_usn4,#usn7 =~$@usn5 =~{7} Load Csv With Headers From {0}[`4esn`..{`8esn`}] As `5esn` "), + octest_legacy:ct_string("Create Unique ``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))) Detach Delete 2.12[010..][{999}..],Reduce(usn2=`4esn` Ends With 9e12 Ends With {`5esn`},`6esn` In 010[{`1esn`}..]|$@usn5[.9e-1]) Starts With Reduce(`4esn`=.0e-0 In 12,`7esn` In 0.12 Is Not Null|1.0 Is Null Is Null),Filter(#usn7 In .0e-0 In 12 Where #usn7[123.654][{12}])[[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]..Reduce(`1esn`=`2esn`,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|.9e0 =~#usn7)] Union Foreach(#usn8 In Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000)| Match Shortestpath(((usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})-[{#usn7:1e-1[$`4esn`]}]->(_usn4 :`1esn`:``{`3esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}))),(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})<-[`5esn`:@usn6|:`4esn` *010..0{`8esn`:0xabc Starts With 12 Starts With 0e-0}]-(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})<-[?:@usn6|:`4esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]-(`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]}) Using Index `1esn`:`1esn`(`4esn`) Using Join On _usn4,usn2,``) Optional Match `1esn`=((usn2 :`2esn`:`4esn`{`7esn`:@usn5 =~$#usn7 =~{usn1}})<-[`1esn`:`4esn`|:`2esn`{`5esn`:$_usn3[usn2..][usn1..]}]->(:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})) Where 3.9e-1[{@usn6}..][01234567..] Start `7esn`=Node( {999}) Where #usn7[$`8esn`][{`3esn`}] Union All Optional Match usn1=Allshortestpaths(({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})<-[usn2:usn1|usn2]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null})) Using Index @usn5:usn1(`4esn`) Return *,07[9e-1..][1e1..] As @usn5 Order By 6.0e0 Is Null Desc,Any(`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]) In Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Asc,$12 Ends With 12.0 Ends With $`4esn` Asc Foreach(_usn4 In {#usn7}[..\"d_str\"][..#usn8]| Unwind .12e12[$usn1..][{@usn6}..] As `6esn` Remove Reduce(usn2=12.0[..Count ( * )][..@usn6],#usn8 In 07[..$`5esn`]|#usn8[\"d_str\"..usn2])._usn4?._usn4)"), + octest_legacy:ct_string("Create ((`5esn` :_usn3)),Shortestpath(((:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})-[?:`4esn`|:`2esn`{usn1:{123456789} Starts With `6esn`,@usn5:9e1 Ends With 9e12 Ends With 0x0}]-(`2esn` :usn1))) Remove `3esn`:usn2,(:#usn7:`8esn`{`5esn`:false[..usn2][..999]})<-[`7esn`:`4esn`|:`2esn`*{``:true Is Null,_usn3:$12 Ends With 7.0e-0 Ends With 9e-12}]->(`` :`7esn`).`1esn` Remove Allshortestpaths(((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})-[_usn3:#usn8|:``{#usn8:{_usn4} In 0X7 In 0e0,`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]-(@usn5 )<-[?:#usn7|:@usn5 *12]-(_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null}))).``?.usn1.@usn6?,{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:{12}}.#usn7.``!,Case When $usn1 Contains 4.9e12 Contains $`2esn` Then {usn1} Contains `4esn` Else {0} Ends With 0Xa End.@usn5"), + octest_legacy:ct_string("Detach Delete [_usn3 In `8esn`[_usn4] Where {#usn7} Starts With .1e-1|`3esn` Is Null] Contains `5esn`({#usn8} Ends With _usn3 Ends With `2esn`,.9e0 =~#usn7),01234567 Ends With .0e0 Ends With 12e12,0.12[8.1e1..0Xa][Count ( * )..{_usn3}] Remove {`5esn`:$`4esn` Ends With .12e12 Ends With 123.654,@usn6:{123456789} Contains $0}.`8esn`,({#usn7:12e12[.9e12..07]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})-[@usn5:`2esn`|`5esn` *7]->(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}).#usn8!,(`3esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[?:`4esn`|:`2esn` *01]-(`` :``).`4esn`.#usn7 Union With Distinct *,Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null Skip 0xabc Contains 12 Contains Null Limit $123456789 Contains 07 Contains 0.0 Load Csv From {_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}[Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)][[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1]] As `5esn` Fieldterminator 's_str' Union All Foreach(usn1 In 4.9e12 Is Not Null Is Not Null| Unwind Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[..None(#usn7 In .0e-0 In 12 Where 0xabc =~123456789)][..11.12e-12] As @usn5) Start usn2=Node:`2esn`(_usn4={#usn7}) ,`5esn`=Rel:`6esn`(`4esn`='s_str')Where 12[..$`5esn`] Remove Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[01234567][{#usn7}]|00 =~`4esn` =~.9e-12).`5esn`.`3esn`!"), + octest_legacy:ct_string("Foreach(#usn8 In .12e12 Is Not Null| Remove Reduce(`8esn`=1e1[$_usn3],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e-0[..``][..$7]).`6esn`.`8esn`?,[`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1].`2esn`! Return {#usn7}[.12e-12] As `1esn`,5.9e-12[\"d_str\"..][{`6esn`}..] As #usn7 Limit Case When #usn7 Contains .0e0 Contains $@usn6 Then .12e-12[@usn6..'s_str'] Else {0}[`4esn`..{`8esn`}] End Is Not Null Is Not Null)"), + octest_legacy:ct_string("Remove Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]).`4esn`,Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 9e12 Is Null Is Null).`3esn`,(@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`).#usn7.`8esn` Create Unique _usn4=((_usn3 :`6esn`)<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})),usn2=(`2esn` {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(#usn8 {``:9e1[0.0]})-[:#usn8|:`` *..07{@usn5:01234567[\"d_str\"..][$`4esn`..],`6esn`:$usn1 Ends With {`2esn`} Ends With $usn1}]->(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1}) Union All Start usn2=Relationship:#usn8(usn2={@usn5}) ,`2esn`=Relationship:``(`1esn`=\"d_str\") Return *,3.9e-1 Ends With {usn1} Ends With {`5esn`} As `3esn`,Reduce(@usn5=`1esn` In 010 In 1e-1,`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1 Contains $@usn6)[All(usn1 In {#usn7} =~.12e12 =~9e0 Where $7)][`8esn`(.1e-1[2.9e1..][$`7esn`..])] Skip Shortestpath((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))[[`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`}[@usn5..{@usn6}]|{1000}[..`5esn`][..9e12]]..][{_usn4:`8esn`[.12e12..]}..] Limit Count ( * ) Contains 9.1e-1 Contains {`2esn`} Return Distinct *,$_usn4[..01234567][..$`6esn`],{`1esn`} Is Null Order By None(`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]) Starts With Reduce(`3esn`=.1e1 Ends With #usn7 Ends With {#usn7},usn2 In $`5esn`[{`4esn`}][{0}]|\"d_str\" In usn2 In $`7esn`) Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`1esn`}[{usn2}]) Asc,Extract(usn2 In .12e-12 Ends With `2esn` Where `3esn` Contains 01 Contains 01) Is Not Null Descending,$`` =~$_usn3 Descending Limit {`4esn`}[00..] Union Foreach(_usn3 In 9e1[$``.._usn4][999..`3esn`]| Unwind {`8esn`}[.0e0..][999..] As `` Unwind .9e-1[`1esn`][7] As usn2)"), + octest_legacy:ct_string("Foreach(_usn4 In $_usn3 Contains 1.0 Contains 0.12| Create Unique #usn7=((:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}})<-[usn2? *0X0123456789ABCDEF]-($12)) Create Unique `7esn`=Shortestpath(((_usn3 {#usn7:$999 =~false =~{`8esn`}}))),#usn8=((#usn8 :@usn5)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Foreach(#usn7 In $999[9e0]| Start #usn8=Node:_usn4({_usn3}) ,`1esn`=Rel:@usn6(`2esn`='s_str')Where 0[..{0}][..true] Load Csv From Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where .9e1[$`1esn`..][$``..]) As `4esn` ) Create ((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})),((`5esn` :_usn3)) Union All Merge usn1=({#usn8:_usn4[$_usn4]})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7}) Optional Match (({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`2esn` *7]->(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})),Allshortestpaths((:#usn7:`8esn`{`3esn`:0.12 In $``})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})<-[:#usn8|:`` *0]->({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})) With Distinct 0xabc[..Count(*)][..$`5esn`],{12} Ends With 1e1 As `8esn`,{`4esn`} In 1000 In {@usn5} Order By {7} Ends With 999 Asc,_usn3 =~{`4esn`} Desc Skip [`1esn` In $12 In {usn2} Where 12e-12 Starts With $`7esn`][{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}..] Where Null In {7}"), + octest_legacy:ct_string("Load Csv With Headers From 7 Starts With 9e-12 As @usn6 Fieldterminator 's_str' Union All Remove Allshortestpaths((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}})).``! Union Remove All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`8esn`} Starts With .9e-1 Starts With 1000).usn2?,Extract(#usn8 In 07[..$`5esn`] Where 0 In 2.9e1 In 7).`5esn`!.`3esn`,Case {`5esn`}[.1e-1..1e-1][999..{_usn3}] When 7.0e-0 Is Not Null Then {`8esn`}[@usn5][$`2esn`] End.usn1 Create Unique Allshortestpaths(((#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7})<-[`6esn`?:@usn5|:#usn7{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)}))),@usn6=((:`4esn`:usn2{usn2:$usn2 Ends With 00 Ends With 9e12,_usn4:{`5esn`}})-[?:``|:`7esn` *12{#usn8:10.12e12 Contains .9e0,usn1:0xabc Contains {12} Contains {`6esn`}}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))"), + octest_legacy:ct_string("Foreach(_usn4 In {12} Ends With $`3esn` Ends With 0xabc| Optional Match #usn7=(((:`3esn`)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))),`7esn`=Allshortestpaths(((:`7esn`)<-[#usn7?:_usn3 *999..123456789{@usn5:$12 In {usn2},usn1:5.9e-12 Is Null Is Null}]->(`` {`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654})-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:`8esn`{#usn8:2.9e1[2.12..1.9e0],#usn8:@usn6[true..]}))) Using Index `6esn`:usn1(`3esn`) Using Index usn2:``(`3esn`) Remove All(usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-1[1.9e0]).usn1) Create Unique (`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}),#usn7=Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))) Create Unique `7esn`=(:`8esn`$@usn5),`7esn`=Shortestpath(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) Union Remove Reduce(`6esn`=5.9e-12 Contains {12} Contains {#usn8},usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{123456789} Ends With 11.12e-12 Ends With 00).`2esn` Load Csv With Headers From 9.1e-1 Contains {`3esn`} Contains $12 As @usn6 Fieldterminator 's_str' Union All Start `2esn`=Rel:`6esn`(`4esn`=\"d_str\") Load Csv With Headers From $12 Is Null As `3esn` Optional Match `6esn`=(:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[:`2esn`|`5esn`{`8esn`:$`4esn`[$@usn6...12e12]}]-(usn1 {@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]})<-[?:usn1|usn2{#usn8:'s_str'[`2esn`][12.0]}]->(:`1esn`:``),(({`6esn`:3.9e-1[..$1000][..0.12]})-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-(:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})) Using Join On @usn5,_usn4 Using Index `6esn`:`8esn`(`2esn`)"), + octest_legacy:ct_string("Foreach(_usn3 In Null| Optional Match ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),_usn3=Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)))) Return *,$12 Is Null As #usn8 Order By ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[_usn3?:@usn5|:#usn7]->(`` :``)-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Starts With Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`) Ascending,{`8esn`} =~$#usn7 =~2.12 Desc,Count(*) Starts With 07 Starts With $#usn7 Desc Skip @usn6[true..] Create ({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12}),#usn8=Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]})))"), + octest_legacy:ct_string("Remove `8esn`(#usn7[$`8esn`][{`3esn`}],`6esn`[$@usn5][01]).usn1.@usn5.`4esn`?,({``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]}).`1esn`?,None(usn1 In \"d_str\" Contains {@usn6} Where false =~{`8esn`} =~00).`5esn`!.#usn8! Create Unique ((`4esn` :#usn7:`8esn`)<-[:`8esn`|:#usn8{_usn4:$#usn7 Ends With {`5esn`} Ends With 01}]-({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[usn1:#usn7|:@usn5 *999..123456789]->(`5esn` :``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})),(`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}) Foreach(`1esn` In None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..])| Create Unique (((@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?*..]-(`` {`6esn`:1000[{`1esn`}..][$`3esn`..]})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))),Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)))"), + octest_legacy:ct_string("Optional Match #usn7=Shortestpath((`5esn` :``{_usn3:$_usn4[..$999],`7esn`:0X0123456789ABCDEF Ends With {1000}})-[*{@usn5:`6esn` =~999 =~$999}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})),#usn8=(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[`1esn`:`4esn`|:`2esn`{`5esn`:$_usn3[usn2..][usn1..]}]->(:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`}) Using Join On `1esn`,@usn6,usn1 Where 9e-12 Is Not Null Is Not Null Start _usn4=Node:@usn6(#usn8='s_str') ,`7esn`=Relationship:usn2(`8esn`=\"d_str\")Where 8.1e1[.1e1..][`4esn`..] Merge Allshortestpaths((:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})-[?:@usn5|:#usn7 *0]->(`4esn` :`8esn`{`4esn`:4.9e12 Starts With {``},`8esn`:$12 Ends With {_usn4} Ends With $`8esn`})-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12})) On Match Set `1esn` ={`2esn`}[0x0..9e0],Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]).`8esn`? ={123456789} Contains $#usn7 Contains {#usn8},`5esn` =Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End Ends With Reduce(``={`3esn`}[$#usn8..],usn1 In {#usn7} =~.12e12 =~9e0|2.9e1[{`2esn`}]) Ends With [`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}|$`` =~$_usn3] Union All Merge Allshortestpaths((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})) Merge `7esn`=Shortestpath(((`6esn` :``)<-[`8esn`*]-(#usn8 )-[`3esn`?:`1esn`|:`1esn`]-(@usn6 :`4esn`:usn2))) On Match Set Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where .0e-0[..``][..$7]).``!.`8esn`? ={1000} Starts With {`1esn`},``:`1esn`:``,(#usn7 {usn1:2.12[{12}]})-[:usn1|usn2]->(`8esn` :`5esn`:`7esn`).@usn6! =false =~{`8esn`} =~00 On Match Set `7esn`+=Reduce(_usn3=5.9e-12 Is Null Is Null,_usn3 In `8esn`[_usn4]|2.9e1[Count ( * )..]) Is Null,#usn8 =0e0 Ends With .9e0 Ends With 01234567 Unwind `6esn`[0X0123456789ABCDEF..][`8esn`..] As _usn4"), + octest_legacy:ct_string("Optional Match (`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}}) Using Scan ``:#usn8 Using Join On usn1,usn2 Match `5esn`=((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})) Using Index usn2:``(`3esn`) Where 0e-0[..7.0e-0][..{`8esn`}] Foreach(usn2 In 1e-1[$#usn8]| Create Shortestpath(((usn2 :`4esn`:usn2)-[?:#usn7|:@usn5 *..00]-(:@usn5{`7esn`:01234567[\"d_str\"..][$`4esn`..]})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))),`2esn`=Shortestpath((@usn6 :@usn5)) Create `2esn`=Allshortestpaths((:`3esn`{@usn5:9e12[..usn2][.._usn3]})),``=Shortestpath((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[ *0X0123456789ABCDEF]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Union All Return _usn3($0 Ends With 9e-12 Ends With $_usn4) Is Null Is Null As `4esn`,1.9e0 In 2.12 As usn2,$#usn7[$``..999][$usn2..$usn2] Order By `4esn` =~usn1 =~Count(*) Descending,Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]) Desc Skip 2.12 Is Not Null Is Not Null Limit {`5esn`}[01234567..][5.9e-12..] Union Create ((#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7})<-[`5esn`?:`7esn`|usn1{@usn5:9e0[`3esn`][0]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})<-[_usn4?:_usn4|:`1esn` *..0x0{`6esn`:{`5esn`} Is Not Null Is Not Null,`3esn`:0xabc[..{usn1}][..\"d_str\"]}]-({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})),#usn8=({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)})"), + octest_legacy:ct_string("With \"d_str\" Starts With $`7esn` Starts With 999,[`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] Skip Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..])[[`6esn` In 010[{`1esn`}..] Where Count ( * ) Starts With 0.12|.12e12 Ends With 07 Ends With 3.9e-1]..] With $_usn3 Contains 1.0 Contains 0.12 As ``,0x0 Ends With #usn8 Ends With .9e-1 As _usn4 Order By 01234567 Ends With .0e0 Ends With 12e12 Ascending,usn1(Distinct {usn1}[7.0e-0..][3.9e-1..]) Asc,.0e-0[..01234567] Descending Union Detach Delete $`5esn` Is Null,{1000} Starts With {`1esn`} Start _usn3=Rel:usn2(#usn7='s_str') Create Shortestpath(((@usn6 :usn2{@usn5:$`5esn`[{`4esn`}][{0}],usn2:9e12 Is Null Is Null})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})-[usn1?:@usn6|:`4esn` *..123456789]->({#usn8:_usn4[$_usn4]}))),`2esn`=(:_usn3{usn2:6.0e0[$12..0.12],#usn7:`2esn`})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})"), + octest_legacy:ct_string("Delete None(`2esn` In $@usn5 Is Not Null Is Not Null Where {7}[$@usn5..123456789][1e1..1.9e0]) Ends With Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End Ends With {_usn3:$1000 Starts With {@usn6} Starts With $@usn5},Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End[(`4esn` :#usn7:`8esn`)-[_usn3?:@usn6|:`4esn`{_usn4:$12 Ends With 12.0 Ends With $`4esn`}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2)..][Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1)..] Union Create `4esn`=Shortestpath((:`6esn`{`3esn`:9e12[..usn2][.._usn3]})<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})<-[`2esn`?:`8esn`|:#usn8]->(:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})),#usn7=((`1esn` :usn2{`8esn`:12.0[...0e0]})) Optional Match Shortestpath(((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})))),_usn3=Allshortestpaths((((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999})<-[``?:@usn5|:#usn7 *..00{#usn8:$`8esn`[...1e-1]}]->(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]})))) Using Index `3esn`:`8esn`(`5esn`) Where .12e12 Ends With 07 Ends With 3.9e-1 Unwind 01234567 Ends With .0e0 Ends With 12e12 As `3esn` Union All Load Csv From $@usn5 Is Not Null Is Not Null As `7esn` Load Csv With Headers From {123456789} In \"d_str\" As `2esn` Remove ({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000})<-[`5esn` *01]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}).#usn7!,All(usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]).`8esn`!,`7esn`:usn2"), + octest_legacy:ct_string("Remove (`` :`8esn`)-[#usn7? *..00{_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}]->(:`3esn`)-[usn1?:usn1|usn2]->(#usn7 :@usn5).usn1,{12}.`6esn`? Create Unique #usn8=((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) Merge (((`1esn` :#usn8:@usn6{`7esn`:.1e-1 Contains .12e-12,`2esn`:.1e1 Ends With #usn7 Ends With {#usn7}})-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5)-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5))) On Match Set Allshortestpaths((:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})).@usn6! =12 Is Not Null Is Not Null On Create Set Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})).`5esn`!._usn3!._usn3? =$`1esn` Ends With 1000,(`8esn` :usn1)<-[usn2 *7]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})-[ *01{usn1:false[..usn2][..999]}]-(_usn3 ).#usn7!.`` =4.9e12 Ends With $@usn6,usn2 =10.12e12[.0e0] Union All Start _usn3=Rel:`8esn`(usn1={#usn7}) ,@usn6=Rel:usn1({usn2}) Create `5esn`=Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))),((_usn3 {@usn6:{0} In {`1esn`}})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->(`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999})) Create `7esn`=(((:`1esn`:``{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[`8esn`? *1000..{usn2:0X7[#usn7..][$@usn5..]}]->(`2esn` {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})<-[?:usn1|usn2{#usn8:2.9e1[2.12..1.9e0],#usn8:@usn6[true..]}]-(:@usn6:_usn3{``:{@usn5}[10.12e12..]}))),((#usn8 :usn2)-[``? *0Xa..12{@usn5:01 Ends With .0e0 Ends With 7.0e-0,_usn3:0.0[00..][0xabc..]}]-(usn2 :`2esn`:`4esn`{`7esn`:@usn5 =~$#usn7 =~{usn1}})) Union All Merge _usn3=Shortestpath(((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))) On Create Set @usn5 ={``}[$usn2..00][{_usn3}..123.654],_usn4 =Reduce(`3esn`=`7esn`[1.9e0..5.9e-12][9e0..@usn5],`` In `7esn` =~#usn8 =~\"d_str\"|{_usn3}[{0}...9e-1][9e-1...0e0])[Case false Contains {`7esn`} When `3esn` Is Null Then `1esn` Is Not Null Is Not Null Else .9e-1 Is Null Is Null End..][Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999})..],{@usn5:`2esn`}.``! =\"d_str\" Starts With `` Load Csv From 1e-1[$`5esn`][9e12] As `2esn` Create Unique `3esn`=(_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null})"), + octest_legacy:ct_string("Remove Shortestpath(({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})<-[`8esn`*]-(@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}}))._usn3?.`3esn`? Optional Match `4esn`=Shortestpath(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))),((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})) Unwind 12.0 In `7esn` As _usn4 Union Delete {_usn4} In 0X7 In 0e0,.9e12 Starts With 0X7 Starts With .9e-1 Create Allshortestpaths((`5esn` {`3esn`:$@usn5 Is Null Is Null})-[`8esn`? *1000..{usn2:0X7[#usn7..][$@usn5..]}]->(`2esn` {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})),``=({`4esn`:{7}[0x0][1e1]})-[:`8esn`|:#usn8 *01]-(usn2 :`2esn`:`4esn`)-[$#usn8]->({usn2:01[`4esn`..]}) With Extract(#usn7 In .0e-0 In 12 Where {`6esn`}[6.0e0..9e0][.9e1..12e12]|Count(*)[$7]) Is Null Is Null As `1esn` Order By {_usn3:.0e-0[..``][..$7]}[..(`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`)][..@usn5] Descending,Any(@usn6 In 9e12[..usn2][.._usn3] Where 12e12[.9e12..07]) Ends With Shortestpath(((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))) Asc,$`1esn` In 0Xa Desc Skip 1e1 Ends With $_usn3 Ends With .1e1 Where {#usn8} Starts With {`2esn`} Union All Detach Delete {1000} =~4.9e12 =~9e1,Null,10.12e12[010..1e1][.1e-1..{1000}] Return *,2.12[{12}] As #usn7,.0e-0 =~usn2 As `1esn` Order By $`8esn` =~{`6esn`} =~12 Ascending,Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End In (:usn1)<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}) In [_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|usn2 Ends With $123456789 Ends With {999}] Ascending,Any(_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0) Ends With Reduce(`6esn`=1e1 Ends With 12 Ends With 999,`` In `7esn` =~#usn8 =~\"d_str\"|$usn2 Contains $`3esn` Contains 6.0e0) Ends With `1esn`(Distinct {0} Is Not Null Is Not Null) Descending Skip {`6esn`} In {_usn4} In $12 Foreach(usn2 In {_usn4} In 0X7 In 0e0| Detach Delete $@usn5 Is Not Null Is Not Null,_usn3 =~{7} =~123.654,@usn5[@usn6] Start _usn4=Rel:_usn4({`1esn`}) )"), + octest_legacy:ct_string("Using Periodic Commit 999 Load Csv From (usn1 :usn1{#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[`3esn`?:_usn4|:`1esn`]->(`6esn` :`4esn`:usn2)[Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {@usn6} In 9e12)][(`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})] As `` Fieldterminator \"d_str\" Merge `5esn`=(:`3esn`{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}) On Create Set Allshortestpaths(((:usn1{#usn8:$`8esn` Is Not Null Is Not Null,`5esn`:3.9e-1 Starts With .9e0 Starts With {#usn7}})-[usn2 *7]-(`` )<-[``:usn1|usn2{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]}]->(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1}))).`4esn`!.`4esn`? =01[{usn2}..][1.9e0..],@usn5+=_usn3($`5esn`[$_usn3][$12])[None(#usn8 In 07[..$`5esn`])..][All(`` In `7esn` =~#usn8 =~\"d_str\" Where 12e12 Is Not Null Is Not Null)..],Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`|\"d_str\" In usn2 In $`7esn`).`1esn`! =(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])] On Match Set `6esn` =$`5esn`[$0],@usn5 =None(`` In `7esn` =~#usn8 =~\"d_str\" Where 1e-1 =~$`7esn` =~1e1) Is Not Null Is Not Null,`2esn` ={`8esn`} Starts With .9e-1 Starts With 1000 Return 00[..@usn6] As `6esn`,{`3esn`}[...1e1][..0],Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null As `2esn` Skip $usn2 Ends With 9e12 Ends With Count ( * ) Limit 0xabc Starts With {`3esn`} Starts With {``}"), + octest_legacy:ct_string("With 0Xa Starts With 9e0 Starts With Count(*) Skip $``[1.0..][_usn3..] Foreach(`5esn` In Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}]| Load Csv From 7 In 1e1 In {``} As `2esn` Fieldterminator \"d_str\") Union All Start `1esn`=Rel:_usn3(@usn5='s_str') Where 12[4.9e12..]"), + octest_legacy:ct_string("Create `7esn`=((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[_usn3?:`7esn`|usn1]-(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[usn2 *7]-(`8esn` :#usn7:`8esn`)) Create Unique (`1esn` {usn2:.9e-12[.12e12..][0Xa..]}),Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})))"), + octest_legacy:ct_string("Unwind Case When $123456789 Is Not Null Is Not Null Then $`5esn` Is Not Null End Ends With {_usn3:$12 Is Not Null Is Not Null} Ends With [`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 6.0e0 =~12.0 =~9e1|@usn6 Ends With $`2esn` Ends With 1.0] As `3esn` Remove `8esn`:usn2 Load Csv With Headers From Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) As usn2 Union All Merge ((`8esn` :`8esn`)-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`8esn`*]-(`7esn` :``{usn2:$7})) With 9e-1 Is Not Null As _usn3,{12} Ends With 1e1 Skip Reduce(`8esn`=1e1[$_usn3],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e-0[..``][..$7]) Ends With Reduce(`3esn`=2.12[`4esn`][.9e-1],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{`8esn`} In {_usn3} In 6.0e0) Ends With `1esn`(@usn5[9e-1..{`1esn`}],$`4esn`[$@usn6...12e12]) Limit (`1esn` :@usn6:_usn3{#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12})<-[@usn5?:`5esn` *01{#usn8:00[Null..usn2],@usn6:0.12 =~2.9e1 =~9e1}]-({@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})[Filter(_usn3 In `8esn`[_usn4] Where 01234567 =~12e12 =~.0e-0)..][{`7esn`:.9e1[$`1esn`..][$``..]}..] Where false[9e12] Create #usn7=Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),Shortestpath((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[?{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})) Union All Return Distinct {1000} Is Null As `2esn`,(`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` Ends With 10.12e12) As `8esn`,$`` =~$_usn3 Order By usn1 Ends With 11.12e-12 Ends With 5.9e-12 Descending,.1e-1 Is Not Null Ascending,Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}] Descending Skip Any(usn1 In $@usn6 Is Null Is Null Where 0e-0[{@usn6}]) =~[`6esn` In 010[{`1esn`}..] Where 7 Starts With 9e-12|Null[#usn7..][9.1e-1..]] =~Reduce(#usn7={12} Ends With $`3esn` Ends With 0xabc,usn1 In $@usn6 Is Null Is Null|`1esn`[Null][{@usn6}]) Create Allshortestpaths((({usn1:#usn7[.9e0..`3esn`][{`6esn`}..1000],_usn4:$usn2 In #usn7 In #usn7})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[``? *0Xa..12{@usn5:01 Ends With .0e0 Ends With 7.0e-0,_usn3:0.0[00..][0xabc..]}]-(`7esn` :`7esn`))),(((:`1esn`:``{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]})<-[:#usn8|:``{#usn7:$#usn7}]-(#usn7 $12)-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5))) Unwind Allshortestpaths((`` $999)<-[? *0X0123456789ABCDEF]->(`1esn` :_usn3)<-[#usn8?:#usn7|:@usn5]-(@usn5 :#usn7:`8esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true}))[All(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Is Null Is Null)..][Allshortestpaths((({@usn6:01 Contains 9e-12 Contains $7})))..] As @usn5"), + octest_legacy:ct_string("Foreach(usn1 In \"d_str\" Is Not Null Is Not Null| Create #usn7=(((#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})-[?:@usn5|:#usn7 *0]->({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})-[:usn2{``:07 Ends With {1000} Ends With 01234567,`5esn`:999 Ends With {#usn8}}]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]}))) Unwind (@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[`8esn`?:_usn3 *12{usn1:#usn7[.9e0..`3esn`][{`6esn`}..1000],_usn4:$usn2 In #usn7 In #usn7}]-(_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(usn2 :`2esn`:`4esn`)[..Reduce(`2esn`={1000}[..{usn1}][..1e-1],_usn3 In `8esn`[_usn4]|Count(*)[$7])][..{_usn3}] As `6esn`) Create usn1=(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0}),(`` :`8esn`)"), + octest_legacy:ct_string("With Distinct Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null As #usn8,.9e1 Is Null Is Null As #usn8,00[..@usn6] Order By 12 Ends With 12e12 Asc,.9e12 Starts With 0X7 Starts With .9e-1 Asc Skip 00[Null..usn2] Limit 01[{usn2}..][1.9e0..] Where $usn1 =~.0e0 =~{`4esn`} Remove Allshortestpaths((`2esn` :_usn3)).@usn6!,Extract(usn1 In $@usn6 Is Null Is Null Where _usn4[{``}..{`6esn`}][$7..$_usn3])._usn4!.@usn5? Start `2esn`=Node:@usn5(#usn7=\"d_str\") ,@usn6=Relationship:#usn8(usn2={12})Where \"d_str\" Is Not Null Is Not Null"), + octest_legacy:ct_string("Unwind (`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Is Not Null Is Not Null As `2esn` Unwind Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]) Is Not Null Is Not Null As #usn8 Foreach(@usn5 In {`6esn`} Starts With 12e12 Starts With {`2esn`}| Load Csv With Headers From $`3esn` =~0x0 As usn1 Remove #usn7:`1esn`:``)"), + octest_legacy:ct_string("Start `1esn`=Rel:`2esn`(#usn8=\"d_str\") ,#usn8=Node( {123456789})Where .12e-12[@usn6..'s_str'] With Distinct .12e-12[@usn6..'s_str'],Allshortestpaths((((@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[``? *..00{@usn5:$`8esn` =~{`1esn`} =~$7,#usn7:.12e-12 Starts With .12e-12}]->({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]})-[:`8esn`|:#usn8 *01]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))))[..Case When {#usn7} Ends With 999 Ends With 12 Then {`3esn`}[999..$`4esn`] End],5.9e-12[01][`4esn`] As _usn4 Skip Single(`` In `7esn` =~#usn8 =~\"d_str\")[Reduce(`3esn`=1e1[$_usn3],`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1[..9.1e-1][...9e1])][[#usn7 In .0e-0 In 12 Where \"d_str\"[0x0..{@usn6}][$@usn5..0]|{7}[$@usn5..123456789][1e1..1.9e0]]] Union All Merge `5esn`=Shortestpath(((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`}))) On Create Set `4esn` =Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 7 In 1e1 In {``})[Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..])..@usn6(0xabc[..Count(*)][..$`5esn`])][$`6esn`..{#usn7:00 =~`4esn` =~.9e-12}] Return Distinct Allshortestpaths((({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)))[Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0])..][Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End..] As #usn8,{12} Ends With 1e1 As `8esn` Order By ``[$7..$_usn4] Asc Delete {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null),0.0[$`4esn`] Union All Merge `5esn`=Shortestpath(((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`}))) Return Null[{999}..$usn2] As `7esn`,{@usn6:$12 Is Null} In (`4esn` {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}) As usn2 Skip .12e-12[{`1esn`}][`1esn`] Remove (:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(`2esn` :@usn5)-[`8esn`:_usn4|:`1esn`]->({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`}).#usn7,Filter(#usn7 In .0e-0 In 12 Where _usn4 Is Not Null Is Not Null).#usn7!"), + octest_legacy:ct_string("Detach Delete \"d_str\" Starts With ``,{12}[true..][7..] Start _usn3=Rel:`8esn`(usn1={#usn7}) ,`4esn`=Rel:_usn4(@usn5={#usn7})Where 6.0e0 =~12.0 =~9e1 Union Foreach(`1esn` In `5esn` Contains 0 Contains $12| Load Csv From $12 Contains false Contains {`1esn`} As _usn4 ) Unwind 9e-1[0.0..] As `7esn` Unwind Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`|.9e-12[.12e12..][0Xa..])[{#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}..] As `1esn` Union All Create Unique @usn6=(({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)) Start @usn6=Node:`2esn`(#usn7={`4esn`}) Unwind [`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] As @usn5"), + octest_legacy:ct_string("Load Csv With Headers From 2.12[010..][{999}..] As `5esn` Fieldterminator \"d_str\" Remove All(usn1 In {#usn7} =~.12e12 =~9e0 Where {7}[$@usn5..123456789][1e1..1.9e0]).`6esn`!,{`8esn`:2.9e1[Count ( * )..]}.@usn6.usn2!,Any(_usn3 In `8esn`[_usn4] Where 010[..9e-1][..0X7]).`1esn`? Union Foreach(usn2 In Single(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Is Not Null| Unwind 5.9e-12 =~@usn6 =~.12e-12 As _usn4 Remove _usn4:`4esn`:usn2,`1esn`(Distinct 0e-0[{12}],Count(*)[$7]).`4esn`._usn4,[#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12].`4esn`!.#usn7) Optional Match #usn7=((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})) Using Join On #usn8 Using Join On _usn4 Start _usn3=Relationship(0x0) ,``=Relationship( {@usn5})Where 0Xa In 1.0 In $@usn5 Union All Load Csv From $12 Is Null As `7esn` Fieldterminator 's_str' Merge `5esn`=((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)) On Match Set usn2+={7} Starts With 0x0 Starts With 9e1,`3esn`:`8esn`,{_usn4:07 Ends With {1000} Ends With 01234567}._usn4?.`1esn`? =$`7esn` Is Null On Create Set `5esn` =({`4esn`:#usn8[\"d_str\"..usn2],`1esn`:12.0[..Count ( * )][..@usn6]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ) =~Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End =~{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Foreach(`8esn` In 2.9e1 In {``}| Create Shortestpath(((`7esn` {@usn5:Count ( * )[_usn4..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))) Unwind Allshortestpaths(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0}))[Reduce(@usn6=10.12e12 Starts With $`4esn` Starts With 0e0,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$1000 Contains $123456789 Contains #usn8)..Case 7[..123456789][..true] When $1000[..0e-0][..010] Then 999 Starts With 7.0e-0 Starts With true End][[`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]]..Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When 0.12[Count ( * )..Count ( * )][$999..`5esn`] Then $123456789[..$999][..`6esn`] Else 7[{`4esn`}..] End] As @usn6)"), + octest_legacy:ct_string("With $12 Contains false Contains {`1esn`},None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null),[`6esn` In 010[{`1esn`}..] Where 7 Starts With 9e-12|Null[#usn7..][9.1e-1..]][None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`})..][`1esn`(@usn5[9e-1..{`1esn`}],$`4esn`[$@usn6...12e12])..] As `4esn` Limit {usn1}[`7esn`..Count(*)] Where $@usn6 Starts With 0xabc Starts With {`7esn`} Detach Delete $`3esn`[..{`5esn`}] Merge `4esn`=((`7esn` {@usn5:Count ( * )[_usn4..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})) On Match Set #usn7 =``[$7..$_usn4] Union Merge usn1=Allshortestpaths(((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) On Create Set `5esn`+=Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] Detach Delete Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})[Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})<-[`5esn`?:`7esn`|usn1{@usn5:9e0[`3esn`][0]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )))..][Case When $#usn7 Contains 3.9e-1 Then .12e12 Starts With 5.9e-12 Starts With `4esn` When {1000}[`2esn`...0e-0][9e-1..0X7] Then 010[...12e-12] End..]"), + octest_legacy:ct_string("With (usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..]) As `2esn` Order By 6.0e0 In 9e-1 In 123456789 Ascending,Shortestpath(((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)))[..Any(#usn7 In .0e-0 In 12)] Asc,(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[`3esn` *..0x0]-(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:_usn4|:`1esn` *01]-(`4esn` {`3esn`:{`7esn`} =~\"d_str\" =~{``},`3esn`:{`1esn`} Contains 1.0 Contains 4.9e12}) =~Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 9e12 Is Null Is Null) =~(:@usn5{#usn7:Null,`5esn`:{@usn5} Ends With 0Xa Ends With .12e-12})-[:`3esn`|`3esn` *1000..]-(@usn6 ) Ascending Merge (:`3esn`{@usn5:9e12[..usn2][.._usn3]}) On Create Set #usn8:`8esn` On Match Set `4esn`+=Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000),{`8esn`:`` Ends With 1.0 Ends With usn1,@usn5:$usn1 =~.0e0 =~{`4esn`}}.#usn7 ={usn1} Contains {`2esn`},Case {`8esn`} Is Not Null Is Not Null When 999 Starts With 7.0e-0 Starts With true Then .12e12[$usn1..][{@usn6}..] End.#usn8?.`2esn`?.`7esn`? =#usn7[$`8esn`][{`3esn`}] Union Merge Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) On Match Set #usn7 =All(#usn8 In 07[..$`5esn`] Where $@usn6 Starts With 0xabc Starts With {`7esn`}) On Match Set @usn6 =$@usn6[.1e-1][9e12] Merge `6esn`=Shortestpath((`1esn` :`2esn`:`4esn`)<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})) Start _usn4=Node:`4esn`({12}) ,``=Node:_usn3({0})"), + octest_legacy:ct_string("Load Csv From 0[10.12e12] As `6esn` "), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv With Headers From .9e12 Starts With 0X7 Starts With .9e-1 As `1esn` Merge Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))) On Match Set $`4esn`.@usn6? =0e-0[#usn7..999],`6esn` =.1e-1[$@usn6],_usn4+=All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] On Match Set `7esn` =0.0[..9e1][..2.12],#usn8+=1.0[$`4esn`..$@usn5]"), + octest_legacy:ct_string("With Distinct [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,$`7esn` In $`4esn` As `8esn`,Extract(`1esn` In $12 In {usn2} Where 2.9e1 =~Count(*) =~{123456789})[{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}..][123.654..] Order By 0x0[{`6esn`}..] Descending Limit usn1 =~false =~{999}"), + octest_legacy:ct_string("Remove Reduce(usn1=false[..usn2][..999],`2esn` In $@usn5 Is Not Null Is Not Null|7.0e-0 Is Not Null).@usn6?"), + octest_legacy:ct_string("Using Periodic Commit 07 Load Csv With Headers From 12 Ends With 12e12 As usn1 Fieldterminator \"d_str\" Foreach(#usn7 In Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}])| Unwind 1e1 =~{@usn5} =~`7esn` As #usn8) Return Distinct [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,$`7esn` In $`4esn` As `8esn`,Extract(`1esn` In $12 In {usn2} Where 2.9e1 =~Count(*) =~{123456789})[{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}..][123.654..] Order By $`6esn`[@usn6...9e-12] Asc,9e-12 Starts With {1000} Desc Skip 9e0 Ends With {7}"), + octest_legacy:ct_string("Optional Match (_usn4 :`6esn`)<-[:#usn8|:``{#usn7:$#usn7}]-(#usn7 $12),(((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))) Using Index `3esn`:`8esn`(`5esn`) Using Index `6esn`:usn1(`3esn`) With Distinct 1.9e0[..1.0][..`6esn`] As `1esn` Order By $999 Ends With `2esn` Ends With 12.0 Ascending Limit Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] Load Csv From `1esn`[{@usn5}..][{_usn4}..] As `6esn` Union All With Distinct usn1 Ends With 11.12e-12 Ends With 5.9e-12 Limit Any(`1esn` In $12 In {usn2} Where @usn6[true..]) Contains Any(usn2 In .12e-12 Ends With `2esn` Where 9e12 Ends With 9e-1 Ends With 9e1) Contains (`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3) Start `5esn`=Relationship:_usn4({_usn3}) Where `` Ends With 1.0 Ends With usn1 Start `2esn`=Relationship:``(`1esn`=\"d_str\") ,`2esn`=Node( {`6esn`})"), + octest_legacy:ct_string("Create ({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})<-[_usn3? *0xabc..12]->(_usn3 {#usn7:$999 =~false =~{`8esn`}}) Start _usn3=Node( {123456789}) Where {`3esn`}[$#usn8..] With Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn`) Contains (`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) Contains Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}),1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As _usn4 Skip (`1esn` :`8esn`{`6esn`:9e-1 Contains 3.9e-1,_usn4:{`3esn`}[...1e1][..0]})<-[`7esn`?:@usn5|:#usn7]->(`8esn` :@usn6:_usn3)<-[`1esn`:#usn7|:@usn5 *..123456789]-({#usn7:{7}[0x0][1e1]})[{`3esn`:0.12 In $``}] Limit 11.12e-12 =~Count ( * ) Union All Start `3esn`=Node( {1000}) ,`1esn`=Rel:@usn6(`2esn`='s_str')Where $123456789[..$999][..`6esn`] With Distinct .1e-1[2.9e1..][$`7esn`..] As #usn8,Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Not Null Is Not Null As #usn8,07[9e-1..][1e1..] As `4esn` Skip {`4esn`} Contains 4.9e12"), + octest_legacy:ct_string("Foreach(usn2 In usn2[12e-12..{`8esn`}][.12e12..{123456789}]| Unwind {`7esn`}[0.12] As `6esn` Match `2esn`=Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}}))) Where $123456789[..$999][..`6esn`]) Load Csv From None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) As `6esn` Fieldterminator \"d_str\" Union Optional Match (((`` :`1esn`:``)<-[usn2:`3esn`|`3esn` *0Xa..12]->(`4esn` )-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))),#usn7=Allshortestpaths(((`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})-[`3esn`?:usn2]-(:`1esn`:``{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})<-[``?{``:{#usn7} =~$@usn6 =~$7}]-(:@usn6:_usn3))) Using Join On usn1,`1esn`,_usn4 Where {0}[.1e-1..][_usn4..] With .1e1 Contains 1e-1 Contains #usn8,.9e-12[usn2] As usn1,.1e1 Contains 1e-1 Contains #usn8 As `` Skip Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Limit 010 =~9.1e-1 =~{`8esn`}"), + octest_legacy:ct_string("Optional Match _usn4=Allshortestpaths(((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))),Shortestpath((((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[`8esn`*]-(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)))) With Distinct 12.0 =~{@usn6} As _usn3,.1e-1[$@usn6] As `3esn` Skip {`4esn`}[{`3esn`}][$`2esn`] Where .0e-0[..01234567]"), + octest_legacy:ct_string("Detach Delete Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])[..(#usn7 {`5esn`:.12e12 Is Not Null,@usn5:.12e12 Is Not Null})-[#usn8:`7esn`|usn1 *0X7..0Xa{usn1:_usn4 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})][..Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`)] Start `5esn`=Node:`8esn`('s_str') Union Start `7esn`=Rel( {_usn3}) With Distinct *,0 Contains {`2esn`} Union All Load Csv From Single(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Is Not Null As `3esn` Merge `6esn`=(usn1 :#usn8:@usn6) On Create Set `6esn`+=$#usn7 On Create Set `8esn` ={#usn8} Is Not Null Is Not Null,@usn5+={`3esn`} Is Not Null Is Not Null,#usn8:`` Detach Delete Single(_usn3 In `8esn`[_usn4] Where `3esn` Contains `2esn` Contains {_usn4}) In Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`) In {7},$usn2 Ends With 9e12 Ends With Count ( * ),$`5esn` =~Count(*) =~1.9e0"), + octest_legacy:ct_string("Unwind 8.1e1[..9.1e-1][...9e1] As @usn5 With 9e1 =~$`8esn` =~10.12e12 Limit 5.9e-12[\"d_str\"..][{`6esn`}..] Where {`8esn`}[..999][.._usn3]"), + octest_legacy:ct_string("Start `5esn`=Node:usn2(_usn4='s_str') Where 0e-0[..7.0e-0][..{`8esn`}] Unwind 0[.9e-1..0e0][.1e1.._usn4] As #usn8 Union Create #usn8=Allshortestpaths((usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[`3esn`:#usn8|:``{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}]->(:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})),Shortestpath(((@usn6 :usn2{@usn5:$`5esn`[{`4esn`}][{0}],usn2:9e12 Is Null Is Null})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})-[usn1?:@usn6|:`4esn` *..123456789]->({#usn8:_usn4[$_usn4]}))) Match `3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})),usn1=((`` :`7esn`)) Using Index @usn5:_usn4(usn2) Using Join On `1esn`,`3esn`,`5esn` Union All Start `5esn`=Relationship:#usn8(@usn5={@usn6}) ,@usn6=Node:@usn5({`4esn`}) Unwind 5.9e-12 =~{12} =~{`2esn`} As usn1 Create Unique ``=Allshortestpaths(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2))),`7esn`=(@usn5 :@usn5{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6})-[usn2?:`1esn`|:`1esn` *..123456789]-(:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[:_usn3]-(`3esn` )"), + octest_legacy:ct_string("Return 5.9e-12 =~{12} =~{`2esn`} Limit Count ( * ) Starts With 0.12 Union All With *,12.0[..Count ( * )][..@usn6] Where $`1esn`[..12e-12][...9e12] Optional Match _usn4=(((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))) Using Scan `3esn`:`` Where $`5esn` =~Count(*) =~1.9e0"), + octest_legacy:ct_string("Return Distinct {123456789} =~.9e1 =~$_usn3,12.0[..Count ( * )][..@usn6] Order By Any(`7esn` In 0.12 Is Not Null Where $0 Contains $7) Is Not Null Is Not Null Asc Limit Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Null Is Null Merge `6esn`=Shortestpath(((#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn4]-(`2esn` :`1esn`:``))) Return Distinct *,$`4esn`[#usn7][8.1e1] As `2esn` Skip [usn1 In \"d_str\" Contains {@usn6} Where 5.9e-12[0x0..]|4.9e12 Ends With $@usn6] =~(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) =~(`3esn` :#usn8:@usn6)-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[:`2esn`|`5esn` *01]-({@usn6:{_usn4} In 0X7 In 0e0}) Union Merge _usn4=((_usn3 :`6esn`)<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})) On Create Set `7esn`+=$``[Count(*)..{12}],@usn5 =All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))]"), + octest_legacy:ct_string("Return $12 Contains false Contains {`1esn`},None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null),[`6esn` In 010[{`1esn`}..] Where 7 Starts With 9e-12|Null[#usn7..][9.1e-1..]][None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`})..][`1esn`(@usn5[9e-1..{`1esn`}],$`4esn`[$@usn6...12e12])..] As `4esn` Limit {usn1}[`7esn`..Count(*)] Union Create `6esn`=(({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[_usn4? *999..123456789{@usn6:$`4esn` Ends With .12e12 Ends With 123.654}]->(#usn8 {usn2:$0 Ends With 9e-12 Ends With $_usn4,`5esn`:0e-0[{@usn6}]})-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]-(`1esn` :_usn4:`2esn`))"), + octest_legacy:ct_string("Merge Allshortestpaths(((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))) With Distinct $usn2 Starts With $999 Starts With .0e0,Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $`` =~$_usn3) In .0e0 In Shortestpath((:`7esn`{usn2:00 Is Not Null Is Not Null})) Skip 0xabc Contains 12 Contains Null Limit None(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {0}[.1e-1..][_usn4..])[Case {_usn3} In $#usn8 In $12 When $`5esn` =~Count(*) =~1.9e0 Then {123456789} Ends With 11.12e-12 Ends With 00 Else 01 =~{_usn3} =~01 End..][Case When .1e1 Is Not Null Is Not Null Then @usn6 Starts With #usn7 When {1000}[`2esn`...0e-0][9e-1..0X7] Then $`8esn`[..12][..9e12] End..] Where `5esn` Contains 0 Contains $12"), + octest_legacy:ct_string("Load Csv From $#usn8 Is Not Null Is Not Null As usn2 Fieldterminator 's_str'"), + octest_legacy:ct_string("Start @usn5=Relationship:_usn3({`7esn`}) Merge ((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})) On Create Set `5esn` =0xabc[9.1e-1..],Case When $12[$`6esn`..][01..] Then $`4esn`[$@usn6...12e12] When .9e-12[.12e12..][0Xa..] Then {`7esn`} Is Not Null Is Not Null Else {`6esn`}[6.0e0..9e0][.9e1..12e12] End.#usn8! =(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(:`6esn`{`2esn`:`5esn` Ends With Count(*)})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12}) In Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}) In Single(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str'),Allshortestpaths((`8esn` :@usn6:_usn3)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})).`3esn` ={123456789} Starts With $_usn4 Starts With 0x0 On Create Set `5esn`+=7.0e-0 Is Not Null,Any(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).`3esn`! =_usn4 Is Not Null,`` =9e1 Is Null Is Null Union Start @usn5=Rel:#usn7(usn1={`6esn`}) Union Foreach(`3esn` In [usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1][Shortestpath((({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})))..Shortestpath(((:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12})-[``?:#usn7|:@usn5{``:$usn1 Ends With {`2esn`} Ends With $usn1}]->(:`5esn`:`7esn`$usn2)-[{#usn8:\"d_str\" Contains {@usn6}}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12})))]| Match ((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)),_usn4=(`8esn` :`4esn`:usn2)-[#usn8?:`8esn`|:#usn8 *999..123456789]->(#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Using Scan `8esn`:`2esn`) With Distinct *,(:`6esn`)<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 )<-[:`4esn`|:`2esn`{usn1:3.9e-1 Contains $@usn5}]->(`7esn` ) In Case 9e1[0.0] When 999 Starts With 7.0e-0 Starts With true Then {usn2}[{999}..][9e12..] End In [`2esn` In $@usn5 Is Not Null Is Not Null Where {`3esn`} =~$@usn5 =~`2esn`|\"d_str\" Is Not Null Is Not Null] As _usn4 Order By Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] Asc,9e-12 Contains .12e12 Ascending,4.9e12[{_usn4}..] Descending Skip 010[...12e-12] Limit _usn4[{``}..{`6esn`}][$7..$_usn3] Where 11.12e-12 Ends With 's_str'"), + octest_legacy:ct_string("Start _usn3=Node( {123456789}) ,_usn3=Relationship(0x0)Where {0}[.0e-0][$`2esn`] Load Csv With Headers From {_usn3}[@usn6..] As `3esn` Fieldterminator \"d_str\" Return Distinct $7 In 1.0 In 01234567,2.9e1 =~{123456789} =~01 As usn1,Reduce(#usn7=#usn8[\"d_str\"..usn2],#usn7 In .0e-0 In 12|`` Ends With 1.0 Ends With usn1) Ends With [_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3]] Ends With Shortestpath((((:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[`2esn`?:`8esn`|:#usn8]->(`` )<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)))) Order By 5.9e-12 =~01234567 =~$`3esn` Ascending,[`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] Descending Skip `3esn`[{`4esn`}] Union All Create Unique `2esn`=((_usn3 :`6esn`{usn2:.9e1 In .1e-1,usn2:1e-1 Contains 0.0}))"), + octest_legacy:ct_string("Using Periodic Commit 01234567 Load Csv With Headers From Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[`8esn`(0X0123456789ABCDEF Is Not Null Is Not Null,{usn1} Is Not Null Is Not Null)..][{usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}..] As usn2 Fieldterminator \"d_str\" Foreach(#usn8 In $usn2 Starts With $999 Starts With .0e0| Match ((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})) Using Join On `4esn`,`5esn`,@usn6) Create Unique ((`4esn` {@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]}))"), + octest_legacy:ct_string("Merge `3esn`=Allshortestpaths(((`4esn` :`8esn`{`4esn`:4.9e12 Starts With {``},`8esn`:$12 Ends With {_usn4} Ends With $`8esn`})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`)<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))) On Create Set usn1+=$`` Ends With 1e-1 Ends With $@usn6 Union Delete 0X0123456789ABCDEF,$usn1 =~9e1 =~$1000,{``} Contains $1000 Remove [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 01234567[1000..][$`8esn`..]|.9e-1 Is Not Null Is Not Null].@usn5!.``?.usn2!,Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))).`5esn`?.`8esn`?.@usn5?,Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null).@usn6! Detach Delete Reduce(`6esn`=`2esn`[`7esn`][1000],usn2 In .12e-12 Ends With `2esn`|010[..9e-1][..0X7]) Contains `7esn` Contains Case When 9e1 Ends With 9e12 Ends With 0x0 Then {12} Ends With 1e1 Else `4esn` Contains 0X0123456789ABCDEF Contains $usn2 End"), + octest_legacy:ct_string("Foreach(_usn3 In $0 =~{@usn5} =~1e1| Start @usn5=Relationship( {#usn8}) ,_usn3=Rel:`1esn`({0}) Unwind 01234567[10.12e12][0Xa] As `1esn`) Union All Optional Match (({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})<-[usn2:`4esn`|:`2esn` *0X7..0Xa]-(#usn7 :#usn7:`8esn`)) Using Join On ``,`4esn`,`7esn` Using Index `8esn`:#usn8(#usn8) Where 0xabc Starts With {`3esn`} Starts With {``} Unwind $`7esn` Ends With 7.0e-0 Ends With $usn2 As `5esn`"), + octest_legacy:ct_string("Start ``=Rel:`5esn`({`2esn`}) Remove Shortestpath((_usn4 {`3esn`:.0e-0 In 12})).`2esn`._usn4!,`4esn`:@usn5 Union Delete Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``}) In (_usn4 :_usn3)<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-({#usn7:12e12[.9e12..07]}) In @usn5({1000}[0..]),`8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End Union Create Unique Allshortestpaths(((({#usn7:{7}[0x0][1e1]})<-[{@usn5:0.12 =~`6esn` =~.9e-1}]->({_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[usn2?:`2esn`|`5esn`{``:{#usn7} =~$@usn6 =~$7}]->(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]}))))"), + octest_legacy:ct_string("Foreach(@usn5 In Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]|@usn5 =~$#usn7 =~{usn1}) In Case 9.1e-1 Contains {`3esn`} Contains $12 When {@usn6} In 9e12 Then 01[$`1esn`..$`7esn`][{usn2}..12.0] When {#usn8} In {12} In .9e12 Then @usn6 Starts With #usn7 End In All(usn1 In $@usn6 Is Null Is Null Where {7} Starts With 0x0 Starts With 9e1)| Remove [`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`} In .0e0 In $0].`4esn`?)"), + octest_legacy:ct_string("Remove Extract(`7esn` In 0.12 Is Not Null Where #usn7 In 07|2.9e1[Count ( * )..])._usn4!,Reduce(`8esn`=.9e0 =~#usn7,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|#usn8 Is Null Is Null).`5esn`,(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})._usn4? Merge (_usn4 {#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12}) Create Unique Shortestpath((:_usn3{`6esn`:{`3esn`}[..{`4esn`}][..usn2]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]->(@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(usn2 {`7esn`:.9e12 Contains 0 Contains $0})) Union Foreach(#usn7 In Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1) Starts With Case 7.0e-0[$`6esn`..] When \"d_str\"[0x0..{@usn6}][$@usn5..0] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else $`5esn`[{`4esn`}][{0}] End Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`)| Start @usn5=Relationship:_usn3({`7esn`}) Detach Delete 1.9e0 In $@usn6 In $_usn3) Remove usn1:#usn7:`8esn`,0Xa.@usn6._usn4!,[`6esn` In 010[{`1esn`}..] Where `3esn` Starts With 9.1e-1 Starts With .9e-1].`5esn`!"), + octest_legacy:ct_string("Start `2esn`=Node:`8esn`('s_str') Where {`8esn`}[9e12..][{_usn4}..]"), + octest_legacy:ct_string("Create Unique @usn6=((`1esn` :`8esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))"), + octest_legacy:ct_string("Using Periodic Commit 010 Load Csv From \"d_str\" Starts With `` As `4esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Merge ({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}) On Match Set @usn5+={#usn8} Starts With {`2esn`},#usn8 =01234567[01234567..],@usn6 =6.0e0[None(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0)..][[_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]]..] On Match Set `7esn` =1e1 Ends With $_usn3 Ends With .1e1 Merge (:usn2)<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:#usn8|:``{#usn8:{_usn4} In 0X7 In 0e0,`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]-(@usn5 ) Union Merge Allshortestpaths((`2esn` :_usn3{usn1:5.9e-12 Is Null Is Null})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(:`5esn`:`7esn`{`4esn`:2.9e1[{`2esn`}]})-[ *..123456789{@usn5:$`8esn`}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})) Unwind 01[`4esn`..] As `6esn`"), + octest_legacy:ct_string("Load Csv With Headers From 9.1e-1 In 9e1 As `5esn` Match _usn4=Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]}))),`3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})) Where 9e12[..usn2][.._usn3] Union Load Csv With Headers From #usn7({12} Starts With $`` Starts With 0X0123456789ABCDEF)[Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where .12e-12[9e1])..] As @usn5 Fieldterminator \"d_str\" Foreach(`2esn` In {#usn8} Starts With {`2esn`}| Load Csv From Filter(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}]) Starts With Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3)) Starts With {@usn5:$123456789 Is Not Null Is Not Null} As usn2 Load Csv With Headers From 9e-1[{7}..1e-1][0.12..{12}] As @usn6 ) Union All Create #usn7=(((#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})-[?:@usn5|:#usn7 *0]->({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})-[:usn2{``:07 Ends With {1000} Ends With 01234567,`5esn`:999 Ends With {#usn8}}]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]})))"), + octest_legacy:ct_string("Match `7esn`=Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)),`8esn`=Allshortestpaths((((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(#usn7 :`8esn`)))) Remove (@usn5 :@usn6:_usn3{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`3esn`:`6esn` *..0x0]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}).`3esn` Delete $123456789[..$999][..`6esn`],$`4esn`[#usn7][8.1e1],10.12e12 Contains .9e0 Union All Create Shortestpath(((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})))"), + octest_legacy:ct_string("Remove [`3esn` In 8.1e1 Contains .9e-1 Contains false Where 07 Ends With {1000} Ends With 01234567|$`5esn` Ends With 's_str' Ends With $`6esn`].`2esn`,{`2esn`:0xabc[01234567][.12e-12],`1esn`:{`3esn`}[#usn7]}._usn4?,(_usn3 )<-[:`8esn`|:#usn8 *0X7..0Xa]->(`4esn` :`8esn`{12}).`8esn`!._usn3? Unwind $`6esn` In 999 In {_usn3} As usn2 Optional Match ({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})<-[_usn3? *0xabc..12]->(_usn3 {#usn7:$999 =~false =~{`8esn`}}) Union All Start `2esn`=Relationship:``(`1esn`=\"d_str\") ,`3esn`=Node(0xabc,7,0Xa,01234567)Where 2.12[`4esn`][.9e-1] Merge @usn6=(({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)) Union All Unwind $`3esn`[0X7..$`8esn`] As @usn5"), + octest_legacy:ct_string("Remove `2esn`:`3esn`,(`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->(:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[ *1000..{`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]->(`` ).#usn8! Return Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] As #usn8,[`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]),{`7esn`} Is Not Null Is Not Null As `1esn` Order By 00[{1000}] Descending,'s_str'[$_usn3..][9.1e-1..] Desc,$_usn4 =~$#usn8 =~{`4esn`} Desc Skip $``[9e12..] Limit Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[`8esn`(0X0123456789ABCDEF Is Not Null Is Not Null,{usn1} Is Not Null Is Not Null)..][{usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}..] Union Unwind {`8esn`}[.0e0..][999..] As `1esn`"), + octest_legacy:ct_string("Foreach(`7esn` In 01234567[1000..][$`8esn`..]| With Distinct 5.9e-12[01][`4esn`],$#usn8 Starts With 9.1e-1 Starts With {#usn7} As `8esn`,`5esn` Ends With 's_str' Ends With @usn5 As `1esn` Order By 's_str'[$_usn3..][9.1e-1..] Desc Where 1.0 Is Null Is Null Optional Match #usn7=(`8esn` :`7esn`)-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``),`4esn`=Shortestpath((_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn2 *7]-(`` ))) With Distinct $`5esn` =~Count(*) =~1.9e0 As @usn6,.9e12[6.0e0..][@usn5..],07[9e-1..][1e1..] As `4esn` Order By Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Null Is Null Desc,$`8esn`[...1e-1] Desc,$12 Is Not Null Descending Limit `4esn`[12.0..][9.1e-1..] Union All Start usn1=Rel:`8esn`({`3esn`}) ,#usn7=Node:#usn8(usn2='s_str') Return *,9e1[12] As usn1,Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``})[`3esn`(Distinct 0 Starts With `7esn` Starts With 9e0,$`4esn` Is Null Is Null)][`7esn`(Distinct $`4esn` Ends With .12e12 Ends With 123.654)] Limit true In 0.0 Create (((`3esn` $0)-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]}))),(({`6esn`:8.1e1 Contains .9e-1 Contains false})<-[`8esn`*]-(@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})-[`6esn`?:@usn5|:#usn7{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}))"), + octest_legacy:ct_string("Detach Delete 1.9e0 In $@usn6 In $_usn3,$@usn5 =~{`3esn`} Load Csv With Headers From .0e0 =~Case $`6esn` Starts With 0.0 When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] End =~All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}]) As `1esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Return Distinct *,$999 =~0e0 =~0X7 As `1esn` Order By $`6esn`[@usn6...9e-12] Asc,9e-12 Starts With {1000} Desc Limit Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789)[..All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 1e1 =~{@usn5} =~`7esn`)][..Case 07[..$`5esn`] When 00[$_usn4][$`1esn`] Then {#usn7}[.12e-12] Else `5esn` Contains 0 Contains $12 End] Delete {`8esn`}[9e-12..0],usn1 =~false =~{999},.12e-12 Ends With `2esn` With 8.1e1[$``],.9e12 Contains 0 Contains $0 As _usn4 Skip [usn2 In .12e-12 Ends With `2esn` Where @usn5 In Null|false =~{`8esn`} =~00][Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where Count ( * ) =~123456789 =~{@usn5})..Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)] Limit Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Where $_usn4 Ends With {#usn8} Union All Create Shortestpath((`` :`3esn`)-[:#usn8|:``*{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]->(:``{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))"), + octest_legacy:ct_string("Start `6esn`=Rel(7,0X7,0,01) ,@usn5=Rel:usn1({usn2})Where 11.12e-12 Ends With 's_str' Union All Create Unique (((@usn5 {@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))) Foreach(_usn4 In {_usn3}[{0}...9e-1][9e-1...0e0]| Match _usn4=(({`2esn`:00[Null..usn2],`2esn`:3.9e-1[..$1000][..0.12]})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})),_usn4=Allshortestpaths(((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))) Using Scan #usn7:`3esn` Using Index @usn5:`4esn`(usn1) Optional Match `1esn`=Allshortestpaths((_usn3 {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})),(`6esn` {`3esn`:Count ( * )[_usn4..]})) Union All Merge `4esn`=Shortestpath((#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})) On Create Set `4esn` =Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 7 In 1e1 In {``})[Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..])..@usn6(0xabc[..Count(*)][..$`5esn`])][$`6esn`..{#usn7:00 =~`4esn` =~.9e-12}]"), + octest_legacy:ct_string("Create usn2=Shortestpath(((@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))) Optional Match `4esn`=(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(_usn4 :#usn8:@usn6),Shortestpath((((_usn3 {_usn3:.12e-12 Ends With `2esn`,usn1:Null[#usn7..][9.1e-1..]})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[ *..123456789{@usn5:$`8esn`}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})))) Where .9e12[6.0e0..][@usn5..] Union Merge #usn7=Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))) On Match Set (:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12}).`3esn`! =0x0[{`6esn`}..],_usn3+=Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`|.9e-12[.12e12..][0Xa..])[{#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}..],`4esn` ={`8esn`}[.0e0..][999..]"), + octest_legacy:ct_string("Return Distinct *,{#usn7} =~.12e12 =~9e0,Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] Order By $123456789[{usn1}][.12e-12] Asc,0X0123456789ABCDEF Desc Skip 11.12e-12 =~Count ( * ) Limit (`4esn` {``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})-[?:#usn7|:@usn5 *12]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}) Contains Case 1.0 Is Null Is Null When .12e12[..7] Then $_usn4[..$999] When .0e-0[..01234567] Then $#usn7 Starts With $123456789 End Contains Shortestpath((usn1 :#usn8:@usn6)) Create `5esn`=(:`3esn`{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}),(usn1 :`3esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 )<-[_usn4{`5esn`:9e0[..{#usn7}][..`4esn`]}]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}) Union All With Distinct *,Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,Case \"d_str\"[0x0..{@usn6}][$@usn5..0] When 0e0 Contains {`2esn`} Then 0X0123456789ABCDEF[1e1..] Else .12e12 Starts With 5.9e-12 Starts With `4esn` End In {usn1:$#usn7[01..2.12][2.12..3.9e-1],`6esn`:.0e-0 Ends With $`2esn` Ends With `5esn`} Order By .9e12 Contains 5.9e-12 Contains 9e-1 Descending Skip $123456789[..$999][..`6esn`] Unwind #usn7[{_usn3}] As @usn5 Union All Match _usn3=Shortestpath(((usn1 :#usn8:@usn6))),((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})) Where .0e-0 Ends With $`2esn` Ends With `5esn` Merge Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))) On Match Set $`4esn`.@usn6? =0e-0[#usn7..999],`6esn` =.1e-1[$@usn6],_usn4+=All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] On Match Set `7esn` =0.0[..9e1][..2.12],#usn8+=1.0[$`4esn`..$@usn5] Foreach(_usn3 In Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null) In `4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`)| Detach Delete $`4esn`[usn2..],Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`}) In Allshortestpaths(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) In Extract(usn1 In $@usn6 Is Null Is Null Where 0Xa In 1.0 In $@usn5|Null[#usn7..][9.1e-1..]),Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null)"), + octest_legacy:ct_string("Return * Foreach(usn2 In 9e12 =~12e-12| Remove Case When $usn2 Ends With 00 Ends With 9e12 Then $#usn7 Ends With 999 Ends With {12} Else 0e0 =~{12} =~{1000} End.@usn6.usn1?,None(@usn6 In 9e12[..usn2][.._usn3] Where {`8esn`}[@usn5][$`2esn`])._usn3!) Unwind Case false =~{`8esn`} =~00 When usn2 Starts With $usn1 Starts With 10.12e12 Then usn2 Starts With $usn1 Starts With 10.12e12 When {1000} =~4.9e12 =~9e1 Then `3esn` =~$#usn7 End Ends With All(usn2 In $`5esn`[{`4esn`}][{0}] Where 0e0 Contains {`2esn`}) Ends With [#usn7 In .0e-0 In 12 Where Count ( * ) Is Not Null Is Not Null|$`7esn` Starts With 's_str'] As `1esn` Union All Create Unique (`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]}),@usn6=Shortestpath((@usn6 :`5esn`:`7esn`)) Foreach(`2esn` In 010[.0e-0..\"d_str\"][.9e0..123.654]| Create Unique `6esn`=(@usn6 :`5esn`:`7esn`) Remove (:`1esn`:``{`8esn`:0X0123456789ABCDEF Ends With {1000}})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`6esn` :`4esn`:usn2).`2esn`!._usn4?.`4esn`!,Case `1esn` =~{12} =~{999} When .9e1[$`1esn`..][$``..] Then $12 Is Null Is Null When $#usn7[01..2.12][2.12..3.9e-1] Then $999 Ends With `2esn` Ends With 12.0 End.usn1!.`6esn`!.#usn7!) Union All With *,{`3esn`}[...1e1][..0],$12 Ends With 7.0e-0 Ends With 9e-12 As usn1 Order By (:`1esn`:``{`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]})-[:`1esn`|:`1esn` *999..123456789{@usn5:$999 Ends With `2esn` Ends With 12.0}]->(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}) Contains Case {`8esn`} In {_usn3} In 6.0e0 When 9e0[..{#usn7}][..`4esn`] Then .12e12 Is Not Null When #usn8[$`2esn`] Then 3.9e-1 Starts With .9e0 Starts With {#usn7} Else 8.1e1 Contains .9e-1 Contains false End Contains Extract(#usn7 In .0e-0 In 12 Where {0}[.0e-0][$`2esn`]) Descending,[`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null] =~`6esn`(Distinct 2.9e1[Count ( * )..]) Ascending,01234567[10.12e12][0Xa] Desc Skip {7} Is Not Null Where .1e-1[2.9e1..][$`7esn`..] Load Csv From {`7esn`}[$12..123456789] As _usn4 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Merge `7esn`=Shortestpath((_usn4 {`3esn`:.0e-0 In 12})) Detach Delete $12 Ends With {_usn4} Ends With $`8esn`,.1e1 Is Null Is Null Union All Unwind {@usn5} As _usn4 Load Csv From 's_str'[`2esn`][12.0] As @usn6 Union Unwind {`8esn`}[.0e0..][999..] As `1esn`"), + octest_legacy:ct_string("Foreach(#usn8 In `5esn`[9e-1][7.0e-0]| Load Csv From {usn1:$usn1[9e1][{999}],#usn8:0e-0[$``..10.12e12]}[Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End] As `8esn` ) Union All Match Shortestpath(((usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})-[{#usn7:1e-1[$`4esn`]}]->(_usn4 :`1esn`:``{`3esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}))),(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})<-[`5esn`:@usn6|:`4esn` *010..0{`8esn`:0xabc Starts With 12 Starts With 0e-0}]-(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})<-[?:@usn6|:`4esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]-(`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]}) Using Index `1esn`:`1esn`(`4esn`) Using Join On _usn4,usn2,`` Create `3esn`=(((`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}))),`6esn`=Shortestpath((`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})<-[`7esn`:`4esn`|:`2esn` *0X7..0Xa{_usn3:@usn6[0x0..][$_usn4..],`6esn`:9e-1[1.9e0]}]->(_usn3 :``)) With *,0e-0[_usn4..{`7esn`}][\"d_str\"..{`2esn`}] As `4esn`,$_usn4[..01234567][..$`6esn`]"), + octest_legacy:ct_string("Foreach(_usn4 In Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null| Optional Match `2esn`=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))) Using Join On _usn3,usn2 Using Index _usn4:`1esn`(@usn5) Where 0e0 Contains {`2esn`})"), + octest_legacy:ct_string("Merge `2esn`=Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) On Create Set Case 0xabc[..Count(*)][..$`5esn`] When `6esn`[0X0123456789ABCDEF..][`8esn`..] Then `2esn`[`7esn`][1000] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} Else 12e12[{`4esn`}..`4esn`][999..{@usn6}] End.``!.#usn8! =Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})),(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})-[_usn4:_usn3{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]}).#usn7! =8.1e1 Contains .9e-1 Contains false,`5esn` =false Is Not Null Is Not Null Union All Load Csv From 6.0e0 In 9e-1 In 123456789 As `4esn` Foreach(@usn6 In {`6esn`} Starts With 12e12 Starts With {`2esn`}| Delete {123456789} Contains $#usn7 Contains {#usn8} Load Csv From None(`1esn` In $12 In {usn2})[..Reduce(usn2=.9e0 In 8.1e1,`3esn` In 8.1e1 Contains .9e-1 Contains false|$_usn3 Is Not Null)] As #usn7 Fieldterminator 's_str') Union All Create Unique Allshortestpaths(({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)})),((:`1esn`:``{`7esn`:`5esn` Contains 0 Contains $12,`2esn`:.9e12[6.0e0..][@usn5..]}))"), + octest_legacy:ct_string("Using Periodic Commit 0Xa Load Csv With Headers From 2.12[10.12e12][_usn4] As `1esn` Start `2esn`=Node:_usn4(#usn8=\"d_str\") ,`7esn`=Relationship:usn1(usn2='s_str')"), + octest_legacy:ct_string("Return $`5esn` Is Not Null Is Not Null,Allshortestpaths(({usn1:12[..$`5esn`]})<-[:`4esn`|:`2esn`{`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]}]-(#usn8 :usn2))[..`1esn`][..Case .12e-12 Starts With .12e-12 When 0xabc Starts With {`3esn`} Starts With {``} Then {usn2} Is Not Null Is Not Null Else {`4esn`} Ends With Count(*) End] As @usn6 Skip 0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}] Limit 's_str'[$_usn3..][9.1e-1..] Load Csv With Headers From Allshortestpaths((((@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?*..]-(`` {`6esn`:1000[{`1esn`}..][$`3esn`..]})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))))[Allshortestpaths((`1esn` :usn2{`8esn`:12.0[...0e0]})-[?:`1esn`|:`1esn` *..0x0{@usn6:.0e-0 In 12}]-(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]}))][Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 01234567[1000..][$`8esn`..])] As `3esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Match #usn7=(`8esn` :`7esn`)-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``),((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})) Using Join On `3esn`,`` Using Index `1esn`:_usn4(`5esn`) Create ``=Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))) Union Create Unique ((`1esn` :`8esn`)<-[:usn1|usn2]-(`` :`4esn`:usn2)<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``)),Allshortestpaths(({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)})) Remove (:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(`2esn` :@usn5)-[`8esn`:_usn4|:`1esn`]->({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`}).#usn7,Filter(#usn7 In .0e-0 In 12 Where _usn4 Is Not Null Is Not Null).#usn7! Unwind Single(`6esn` In 010[{`1esn`}..]) As `8esn` Union Unwind .9e12 Is Not Null Is Not Null As #usn7 Load Csv From 9e-1[1.9e0] As #usn8 "), + octest_legacy:ct_string("Start _usn3=Rel:`8esn`(usn1={#usn7}) Where $usn1 Contains 4.9e12 Contains $`2esn`"), + octest_legacy:ct_string("Merge `5esn`=((#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[`3esn`:@usn6|:`4esn`]-(#usn8 :`7esn`{_usn4:07 Ends With {1000} Ends With 01234567})<-[$#usn8]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]})) On Create Set (:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}).usn2 =Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] On Match Set $`4esn`.@usn6? =0e-0[#usn7..999],`6esn` =.1e-1[$@usn6],_usn4+=All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Delete 5.9e-12[01][`4esn`],00[Null..usn2] Union All Foreach(#usn8 In $_usn4 =~$#usn8 =~{`4esn`}| Start _usn3=Relationship:usn2(`8esn`=\"d_str\") Where $1000[..0e-0][..010] With Distinct *,$`1esn`[4.9e12..][_usn3..],Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End =~{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]} Order By Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) Descending,5.9e-12[01][`4esn`] Descending,[`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] Descending Skip Count(*) Is Not Null Is Not Null Limit 12e-12 =~$_usn3 Where false Contains {`7esn`}) Union All Optional Match ((_usn3 :`7esn`{@usn6:$`4esn` Ends With .12e12 Ends With 123.654})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)<-[#usn7? *0xabc..12]-(:`3esn`)) Using Scan `4esn`:#usn7 Using Join On usn1 Where 0.12 In $`` Create Unique `1esn`=Allshortestpaths(((:usn1{`6esn`:$_usn3[usn2..][usn1..],#usn7:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}))),#usn8=Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789})) Merge `5esn`=Shortestpath(((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`}))) On Create Set `4esn` =Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 7 In 1e1 In {``})[Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..])..@usn6(0xabc[..Count(*)][..$`5esn`])][$`6esn`..{#usn7:00 =~`4esn` =~.9e-12}]"), + octest_legacy:ct_string("Merge #usn7=Shortestpath(((`8esn` :@usn6:_usn3{`2esn`:#usn7 =~$@usn5 =~{7},`2esn`:{`3esn`}[..{`4esn`}][..usn2]})-[`8esn`:`4esn`|:`2esn`]->(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1}))) On Match Set {#usn8:$#usn7[01..2.12][2.12..3.9e-1],``:.9e0[$#usn8][Count ( * )]}.usn2! =Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]) Is Not Null Is Not Null Merge Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))) On Match Set Case .12e12 Ends With 07 Ends With 3.9e-1 When 0.12 In $`` Then 0e-0 In 0X0123456789ABCDEF In `3esn` When 01 Ends With .0e0 Ends With 7.0e-0 Then $`6esn`[@usn6...9e-12] End.`1esn`.`1esn` =1e-1 Starts With .1e1 Starts With 12.0"), + octest_legacy:ct_string("Create Unique Allshortestpaths(((#usn8 :`4esn`:usn2)<-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]}))) Load Csv From 4.9e12[{_usn4}..] As _usn4 Fieldterminator 's_str' Load Csv From `8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End As `` Union All With Distinct *,{``:$`8esn`[..5.9e-12][..`8esn`]}[[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .9e12[6.0e0..][@usn5..]|2.9e1[2.9e1..][`4esn`..]]..][Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End..],01234567[1000..][$`8esn`..] Limit 07 Ends With {1000} Ends With 01234567 Where `4esn` Contains 0X0123456789ABCDEF Contains $usn2 Foreach(usn2 In 9e0[..{#usn7}][..`4esn`]| Start _usn4=Relationship:usn2({usn1}) ,_usn4=Relationship:`4esn`(\"d_str\")) Union Load Csv With Headers From Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As `` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Remove Allshortestpaths((({`6esn`:3.9e-1[..$1000][..0.12]})-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-(:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00}))).`2esn`.#usn8 Unwind Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End[(`4esn` :#usn7:`8esn`)-[_usn3?:@usn6|:`4esn`{_usn4:$12 Ends With 12.0 Ends With $`4esn`}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2)..][Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1)..] As _usn4 With Distinct *,{7} Ends With 999 As @usn5 Order By 7.0e-0 Ends With 0e0 Ends With 3.9e-1 Asc Skip {`5esn`}[{1000}..] Union Merge `5esn`=((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)) On Match Set usn2+={7} Starts With 0x0 Starts With 9e1,`3esn`:`8esn`,{_usn4:07 Ends With {1000} Ends With 01234567}._usn4?.`1esn`? =$`7esn` Is Null On Create Set `5esn` =({`4esn`:#usn8[\"d_str\"..usn2],`1esn`:12.0[..Count ( * )][..@usn6]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ) =~Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End =~{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Load Csv From $@usn6 Starts With 0xabc Starts With {`7esn`} As usn1 Union All Foreach(`7esn` In .1e-1[$@usn6]| Delete $`8esn` Contains _usn4,{usn2} Contains {0} Start `1esn`=Relationship:_usn4(`5esn`={usn1}) ) Foreach(`` In Any(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0xabc[..{usn1}][..\"d_str\"])[Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 0X0123456789ABCDEF Is Not Null Is Not Null)..None(#usn8 In 07[..$`5esn`] Where 8.1e1 Contains .9e-1 Contains false)][Case {0} Is Not Null Is Not Null When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End..[`` In `7esn` =~#usn8 =~\"d_str\"|$_usn4 Ends With {#usn8}]]| Load Csv From {@usn6:3.9e-1[..$1000][..0.12]}[All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000)] As `3esn` )"), + octest_legacy:ct_string("Start #usn7=Node( {``}) ,`6esn`=Node:@usn6(#usn8='s_str')Where {_usn3} In $#usn8 In $12 Unwind .12e-12 Ends With `2esn` As `` Start `4esn`=Node(0x0) Union With Distinct *,@usn6[Reduce(`5esn`=_usn4['s_str'][8.1e1],_usn3 In `8esn`[_usn4]|$_usn3 =~'s_str' =~12)..][(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[`7esn`?]-(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})..] As usn1 Skip {`6esn`} In .0e0 In $0 Limit (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])] Where 1.0 In {usn1} Union Match Shortestpath((`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[:`7esn`|usn1 *7]-(`8esn` :`5esn`:`7esn`{usn1:{``} Contains 0.0 Contains `4esn`})-[? *1000..{`1esn`:{`1esn`} Is Null}]->(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})),(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}}) Using Index `7esn`:``(`8esn`) Where .9e12[6.0e0..][@usn5..] Delete $usn1[7.0e-0..][{123456789}..],{usn1}[`7esn`..Count(*)] Foreach(`8esn` In (`1esn` :@usn6:_usn3{#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12})<-[@usn5?:`5esn` *01{#usn8:00[Null..usn2],@usn6:0.12 =~2.9e1 =~9e1}]-({@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})[Filter(_usn3 In `8esn`[_usn4] Where 01234567 =~12e12 =~.0e-0)..][{`7esn`:.9e1[$`1esn`..][$``..]}..]| Remove (#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(`7esn` {@usn5:Count ( * )[_usn4..]}).usn2?)"), + octest_legacy:ct_string("Create Unique (((`1esn` :`3esn`{@usn6:$12 Is Null})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),`3esn`=(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0})-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[usn1?:`3esn`|`3esn`*..]-(`1esn` ) Union All Unwind usn2($12 =~4.9e12) Ends With Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Ends With Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End As #usn8 With *,@usn6 Ends With $`2esn` Ends With 1.0,.1e-1[$@usn6] Skip usn2($12 =~4.9e12) Ends With Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Ends With Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End Limit false =~$7 Where {``} Contains 0.0 Contains `4esn` Union Unwind $123456789 As #usn7 Start `2esn`=Node:`5esn`({`2esn`}) ,@usn6=Node( {``})Where .0e-0 Ends With $`2esn` Ends With `5esn`"), + octest_legacy:ct_string("Unwind 00[$_usn4][$`1esn`] As _usn4 Remove `4esn`().`6esn`!.#usn7!.`2esn` Remove Case $`8esn` Is Not Null Is Not Null When #usn8[\"d_str\"..usn2] Then .12e-12 Is Null End.@usn6?,Filter(`6esn` In 010[{`1esn`}..] Where {`8esn`}[9e12..][{_usn4}..]).`3esn`!,Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]|$1000 Starts With {@usn6} Starts With $@usn5).usn1 Union Merge ((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[ *..123456789{@usn5:1e-1[$`4esn`]}]->(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})) Start @usn5=Rel:`8esn`(usn1={#usn7}) ,``=Relationship:@usn6(#usn8='s_str')Where 12e-12 In .9e0"), + octest_legacy:ct_string("Remove usn2(Distinct .9e0 In 8.1e1).usn2?,({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`2esn`{usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]}]-(:_usn3{@usn6:$1000 Starts With {@usn6} Starts With $@usn5})-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1}).usn1?.@usn5.`2esn`!,Reduce(`5esn`=.9e1 Ends With 0x0,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|Count ( * ) Contains 9.1e-1 Contains {`2esn`}).`6esn` Union Create `4esn`=((`3esn` :#usn8:@usn6)-[`4esn`? *01{#usn8:12.0[..Count ( * )][..@usn6]}]-(usn1 :#usn8:@usn6)) Remove Filter(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1]).`5esn`!._usn3!,Any(usn2 In .12e-12 Ends With `2esn` Where .12e-12 Starts With .12e-12).#usn7.`7esn`,`7esn`(Distinct `` Ends With 1.0 Ends With usn1).`3esn`? Union All Unwind {0}[.0e-0][$`2esn`] As _usn3 Foreach(#usn8 In Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}) Ends With ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[ *12{#usn8:0e0 =~{12} =~{1000}}]->(:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}) Ends With Case When $@usn5[``..] Then `3esn` Is Null When $7[.1e-1..{@usn6}][$7..{`1esn`}] Then 0xabc[0Xa..] Else 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] End| With Distinct 12e12[usn2..$`6esn`] As usn1,0Xa Contains 12e-12,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As #usn7 Order By 9e12 Ends With \"d_str\" Ends With 0X7 Desc Skip {12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1])"), + octest_legacy:ct_string("Foreach(`3esn` In \"d_str\" Starts With $`7esn` Starts With 999| Unwind Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) As @usn6) With {@usn5:5.9e-12 Is Null Is Null} Ends With Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where _usn4['s_str'][8.1e1]|0.12 =~2.9e1 =~9e1) Ends With All(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12) As `7esn` Order By _usn4['s_str'][8.1e1] Asc,Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {#usn8}[..@usn5])[(:#usn8:@usn6{`3esn`:$#usn7})-[ *12{#usn8:0e0 =~{12} =~{1000}}]-(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})-[usn2:`5esn`]-(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})][[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01|_usn4 Ends With {`8esn`} Ends With usn2]] Ascending Skip {`1esn`}[..$_usn4] Where $@usn5[.9e-1] Match _usn4=Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]}))),`3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})) Using Join On `6esn`,_usn3 Using Index @usn5:@usn6(`5esn`) Union All Optional Match _usn4=((:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)) Where .0e0['s_str'..][0Xa..] Union All Merge Shortestpath((@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?:`8esn`|:#usn8 *999..123456789]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))"), + octest_legacy:ct_string("Create ``=Shortestpath(((`1esn` :`8esn`)-[`7esn`?:`2esn`|`5esn` *0]->(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))),@usn6=((#usn8 :@usn5{`8esn`:0x0 Ends With #usn8 Ends With .9e-1})) Create `7esn`=((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]})),_usn3=(#usn7 :@usn6:_usn3)-[`6esn`?:@usn5|:#usn7{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})"), + octest_legacy:ct_string("With *,4.9e12[{_usn4}..],Reduce(`6esn`=$`5esn`[$_usn3][$12],`2esn` In $@usn5 Is Not Null Is Not Null|1.9e0 In $@usn6 In $_usn3)[{``:.12e-12 Is Null}..][Case When $1000 Starts With {@usn6} Starts With $@usn5 Then `2esn` When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else 12[4.9e12..] End..] Order By 0xabc[01234567][.12e-12] Ascending,Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`8esn`}[..999][.._usn3]) Starts With Reduce(``=$#usn7 Ends With 999 Ends With {12},`2esn` In $@usn5 Is Not Null Is Not Null|{`6esn`} Starts With .12e-12) Descending Limit None(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999)[Shortestpath((((:#usn8:@usn6{`3esn`:$#usn7})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(`4esn` :`8esn`{12})-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12}))))..] Where 00[{1000}] Create `2esn`=Allshortestpaths((((@usn6 :`5esn`:`7esn`)-[`8esn`{#usn8:.12e12[..7]}]-({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})))),`2esn`=Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) Create Unique @usn6=((({@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})<-[:@usn5|:#usn7 *0X0123456789ABCDEF{`5esn`:9e-1 Contains 3.9e-1}]->(`6esn` $_usn3)<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),(((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`}))) Union All With $123456789[{usn1}][.12e-12] As `3esn`,1.9e0 =~.0e0 =~0X7 As #usn7,9e1 Ends With 9e12 Ends With 0x0 As #usn8 Order By $@usn5 Is Null Is Null Ascending,`1esn` Is Not Null Is Not Null Desc Limit {`8esn`} Ends With true Ends With {`3esn`} Where $12 Is Not Null Is Not Null Remove (`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(`1esn` :#usn7:`8esn`).@usn5.`5esn`?,[usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null|2.12[`4esn`][.9e-1]].`1esn`!,{`3esn`:00 =~`4esn` =~.9e-12}.`3esn`? Load Csv From $@usn6 Is Null As `1esn` "), + octest_legacy:ct_string("Remove None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $usn2 Ends With 00 Ends With 9e12).`3esn`,Reduce(`3esn`=1e1[$_usn3],`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1[..9.1e-1][...9e1]).`2esn`!.`1esn`?.`3esn`? Start `3esn`=Node(0xabc,7,0Xa,01234567) Where $`8esn` Is Not Null Is Not Null Union Create Unique (`1esn` :`7esn`) With Distinct *,(:`6esn`)<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 )<-[:`4esn`|:`2esn`{usn1:3.9e-1 Contains $@usn5}]->(`7esn` ) In Case 9e1[0.0] When 999 Starts With 7.0e-0 Starts With true Then {usn2}[{999}..][9e12..] End In [`2esn` In $@usn5 Is Not Null Is Not Null Where {`3esn`} =~$@usn5 =~`2esn`|\"d_str\" Is Not Null Is Not Null] As _usn4 Order By Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] Asc,9e-12 Contains .12e12 Ascending,4.9e12[{_usn4}..] Descending Skip 010[...12e-12] Limit _usn4[{``}..{`6esn`}][$7..$_usn3] Where `8esn`[_usn4] Delete 9e0 Is Null,1e-1 Ends With {@usn5} Ends With {usn2}"), + octest_legacy:ct_string("Remove Case #usn8[\"d_str\"..usn2] When $12[$`6esn`..][01..] Then $`4esn`[$@usn6...12e12] End.`6esn`._usn3,Reduce(usn2=$@usn6 Is Null Is Null,`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|$`4esn` Contains `4esn` Contains .0e-0).usn2 Unwind $usn2[$999][1e1] As `4esn`"), + octest_legacy:ct_string("With *,Case .12e-12 Is Null When Count ( * )[_usn4..] Then 7.0e-0 Is Not Null When 2.12[{12}] Then {usn2} Ends With {@usn6} Ends With 1000 End[Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..])][({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})] Order By .0e0 Starts With 1.0 Starts With $12 Ascending Limit 0e0[2.9e1..][.12e-12..]"), + octest_legacy:ct_string("Start _usn4=Rel:`4esn`({7}) ,`6esn`=Rel:@usn6(`8esn`='s_str')Where {0} Ends With 0Xa Start _usn4=Rel:`5esn`(@usn5=\"d_str\") With .0e-0 Ends With $`2esn` Ends With `5esn`,Case {`4esn`} Ends With Count(*) When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] When $#usn7 Contains 3.9e-1 Then 123.654[10.12e12..$12][6.0e0..{#usn8}] Else $usn1[0e0...9e-12] End[Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))..][Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})..] As `2esn`,true In 0.0 As @usn5 Order By 0 Ends With .0e-0 Ends With false Descending,Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where .9e1[$`1esn`..][$``..]) Ascending,Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] Asc Limit [`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..])"), + octest_legacy:ct_string("Optional Match `7esn`=Allshortestpaths(((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}))) Using Index #usn8:`3esn`(@usn6) Create `8esn`=(({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})),Allshortestpaths((:`3esn`)) Union Return Distinct *,@usn6[Reduce(`5esn`=_usn4['s_str'][8.1e1],_usn3 In `8esn`[_usn4]|$_usn3 =~'s_str' =~12)..][(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[`7esn`?]-(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})..] As usn1 Skip {`6esn`} In .0e0 In $0 Limit (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])]"), + octest_legacy:ct_string("Create (`6esn` :`2esn`:`4esn`{`4esn`:9e-1 Is Not Null,`8esn`:9e0[`7esn`..][#usn8..]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(:_usn4:`2esn`) Foreach(`1esn` In [`1esn` In $12 In {usn2} Where $`8esn` Is Not Null Is Not Null|8.1e1 Contains $@usn6] In All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..]) In Extract(`7esn` In 0.12 Is Not Null Where .12e-12[@usn6..'s_str'])| Create Unique Allshortestpaths(((({#usn7:{7}[0x0][1e1]})<-[{@usn5:0.12 =~`6esn` =~.9e-1}]->({_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[usn2?:`2esn`|`5esn`{``:{#usn7} =~$@usn6 =~$7}]->(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})))) Load Csv From _usn4['s_str'][8.1e1] As `` ) Union Delete 9e0 Is Null,1e-1 Ends With {@usn5} Ends With {usn2} Start `1esn`=Rel:`5esn`(@usn5=\"d_str\") ,usn1=Rel:`7esn`(`8esn`={`3esn`})Where {usn1} In Count ( * ) In 12e12 Start #usn8=Relationship:usn2(usn1={_usn3}) "), + octest_legacy:ct_string("Load Csv With Headers From {0}[..`3esn`][..8.1e1] As `2esn` Fieldterminator \"d_str\" Load Csv From Single(`6esn` In 010[{`1esn`}..] Where _usn4 Ends With {`8esn`} Ends With usn2) =~`1esn`(123.654[01..][Count(*)..],{_usn4} Ends With {0} Ends With `1esn`) =~(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}) As `8esn` Unwind $`6esn` =~$#usn7 =~$`4esn` As usn1 Union All Foreach(usn2 In {usn1:12[..$`5esn`]}[None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..])]| Optional Match Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))),(((usn1 :@usn6:_usn3)<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->(:usn1)<-[:``|:`7esn`{@usn6:{#usn8}[..@usn5],@usn6:$1000 Contains $123456789 Contains #usn8}]->(`1esn` :@usn6:_usn3{#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12}))) Create Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))),@usn6=((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}))) Create Unique (@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})-[#usn8?*..]-(`` {`6esn`:1000[{`1esn`}..][$`3esn`..]})"), + octest_legacy:ct_string("Create Unique (@usn5 ) Delete $7 =~01234567 =~12.0,9e1 Starts With $@usn6 Starts With 0e-0 Union With Distinct *,9e1[12] As usn1 Limit 9.1e-1[..Null][..#usn8] Where $#usn8 Is Not Null Is Not Null Detach Delete 8.1e1[usn2..{1000}][0X7..9e12],$1000[_usn4][{@usn5}]"), + octest_legacy:ct_string("Unwind $`8esn`[0x0][.9e0] As `5esn`"), + octest_legacy:ct_string("Foreach(@usn6 In 7.0e-0 Ends With 0e0 Ends With 3.9e-1| With Distinct 5.9e-12[01][`4esn`],$#usn8 Starts With 9.1e-1 Starts With {#usn7} As `8esn`,`5esn` Ends With 's_str' Ends With @usn5 As `1esn` Order By 's_str'[$_usn3..][9.1e-1..] Desc Where 1.0 Is Null Is Null Create Shortestpath((`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})),((_usn3 :`7esn`{@usn6:$`4esn` Ends With .12e12 Ends With 123.654})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)<-[#usn7? *0xabc..12]-(:`3esn`))) Optional Match @usn5=Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))),(@usn6 :_usn4:`2esn`) Using Join On `2esn`,`6esn` Using Scan #usn8:`1esn` Where 5.9e-12[12e-12][$`8esn`]"), + octest_legacy:ct_string("Remove [_usn3 In `8esn`[_usn4] Where 12.0[..Count ( * )][..@usn6]|$#usn7].``.usn1!.#usn8!,Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})).usn2!.`5esn`?,{usn2:.9e1 In .1e-1,usn2:1e-1 Contains 0.0}.`5esn`?.``"), + octest_legacy:ct_string("Return Distinct {`5esn`} Ends With $`7esn` Ends With {@usn5} As `4esn`,{#usn8} Is Not Null As `6esn`,{`3esn`}[...1e1][..0] Order By usn1 Ends With 11.12e-12 Ends With 5.9e-12 Descending,.1e-1 Is Not Null Ascending,Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}] Descending Skip 9e0[{7}...0e-0][Null..@usn5] Limit $`5esn` =~Count(*) =~1.9e0 Create Unique _usn4=((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})) Merge Allshortestpaths(((`8esn` :`7esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 )))"), + octest_legacy:ct_string("Unwind {`3esn`}[..0xabc][..{`6esn`}] As `7esn` With *,Reduce(`4esn`={0} Is Not Null,#usn7 In .0e-0 In 12|12e12[{`4esn`}..`4esn`][999..{@usn6}]) Contains Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 0xabc[..{usn1}][..\"d_str\"]) Contains `3esn` As `5esn`,None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null) As _usn3 Order By {12}[true..][7..] Ascending,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Asc,({#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]})<-[`8esn`*]-(#usn8 )[..Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn`[0X0123456789ABCDEF..][`8esn`..]|$_usn3 =~'s_str' =~12)][..`1esn`(Distinct .9e1[$`1esn`..][$``..])] Ascending Skip 7[..123456789][..true] Where {#usn7}[.12e-12] Union Create `7esn`=(`3esn` :usn2) Union Load Csv With Headers From All(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999)[..Case $12[10.12e12][.1e1] When {999} Starts With $`4esn` Starts With $`1esn` Then $_usn3 In `2esn` In `3esn` End] As `` Fieldterminator \"d_str\" Create @usn5=(((`1esn` :usn2{`8esn`:12.0[...0e0]})-[`5esn`?:@usn5|:#usn7{`4esn`:9e-12[$7..]}]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]}))),Shortestpath((`6esn` :``)<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})) With Allshortestpaths((({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)))[Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0])..][Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End..] As #usn8,{12} Ends With 1e1 As `8esn` Order By ``[$7..$_usn4] Asc Where 0.0[`7esn`]"), + octest_legacy:ct_string("Load Csv From 0.12[Count ( * )..Count ( * )][$999..`5esn`] As `7esn` Unwind 0.0[00..][0xabc..] As #usn7 Start #usn7=Node:``('s_str') Union Foreach(`1esn` In Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null)| Delete 2.9e1 Ends With `5esn` Ends With 1000 With Distinct *,false[..usn2][..999] Order By .0e-0[010..] Asc,6.0e0 In 9e-1 In 123456789 Ascending,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) Desc Skip $`3esn` =~$123456789 =~`3esn`) Return Distinct 9.1e-1[..Null][..#usn8] As @usn6 Order By {999} Starts With $`4esn` Starts With $`1esn` Ascending,$`8esn`[...1e-1] Desc Limit Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null"), + octest_legacy:ct_string("Merge `8esn`=Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})) On Match Set Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where {0}[.1e-1..][_usn4..]).`6esn`.usn1.`7esn`? =0xabc Starts With `2esn` Starts With 10.12e12,`8esn` =[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]] Merge (#usn7 :@usn5)-[:`8esn`|:#usn8 *0X7..0Xa]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(_usn4 :`5esn`:`7esn`{_usn4:$_usn3[.0e-0..999]}) On Create Set usn2+=Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null),#usn8 =None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) Create (#usn7 :`6esn`{usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[`2esn`?:``|:`7esn` *1000..]-(:_usn3{@usn5:`2esn`[`7esn`][1000]}) Union All Unwind `4esn` =~010 As `` Remove ({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000})<-[`5esn` *01]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}).#usn7!,All(usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]).`8esn`!,`7esn`:usn2"), + octest_legacy:ct_string("Load Csv With Headers From #usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) As `1esn` Fieldterminator \"d_str\" Match Shortestpath(((`` :`7esn`))),Allshortestpaths((:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[*{usn1:{`6esn`} In .0e0 In $0,usn1:07[..$`5esn`]}]-(:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})) Using Index @usn5:usn1(`4esn`) Where {0}[.1e-1..][_usn4..]"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv From {0}[.1e-1..][_usn4..] As `6esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Start `1esn`=Rel:`5esn`(@usn5=\"d_str\") ,`5esn`=Node:@usn6(#usn8='s_str') With Distinct 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Skip {usn1:$1000 Is Null}[Shortestpath((:usn1$1000))..][Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true)..] Where `3esn` Starts With 9.1e-1 Starts With .9e-1 Match ((`4esn` :`6esn`)<-[{``:7.0e-0 Is Not Null}]->(:#usn7:`8esn`{@usn5:{0} In {`1esn`}})-[``?{``:{#usn7} =~$@usn6 =~$7}]-(`3esn` :@usn5)) Using Join On #usn8 Union Foreach(`1esn` In $@usn6 Starts With 0xabc Starts With {`7esn`}| With Distinct *,7 Starts With 9e-12 As #usn7,$_usn3 In `2esn` In `3esn` Order By Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null Desc,0X7 Contains $12 Contains 0e0 Descending,{@usn5:5.9e-12 Is Null Is Null} Ends With Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where _usn4['s_str'][8.1e1]|0.12 =~2.9e1 =~9e1) Ends With All(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12) Descending Where {`1esn`} Contains 1.0 Contains 4.9e12) Union Match Shortestpath(((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999}))),_usn3=(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}) Using Join On `4esn`,`5esn`,@usn6 Where #usn8 =~{@usn5} Unwind {7} Is Not Null As _usn3"), + octest_legacy:ct_string("Optional Match _usn3=(((`4esn` )-[{#usn7:1e-1[$`4esn`]}]->(`1esn` :`2esn`:`4esn`)-[?:#usn8|:``{usn2:{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],usn1:\"d_str\"[0x0..{@usn6}][$@usn5..0]}]-(:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12}))),`1esn`=Allshortestpaths((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[?$999]-(`4esn` {#usn7:$usn1[0e0...9e-12]})-[:`5esn` *01234567..{`2esn`:{usn1} Contains {`2esn`},#usn7:`4esn`[9e-12..true]}]-(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})) Foreach(@usn5 In Case Count(*) =~01234567 =~.1e-1 When {123456789} Starts With $_usn4 Starts With 0x0 Then .9e-12[usn2] When {`8esn`}[@usn5][$`2esn`] Then 00[$``] End[..Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 999[..$@usn5][..``])][..Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End]| Create Unique `2esn`=(((@usn6 :`2esn`:`4esn`{@usn6:$12[10.12e12][.1e1],`8esn`:@usn5 In Null})-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(#usn7 )-[`3esn`?:usn2]-(:`1esn`:``{_usn4:123.654[01..][Count(*)..],`8esn`:12e12}))))"), + octest_legacy:ct_string("With Distinct 0xabc[..Count(*)][..$`5esn`],{12} Ends With 1e1 As `8esn`,{`4esn`} In 1000 In {@usn5} Order By {7} Ends With 999 Asc,_usn3 =~{`4esn`} Desc Skip [`1esn` In $12 In {usn2} Where 12e-12 Starts With $`7esn`][{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}..] Where Null In {7} Match Shortestpath((((`1esn` :#usn8:@usn6{usn1:#usn8 Is Null Is Null,_usn3:{`4esn`} In 1000 In {@usn5}})<-[`6esn`?:@usn5|:#usn7{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)))),Allshortestpaths(((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))) Using Join On `6esn`,``,usn2 Where .12e-12 Is Null Merge (((`7esn` :usn1)<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})<-[`3esn`?:@usn6|:`4esn`]-(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) On Create Set `4esn` =Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null,{``:`6esn` =~999 =~$999}.`3esn`! =.1e1 In $999 In {#usn8},@usn5 =9e1 In $1000 On Match Set Shortestpath(((:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->(`` :`4esn`:usn2)-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->(`` :`4esn`:usn2))).usn1? =9e0[`1esn`..0e-0][00..`1esn`],`7esn`+=00[(`3esn` :_usn3{@usn6:0.12 Is Not Null})-[#usn8:`5esn`]-({`6esn`:12[@usn6][{`2esn`}]})..],Shortestpath(((usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[`8esn`{#usn8:.12e12[..7]}]-({`6esn`:1000[{`1esn`}..][$`3esn`..]}))).`7esn`? =$12 Contains false Contains {`1esn`} Union All Detach Delete {1000} =~4.9e12 =~9e1,Null,10.12e12[010..1e1][.1e-1..{1000}] Return *,2.12[{12}] As #usn7,.0e-0 =~usn2 As `1esn` Order By $`8esn` =~{`6esn`} =~12 Ascending,Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End In (:usn1)<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}) In [_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|usn2 Ends With $123456789 Ends With {999}] Ascending,Any(_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0) Ends With Reduce(`6esn`=1e1 Ends With 12 Ends With 999,`` In `7esn` =~#usn8 =~\"d_str\"|$usn2 Contains $`3esn` Contains 6.0e0) Ends With `1esn`(Distinct {0} Is Not Null Is Not Null) Descending Skip {`6esn`} In {_usn4} In $12 Foreach(usn2 In {_usn4} In 0X7 In 0e0| Detach Delete $@usn5 Is Not Null Is Not Null,_usn3 =~{7} =~123.654,@usn5[@usn6] Start _usn4=Rel:_usn4({`1esn`}) )"), + octest_legacy:ct_string("Optional Match ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),_usn3=Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``))) Unwind $`6esn` In 999 In {_usn3} As `5esn` Unwind Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As #usn8 Union All With Distinct 12e12[usn2..$`6esn`] As usn1,0Xa Contains 12e-12,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As #usn7 Order By 9e12 Ends With \"d_str\" Ends With 0X7 Desc Skip {12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1] Where $@usn6 Is Null Load Csv From 1e-1[..$`2esn`][..01] As #usn7 "), + octest_legacy:ct_string("Start `7esn`=Rel( {_usn3}) With Distinct *,0 Contains {`2esn`} Union Detach Delete $@usn5 Is Not Null Is Not Null,_usn3 =~{7} =~123.654,@usn5[@usn6] Merge Allshortestpaths((((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[`8esn`*]-(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2))))"), + octest_legacy:ct_string("Using Periodic Commit 0X0123456789ABCDEF Load Csv From {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null) As @usn6 Detach Delete Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`) Is Null Is Null,6.0e0[$#usn7..$1000],$12 Is Not Null Is Not Null"), + octest_legacy:ct_string("Remove [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .9e12 Is Not Null Is Not Null|usn2[12e-12..{`8esn`}][.12e12..{123456789}]].`2esn`!,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {_usn3} Is Null Is Null).`6esn`,#usn7(07[{@usn5}..],{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1])._usn3.`4esn`? Foreach(#usn8 In [`1esn` In $12 In {usn2} Where 12e-12 Starts With $`7esn`][{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}..]| Load Csv From Case When `4esn` Contains 0X0123456789ABCDEF Contains $usn2 Then {1000} Starts With {`1esn`} End Starts With Case $`8esn`[0x0][.9e0] When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null Else $usn1 =~.0e0 =~{`4esn`} End Starts With .0e-0 As usn2 Fieldterminator \"d_str\" Return Distinct 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Order By $1000 Is Null Descending,7.0e-0 Ends With {123456789} Ends With @usn6 Descending Limit 1000[{`1esn`}..][$`3esn`..]) Union All Remove All(usn2 In $`5esn`[{`4esn`}][{0}] Where Null[$`3esn`..][`1esn`..]).#usn8!.#usn8.`7esn`,usn1:`2esn`:`4esn` Load Csv With Headers From 9e1[...9e1][..$`6esn`] As #usn7 "), + octest_legacy:ct_string("Detach Delete Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`) Is Null Is Null,6.0e0[$#usn7..$1000],$12 Is Not Null Is Not Null Union Create ``=Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))) With Distinct 0.0[$`4esn`] As `4esn` Order By 9e1 Ends With `7esn` Ends With 2.12 Descending,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null Asc,{0} =~{999} Desc Skip 6.0e0[None(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0)..][[_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]]..] Limit [usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]] With *,_usn4['s_str'][8.1e1] Order By 999 Starts With 07 Ascending Where 1.0 Is Not Null Union Match ((({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[_usn3?:@usn5|:#usn7]->(@usn5 {`8esn`:123456789[#usn7..9e-1][10.12e12..{0}],@usn6:1.0 Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(`4esn` {`8esn`:5.9e-12[0x0..]}))) Using Scan _usn4:usn1 Using Scan @usn5:`5esn` Where .9e-1 Ends With .0e-0 Ends With {_usn3}"), + octest_legacy:ct_string("Remove usn1:`7esn`,All(`7esn` In 0.12 Is Not Null Where .12e-12[@usn6..'s_str']).`5esn`?.``!,Reduce(`4esn`={999} Starts With $`4esn` Starts With $`1esn`,`3esn` In 8.1e1 Contains .9e-1 Contains false|.12e12 Is Not Null).@usn5!.usn2?.`3esn`? Create ``=Shortestpath(((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))) Union All Remove [usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e-1 Is Null Is Null].@usn6!,Any(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3]).`3esn` Merge _usn4=((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})) Create Unique `7esn`=(({``:true Is Null,_usn3:$12 Ends With 7.0e-0 Ends With 9e-12})-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(#usn8 {``:9e1[0.0]})<-[#usn8]->(`2esn` :_usn3{`6esn`:_usn4[{``}..{`6esn`}][$7..$_usn3],`6esn`:$`4esn` Ends With {999}})),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]}))) Union With Distinct *,{1000} Is Null As ``,12e12[usn2..$`6esn`] As usn1 Order By 9.1e-1 In {`1esn`} Descending,{usn1}[$`4esn`..$12] Ascending,123.654 Contains true Contains 7.0e-0 Desc Optional Match #usn7=Shortestpath(({`5esn`:`1esn` In 010 In 1e-1})<-[?:@usn6|:`4esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]-(`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})) Using Scan `6esn`:#usn8 Using Scan #usn7:`8esn`"), + octest_legacy:ct_string("Detach Delete 's_str'[`3esn`..0x0],0xabc Contains 12 Contains Null Create #usn8=(#usn7 {#usn7:.0e-0[..01234567],#usn7:{1000}[0..]}),((:`1esn`:``{`7esn`:`5esn` Contains 0 Contains $12,`2esn`:.9e12[6.0e0..][@usn5..]})<-[_usn3?:`5esn`*..]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]})) Union All Delete 0e-0[..7.0e-0][..{`8esn`}],0.0[..9e1][..2.12],'s_str'[$`8esn`..$999] Remove All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $`4esn` Is Not Null).usn1!.`1esn`?,{`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12}._usn3!.`2esn`!"), + octest_legacy:ct_string("Using Periodic Commit 999 Load Csv From 1000[{123456789}][usn1] As `` Fieldterminator \"d_str\""), + octest_legacy:ct_string("With Distinct _usn3($0 Ends With 9e-12 Ends With $_usn4) Is Null Is Null As `4esn`,1.9e0 In 2.12 As usn2,$#usn7[$``..999][$usn2..$usn2] Order By `4esn` =~usn1 =~Count(*) Descending,Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]) Desc Skip 2.12 Is Not Null Is Not Null Limit {`5esn`}[01234567..][5.9e-12..] Remove ({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`).#usn7 Union Create @usn5=Allshortestpaths(({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})<-[#usn7?]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})),#usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))))"), + octest_legacy:ct_string("Create Unique Allshortestpaths((_usn3 {#usn7:$999 =~false =~{`8esn`}})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})) Union All Start ``=Node:`7esn`({#usn7}) Where 01234567[1000..][$`8esn`..] Match Shortestpath(((:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(`2esn` :_usn3)<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(:#usn7:`8esn`))),_usn4=((`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})) Using Scan #usn8:`1esn` Where $`4esn`[$@usn6...12e12] Return Distinct {@usn5} Ends With 0Xa Ends With .12e-12 As @usn6,_usn4['s_str'][8.1e1] Order By 1.9e0[$`4esn`] Descending Union All Unwind usn1 =~false =~{999} As @usn6 Merge ((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]}))"), + octest_legacy:ct_string("Create `7esn`=Allshortestpaths(((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}))) Merge ((:`1esn`:``{`7esn`:`5esn` Contains 0 Contains $12,`2esn`:.9e12[6.0e0..][@usn5..]})<-[_usn3?:`5esn`*..]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]})) On Create Set `5esn`+=.12e12 Ends With 07 Ends With 3.9e-1,`1esn` =1e-1 =~$`7esn` =~1e1 Load Csv With Headers From $0 Is Null As `7esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Start usn2=Relationship(999,010,07,123456789) ,`7esn`=Node:`6esn`(@usn6='s_str')Where 123.654 Ends With {1000} Ends With 9e12 Union All Remove count(Distinct $1000 Starts With {@usn6} Starts With $@usn5)._usn3.usn1?,@usn5(Distinct $7[999..10.12e12][$`1esn`..{usn1}],$`5esn` Is Null).usn1.``?.#usn8 Match Shortestpath((:`3esn`)) Where 12.0 Starts With 00"), + octest_legacy:ct_string("Optional Match @usn5=Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))),(@usn6 :_usn4:`2esn`) Using Join On `2esn`,`6esn` Using Scan #usn8:`1esn` Where 5.9e-12[12e-12][$`8esn`] Union All Merge usn1=Allshortestpaths(((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) On Create Set (:#usn8:@usn6{@usn6:$_usn4 Ends With {#usn8},_usn4:0e0[12.0][{#usn7}]})<-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(`2esn` :@usn5).usn2!.`2esn`.`4esn` =`8esn`[.12e12..] Union Load Csv From {`8esn`} Contains $@usn5 As _usn4 Fieldterminator 's_str'"), + octest_legacy:ct_string("Optional Match (`1esn` :usn2)<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]}),@usn6=Allshortestpaths(((#usn8 :usn2)<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) Where usn2 Starts With $usn1 Starts With 10.12e12 Load Csv From {@usn5:$@usn5 Is Not Null Is Not Null} Contains None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[..0xabc][..{`6esn`}]) As `6esn` "), + octest_legacy:ct_string("With Distinct *,0X0123456789ABCDEF In .9e-1 In 123456789 Limit 1.9e0 =~.0e0 =~0X7 Where `2esn`[`7esn`][1000]"), + octest_legacy:ct_string("Match Allshortestpaths(((@usn6 :@usn5))) Where Count(*)[$7]"), + octest_legacy:ct_string("Unwind `1esn`[..$1000] As `4esn` Merge `7esn`=(((:`1esn`:``{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[`8esn`? *1000..{usn2:0X7[#usn7..][$@usn5..]}]->(`2esn` {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})<-[?:usn1|usn2{#usn8:2.9e1[2.12..1.9e0],#usn8:@usn6[true..]}]-(:@usn6:_usn3{``:{@usn5}[10.12e12..]}))) On Create Set `3esn` =$`1esn`[4.9e12..][_usn3..] On Create Set `7esn` =1e1 Ends With $_usn3 Ends With .1e1 Union All Start `1esn`=Rel:_usn3(@usn5='s_str') ,`1esn`=Rel:`2esn`(#usn8=\"d_str\")Where 5.9e-12[\"d_str\"..][{`6esn`}..]"), + octest_legacy:ct_string("Unwind $12 Ends With 12.0 Ends With $`4esn` As @usn6 Start @usn6=Relationship:`3esn`(#usn7={_usn3}) ,_usn4=Node:@usn6(#usn8='s_str')Where #usn8 Is Null Is Null With Distinct Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null As #usn8,.9e1 Is Null Is Null As #usn8,00[..@usn6] Order By 12 Ends With 12e12 Asc,.9e12 Starts With 0X7 Starts With .9e-1 Asc Skip 00[Null..usn2] Limit 01[{usn2}..][1.9e0..] Where $usn1 =~.0e0 =~{`4esn`} Union All With Distinct *,$`6esn` Limit {12} Starts With 01 Starts With $1000 Union All Create Unique #usn7=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 )))"), + octest_legacy:ct_string("Unwind false Starts With 0 Starts With 2.9e1 As usn1 Merge Shortestpath((@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?:`8esn`|:#usn8 *999..123456789]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})) Union Delete None(@usn6 In 9e12[..usn2][.._usn3] Where Count ( * )[_usn4..]) Is Null Is Null,{1000} =~4.9e12 =~9e1,{999}[..`6esn`] With Extract(#usn7 In .0e-0 In 12 Where {`6esn`}[6.0e0..9e0][.9e1..12e12]|Count(*)[$7]) Is Null Is Null As `1esn` Order By {_usn3:.0e-0[..``][..$7]}[..(`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`)][..@usn5] Descending,Any(@usn6 In 9e12[..usn2][.._usn3] Where 12e12[.9e12..07]) Ends With Shortestpath(((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))) Asc,$`1esn` In 0Xa Desc Skip 1e1 Ends With $_usn3 Ends With .1e1 Where 01[$`1esn`..$`7esn`][{usn2}..12.0] Union All Foreach(`5esn` In Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}]| Load Csv From 7 In 1e1 In {``} As `2esn` Fieldterminator \"d_str\")"), + octest_legacy:ct_string("Create `1esn`=(#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}),Allshortestpaths((:#usn7:`8esn`{`3esn`:0.12 In $``})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})<-[:#usn8|:`` *0]->({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})) Create Unique `5esn`=(`` $999)<-[? *0X0123456789ABCDEF]->(`1esn` :_usn3)<-[#usn8?:#usn7|:@usn5]-(@usn5 :#usn7:`8esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true}),usn2=Shortestpath(((:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12})-[``?:#usn7|:@usn5{``:$usn1 Ends With {`2esn`} Ends With $usn1}]->(:`5esn`:`7esn`$usn2)-[{#usn8:\"d_str\" Contains {@usn6}}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12}))) Unwind $999 Starts With 0e-0 Starts With .9e12 As `7esn`"), + octest_legacy:ct_string("Unwind {@usn6} Is Null As `6esn` Create Unique `2esn`=Shortestpath(((`8esn` :`5esn`:`7esn`)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false}))) Detach Delete $`8esn` =~{`1esn`} =~$7,010[{7}..][{`1esn`}..] Union All Create Unique ((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})),@usn5=Allshortestpaths((:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[:`6esn` *999..123456789]->(:_usn3{@usn5:`2esn`[`7esn`][1000]})) Union All With Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] As #usn8,[`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]),{`7esn`} Is Not Null Is Not Null As `1esn` Order By 1000 Ends With 0x0 Asc"), + octest_legacy:ct_string("Create @usn5=Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))) Merge `3esn`=Allshortestpaths(((`4esn` :`8esn`{`4esn`:4.9e12 Starts With {``},`8esn`:$12 Ends With {_usn4} Ends With $`8esn`})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`)<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))) On Create Set usn1+=$`` Ends With 1e-1 Ends With $@usn6"), + octest_legacy:ct_string("Return Extract(#usn7 In .0e-0 In 12 Where {`6esn`}[6.0e0..9e0][.9e1..12e12]|Count(*)[$7]) Is Null Is Null As `1esn` Order By $_usn3[usn2..][usn1..] Asc,[`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null] =~`6esn`(Distinct 2.9e1[Count ( * )..]) Desc Skip $#usn7 Starts With $123456789 Limit 07[..$`5esn`]"), + octest_legacy:ct_string("With *,$`3esn`[..{`5esn`}],$_usn3 Contains 1.0 Contains 0.12 As `` Skip 5.9e-12[..9e0] Where 01234567 =~12e12 =~.0e-0 Union All Start `1esn`=Relationship:#usn7(`7esn`=\"d_str\") ,`8esn`=Relationship:`5esn`({999}) Return *,0 Contains {`2esn`} Union All Foreach(_usn4 In $``[..$1000][...12e12]| Detach Delete 0 Starts With `7esn` Starts With 9e0 Load Csv With Headers From `1esn`[..$1000] As `` Fieldterminator \"d_str\") Create (((`3esn` $0)-[`4esn`? *01{#usn8:12.0[..Count ( * )][..@usn6]}]-(usn1 :#usn8:@usn6)-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2))),usn1=(@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?:`8esn`|:#usn8 *999..123456789]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})"), + octest_legacy:ct_string("Start `1esn`=Node(0x0) ,#usn8=Node:_usn4(@usn5={#usn7})Where $`4esn` Is Not Null Load Csv From $@usn5 Starts With #usn7 As usn2 Foreach(`5esn` In Reduce(`7esn`=#usn7 Contains .0e0 Contains $@usn6,`6esn` In 010[{`1esn`}..]|00 Is Not Null Is Not Null)[$7..]| Optional Match ``=(((@usn5 {@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))),({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[usn1?:`3esn`|`3esn`*..]->(`8esn` :`6esn`) Where 4.9e12 Is Not Null Is Not Null Remove [`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 2.12[{12}]|123.654[10.12e12..$12][6.0e0..{#usn8}]].``?.#usn7!.@usn5?,Case When `4esn` =~010 Then $usn1 =~.0e0 =~{`4esn`} When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] End.#usn8,(`5esn` :`4esn`:usn2{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})-[_usn3:`6esn`]->(#usn7 )-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}).#usn7?)"), + octest_legacy:ct_string("Load Csv From `6esn`[3.9e-1..`8esn`][12.0..0.0] As _usn3 Fieldterminator \"d_str\" Create _usn3=Shortestpath((({`2esn`:00[Null..usn2],`2esn`:3.9e-1[..$1000][..0.12]})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}}))),usn2=((#usn7 :@usn6:_usn3{``:9e1[0.0]})) Union All Return Distinct *,0 Contains {`2esn`}"), + octest_legacy:ct_string("With Distinct $12 As _usn4 Order By 123.654 Is Not Null Is Not Null Descending,(`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End] Asc,Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1) Starts With Case 7.0e-0[$`6esn`..] When \"d_str\"[0x0..{@usn6}][$@usn5..0] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else $`5esn`[{`4esn`}][{0}] End Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`) Asc Skip true In 0.0 Where .12e12 Ends With 07 Ends With 3.9e-1 Union Create Allshortestpaths((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})),`8esn`=(((`3esn` $0)-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]}))) Match usn2=((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})),Shortestpath(({`6esn`:3.9e-1[..$1000][..0.12]})<-[:`4esn`|:`2esn`{`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]}]-({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]-({`5esn`:$`4esn` Ends With .12e12 Ends With 123.654,@usn6:{123456789} Contains $0})) Using Index usn1:#usn7(usn1) With 12e12[usn2..$`6esn`] As usn1,0Xa Contains 12e-12,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As #usn7 Order By $_usn3[0X0123456789ABCDEF..][0x0..] Desc,$`5esn` Is Not Null Is Not Null Descending Limit 12e12[usn2..$`6esn`] Where {`4esn`}[{`3esn`}][$`2esn`]"), + octest_legacy:ct_string("Load Csv From None(`1esn` In $12 In {usn2})[..Reduce(usn2=.9e0 In 8.1e1,`3esn` In 8.1e1 Contains .9e-1 Contains false|$_usn3 Is Not Null)] As #usn7 Fieldterminator 's_str' Union All Foreach(`8esn` In $`5esn` Starts With 4.9e12 Starts With 0e-0| Create Unique `6esn`=(({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[_usn4? *999..123456789{@usn6:$`4esn` Ends With .12e12 Ends With 123.654}]->(#usn8 {usn2:$0 Ends With 9e-12 Ends With $_usn4,`5esn`:0e-0[{@usn6}]})-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]-(`1esn` :_usn4:`2esn`))) Remove Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0).`8esn`!,Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0).``? Union Unwind `3esn` Is Null As usn1 Start ``=Node:``(`1esn`=\"d_str\") Where {usn2}[9e-1]"), + octest_legacy:ct_string("Optional Match ((`1esn` :@usn5{@usn6:$`7esn` Ends With 7.0e-0 Ends With $usn2})<-[:@usn5|:#usn7 *0X0123456789ABCDEF{`5esn`:9e-1 Contains 3.9e-1}]->(`6esn` $_usn3)-[`6esn`?:@usn5|:#usn7{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})),_usn4=Allshortestpaths(((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))) Where @usn6[0x0..][$_usn4..] Unwind #usn7[{_usn3}] As `8esn` Foreach(`8esn` In {1000}[`2esn`...0e-0][9e-1..0X7]| Load Csv From usn2(Distinct $_usn3 =~'s_str' =~12) In (`` :usn1)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}) In Case When {_usn4}[{`6esn`}] Then 12e12 Is Not Null Is Not Null When #usn7 Is Null Is Null Then {`8esn`} Starts With .9e-1 Starts With 1000 End As usn2 ) Union Start `6esn`=Rel(1000,999,01,07) ,`1esn`=Rel:usn1(`1esn`={999})"), + octest_legacy:ct_string("Detach Delete 010[.0e-0..\"d_str\"][.9e0..123.654],11.12e-12 Is Null Is Null Merge ((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[ *..123456789{@usn5:1e-1[$`4esn`]}]->(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0}))"), + octest_legacy:ct_string("Remove Extract(usn1 In $@usn6 Is Null Is Null Where `3esn` Is Null).usn1 Start `5esn`=Relationship(0X7,123456789,123456789,0X7) ,_usn3=Relationship(0x0)Where 01234567[1000..][$`8esn`..] With *,Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Contains (:`2esn`:`4esn`{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``) Contains {@usn6:10.12e12 Contains .9e0,`3esn`:`6esn` =~999 =~$999} As `7esn`,@usn5[{`1esn`}..][Count ( * )..] Skip 2.12[10.12e12][_usn4] Limit 5.9e-12[\"d_str\"..][{`6esn`}..] Where 11.12e-12 Ends With 's_str'"), + octest_legacy:ct_string("Start usn2=Relationship:_usn3(\"d_str\") Merge (((#usn7 :`6esn`{usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]-(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}))) Load Csv With Headers From Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As `` Fieldterminator \"d_str\" Union All Optional Match ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})),``=Shortestpath((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) Where 7[{`4esn`}..] Load Csv With Headers From Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] As usn1 Union All Create Unique usn1=((@usn6 :`5esn`:`7esn`)-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)-[`3esn`:`6esn` *..0x0]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})),Shortestpath((:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[:`6esn` *999..123456789]->(:_usn3{@usn5:`2esn`[`7esn`][1000]})) Remove Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 6.0e0 =~12.0 =~9e1|1.9e0[..0][.._usn3]).``,{`6esn`:12e12[usn2..$`6esn`]}.`3esn`?,{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}}.`5esn` Delete {``:$`8esn`[..5.9e-12][..`8esn`]}[[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .9e12[6.0e0..][@usn5..]|2.9e1[2.9e1..][`4esn`..]]..][Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End..],010[...12e-12]"), + octest_legacy:ct_string("Load Csv From [usn1 In $@usn6 Is Null Is Null Where 9e0[`4esn`..$_usn4][9.1e-1..0e0]][Any(`` In `7esn` =~#usn8 =~\"d_str\" Where 9e-12 Ends With 9e1 Ends With 4.9e12)][(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]})] As `5esn` Fieldterminator \"d_str\" Remove Single(`1esn` In $12 In {usn2} Where 0.12 In $``).#usn8! Union All Create Unique ((:``{usn2:00 Is Not Null Is Not Null})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`?:`5esn` *0{`1esn`:1.0 Is Null Is Null,`4esn`:{`4esn`}[00..]}]-(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})),(({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})) Create ((#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn4]-(`2esn` :`1esn`:``)) Remove [@usn6 In 9e12[..usn2][.._usn3] Where {#usn8} Ends With _usn3 Ends With `2esn`].usn1._usn4.#usn7"), + octest_legacy:ct_string("Create Unique Allshortestpaths((`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`)),Allshortestpaths(((`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]})-[_usn4*{`3esn`:{``} Is Null Is Null}]-({`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))) Foreach(`4esn` In {#usn8}[0..]| Unwind $`6esn` As `3esn` Unwind $usn1 In 4.9e12 In `` As _usn3)"), + octest_legacy:ct_string("Return [`1esn` In $12 In {usn2} Where 12e-12 Starts With $`7esn`][{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}..] As #usn7,Case When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else {123456789} Starts With `6esn` End =~Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where `4esn` Contains 0X0123456789ABCDEF Contains $usn2) =~Allshortestpaths((`7esn` :``{usn2:$7})),Allshortestpaths((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) In Extract(#usn7 In .0e-0 In 12 Where {#usn8}[..@usn5]) In [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 10.12e12[usn2]|{1000} Starts With 10.12e12 Starts With .0e-0] Order By {999} =~$`6esn` =~$`6esn` Desc,[@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End Descending Skip .1e1 Is Null Is Null Limit 9e-12[$7..] With Distinct $12 Ends With 7.0e-0 Ends With 9e-12 As usn1,{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] As ``,9e-1 Contains .12e-12 Contains $0 Order By `6esn`[$@usn5][01] Descending,{`5esn`} Desc Skip 123.654 Is Not Null Is Not Null Limit Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null Union All Remove Extract(`6esn` In 010[{`1esn`}..] Where $12 Ends With 7.0e-0 Ends With 9e-12).`2esn`!,[usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where Null In {7}|0.12 =~2.9e1 =~9e1].usn2 Union Start `1esn`=Relationship:_usn4(`5esn`={usn1}) Load Csv From `1esn`[..$1000] As #usn8 "), + octest_legacy:ct_string("Optional Match Shortestpath((`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})<-[_usn3? *..123456789{`6esn`:.0e-0[..``][..$7],usn2:{usn2} Ends With {@usn6} Ends With 1000}]-(`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(#usn8 :_usn4:`2esn`{`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})),usn1=((#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]})<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})) Using Join On _usn4,usn2,`` Using Index _usn3:usn2(`4esn`) Where {`4esn`} In 1000 In {@usn5} With .0e0[$usn1][0] As ``,0xabc[0Xa..],9e-12 Ends With 9e1 Ends With 4.9e12 As `5esn` Order By $`` Ends With 1e-1 Ends With $@usn6 Ascending Limit .9e0 Ends With $0 Where 1000[{123456789}][usn1] Load Csv From {`8esn`}[..999][.._usn3] As #usn8 Fieldterminator 's_str' Union Foreach(`` In {usn1} In Count ( * ) In 12e12| Return Distinct $`` =~$_usn3,{usn2}[9e-1] Order By Allshortestpaths(((#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[@usn6?{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}))) In All(`` In `7esn` =~#usn8 =~\"d_str\" Where {#usn7} =~$@usn6 =~$7) In Case When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 When $0 Ends With $usn1 Ends With {``} Then 4.9e12 Ends With $@usn6 Else 0[..{0}][..true] End Asc Skip `1esn`[..$1000] With Distinct {123456789}[...9e-1][..1.0],9e0 In {usn2} In {@usn6} Limit .0e0[{`5esn`}..3.9e-1]) Detach Delete ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[_usn3?:@usn5|:#usn7]->(`` :``)-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Starts With Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`),0Xa In 1.0 In $@usn5,Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[$usn1..])[..Shortestpath((((`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn2 *7]-(`8esn` {_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}))))][..{`3esn`:$`6esn` Starts With 0.0,#usn8:$usn1 =~.0e0 =~{`4esn`}}] Create Unique @usn5=Allshortestpaths(({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})<-[#usn7?]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})),#usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2)))) Union With *,Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null) As `2esn` Limit `4esn` Is Not Null Where $@usn6 Starts With 0xabc Starts With {`7esn`}"), + octest_legacy:ct_string("Create Unique `2esn`=(({_usn3:.9e12 Contains 0 Contains $0})) Unwind `4esn` =~_usn4 =~0e-0 As `7esn` Detach Delete (`2esn` :_usn3{`6esn`:_usn4[{``}..{`6esn`}][$7..$_usn3],`6esn`:$`4esn` Ends With {999}})-[`1esn` *0X7..0Xa]->(`1esn` :`1esn`:``{#usn7:`5esn` Ends With Count(*)}) Is Not Null Is Not Null,{@usn5:5.9e-12 Is Null Is Null} Ends With Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where _usn4['s_str'][8.1e1]|0.12 =~2.9e1 =~9e1) Ends With All(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12),Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]) Is Null Union Foreach(@usn5 In (`1esn` :`8esn`{`6esn`:9e-1 Contains 3.9e-1,_usn4:{`3esn`}[...1e1][..0]})<-[`7esn`?:@usn5|:#usn7]->(`8esn` :@usn6:_usn3)<-[`1esn`:#usn7|:@usn5 *..123456789]-({#usn7:{7}[0x0][1e1]})[{`3esn`:0.12 In $``}]| Return Distinct $_usn3 Contains 1.0 Contains 0.12 As ``,({`7esn`:{`3esn`}[$#usn8..],`4esn`:{`8esn`}[..999][.._usn3]})-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Contains Reduce(``=0xabc Starts With 12 Starts With 0e-0,_usn3 In `8esn`[_usn4]|12.0 Starts With 00) Contains Any(@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null) As `2esn` Order By {`7esn`} =~\"d_str\" =~{``} Desc,{@usn5:$@usn5 Is Not Null Is Not Null} Contains None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[..0xabc][..{`6esn`}]) Desc)"), + octest_legacy:ct_string("Return Distinct Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As @usn6,07 Ends With {1000} Ends With 01234567 Order By Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null) In `4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`) Desc Skip true Contains 0X7 Contains $#usn8"), + octest_legacy:ct_string("Remove `5esn`:usn2 Return *,`3esn` Is Null Is Null As `6esn`,11.12e-12 Contains usn1 As #usn8 Limit {#usn8} Is Not Null Is Not Null Unwind usn1[usn2..1e-1] As `2esn` Union Create Unique (((`8esn` :`8esn`)<-[usn1?{`5esn`:$0 Ends With 9e-12 Ends With $_usn4}]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})-[?:_usn3]->(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]}))),((`` :`7esn`)) Detach Delete $1000 Is Null,.0e0[$usn1][0],{usn2}[9e-1]"), + octest_legacy:ct_string("Foreach(`1esn` In 4.9e12[{_usn4}..]| Remove `4esn`:#usn8:@usn6) Unwind Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End[(`4esn` :#usn7:`8esn`)-[_usn3?:@usn6|:`4esn`{_usn4:$12 Ends With 12.0 Ends With $`4esn`}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2)..][Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1)..] As _usn4 Union Create Unique Allshortestpaths((:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[`7esn`?:`7esn`|usn1 *1000..{@usn6:#usn7 In 07,#usn8:$999[usn1..0e-0]}]->(#usn8 :`5esn`:`7esn`{usn2})-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))"), + octest_legacy:ct_string("Load Csv With Headers From {7}[.1e-1] As `` Fieldterminator \"d_str\" Unwind `3esn` Contains 01 Contains 01 As _usn4 Start _usn4=Node:@usn6(#usn8='s_str') ,`7esn`=Relationship:usn2(`8esn`=\"d_str\")Where 8.1e1[.1e1..][`4esn`..] Union Return _usn3 =~{7} =~123.654 As @usn6 Skip {@usn6:3.9e-1[..$1000][..0.12]}[All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000)] Limit $`` =~.1e-1 Return Case \"d_str\"[0x0..{@usn6}][$@usn5..0] When 0e0 Contains {`2esn`} Then 0X0123456789ABCDEF[1e1..] Else .12e12 Starts With 5.9e-12 Starts With `4esn` End In {usn1:$#usn7[01..2.12][2.12..3.9e-1],`6esn`:.0e-0 Ends With $`2esn` Ends With `5esn`} Order By 01234567 Ends With .0e0 Ends With 12e12 Ascending,usn1(Distinct {usn1}[7.0e-0..][3.9e-1..]) Asc,.0e-0[..01234567] Descending"), + octest_legacy:ct_string("Start `3esn`=Relationship:#usn7('s_str') Where 12e12 Is Not Null Is Not Null"), + octest_legacy:ct_string("Foreach(#usn7 In `3esn`[{`4esn`}]| With Distinct *,Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,Case \"d_str\"[0x0..{@usn6}][$@usn5..0] When 0e0 Contains {`2esn`} Then 0X0123456789ABCDEF[1e1..] Else .12e12 Starts With 5.9e-12 Starts With `4esn` End In {usn1:$#usn7[01..2.12][2.12..3.9e-1],`6esn`:.0e-0 Ends With $`2esn` Ends With `5esn`} Order By .9e12 Contains 5.9e-12 Contains 9e-1 Descending Skip $123456789[..$999][..`6esn`]) Unwind 999 Ends With {#usn8} As ``"), + octest_legacy:ct_string("Unwind _usn4 As _usn3 Start `3esn`=Node:`6esn`(#usn7={_usn4}) ,@usn6=Rel:`5esn`({`2esn`})Where 's_str' =~$usn2 =~{7} Load Csv With Headers From {`5esn`:.9e-1 Contains .9e0 Contains ``} Starts With None(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0) Starts With (:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})-[`7esn`:`1esn`|:`1esn` *0Xa..12]-(`` :`1esn`:``)<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-(_usn3 :`1esn`:``) As `` Fieldterminator 's_str' Union All Load Csv From (`8esn` {``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(:#usn7:`8esn`)-[`3esn`:@usn6|:`4esn`]-(`1esn` :usn2{`8esn`:12.0[...0e0]})[Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where `2esn` Starts With 010 Starts With ``)..{usn1:_usn4 Is Not Null Is Not Null}] As @usn6 Create @usn5=(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(`2esn` :_usn3{`6esn`:_usn4[{``}..{`6esn`}][$7..$_usn3],`6esn`:$`4esn` Ends With {999}})-[@usn6?:`4esn`|:`2esn`{`2esn`:Count ( * )[9e0..$``]}]-(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}) Union All With {@usn5:5.9e-12 Is Null Is Null} Ends With Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where _usn4['s_str'][8.1e1]|0.12 =~2.9e1 =~9e1) Ends With All(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12) As `7esn` Order By _usn4['s_str'][8.1e1] Asc,Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {#usn8}[..@usn5])[(:#usn8:@usn6{`3esn`:$#usn7})-[ *12{#usn8:0e0 =~{12} =~{1000}}]-(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})-[usn2:`5esn`]-(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})][[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01|_usn4 Ends With {`8esn`} Ends With usn2]] Ascending Skip {`1esn`}[..$_usn4] Where $@usn5[.9e-1] With Distinct 0Xa[999],{#usn7} Is Not Null As `7esn` Order By Case {usn2} In false When $1000 Contains {`2esn`} Contains {`8esn`} Then $usn2 Starts With $999 Starts With .0e0 End Is Not Null Is Not Null Descending,`5esn` Is Not Null Is Not Null Descending,#usn7 =~$@usn5 =~{7} Descending Where 01234567[1000..][$`8esn`..] Remove 0.0._usn4,(`` :`8esn`)-[#usn7? *..00{_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}]->(:`3esn`)-[usn1?:usn1|usn2]->(#usn7 :@usn5).`1esn`!.@usn6!._usn3!,(usn1 :#usn8:@usn6)-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)-[:#usn7|:@usn5]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}).usn1!.`2esn`._usn3?"), + octest_legacy:ct_string("Load Csv From Single(`6esn` In 010[{`1esn`}..] Where _usn4 Ends With {`8esn`} Ends With usn2) =~`1esn`(123.654[01..][Count(*)..],{_usn4} Ends With {0} Ends With `1esn`) =~(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}) As `8esn` Return 00 Is Not Null Is Not Null As _usn3,.0e-0[010..] As `6esn`,.0e-0 In 12 As `4esn` Skip Reduce(`5esn`=$7 =~01234567 =~12.0,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{`8esn`}[..999][.._usn3])[{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}..]"), + octest_legacy:ct_string("Foreach(`8esn` In 12.0 =~{@usn6}| Return Distinct @usn6[Reduce(`5esn`=_usn4['s_str'][8.1e1],_usn3 In `8esn`[_usn4]|$_usn3 =~'s_str' =~12)..][(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[`7esn`?]-(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})..],9e0 In {usn2} In {@usn6} As `8esn` Order By None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) Desc,0e-0[..$usn2] Descending Limit $`5esn` Starts With 4.9e12 Starts With 0e-0) Foreach(`5esn` In Allshortestpaths((`3esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})) Is Not Null Is Not Null| Create Unique `8esn`=(({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]}))) Return *,`4esn`($`6esn`[@usn6...9e-12],{12})[None(@usn6 In 9e12[..usn2][.._usn3] Where $7[999..10.12e12][$`1esn`..{usn1}])..Allshortestpaths((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})-[`5esn`?:`2esn`|`5esn`]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`))][usn1..Reduce(@usn5=`1esn` In 6.0e0 In 12,`` In `7esn` =~#usn8 =~\"d_str\"|$`6esn` =~$#usn7 =~$`4esn`)] Skip Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789)[..All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 1e1 =~{@usn5} =~`7esn`)][..Case 07[..$`5esn`] When 00[$_usn4][$`1esn`] Then {#usn7}[.12e-12] Else `5esn` Contains 0 Contains $12 End] Union All Delete usn2($12 =~4.9e12) Ends With Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Ends With Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End Create `5esn`=Shortestpath((@usn5 :_usn4:`2esn`{@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})),#usn7=Allshortestpaths(((`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})-[`3esn`?:usn2]-(:`1esn`:``{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})<-[``?{``:{#usn7} =~$@usn6 =~$7}]-(:@usn6:_usn3)))"), + octest_legacy:ct_string("Load Csv From (`8esn` {``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[usn1?{`5esn`:$0 Ends With 9e-12 Ends With $_usn4}]-({`3esn`:`5esn` Ends With Count(*)})-[usn2?:#usn7|:@usn5 *7{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})[(`7esn` :@usn6:_usn3)<-[{@usn5:0.12 =~`6esn` =~.9e-1}]->({_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})..Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 3.9e-1 Starts With .9e0 Starts With {#usn7})][{_usn3:{123456789} Starts With `6esn`}..[`` In `7esn` =~#usn8 =~\"d_str\" Where 9e-12 Ends With 9e1 Ends With 4.9e12|{`1esn`}[{usn2}]]] As @usn6 Fieldterminator 's_str' With 12e12[usn2..$`6esn`] As usn1,0Xa Contains 12e-12,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As #usn7 Order By $_usn3[0X0123456789ABCDEF..][0x0..] Desc,$`5esn` Is Not Null Is Not Null Descending Limit 12e12[usn2..$`6esn`] Where {`4esn`}[{`3esn`}][$`2esn`] Union All Optional Match Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))) Where {``}[usn1..][{`8esn`}..] Optional Match Shortestpath(((`7esn` {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))) Using Join On `2esn`,`6esn` Using Join On `4esn`,`2esn`,`` Where #usn8 Is Null Is Null"), + octest_legacy:ct_string("Using Periodic Commit 12 Load Csv From 0x0 Contains 7.0e-0 As @usn5 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Create Unique _usn4=((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})) Delete 01234567 Ends With .0e0 Ends With 12e12,01[`6esn`..][0e0..],2.12 Is Not Null Is Not Null Optional Match Allshortestpaths((((usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[usn2?:`2esn`|`5esn`{``:{#usn7} =~$@usn6 =~$7}]->(usn2 :`2esn`:`4esn`{`6esn`:Count(*)[$7]})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 {#usn7:$999 =~false =~{`8esn`}})))),((#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]})<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})) Where 00[Null..usn2]"), + octest_legacy:ct_string("Match @usn6=Allshortestpaths((((@usn6 :`5esn`:`7esn`)-[`8esn`{#usn8:.12e12[..7]}]-({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})))) Using Join On _usn4 Using Scan @usn6:#usn7 Where {#usn7}[.12e-12] Create `4esn`=((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})<-[ *01234567..{usn1:{12} Contains `8esn` Contains @usn5}]->(usn1 :@usn6:_usn3)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})),(:`3esn`{@usn5:9e12[..usn2][.._usn3]})<-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]->(:`5esn`:`7esn`{`1esn`:{1000}[..`5esn`][..9e12]})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1}) Union All With Distinct 12e12[usn2..$`6esn`] As usn1,0Xa Contains 12e-12,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As #usn7 Order By 9e12 Ends With \"d_str\" Ends With 0X7 Desc Skip {12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1]"), + octest_legacy:ct_string("Merge `7esn`=Shortestpath(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) Foreach(usn2 In Extract(usn2 In .12e-12 Ends With `2esn` Where `3esn` Contains 01 Contains 01) Is Not Null| Unwind .9e0[$#usn8][Count ( * )] As `3esn` Unwind {`3esn`} Is Not Null Is Not Null As `1esn`) Start usn2=Node:`2esn`(_usn4={#usn7}) Union Detach Delete (`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}) Is Not Null,_usn3 =~{`4esn`} With 9e-1 Is Not Null As _usn3,{12} Ends With 1e1 Skip Reduce(`8esn`=1e1[$_usn3],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e-0[..``][..$7]) Ends With Reduce(`3esn`=2.12[`4esn`][.9e-1],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{`8esn`} In {_usn3} In 6.0e0) Ends With `1esn`(@usn5[9e-1..{`1esn`}],$`4esn`[$@usn6...12e12]) Limit (`1esn` :@usn6:_usn3{#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12})<-[@usn5?:`5esn` *01{#usn8:00[Null..usn2],@usn6:0.12 =~2.9e1 =~9e1}]-({@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})[Filter(_usn3 In `8esn`[_usn4] Where 01234567 =~12e12 =~.0e-0)..][{`7esn`:.9e1[$`1esn`..][$``..]}..] Where false[9e12]"), + octest_legacy:ct_string("Match ((`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})-[`3esn`?:`1esn`|:`1esn`]-({_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})) Using Index #usn8:usn2(@usn5) Using Index `8esn`:@usn5(usn1) Union All Merge Shortestpath((((:`3esn`{usn2:01234567[10.12e12][0Xa]})-[_usn3?{`8esn`:{usn2} Is Not Null Is Not Null}]->({`7esn`:.9e12 Is Not Null Is Not Null})-[#usn8?:`4esn`|:`2esn` *7{`6esn`:{0} Ends With 0Xa,usn1:.9e1 Is Null Is Null}]->({`1esn`:01 =~{_usn3} =~01,`8esn`:{#usn7} Ends With 999 Ends With 12})))) On Create Set `4esn` =Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null,{``:`6esn` =~999 =~$999}.`3esn`! =.1e1 In $999 In {#usn8},@usn5 =9e1 In $1000"), + octest_legacy:ct_string("With Distinct $``[1.0..][_usn3..] As _usn4,{`5esn`:$`6esn`[@usn6...9e-12]}[{usn1:$_usn3[0x0][{0}]}..Filter(_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`])][Case When .12e12 Ends With 07 Ends With 3.9e-1 Then 01234567[\"d_str\"..][$`4esn`..] End..Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End] As `5esn`,_usn3($`5esn`[$_usn3][$12])[None(#usn8 In 07[..$`5esn`])..][All(`` In `7esn` =~#usn8 =~\"d_str\" Where 12e12 Is Not Null Is Not Null)..] Limit $usn1 =~.9e12 =~`6esn` Optional Match `4esn`=Shortestpath(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))),((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})) Create Unique (_usn4 {_usn3:.0e-0[..``][..$7]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}),`2esn`=((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)) Union Foreach(`4esn` In {`5esn`}[01234567..][5.9e-12..]| Optional Match `5esn`=Shortestpath(((`8esn` :`8esn`)-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`8esn`*]-(`7esn` :``{usn2:$7}))),`3esn`=Allshortestpaths((((`4esn` :`3esn`)<-[@usn5?*..]->(:_usn3{_usn3:010[..9e-1][..0X7]})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)))) Using Index `5esn`:#usn8(_usn3) Match ((:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})<-[*..{`4esn`:{1000} Starts With 10.12e12 Starts With .0e-0,`2esn`:$#usn7 Ends With {`5esn`} Ends With 01}]-({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})) Using Scan `6esn`:#usn7 Using Join On `1esn` Where 0[10.12e12]) Delete 0.0 Starts With 0X0123456789ABCDEF,2.9e1 =~{123456789} =~01,{`8esn`}[..999][.._usn3] Union Optional Match @usn5=Shortestpath((_usn3 )-[usn2:_usn3 *0xabc..12]->(:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)) Using Index `1esn`:_usn4(`5esn`) Using Index `2esn`:usn1(_usn3) Where {usn2} Ends With {@usn6} Ends With 1000 Unwind {`4esn`} In 1000 In {@usn5} As `2esn` Optional Match `4esn`=Allshortestpaths((_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})) Using Join On usn1,usn2 Using Join On usn1"), + octest_legacy:ct_string("Load Csv With Headers From {123456789} In \"d_str\" As `2esn` Load Csv With Headers From Shortestpath(((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(_usn3 :usn1)))[..{_usn4:.9e-1 Ends With .0e-0 Ends With {_usn3},_usn4:9e1 Ends With 9e12 Ends With 0x0}][..Reduce(#usn8=`8esn`[_usn4],`1esn` In $12 In {usn2}|$`4esn` Is Not Null)] As `1esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Load Csv From {#usn8} Starts With {`2esn`} As `1esn` Create Unique (((:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[usn2:#usn8|:``]->(:`3esn`{@usn5:9e12[..usn2][.._usn3]})<-[?:@usn5|:#usn7 *0]->(_usn3 {`2esn`:5.9e-12[0x0..]}))) Union Return Distinct Count(*)[{12}..{#usn8}] As @usn6,$123456789 =~1e-1,`5esn`({`5esn`}[01234567..][5.9e-12..],5.9e-12 Is Null Is Null)[Reduce(#usn7={12} Ends With $`3esn` Ends With 0xabc,usn1 In $@usn6 Is Null Is Null|`1esn`[Null][{@usn6}])..@usn5(`3esn` Contains `2esn` Contains {_usn4},2.9e1 In {``})][Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789}))..Any(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`)] As _usn4 Order By $usn1[9e1][{999}] Ascending Skip @usn6[999][1000] Limit (`4esn` :`8esn`{12})<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:`6esn`]-({`6esn`:1000[{`1esn`}..][$`3esn`..]}) =~[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Is Not Null Is Not Null] =~Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true) Return @usn5[{`1esn`}..][Count ( * )..] As `8esn`,`4esn`[9e-12..true],$_usn4 =~$#usn8 =~{`4esn`} As @usn5 Order By 5.9e-12[01][`4esn`] Descending,`5esn`[..12.0] Asc Start #usn8=Node:_usn4(@usn5={#usn7}) ,`7esn`=Node:usn2({`1esn`})"), + octest_legacy:ct_string("Match (:@usn5),_usn3=((`1esn` :`8esn`)<-[:usn1|usn2]-(`` :`4esn`:usn2)<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``)) Using Index usn2:@usn6(@usn6) Using Index @usn5:`3esn`(`8esn`) Create `5esn`=(:usn2{`6esn`:9e12[..usn2][.._usn3],`1esn`:01[`6esn`..][0e0..]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}),((:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]})-[``:usn1|usn2{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]}]-(`7esn` {@usn5:Count ( * )[_usn4..]})-[usn2:_usn3 *0xabc..12]->(:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})) Foreach(usn1 In \"d_str\" Is Not Null Is Not Null| Create #usn7=(((#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})-[?:@usn5|:#usn7 *0]->({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})-[:usn2{``:07 Ends With {1000} Ends With 01234567,`5esn`:999 Ends With {#usn8}}]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]}))) Unwind (@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[`8esn`?:_usn3 *12{usn1:#usn7[.9e0..`3esn`][{`6esn`}..1000],_usn4:$usn2 In #usn7 In #usn7}]-(_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(usn2 :`2esn`:`4esn`)[..Reduce(`2esn`={1000}[..{usn1}][..1e-1],_usn3 In `8esn`[_usn4]|Count(*)[$7])][..{_usn3}] As `6esn`) Union Create #usn7=(`8esn` :`7esn`)-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``),((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})) Union All Merge usn1=({`1esn`:01 =~{_usn3} =~01,`8esn`:{#usn7} Ends With 999 Ends With 12})-[_usn4]-(#usn8 )-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}) On Create Set @usn6 =$`5esn` In `` Start _usn4=Node:@usn5(_usn4='s_str') Where `4esn` Ends With 9e12 Ends With {`5esn`} Create #usn8=Allshortestpaths((usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[`3esn`:#usn8|:``{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}]->(:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})),(#usn7 :@usn5)-[:`8esn`|:#usn8 *0X7..0Xa]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(_usn4 :`5esn`:`7esn`{_usn4:$_usn3[.0e-0..999]})"), + octest_legacy:ct_string("Optional Match @usn6=((`` {_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})),`2esn`=Allshortestpaths((((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999})<-[``?:@usn5|:#usn7 *..00{#usn8:$`8esn`[...1e-1]}]->(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]})))) Where 0X0123456789ABCDEF Ends With {1000} Merge Shortestpath(((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))) On Create Set `6esn` =_usn4 On Create Set `4esn` =Single(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Is Not Null Return *,`3esn` Is Null Is Null As `6esn`,11.12e-12 Contains usn1 As #usn8 Limit {#usn8} Is Not Null Is Not Null"), + octest_legacy:ct_string("Using Periodic Commit 0x0 Load Csv With Headers From None(@usn6 In 9e12[..usn2][.._usn3] Where $7) Is Not Null Is Not Null As `6esn` Fieldterminator 's_str' Return `1esn` In 6.0e0 In 12 Order By 7.0e-0 Starts With {123456789} Starts With @usn6 Ascending,#usn7[123.654][{12}] Descending,9e1[$``.._usn4][999..`3esn`] Desc Skip Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] Create _usn3=Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}))),``=Shortestpath(((#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn4]-(`2esn` :`1esn`:``)))"), + octest_legacy:ct_string("Unwind Case When $`4esn` Ends With {999} Then 01[`6esn`..][0e0..] End[Allshortestpaths((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[:`8esn`|:#usn8 *0X7..0Xa]->(`4esn` :`8esn`{12}))..Case Count ( * ) =~123456789 =~{@usn5} When 0[10.12e12] Then 12.0 Starts With 00 Else 2.9e1 In {``} End] As `` Return 0Xa[999],{#usn7} Is Not Null As `7esn` Order By Case {usn2} In false When $1000 Contains {`2esn`} Contains {`8esn`} Then $usn2 Starts With $999 Starts With .0e0 End Is Not Null Is Not Null Descending,`5esn` Is Not Null Is Not Null Descending,#usn7 =~$@usn5 =~{7} Descending Start usn2=Node:`3esn`('s_str') ,`1esn`=Node:_usn4(`5esn`={usn1})"), + octest_legacy:ct_string("Merge `4esn`=Allshortestpaths((usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) On Match Set Case When $`4esn` Ends With {999} Then 6.0e0[$#usn7..$1000] When 00 Is Not Null Is Not Null Then $#usn7[01..2.12][2.12..3.9e-1] Else 2.12[`4esn`][.9e-1] End.`` =01234567[1000..][$`8esn`..],Allshortestpaths(((usn2 :`2esn`:`4esn`{`7esn`:@usn5 =~$#usn7 =~{usn1}})-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)<-[`3esn`?:`3esn`|`3esn`*..]-({`4esn`:{7}[0x0][1e1]}))).usn1! =6.0e0[{`2esn`}..$``],Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0[10.12e12]).`2esn`?.`2esn`? ={1000}[..`5esn`][..9e12] Union All Start #usn8=Relationship:usn2(usn1={_usn3}) Union Return Any(_usn3 In `8esn`[_usn4] Where {`6esn`} In {_usn4} In $12) Is Null Is Null,1.0[$12..][\"d_str\"..] As `1esn` Skip {@usn5:5.9e-12 Is Null Is Null} Ends With Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where _usn4['s_str'][8.1e1]|0.12 =~2.9e1 =~9e1) Ends With All(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12) Limit 07[{@usn5}..]"), + octest_legacy:ct_string("Create Unique (({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(_usn3 :`8esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1})<-[_usn3? *0xabc..12]->(_usn3 {#usn7:$999 =~false =~{`8esn`}})) Create Allshortestpaths(({`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]})),((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})) Detach Delete [`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0|{`4esn`} In 1000 In {@usn5}][{@usn6:$1000 Starts With {@usn6} Starts With $@usn5}..] Union All Foreach(`` In 4.9e12[{_usn4}..]| Start #usn7=Node:usn1(_usn3={@usn6}) ,#usn7=Node( {``})) Load Csv From $`6esn`[0..{@usn6}][@usn5..1000] As _usn3 Fieldterminator \"d_str\" Remove Reduce(`7esn`=`3esn` Contains `2esn` Contains {_usn4},usn2 In .12e-12 Ends With `2esn`|{0} Is Null Is Null).`4esn`!,None(#usn7 In .0e-0 In 12 Where 123.654[01..][Count(*)..]).`7esn`!"), + octest_legacy:ct_string("Create Unique @usn6=((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})) Union All Foreach(@usn6 In ({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})-[`8esn`?:_usn3]->(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Ends With {_usn3:{123456789} Starts With `6esn`} Ends With {usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}| Unwind $`6esn` =~$#usn7 =~$`4esn` As usn1) Load Csv From Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)) Is Not Null Is Not Null As `1esn` Merge `8esn`=((`8esn` :`6esn`)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(@usn5 :@usn6:_usn3)) On Create Set ``+=12e12 Contains {0},`4esn`+=$`2esn` Contains {`4esn`} Union Create Unique ((@usn6 :`2esn`:`4esn`{@usn6:$12[10.12e12][.1e1],`8esn`:@usn5 In Null})<-[`3esn`?:`6esn`{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(@usn5 :usn1{`4esn`:$12 Is Null,`8esn`:\"d_str\" Starts With ``})<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})),usn2=Shortestpath((:`7esn`{usn2:00 Is Not Null Is Not Null})) Foreach(#usn8 In Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000)| Match Shortestpath(((usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})-[{#usn7:1e-1[$`4esn`]}]->(_usn4 :`1esn`:``{`3esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}))),(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})<-[`5esn`:@usn6|:`4esn` *010..0{`8esn`:0xabc Starts With 12 Starts With 0e-0}]-(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})<-[?:@usn6|:`4esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]-(`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]}) Using Index `1esn`:`1esn`(`4esn`) Using Join On _usn4,usn2,``)"), + octest_legacy:ct_string("Start #usn8=Node:@usn5(`1esn`={1000}) ,#usn8=Node:@usn5(`1esn`={1000})"), + octest_legacy:ct_string("With {1000} Starts With 10.12e12 Starts With .0e-0 As `8esn`,Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) As _usn4 Skip Count ( * ) Starts With 0.12 Limit Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Load Csv From All(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Ends With Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789 Is Not Null Is Not Null|{`8esn`}[@usn5][$`2esn`]) Ends With (#usn8 :`5esn`:`7esn`{usn2})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )-[_usn4? *..0x0{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null}) As `6esn` Delete @usn6 =~Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 1.0 Is Null Is Null),07[..999][..$`4esn`] Union All Unwind {`7esn`}[@usn5] As `3esn` Union Foreach(usn2 In $`7esn` Contains .12e12| Optional Match #usn8=(`6esn` :`4esn`:usn2))"), + octest_legacy:ct_string("Delete (:`6esn`{`4esn`:$_usn3 In `2esn` In `3esn`})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`})-[?:@usn5|:#usn7 *0]->({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]}) Contains Case {123456789} Ends With 11.12e-12 Ends With 00 When .9e-1 Ends With .0e-0 Ends With {_usn3} Then `4esn`[12.0..][9.1e-1..] When {0}[.1e-1..][_usn4..] Then 2.12 =~$999 End Contains [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] Union All Delete $@usn6[...9e-1],5.9e-12 =~@usn6 =~.12e-12 With *,$`3esn`[..{`5esn`}],$_usn3 Contains 1.0 Contains 0.12 As `` Skip 5.9e-12[..9e0] Where 01234567 =~12e12 =~.0e-0 Foreach(`6esn` In `8esn` Is Null Is Null| Detach Delete $`8esn` Contains _usn4,[usn1 In \"d_str\" Contains {@usn6} Where 5.9e-12[0x0..]|4.9e12 Ends With $@usn6] =~(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) =~(`3esn` :#usn8:@usn6)-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[:`2esn`|`5esn` *01]-({@usn6:{_usn4} In 0X7 In 0e0}),``(Distinct $1000 Is Null,1e-1[$`4esn`])[None(_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3])][[usn1 In \"d_str\" Contains {@usn6} Where 5.9e-12[0x0..]|4.9e12 Ends With $@usn6]]) Union All Create Unique usn2=((`8esn` :#usn7:`8esn`)<-[_usn4?:usn1|usn2{``:.9e1 In {#usn7} In .9e-12}]->(`` {_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}})<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})),((`8esn` :@usn6:_usn3)-[#usn8? *0X7..0Xa{`7esn`:{123456789} Contains $0,#usn8:{`3esn`}[$#usn8..]}]-({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`})) With Allshortestpaths((({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)))[Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0])..][Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End..] As #usn8,{12} Ends With 1e1 As `8esn` Order By Any(`1esn` In $12 In {usn2} Where @usn6[true..]) Contains Any(usn2 In .12e-12 Ends With `2esn` Where 9e12 Ends With 9e-1 Ends With 9e1) Contains (`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3) Desc Skip 4.9e12 In 9e12 In .9e-12 Where $`4esn` Is Not Null"), + octest_legacy:ct_string("Unwind .12e12[..7] As #usn8 Detach Delete 07 Ends With {1000} Ends With 01234567,.12e-12 Starts With .12e-12,{`3esn`} =~$@usn5 =~`2esn` Delete $1000[$`2esn`..] Union Return Distinct *,$1000[..0e-0][..010] As _usn4,Any(usn1 In $@usn6 Is Null Is Null)[Case {_usn3}[{0}...9e-1][9e-1...0e0] When 010[..9e-1][..0X7] Then $0 Ends With $usn1 Ends With {``} End..Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]})))] As `4esn` Order By 11.12e-12 Ends With 's_str' Desc Skip {`4esn`:12e12 Is Not Null Is Not Null} Contains Case When {_usn4}[{`6esn`}] Then 12e12 Is Not Null Is Not Null When #usn7 Is Null Is Null Then {`8esn`} Starts With .9e-1 Starts With 1000 End Remove Case #usn8[\"d_str\"..usn2] When $12[$`6esn`..][01..] Then $`4esn`[$@usn6...12e12] End.`6esn`._usn3,Any(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12).`1esn`? Union With [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End Skip Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] Where 0e-0[..7.0e-0][..{`8esn`}] Merge `6esn`=Shortestpath((`1esn` :`2esn`:`4esn`)<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}))"), + octest_legacy:ct_string("Load Csv From `3esn` Is Null Is Null As `` Fieldterminator 's_str'"), + octest_legacy:ct_string("Merge `7esn`=((:`8esn`{@usn6:$`6esn`[$_usn3..{1000}],_usn3:0xabc[..{usn1}][..\"d_str\"]})) On Create Set Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`).`6esn`?._usn4?.#usn8 =$0 Contains $123456789 Contains {`3esn`} Create ``=((`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[?$999]-(`8esn` :@usn6:_usn3)<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})),#usn8=((`` {_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})) Unwind `3esn` Contains 01 Contains 01 As _usn4"), + octest_legacy:ct_string("Remove None(usn1 In {#usn7} =~.12e12 =~9e0 Where 9e-1 Is Not Null).`6esn`!,usn1:`6esn`,Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null).`5esn` Union Remove _usn3:usn2,Reduce(``=true In 0.0,`1esn` In $12 In {usn2}|9e0[..{#usn7}][..`4esn`]).`6esn`! Remove ({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[usn2:_usn3 *0xabc..12]-(:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null}).`5esn`?,{_usn3:12.0[..Count ( * )][..@usn6]}.``!,Shortestpath((`6esn` :``)<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})).@usn6!._usn4? Union All Load Csv From {@usn6} In 9e12 As usn2 "), + octest_legacy:ct_string("With Distinct None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0) As usn2 Skip Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])[..(#usn7 {`5esn`:.12e12 Is Not Null,@usn5:.12e12 Is Not Null})-[#usn8:`7esn`|usn1 *0X7..0Xa{usn1:_usn4 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})][..Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`)] Where .0e0 =~0 =~.0e0 With Distinct *,@usn6[Reduce(`5esn`=_usn4['s_str'][8.1e1],_usn3 In `8esn`[_usn4]|$_usn3 =~'s_str' =~12)..][(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[`7esn`?]-(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})..] As usn1 Skip {`6esn`} In .0e0 In $0 Limit (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])] Where 1.0 In {usn1} Remove Extract(usn1 In $@usn6 Is Null Is Null Where `3esn` Is Null).usn1 Union Load Csv With Headers From 9e-1 Is Not Null As `1esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Remove Case 9e-12 Starts With {1000} When `1esn`[Null][{@usn6}] Then {_usn3} Is Null Is Null When 10.12e12[usn2] Then $12 =~4.9e12 Else .9e12[6.0e0..][@usn5..] End.@usn5! Create (`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})))"), + octest_legacy:ct_string("Start `7esn`=Rel:``('s_str') Detach Delete $12[10.12e12][.1e1] With Distinct {``:01234567[10.12e12][0Xa]} Is Null Is Null As _usn4,`1esn`[..$1000] As _usn3 Skip Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] Where $#usn8[$0..`3esn`][1e-1..$7]"), + octest_legacy:ct_string("Merge `1esn`=Allshortestpaths(((#usn8 {@usn5:{7}[$@usn5..123456789][1e1..1.9e0],@usn6:usn2 Starts With $usn1 Starts With 10.12e12})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc}))) On Match Set Extract(#usn7 In .0e-0 In 12 Where 123.654[01..][Count(*)..]|0X0123456789ABCDEF[1e1..]).`5esn`? ={`2esn`:_usn3 =~{7} =~123.654}[Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4})..{#usn7:1e-1 =~$`7esn` =~1e1,`7esn`:{0}[`4esn`..{`8esn`}]}],[`7esn` In 0.12 Is Not Null Where 0X0123456789ABCDEF In false|_usn3 =~{7} =~123.654].`6esn`.@usn6.usn1 =Reduce(`2esn`=01234567 =~12e12 =~.0e-0,usn1 In \"d_str\" Contains {@usn6}|`6esn` Ends With 1e1 Ends With $#usn7) Is Null Is Null Start @usn6=Node:@usn6(`8esn`='s_str') ,@usn5=Node:#usn8(`8esn`={123456789})Where 0xabc Starts With {`3esn`} Starts With {``} Match ({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}) Where 9e1[0.0] Union All Foreach(`5esn` In exists(usn1 Ends With 11.12e-12 Ends With 5.9e-12)[All(`7esn` In 0.12 Is Not Null Where 0X0123456789ABCDEF In false)..]| Unwind 0X7[#usn7..][$@usn5..] As @usn5) Load Csv With Headers From .9e1[$`1esn`..][$``..] As `7esn` Fieldterminator \"d_str\" Union All Create Allshortestpaths(((`4esn` :#usn7:`8esn`)<-[:`8esn`|:#usn8{_usn4:$#usn7 Ends With {`5esn`} Ends With 01}]-({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[usn1:#usn7|:@usn5 *999..123456789]->(`5esn` :``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null}))),(`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})"), + octest_legacy:ct_string("With *,{`3esn`}[...1e1][..0],$12 Ends With 7.0e-0 Ends With 9e-12 As usn1 Order By (:`1esn`:``{`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]})-[:`1esn`|:`1esn` *999..123456789{@usn5:$999 Ends With `2esn` Ends With 12.0}]->(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}) Contains Case {`8esn`} In {_usn3} In 6.0e0 When 9e0[..{#usn7}][..`4esn`] Then .12e12 Is Not Null When #usn8[$`2esn`] Then 3.9e-1 Starts With .9e0 Starts With {#usn7} Else 8.1e1 Contains .9e-1 Contains false End Contains Extract(#usn7 In .0e-0 In 12 Where {0}[.0e-0][$`2esn`]) Descending,[`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null] =~`6esn`(Distinct 2.9e1[Count ( * )..]) Ascending,01234567[10.12e12][0Xa] Desc Skip {7} Is Not Null Where .1e-1[2.9e1..][$`7esn`..] Load Csv From {`7esn`}[$12..123456789] As _usn4 Fieldterminator \"d_str\" Union All Create (#usn7 {#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})<-[@usn5?:#usn7|:@usn5]->(:`8esn`{`2esn`:0[..{#usn7}][..$_usn3],#usn8:.9e-1 Is Null Is Null})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}) Foreach(_usn3 In $0 =~{@usn5} =~1e1| Start @usn5=Relationship( {#usn8}) ,_usn3=Rel:`1esn`({0}) Unwind 01234567[10.12e12][0Xa] As `1esn`) Union All Remove Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]).`1esn`.#usn8!,Allshortestpaths(((`4esn` :`8esn`{12})))._usn3! Load Csv With Headers From usn1 =~false =~{999} As @usn6 "), + octest_legacy:ct_string("Create ((`3esn` :@usn5)<-[`3esn` *..0x0]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`))"), + octest_legacy:ct_string("Return *,1.0 In {usn1} As `5esn` Skip _usn4 Is Not Null Is Not Null"), + octest_legacy:ct_string("Using Periodic Commit 0Xa Load Csv From $`8esn`[..5.9e-12][..`8esn`] As `` Fieldterminator 's_str' Delete 2.9e1 =~Count(*) =~{123456789},Any(`1esn` In $12 In {usn2} Where @usn6[true..]) Contains Any(usn2 In .12e-12 Ends With `2esn` Where 9e12 Ends With 9e-1 Ends With 9e1) Contains (`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3),`3esn` Is Null Optional Match (_usn4 :`6esn`)<-[:#usn8|:``{#usn7:$#usn7}]-(#usn7 $12),(((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))) Using Index `3esn`:`8esn`(`5esn`) Using Index `6esn`:usn1(`3esn`)"), + octest_legacy:ct_string("Remove usn2:`` Start _usn4=Node:usn2({`1esn`}) ,`1esn`=Node(0) Union All Detach Delete 123.654[10.12e12..$12][6.0e0..{#usn8}],None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null),(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 ) Ends With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12)"), + octest_legacy:ct_string("Foreach(`1esn` In Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null)| Delete 2.9e1 Ends With `5esn` Ends With 1000 With Distinct *,false[..usn2][..999] Order By .0e-0[010..] Asc,6.0e0 In 9e-1 In 123456789 Ascending,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) Desc Skip $`3esn` =~$123456789 =~`3esn`) Return Distinct 9.1e-1[..Null][..#usn8] As @usn6 Order By {999} Starts With $`4esn` Starts With $`1esn` Ascending,$`8esn`[...1e-1] Desc Limit Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null Union Unwind 2.9e1[Count ( * )..] As `7esn` Return Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]|@usn5 =~$#usn7 =~{usn1}) In Case 9.1e-1 Contains {`3esn`} Contains $12 When {@usn6} In 9e12 Then 01[$`1esn`..$`7esn`][{usn2}..12.0] When {#usn8} In {12} In .9e12 Then @usn6 Starts With #usn7 End In All(usn1 In $@usn6 Is Null Is Null Where {7} Starts With 0x0 Starts With 9e1) As usn1 Skip Any(#usn8 In 07[..$`5esn`] Where .9e0[07..][4.9e12..]) =~_usn3 =~(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``) Delete {`5esn`}[01234567..][5.9e-12..] Union All With *,Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Contains (:`2esn`:`4esn`{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``) Contains {@usn6:10.12e12 Contains .9e0,`3esn`:`6esn` =~999 =~$999} As `7esn`,@usn5[{`1esn`}..][Count ( * )..] Skip 2.12[10.12e12][_usn4] Limit 5.9e-12[\"d_str\"..][{`6esn`}..] Where 11.12e-12 Ends With 's_str'"), + octest_legacy:ct_string("Remove Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`}[@usn5..{@usn6}]|$`6esn` Starts With 0.0).@usn5!,Allshortestpaths(((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}))).`6esn`!.#usn8! Union Create Unique ((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) Remove Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 1.0 In {usn1})._usn3!,None(`2esn` In $@usn5 Is Not Null Is Not Null Where {_usn3} Is Null Is Null).usn1?,`1esn`(true Is Null,$1000[..0e-0][..010]).#usn8!.usn1?.`3esn`"), + octest_legacy:ct_string("Start `4esn`=Node( {``}) ,@usn5=Relationship:``(`4esn`='s_str') Union Load Csv From 12e12[usn2..$`6esn`] As usn2 Foreach(usn2 In (`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End]| Start _usn4=Relationship( {#usn8}) ,`4esn`=Node:usn2(usn1={_usn3}))"), + octest_legacy:ct_string("Create Unique _usn4=(#usn8 :`5esn`:`7esn`{usn2}) Create Unique `5esn`=(((`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[?:_usn3]->(`8esn` :usn1)-[?:`1esn`|:`1esn` *999..123456789]-(`8esn` :#usn7:`8esn`))),`5esn`=Shortestpath(((@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))) Create `5esn`=Shortestpath((`5esn` :``{_usn3:$_usn4[..$999],`7esn`:0X0123456789ABCDEF Ends With {1000}})-[*{@usn5:`6esn` =~999 =~$999}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})) Union All Return Distinct Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As `8esn`,#usn7 Is Null Is Null As ``,false Is Not Null Is Not Null As @usn5 Skip {0}[..`3esn`][..8.1e1] Union All Delete Allshortestpaths((`3esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})) Is Not Null Is Not Null,{@usn6:3.9e-1[..$1000][..0.12]}[All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000)],(`4esn` {``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})-[?:#usn7|:@usn5 *12]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})[(:#usn7:`8esn`{@usn5:{0} In {`1esn`}})<-[$#usn8]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]})<-[`3esn`?:`6esn`{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(:`1esn`:``{`8esn`:5.9e-12[0x0..]})..][Extract(@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null)..]"), + octest_legacy:ct_string("Delete .0e0[{#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]}][All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0)],Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Create Unique `7esn`=Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))) Union Foreach(_usn4 In (:`2esn`:`4esn`{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``) =~Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null)| Remove Reduce(`7esn`=12e12 Contains {0},`1esn` In $12 In {usn2}|{``} Is Null Is Null).@usn5 With Distinct 12.0 =~{@usn6} As _usn3,.1e-1[$@usn6] As `3esn` Skip {`4esn`}[{`3esn`}][$`2esn`] Where .0e-0[..01234567]) With Distinct 9e12 Is Null,.9e12[6.0e0..][@usn5..],exists(0[..12][..{`8esn`}]) Is Null Is Null As `2esn` Order By .0e-0 Ends With $`2esn` Ends With `5esn` Descending Skip Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) Where .9e-1 Ends With .0e-0 Ends With {_usn3} Merge @usn5=(((`2esn` :_usn3{usn1:5.9e-12 Is Null Is Null})-[`7esn`?:#usn7|:@usn5 *1000..]->(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]}))) Union Remove Extract(`7esn` In 0.12 Is Not Null Where {`1esn`}[{usn2}]|9e1 Ends With `7esn` Ends With 2.12).`2esn`?.`1esn`.usn2!,Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where {`3esn`} =~$@usn5 =~`2esn`|$1000 Starts With {@usn6} Starts With $@usn5).`3esn`?.`3esn`?.`4esn`? Delete 1e1[$_usn3],9e-1[0],$#usn8 Starts With 9.1e-1 Starts With {#usn7} Detach Delete $@usn6[.1e-1][9e12]"), + octest_legacy:ct_string("Start `7esn`=Node:#usn7(usn1={`6esn`}) Where false[..usn2][..999] Merge ``=((:`7esn`{`1esn`:$`8esn` Is Null Is Null,`1esn`:0.12 =~2.9e1 =~9e1})-[:#usn8|:``*{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]->(:``{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) On Match Set Reduce(`4esn`=.12e12[..$123456789],usn1 In $@usn6 Is Null Is Null|2.9e1 Ends With `5esn` Ends With 1000).#usn7.usn1 =Count(*)[@usn5..],_usn3 =0.12 Ends With 7 Ends With 12 On Create Set (:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}).usn2 =Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] Union With 9e1 =~$`8esn` =~10.12e12 Limit 5.9e-12[\"d_str\"..][{`6esn`}..] Where {`8esn`}[..999][.._usn3] Unwind Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[$usn1..])[..Shortestpath((((`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn2 *7]-(`8esn` {_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}))))][..{`3esn`:$`6esn` Starts With 0.0,#usn8:$usn1 =~.0e0 =~{`4esn`}}] As @usn6 Create Unique #usn7=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 ))) Union Create Unique Allshortestpaths((`2esn` :_usn3{usn1:5.9e-12 Is Null Is Null})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(:`5esn`:`7esn`{`4esn`:2.9e1[{`2esn`}]})-[ *..123456789{@usn5:$`8esn`}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})),``=Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})))"), + octest_legacy:ct_string("Delete .9e-12[{@usn5}],@usn5({1000}[0..]) =~Reduce(usn1=`7esn`[1.9e0..5.9e-12][9e0..@usn5],usn2 In $`5esn`[{`4esn`}][{0}]|$usn1[..$999][..0e0]) Unwind (`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}) Is Not Null As @usn5 Union Create Unique #usn7=Shortestpath(({`5esn`:`1esn` In 010 In 1e-1})<-[?:@usn6|:`4esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]-(`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})),Shortestpath(((_usn4 :`1esn`:``)-[usn1?:`3esn`|`3esn`*..]-(`1esn` ))) Return Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) As #usn8,{`8esn`:`1esn` In 6.0e0 In 12} =~Case 7 Starts With 9e-12 When .9e12 Is Not Null Is Not Null Then 1000[{`1esn`}..][$`3esn`..] Else {`6esn`}[6.0e0..9e0][.9e1..12e12] End Order By $#usn8 Starts With 9.1e-1 Starts With {#usn7} Asc,0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}] Desc,[`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0|{`4esn`} In 1000 In {@usn5}] Is Null Ascending"), + octest_legacy:ct_string("Create ``=Shortestpath(((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))) Return *,1.0 In {usn1} As `5esn` Skip _usn4 Is Not Null Is Not Null Merge `8esn`=Allshortestpaths(((:`4esn`:usn2{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(_usn4 :usn2))) Union All Merge `8esn`=(({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})) On Match Set None(_usn3 In `8esn`[_usn4] Where {#usn7} Starts With .1e-1).`` =$`7esn` Is Null On Match Set `6esn` =.1e-1[$@usn6],#usn7 =7.0e-0 Is Not Null Foreach(`4esn` In None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null)| Load Csv With Headers From Allshortestpaths((:usn1$1000)) Starts With [#usn7 In .0e-0 In 12 Where `8esn`[.12e12..]|$123456789] Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`6esn`} =~2.12 =~123.654) As _usn3 )"), + octest_legacy:ct_string("With _usn4['s_str'][8.1e1] As `` Order By {#usn7}[..\"d_str\"][..#usn8] Desc Skip (:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 )[Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..][(#usn8 :`4esn`:usn2)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})..] Detach Delete Extract(#usn8 In 07[..$`5esn`] Where $usn2[..$999][..#usn8])[..Extract(`1esn` In $12 In {usn2} Where {123456789} =~.9e1 =~$_usn3|9e1 =~$`8esn` =~10.12e12)][..Reduce(`8esn`=.1e1[{@usn6}][true],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|0X7 Is Not Null Is Not Null)]"), + octest_legacy:ct_string("Using Periodic Commit 0x0 Load Csv With Headers From {#usn7} Ends With {usn2} As _usn3 Create Unique `7esn`=(`3esn` :usn2),#usn8=(({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[ *12{#usn8:0e0 =~{12} =~{1000}}]-(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})) Detach Delete Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]),{0} =~{999},@usn6[true..]"), + octest_legacy:ct_string("With Distinct 12e12[usn2..$`6esn`] As usn1,0Xa Contains 12e-12,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As #usn7 Order By 9e12 Ends With \"d_str\" Ends With 0X7 Desc Skip {12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1]"), + octest_legacy:ct_string("Foreach(`8esn` In {usn2}[..{@usn6}][..@usn5]| With *,9e1[0.0] As `4esn` Order By 1e-1[..$`2esn`][..01] Asc,[usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`|{#usn8}[..@usn5]][Case When .9e1 In {#usn7} In .9e-12 Then #usn7 Is Null Is Null End..] Asc,12 Ends With 12e12 Desc Limit 00[{1000}]) Remove Extract(usn1 In $@usn6 Is Null Is Null Where `3esn` Is Null).usn1 With $`6esn`[$_usn3..{1000}] Order By {7} Ends With 999 Asc Limit Count ( * ) Contains 9.1e-1 Contains {`2esn`} Where {`4esn`} Ends With Count(*) Union Load Csv With Headers From {12}[00..$`1esn`] As _usn3 Fieldterminator 's_str' Create Unique (usn1 :@usn6:_usn3)<-[`3esn` *..0x0]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}),(`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}) Foreach(usn2 In 0.12 Ends With 7 Ends With 12| Load Csv From $`8esn`[..5.9e-12][..`8esn`] As `` Fieldterminator 's_str') Union Create `8esn`=Shortestpath(((:usn1{#usn8:2.9e1[{`2esn`}]})<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``)))"), + octest_legacy:ct_string("Create Shortestpath((((`2esn` :_usn3{usn1:5.9e-12 Is Null Is Null})-[`7esn`?:#usn7|:@usn5 *1000..]->(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]})))) Union All Remove (`3esn` :`2esn`:`4esn`)<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0}).@usn5?,Case `1esn`[..$1000] When .9e-12[.12e12..][0Xa..] Then {`7esn`} Is Not Null Is Not Null Else {@usn6} In 9e12 End.`5esn`"), + octest_legacy:ct_string("Return usn2[12e-12..{`8esn`}][.12e12..{123456789}] As #usn8,Case When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] When {123456789} Starts With $_usn4 Starts With 0x0 Then 9e0[`3esn`][0] End[{`3esn`:false Starts With 0 Starts With 2.9e1,@usn6:9e-12 Ends With {1000}}..{`8esn`:_usn3[{#usn7}]}] As usn1 Skip Allshortestpaths((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))[usn1..] Limit usn2 Ends With $123456789 Ends With {999}"), + octest_legacy:ct_string("Detach Delete $`5esn`[..{0}][..7.0e-0]"), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv From Reduce(`7esn`=#usn7 Contains .0e0 Contains $@usn6,`6esn` In 010[{`1esn`}..]|00 Is Not Null Is Not Null)[$7..] As `8esn` Fieldterminator 's_str' Match ({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`}) Using Scan @usn5:usn1 Using Scan `4esn`:`1esn` Where usn2 Starts With $usn1 Starts With 10.12e12"), + octest_legacy:ct_string("Start `4esn`=Node:`2esn`(`7esn`=\"d_str\") Where {#usn8}[..@usn5] Detach Delete Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`}) In Allshortestpaths(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) In Extract(usn1 In $@usn6 Is Null Is Null Where 0Xa In 1.0 In $@usn5|Null[#usn7..][9.1e-1..]),Case When {0} Is Null Is Null Then $``[1.0..][_usn3..] Else 999[..$@usn5][..``] End In Case .9e0 =~#usn7 When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 When 0e0 Contains {`2esn`} Then {1000}[0..] Else 2.9e1 Ends With `5esn` Ends With 1000 End In (#usn7 :@usn5)<-[?*{_usn4:{`4esn`} In 1000 In {@usn5}}]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}),`4esn` Contains 0X0123456789ABCDEF Contains $usn2 Start @usn5=Rel:#usn7(\"d_str\") ,`2esn`=Node(0X7,123456789,123456789,0X7)Where 999 Is Null Is Null"), + octest_legacy:ct_string("Using Periodic Commit 0 Load Csv From Case false =~{`8esn`} =~00 When usn2 Starts With $usn1 Starts With 10.12e12 Then usn2 Starts With $usn1 Starts With 10.12e12 When {1000} =~4.9e12 =~9e1 Then `3esn` =~$#usn7 End Ends With All(usn2 In $`5esn`[{`4esn`}][{0}] Where 0e0 Contains {`2esn`}) Ends With [#usn7 In .0e-0 In 12 Where Count ( * ) Is Not Null Is Not Null|$`7esn` Starts With 's_str'] As `` Merge Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`))"), + octest_legacy:ct_string("Using Periodic Commit 7 Load Csv With Headers From {`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}} Starts With Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999|$`1esn`[..12e-12][...9e12]) Starts With (`4esn` :`8esn`{12})<-[`2esn`?:`4esn`|:`2esn`]-(`4esn` {`8esn`:5.9e-12[0x0..]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}) As `7esn` With $#usn7 Contains 3.9e-1 Order By Count(*)[{12}..{#usn8}] Asc Where 2.12[{12}] Start `1esn`=Relationship:#usn7(`7esn`=\"d_str\") ,`8esn`=Relationship:`5esn`({999})"), + octest_legacy:ct_string("Start usn2=Node(07,0Xa) Union All Remove Shortestpath(((usn1 :#usn8:@usn6))).@usn6?.`3esn`.`6esn`?,`7esn`(0.12 In $``).`6esn`? Merge (((`3esn` $0)-[`4esn`? *01{#usn8:12.0[..Count ( * )][..@usn6]}]-(usn1 :#usn8:@usn6)-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2))) Foreach(#usn7 In `3esn`[{`4esn`}]| With Distinct *,Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,Case \"d_str\"[0x0..{@usn6}][$@usn5..0] When 0e0 Contains {`2esn`} Then 0X0123456789ABCDEF[1e1..] Else .12e12 Starts With 5.9e-12 Starts With `4esn` End In {usn1:$#usn7[01..2.12][2.12..3.9e-1],`6esn`:.0e-0 Ends With $`2esn` Ends With `5esn`} Order By .9e12 Contains 5.9e-12 Contains 9e-1 Descending Skip $123456789[..$999][..`6esn`]) Union Unwind 999 Starts With 07 As `5esn`"), + octest_legacy:ct_string("Remove (`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})<-[_usn4 *010..0{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}]->(usn2 :``{#usn7:1e-1 =~$`7esn` =~1e1,`7esn`:{0}[`4esn`..{`8esn`}]}).usn2?.`3esn` Create Unique @usn5=Shortestpath(((:#usn8:@usn6{@usn6:$_usn4 Ends With {#usn8},_usn4:0e0[12.0][{#usn7}]})-[:#usn8|:``*{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]->(:``{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})))"), + octest_legacy:ct_string("Create Unique usn1=(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})-[?:@usn5|:#usn7 *0]->(`4esn` :`8esn`{`4esn`:4.9e12 Starts With {``},`8esn`:$12 Ends With {_usn4} Ends With $`8esn`})-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12}) Union Delete {`3esn`}[..{`4esn`}][..usn2],`1esn`({`4esn`} Ends With Count(*),$usn1 Contains 4.9e12 Contains $`2esn`) Is Not Null Is Not Null,Single(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1])[Case When 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Then $#usn8 Is Not Null Is Not Null When \"d_str\" Starts With $`7esn` Starts With 999 Then \"d_str\"[0x0..{@usn6}][$@usn5..0] Else .0e-0[..01234567] End..] Start `2esn`=Relationship:_usn4(@usn6=\"d_str\") ,``=Node:``(`1esn`=\"d_str\")Where $`6esn`[..01][..{_usn3}]"), + octest_legacy:ct_string("Remove `3esn`:usn2,(:#usn7:`8esn`{`5esn`:false[..usn2][..999]})<-[`7esn`:`4esn`|:`2esn`*{``:true Is Null,_usn3:$12 Ends With 7.0e-0 Ends With 9e-12}]->(`` :`7esn`).`1esn` Union Unwind Extract(`1esn` In $12 In {usn2} Where 12e12[{`4esn`}..`4esn`][999..{@usn6}])[None(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}][Reduce(#usn7=12[..$`5esn`],usn1 In $@usn6 Is Null Is Null|12e12 Ends With `5esn` Ends With .0e0)..[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 0.12 Is Not Null]] As `1esn` Foreach(`3esn` In Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Not Null Is Not Null| Unwind {usn1} Contains {`2esn`} As `8esn`) With *,Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null) As `2esn` Limit `4esn` Is Not Null Where $@usn6 Starts With 0xabc Starts With {`7esn`} Union All Unwind 11.12e-12 =~Count ( * ) As `8esn`"), + octest_legacy:ct_string("Load Csv From Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] As @usn5 Remove Extract(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).@usn5! Union All With *,@usn6 Ends With $`2esn` Ends With 1.0,.1e-1[$@usn6] Skip usn2($12 =~4.9e12) Ends With Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Ends With Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End Limit false =~$7 Where {``} Contains 0.0 Contains `4esn`"), + octest_legacy:ct_string("Remove Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where `6esn`[3.9e-1..`8esn`][12.0..0.0]).usn2?.``,Case When 11.12e-12 Ends With 's_str' Then #usn7 Contains .0e0 Contains $@usn6 When $#usn7 Then `7esn`[1.9e0..5.9e-12][9e0..@usn5] Else 0.12 Is Not Null End.`7esn` Foreach(`7esn` In $`1esn`[..1000][..\"d_str\"]| Create Unique #usn8=((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) Create usn2=Allshortestpaths(((:`8esn`{@usn6:$`6esn`[$_usn3..{1000}],_usn3:0xabc[..{usn1}][..\"d_str\"]}))),#usn7=Shortestpath(()<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]-({`4esn`:.9e12[6.0e0..][@usn5..],``:1.0 Is Not Null})-[`3esn`? *..07]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]})))"), + octest_legacy:ct_string("Load Csv With Headers From {123456789} Starts With $_usn4 Starts With 0x0 As #usn7 Fieldterminator 's_str' Start `3esn`=Relationship:#usn7(#usn8=\"d_str\") Where {@usn6} In 1.0 Create Unique Allshortestpaths((:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[`7esn`?:`7esn`|usn1 *1000..{@usn6:#usn7 In 07,#usn8:$999[usn1..0e-0]}]->(#usn8 :`5esn`:`7esn`{usn2})-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})) Union All Remove [#usn7 In .0e-0 In 12 Where 0xabc[..{usn1}][..\"d_str\"]|0.12 =~`6esn` =~.9e-1]._usn3?.@usn6!,Case #usn8[\"d_str\"..usn2] When $12[$`6esn`..][01..] Then $`4esn`[$@usn6...12e12] End.`7esn`!.``!.`7esn`? Foreach(`8esn` In {1000}[`2esn`...0e-0][9e-1..0X7]| Load Csv From usn2(Distinct $_usn3 =~'s_str' =~12) In (`` :usn1)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}) In Case When {_usn4}[{`6esn`}] Then 12e12 Is Not Null Is Not Null When #usn7 Is Null Is Null Then {`8esn`} Starts With .9e-1 Starts With 1000 End As usn2 )"), + octest_legacy:ct_string("Detach Delete $999[9e0] With Extract(usn2 In $`5esn`[{`4esn`}][{0}] Where 12[4.9e12..]) =~Reduce(`1esn`=.0e-0[..``][..$7],`2esn` In $@usn5 Is Not Null Is Not Null|5.9e-12[\"d_str\"..][{`6esn`}..]),{#usn7} Is Not Null,8.1e1[.1e1..][`4esn`..] Order By @usn5[#usn7..] Asc,Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[$usn1..])[..Shortestpath((((`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn2 *7]-(`8esn` {_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}))))][..{`3esn`:$`6esn` Starts With 0.0,#usn8:$usn1 =~.0e0 =~{`4esn`}}] Asc Limit `8esn` Contains usn2 Where $usn1 Ends With {`2esn`} Ends With $usn1 Unwind .9e12 Is Not Null Is Not Null As _usn3"), + octest_legacy:ct_string("Using Periodic Commit 123456789 Load Csv From $#usn7[$``..999][$usn2..$usn2] As usn2 Fieldterminator 's_str' Create Shortestpath((@usn6 :@usn5)),Shortestpath(((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})))"), + octest_legacy:ct_string("Create _usn4=Allshortestpaths(((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))),Shortestpath((((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[`8esn`*]-(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)))) Match ``=(((@usn5 {@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))),`2esn`=Allshortestpaths((((#usn8 :`3esn`{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})-[? *0]-(:`3esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`})-[?:``|:`7esn` *12{#usn8:10.12e12 Contains .9e0,usn1:0xabc Contains {12} Contains {`6esn`}}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1})))) Using Index `8esn`:@usn5(usn1) Using Join On `6esn`,_usn3 With 1.0 In {usn1} As `5esn` Limit Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null"), + octest_legacy:ct_string("Merge (_usn4 :usn2)-[@usn5?:#usn7|:@usn5]-(usn1 :#usn8:@usn6) On Match Set `4esn`+=Single(`` In `7esn` =~#usn8 =~\"d_str\")[Reduce(`3esn`=1e1[$_usn3],`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1[..9.1e-1][...9e1])][[#usn7 In .0e-0 In 12 Where \"d_str\"[0x0..{@usn6}][$@usn5..0]|{7}[$@usn5..123456789][1e1..1.9e0]]] On Create Set (:#usn8:@usn6{`3esn`:$#usn7})-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}).@usn6? =9e1 =~123456789 =~{`6esn`},usn1 =``(Distinct $1000 Is Null,1e-1[$`4esn`])[..{`8esn`:{`3esn`}[..{`4esn`}][..usn2]}],All(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789)._usn3?.#usn7!.usn2 ={_usn3} =~$12 =~$7 Create Shortestpath((`4esn` )-[:`6esn` *12{#usn7:`3esn` =~$#usn7,`8esn`:0e-0[{@usn6}]}]->(usn1 :#usn7:`8esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)),`3esn`=({#usn8:_usn4[$_usn4]})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7}) Union All Return Distinct *,Case Count ( * ) =~123456789 =~{@usn5} When 0[10.12e12] Then 12.0 Starts With 00 Else 2.9e1 In {``} End[..Case $`8esn`[0x0][.9e0] When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null Else $usn1 =~.0e0 =~{`4esn`} End][..Extract(#usn8 In 07[..$`5esn`] Where 07[{@usn5}..]|9e-1 Contains 3.9e-1)] As `4esn`,(`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3)[Case When 3.9e-1 Ends With {usn1} Ends With {`5esn`} Then 5.9e-12 Is Null Is Null When 9e1 Ends With 9e12 Ends With 0x0 Then .9e0 =~#usn7 Else 0 Starts With `7esn` Starts With 9e0 End..Filter(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null)] As _usn4 Skip .9e0 Is Not Null Return Distinct $`7esn` In $@usn5,{999} =~$`6esn` =~$`6esn` As `1esn`,12[4.9e12..] As #usn8 Order By $@usn6[...9e-1] Asc,Allshortestpaths((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))[usn1..] Asc,Count ( * ) Contains 9.1e-1 Contains {`2esn`} Ascending Limit (:#usn7:`8esn`{usn2:`1esn` =~{12} =~{999}})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})-[:`2esn`|`5esn` *01]-(`6esn` {`6esn`:$999 Is Not Null}) Starts With {`1esn`:$#usn7 Ends With {`5esn`} Ends With 01} Starts With All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 0xabc[..{usn1}][..\"d_str\"]) With Distinct *,{`3esn`}[#usn7] As _usn3 Skip {usn2}[..{@usn6}][..@usn5] Limit All(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Where 2.9e1 In {``} Union All Merge Shortestpath((_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})) On Match Set [`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12|#usn7 Contains .0e0 Contains $@usn6].`1esn` =Count(*)[..{#usn7}],Reduce(`4esn`={0} Is Not Null,`3esn` In 8.1e1 Contains .9e-1 Contains false|{`3esn`}[..{`4esn`}][..usn2]).#usn8 =$`2esn` Contains {`4esn`},_usn4+=9e-1[1.9e0] On Match Set (#usn7 :`7esn`)<-[`7esn`{`2esn`:.12e12 Starts With 5.9e-12 Starts With `4esn`}]-({@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]}).``!.@usn6 =Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) Ends With Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When 0.12[Count ( * )..Count ( * )][$999..`5esn`] Then $123456789[..$999][..`6esn`] Else 7[{`4esn`}..] End Ends With ({`7esn`:$usn1 =~.0e0 =~{`4esn`},`3esn`:usn2 Contains `2esn` Contains {1000}})<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}),Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789).`2esn`.usn1? =All(#usn8 In 07[..$`5esn`] Where $@usn6 Starts With 0xabc Starts With {`7esn`}),(usn2 {`7esn`:.9e12 Contains 0 Contains $0})-[`5esn`?:@usn6|:`4esn`{usn2:{_usn3} In $#usn8 In $12}]-(@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})-[_usn4]-(#usn8 ).`4esn`.@usn6? ={@usn6:$12 Is Null} In (`4esn` {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}) Merge usn1=(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0}) On Create Set `5esn` ={`8esn`} In {_usn3} In 6.0e0 On Create Set usn1:`6esn`,{`7esn`:{#usn7}[.12e-12]}.@usn6!.#usn7?.`6esn`! ={12} Contains `8esn` Contains @usn5"), + octest_legacy:ct_string("Create ({@usn6:$@usn6 Is Null Is Null})-[``?:#usn7|:@usn5{``:$usn1 Ends With {`2esn`} Ends With $usn1}]->(:`5esn`:`7esn`$usn2)"), + octest_legacy:ct_string("Detach Delete $`5esn`[..{0}][..7.0e-0],`8esn` Contains usn2,usn2[12e-12..{`8esn`}][.12e12..{123456789}]"), + octest_legacy:ct_string("Create Unique (:`4esn`:usn2{usn2:$usn2 Ends With 00 Ends With 9e12,_usn4:{`5esn`}})<-[_usn3? *0xabc..12]->(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})-[``:``|:`7esn`*{#usn8:{#usn7}[.12e-12],`3esn`:1.9e0[`6esn`][`7esn`]}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]}),``=({`4esn`:{7}[0x0][1e1]})-[:`8esn`|:#usn8 *01]-(usn2 :`2esn`:`4esn`)-[$#usn8]->({usn2:01[`4esn`..]}) Create (:`7esn`{@usn6:$_usn3 Starts With 010})<-[:_usn3]->(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})<-[``?:@usn5|:#usn7 *..00{#usn8:$`8esn`[...1e-1]}]->(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]}),(@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})-[#usn8?*..]-(`` {`6esn`:1000[{`1esn`}..][$`3esn`..]}) Union Detach Delete {`5esn`:.9e-1 Contains .9e0 Contains ``} Starts With None(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0) Starts With (:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})-[`7esn`:`1esn`|:`1esn` *0Xa..12]-(`` :`1esn`:``)<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-(_usn3 :`1esn`:``) Merge @usn5=((#usn8 :@usn5)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) On Create Set `7esn` =1e1 Ends With $_usn3 Ends With .1e1 On Match Set (`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[`1esn` *010..0]->(@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}}).usn2 ={usn2} Contains {0},Shortestpath(((({usn2:01[`4esn`..]})<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})-[:`1esn`|:`1esn` *0{`8esn`:2.12[{12}],`7esn`:$@usn6[``..][3.9e-1..]}]->(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})))).`` =Case 0X0123456789ABCDEF Is Not Null Is Not Null When #usn8[\"d_str\"..usn2] Then $_usn3 Starts With 010 Else {0}[.0e-0][$`2esn`] End Contains Single(_usn3 In `8esn`[_usn4] Where $_usn3[usn2..][usn1..]),_usn3 =(:`6esn`{`4esn`:$_usn3 In `2esn` In `3esn`})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`})-[?:@usn5|:#usn7 *0]->({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]}) Contains Case {123456789} Ends With 11.12e-12 Ends With 00 When .9e-1 Ends With .0e-0 Ends With {_usn3} Then `4esn`[12.0..][9.1e-1..] When {0}[.1e-1..][_usn4..] Then 2.12 =~$999 End Contains [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] Unwind {0}[.1e-1..][_usn4..] As #usn7 Union All With $usn1 Ends With {`2esn`} Ends With $usn1 Order By 123.654 Ends With {1000} Ends With 9e12 Descending,{`6esn`} Starts With 12e12 Starts With {`2esn`} Descending Unwind Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {12} Ends With $`3esn` Ends With 0xabc)[Case When {0} Is Null Is Null Then $``[1.0..][_usn3..] Else 999[..$@usn5][..``] End..] As `6esn` Load Csv With Headers From Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] As `7esn` "), + octest_legacy:ct_string("Create Shortestpath((#usn8 :`5esn`:`7esn`{usn2})),((usn1 :@usn6:_usn3)-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})) Union Optional Match Shortestpath((`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})),((_usn3 :`7esn`{@usn6:$`4esn` Ends With .12e12 Ends With 123.654})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)<-[#usn7? *0xabc..12]-(:`3esn`)) Using Join On `7esn`,`1esn` Match `6esn`=(:#usn7:`8esn`{@usn6:123456789[_usn4..`1esn`][$`6esn`..{@usn6}]})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]}),Allshortestpaths(((`` :`7esn`))) Using Scan `8esn`:#usn7 Load Csv From .0e-0 Ends With $`2esn` Ends With `5esn` As #usn7 Fieldterminator \"d_str\" Union Foreach(`` In 12e12 Contains {0}| With Distinct *,$`1esn`[4.9e12..][_usn3..],Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End =~{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]} Order By Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) Descending,5.9e-12[01][`4esn`] Descending,[`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] Descending Skip Count(*) Is Not Null Is Not Null Limit 12e-12 =~$_usn3 Where false Contains {`7esn`})"), + octest_legacy:ct_string("Return Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null As `2esn`,{1000} Contains `5esn` Contains 4.9e12,$@usn6[...9e-1] As `1esn` Order By Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]|0e-0[{@usn6}])[Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3))][Case When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] When {123456789} Starts With $_usn4 Starts With 0x0 Then 9e0[`3esn`][0] End] Ascending,`3esn`[{`4esn`}] Descending,0e0[2.9e1..][.12e-12..] Desc Skip 999[..$@usn5][..``] With Distinct *,{7} Ends With 999 As @usn5 Order By 7.0e-0 Ends With 0e0 Ends With 3.9e-1 Asc Skip {`5esn`}[{1000}..] Union Create @usn5=((#usn7 :`7esn`)-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)})),(((`1esn` :`3esn`{@usn6:$12 Is Null})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))) Start ``=Relationship:@usn6(#usn8='s_str') ,_usn3=Node:`8esn`(#usn8='s_str')Where {`3esn`}[..0xabc][..{`6esn`}] Union All Unwind `8esn`[11.12e-12...1e-1] As ``"), + octest_legacy:ct_string("Load Csv With Headers From .1e-1 Contains .12e-12 As `6esn` Union All Load Csv From $`` Ends With #usn7 Ends With _usn3 As _usn4 Optional Match Allshortestpaths(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})),Allshortestpaths(((`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})<-[_usn3?:`5esn`*..]-(_usn3 :`8esn`)<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Using Scan #usn7:`4esn` Using Join On `4esn`,`2esn`,`` Where 0X0123456789ABCDEF Ends With {1000} Load Csv From [usn2 In .12e-12 Ends With `2esn` Where @usn5 In Null|false =~{`8esn`} =~00][Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where Count ( * ) =~123456789 =~{@usn5})..Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)] As #usn8 Union Unwind 0.0[$`4esn`] As `8esn`"), + octest_legacy:ct_string("Start `4esn`=Rel:`2esn`({_usn3}) Create Unique Shortestpath(((:usn1{#usn8:2.9e1[{`2esn`}]})<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``))),((_usn3 {`3esn`:`3esn` Is Null,`1esn`:$`8esn`[0x0][.9e0]}))"), + octest_legacy:ct_string("Load Csv With Headers From $123456789[1e1][$`8esn`] As `` Union With {#usn7}[..\"d_str\"][..#usn8] As `3esn`,Any(_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12)[(`5esn` :`8esn`{`1esn`:{`8esn`} Starts With .9e-1 Starts With 1000,@usn5:10.12e12 In Null In .12e12})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})..] As usn1,$999 Ends With `2esn` Ends With 12.0 As @usn6 Skip $`1esn` Limit {7}[.1e-1] Where `4esn`[9e-12..true]"), + octest_legacy:ct_string("Delete 5.9e-12 Is Null Is Null,$`` Contains 0Xa,[`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] Create #usn7=(((:`3esn`)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))) Union All Unwind (`1esn` :`8esn`{`6esn`:9e-1 Contains 3.9e-1,_usn4:{`3esn`}[...1e1][..0]})<-[`7esn`?:@usn5|:#usn7]->(`8esn` :@usn6:_usn3)<-[`1esn`:#usn7|:@usn5 *..123456789]-({#usn7:{7}[0x0][1e1]})[{`3esn`:0.12 In $``}] As @usn6"), + octest_legacy:ct_string("Load Csv With Headers From 123.654[..999] As `8esn` Fieldterminator \"d_str\" Optional Match (({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})),Allshortestpaths(((@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1}))) Where `4esn`[9e-12..true]"), + octest_legacy:ct_string("Start usn2=Node:`3esn`('s_str') ,usn2=Relationship:`8esn`(#usn8='s_str') Detach Delete ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[_usn3?:@usn5|:#usn7]->(`` :``)-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Starts With Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`),0Xa In 1.0 In $@usn5,Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[$usn1..])[..Shortestpath((((`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn2 *7]-(`8esn` {_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}))))][..{`3esn`:$`6esn` Starts With 0.0,#usn8:$usn1 =~.0e0 =~{`4esn`}}] Union Return Distinct $`8esn`[..12][..9e12] As @usn5,_usn4[{`3esn`}][00] As usn2 Skip 0X0123456789ABCDEF Is Not Null Is Not Null Remove Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0[..{#usn7}][..$_usn3]).#usn7?,($12)<-[#usn8?{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(usn1 {@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}).#usn7!.@usn5._usn3? Remove Case #usn7[$`8esn`][{`3esn`}] When Count(*) =~01234567 =~.1e-1 Then 1000[{123456789}][usn1] End.`1esn`!,Reduce(`7esn`=12e12 Contains {0},`1esn` In $12 In {usn2}|{``} Is Null Is Null).@usn5"), + octest_legacy:ct_string("Create `5esn`=Allshortestpaths((({`6esn`:8.1e1 Contains .9e-1 Contains false})))"), + octest_legacy:ct_string("Unwind 00[(`3esn` :_usn3{@usn6:0.12 Is Not Null})-[#usn8:`5esn`]-({`6esn`:12[@usn6][{`2esn`}]})..] As `3esn` Detach Delete $`8esn` Contains _usn4 Unwind `4esn` =~_usn4 =~0e-0 As `7esn`"), + octest_legacy:ct_string("Foreach(`3esn` In $@usn5[.9e-1]| Start usn2=Rel:_usn4(`1esn`={12}) ,`8esn`=Rel:@usn6({`1esn`})Where 9e0[`7esn`..][#usn8..] Match `1esn`=(`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[ *0X0123456789ABCDEF]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})))) Match `3esn`=({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}),((:#usn7:`8esn`{@usn6:123456789[_usn4..`1esn`][$`6esn`..{@usn6}]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}})) Using Join On `5esn`,usn1,`7esn` Where {#usn8} Starts With {`2esn`} Union With 1.9e0 In 2.12 As `8esn`,$`3esn`[0e-0] As `2esn` Skip $usn1 Contains 4.9e12 Contains $`2esn`"), + octest_legacy:ct_string("Unwind 999 Contains {999} Contains 12 As `7esn` Create Unique `7esn`=Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)),`8esn`=Allshortestpaths((((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(#usn7 :`8esn`)))) Union All Delete $@usn6[...9e-1],5.9e-12 =~@usn6 =~.12e-12 With *,$`3esn`[..{`5esn`}],$_usn3 Contains 1.0 Contains 0.12 As `` Skip 5.9e-12[..9e0] Where 01234567 =~12e12 =~.0e-0 Foreach(`6esn` In `8esn` Is Null Is Null| Detach Delete $`8esn` Contains _usn4,[usn1 In \"d_str\" Contains {@usn6} Where 5.9e-12[0x0..]|4.9e12 Ends With $@usn6] =~(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) =~(`3esn` :#usn8:@usn6)-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[:`2esn`|`5esn` *01]-({@usn6:{_usn4} In 0X7 In 0e0}),``(Distinct $1000 Is Null,1e-1[$`4esn`])[None(_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3])][[usn1 In \"d_str\" Contains {@usn6} Where 5.9e-12[0x0..]|4.9e12 Ends With $@usn6]])"), + octest_legacy:ct_string("Merge `1esn`=Shortestpath(((:`7esn`{`4esn`:@usn5 =~$#usn7 =~{usn1}})-[`8esn`{#usn8:.12e12[..7]}]-({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`1esn`? *0{@usn6:true Is Null}]-(_usn4 ))) On Create Set _usn4+=`5esn` Ends With Count(*) On Match Set _usn3+=Shortestpath((`6esn` :``)) Contains Case When $@usn6[``..][3.9e-1..] Then 7[..123456789][..true] When `4esn` Contains 0X0123456789ABCDEF Contains $usn2 Then 12e12[{`4esn`}..`4esn`][999..{@usn6}] End Unwind 9e-1[{7}..1e-1][0.12..{12}] As _usn4 Unwind $usn2 Starts With $999 Starts With .0e0 As usn2 Union All Unwind Shortestpath(((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)))[..Any(#usn7 In .0e-0 In 12)] As `6esn` Remove usn1:usn1,None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where @usn6[true..]).`6esn`?"), + octest_legacy:ct_string("Unwind {`5esn`}[01234567..][5.9e-12..] As `` Start #usn8=Node:@usn5(`1esn`={1000}) ,#usn8=Node:@usn5(`1esn`={1000}) Load Csv With Headers From Null[{999}..$usn2] As `` Union Load Csv From `4esn`($@usn5[.9e-1],00[{1000}]) Ends With Reduce(`7esn`=0.0[00..][0xabc..],usn1 In {#usn7} =~.12e12 =~9e0|10.12e12 In Null In .12e12) As `5esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Start `7esn`=Node:#usn8(@usn5={@usn6}) ,``=Relationship( {@usn5}) Return None(`` In `7esn` =~#usn8 =~\"d_str\" Where $`4esn` In {999}) Starts With ({usn1:12[..$`5esn`]})-[:`1esn`|:`1esn` *999..123456789{@usn5:$999 Ends With `2esn` Ends With 12.0}]->(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}) Starts With Case When $#usn8 Is Not Null Is Not Null Then $#usn8[$0..`3esn`][1e-1..$7] When $`` Starts With $`4esn` Starts With `3esn` Then .12e12[$usn1..][{@usn6}..] End As _usn3,{`1esn`} In 0 As ``,`3esn` Starts With 9.1e-1 Starts With .9e-1 As `8esn` Order By 999 Ends With {#usn8} Ascending,`1esn`({`4esn`} Ends With Count(*),$usn1 Contains 4.9e12 Contains $`2esn`) Is Not Null Is Not Null Desc Skip 6.0e0[$#usn7..$1000]"), + octest_legacy:ct_string("Using Periodic Commit 999 Load Csv From 0.12[Count ( * )..Count ( * )][$999..`5esn`] As `7esn` Merge (((`8esn` :`5esn`:`7esn`{usn1:{``} Contains 0.0 Contains `4esn`})-[`2esn`?:`4esn`|:`2esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]->(@usn5 {`8esn`:123456789[#usn7..9e-1][10.12e12..{0}],@usn6:1.0 Is Not Null})-[#usn8?:usn2*..]->(:``{usn2:00 Is Not Null Is Not Null}))) On Create Set `3esn`+=12 Ends With 12e12,usn1+=Case 0e-0[$``..10.12e12] When $usn2 In #usn7 In #usn7 Then \"d_str\" In usn2 In $`7esn` When {`3esn`}[_usn4][2.9e1] Then `6esn` =~999 =~$999 End Ends With None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn5 Starts With #usn7) Ends With [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0X0123456789ABCDEF Ends With {1000}|Count ( * )[_usn4..]],`1esn` =0x0 Contains 7.0e-0 Merge `6esn`=Allshortestpaths((`4esn` {@usn5:5.9e-12[12e-12][$`8esn`],`5esn`:{123456789} Contains $0})-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`}))"), + octest_legacy:ct_string("Detach Delete 9e1[0.0],{0} In {`1esn`},Count ( * ) Contains 9.1e-1 Contains {`2esn`} Create @usn6=((({@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})<-[:@usn5|:#usn7 *0X0123456789ABCDEF{`5esn`:9e-1 Contains 3.9e-1}]->(`6esn` $_usn3)<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),(((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`}))) Unwind @usn5[9e-1..0e0][{_usn3}..$usn1] As `5esn` Union Unwind exists(`7esn` In _usn4 In $`7esn`,9e1 Ends With `7esn` Ends With 2.12)[..Reduce(#usn8=5.9e-12 Contains {12} Contains {#usn8},usn1 In \"d_str\" Contains {@usn6}|{`6esn`}[@usn5..{@usn6}])][..Extract(usn1 In \"d_str\" Contains {@usn6} Where {`1esn`} Is Null|`` Contains {`6esn`} Contains 123456789)] As _usn4 Union All Foreach(`4esn` In Count(*)[$7]| Remove All(`7esn` In 0.12 Is Not Null).#usn7!,`3esn`(Distinct {#usn8} Starts With {`2esn`}).usn1!,(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[_usn4? *999..123456789{@usn6:$`4esn` Ends With .12e12 Ends With 123.654}]-(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[? *..123456789{`5esn`:Count(*)[Count ( * )][{0}]}]-(`1esn` :`7esn`{usn1:3.9e-1 Starts With .9e0 Starts With {#usn7}}).`8esn`!.#usn8?.`1esn`! Load Csv From None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 12e12 Ends With `5esn` Ends With .0e0) Is Not Null As `4esn` Fieldterminator 's_str') Return Count ( * )[`5esn`..\"d_str\"][01234567..{1000}],Case When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 Else $12 Is Not Null Is Not Null End Starts With usn1(Distinct .9e1[$`1esn`..][$``..]) Starts With Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End,(usn1 {@usn6:01234567 =~12e12 =~.0e-0,usn2:$12 In {usn2}})<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)<-[#usn8?]-({`6esn`:3.9e-1[..$1000][..0.12]})[..Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null|{7} Starts With 0x0 Starts With 9e1)][..Single(`` In `7esn` =~#usn8 =~\"d_str\" Where `1esn`[Null][{@usn6}])] As @usn5 Return *,Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789)[..All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 1e1 =~{@usn5} =~`7esn`)][..Case 07[..$`5esn`] When 00[$_usn4][$`1esn`] Then {#usn7}[.12e-12] Else `5esn` Contains 0 Contains $12 End],1.0 Is Null Is Null Order By [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End Ascending,{`7esn`}[0.12] Descending Skip Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12])[Reduce(@usn5=1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$0 Ends With 9e-12 Ends With $_usn4)..]"), + octest_legacy:ct_string("Return Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null As `4esn` Order By $_usn3 In `2esn` In `3esn` Descending,.0e-0 Ends With $`2esn` Ends With `5esn` Ascending,10.12e12 =~9e1 Asc Skip @usn6[true..] Limit All(`6esn` In 010[{`1esn`}..] Where .1e-1[..$_usn3][..0])[0.0..None(usn1 In {#usn7} =~.12e12 =~9e0 Where 9e-1 Is Not Null)] Optional Match Allshortestpaths(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})),Allshortestpaths(((`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})<-[_usn3?:`5esn`*..]-(_usn3 :`8esn`)<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Using Scan #usn7:`4esn` Using Join On `4esn`,`2esn`,`` Where 0X0123456789ABCDEF Ends With {1000} Union Start `2esn`=Node:`5esn`({`2esn`}) Where #usn7 =~$@usn5 =~{7} Start _usn3=Rel:usn2(#usn7='s_str') Return Distinct *,00[(`3esn` :_usn3{@usn6:0.12 Is Not Null})-[#usn8:`5esn`]-({`6esn`:12[@usn6][{`2esn`}]})..] As @usn5,\"d_str\" Starts With $`7esn` Starts With 999 Order By Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|`3esn` Is Null) In usn1(Distinct $999[usn1..0e-0],0Xa[999]) In Case 0X0123456789ABCDEF Is Not Null Is Not Null When Count ( * )[_usn4..] Then $999 Ends With `2esn` Ends With 12.0 Else .9e1 In .1e-1 End Descending,$`6esn` Contains All(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) Ascending,@usn5[{`1esn`}..][Count ( * )..] Asc Union Create Unique _usn4=Shortestpath(((:`6esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})-[#usn7:`2esn`|`5esn` *1000..]-(`5esn` {`3esn`:$@usn5 Is Null Is Null}))) Detach Delete 9.1e-1 Starts With .9e0,Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null,Case 9e1 In $1000 When 999 Starts With 7.0e-0 Starts With true Then {usn2}[{999}..][9e12..] End[Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End..][Any(`1esn` In $12 In {usn2} Where @usn6[true..])..] Delete Count(*) Is Not Null Is Not Null,All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3]) In Allshortestpaths((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]}))) In (`1esn` :`2esn`:`4esn`)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[#usn8]->(`2esn` :_usn3{`6esn`:_usn4[{``}..{`6esn`}][$7..$_usn3],`6esn`:$`4esn` Ends With {999}})"), + octest_legacy:ct_string("Unwind $`7esn` Is Null As `3esn` Foreach(@usn5 In 12e12 Contains {0}| Optional Match (:`3esn`{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}),(:usn1{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`) Using Index `3esn`:`2esn`(`7esn`) Using Index usn2:`1esn`(`3esn`) With Distinct Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] As #usn8,[`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]),{`7esn`} Is Not Null Is Not Null As `1esn` Limit $#usn8[$0..`3esn`][1e-1..$7] Where $@usn5 Is Not Null Is Not Null) Return Distinct 1.9e0[usn1] As `4esn`,{12}[00..$`1esn`],{`2esn`} Ends With 9e-1 Ends With .1e-1 As `` Order By 123.654 =~12 =~{_usn3} Descending,$999[9e0] Desc,.9e12 Is Not Null Is Not Null Ascending Skip $`1esn` Contains {@usn5} Contains 9.1e-1 Limit $123456789[{usn1}][.12e-12] Union All Optional Match #usn8=(`6esn` :`4esn`:usn2) Using Index #usn7:`4esn`(@usn5) Using Scan @usn5:usn1 Where 0.0[`7esn`] Create `5esn`=((`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})-[?:`1esn`|:`1esn` *999..123456789]-(`8esn` :#usn7:`8esn`)) Union All Foreach(`1esn` In Case When true In 0.0 Then {`4esn`}[{`3esn`}][$`2esn`] Else @usn6 Starts With #usn7 End =~{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}} =~{_usn3:010[..9e-1][..0X7]}| Create Shortestpath(((`1esn` :`8esn`)-[`7esn`?:`2esn`|`5esn` *0]->(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))),`7esn`=((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))) Remove All(usn2 In $`5esn`[{`4esn`}][{0}] Where Null[$`3esn`..][`1esn`..]).#usn8!.#usn8.`7esn`,usn1:`2esn`:`4esn`"), + octest_legacy:ct_string("Unwind .9e0[$#usn8][Count ( * )] As #usn8 Create ((usn1 :#usn7:`8esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})),#usn8=(({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[ *12{#usn8:0e0 =~{12} =~{1000}}]-(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})) Optional Match ((`1esn` :@usn5{@usn6:$`7esn` Ends With 7.0e-0 Ends With $usn2})<-[:@usn5|:#usn7 *0X0123456789ABCDEF{`5esn`:9e-1 Contains 3.9e-1}]->(`6esn` $_usn3)-[`6esn`?:@usn5|:#usn7{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})),((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}})) Using Scan ``:#usn8"), + octest_legacy:ct_string("Foreach(`7esn` In 9e1[..@usn5][..$`5esn`]| Unwind $`5esn`[{@usn6}..{`7esn`}] As `8esn`) Merge ((({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[_usn3?:@usn5|:#usn7]->(@usn5 {`8esn`:123456789[#usn7..9e-1][10.12e12..{0}],@usn6:1.0 Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(`4esn` {`8esn`:5.9e-12[0x0..]}))) On Match Set [`6esn` In 010[{`1esn`}..] Where {`8esn`}[@usn5][$`2esn`]|$123456789[{usn1}][.12e-12]].@usn5?.`6esn`! =010[.0e-0..\"d_str\"][.9e0..123.654],_usn4 =0xabc[..Count(*)][..$`5esn`] With *,Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,Case \"d_str\"[0x0..{@usn6}][$@usn5..0] When 0e0 Contains {`2esn`} Then 0X0123456789ABCDEF[1e1..] Else .12e12 Starts With 5.9e-12 Starts With `4esn` End In {usn1:$#usn7[01..2.12][2.12..3.9e-1],`6esn`:.0e-0 Ends With $`2esn` Ends With `5esn`} Order By .9e12 Contains 5.9e-12 Contains 9e-1 Descending Skip $123456789[..$999][..`6esn`] Union All Unwind Single(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1])[Case When 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Then $#usn8 Is Not Null Is Not Null When \"d_str\" Starts With $`7esn` Starts With 999 Then \"d_str\"[0x0..{@usn6}][$@usn5..0] Else .0e-0[..01234567] End..] As `` Unwind \"d_str\" Is Not Null Is Not Null As `3esn` With *,Reduce(`4esn`={0} Is Not Null,#usn7 In .0e-0 In 12|12e12[{`4esn`}..`4esn`][999..{@usn6}]) Contains Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 0xabc[..{usn1}][..\"d_str\"]) Contains `3esn` As `5esn`,None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null) As _usn3 Order By {12}[true..][7..] Ascending,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Asc,({#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]})<-[`8esn`*]-(#usn8 )[..Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn`[0X0123456789ABCDEF..][`8esn`..]|$_usn3 =~'s_str' =~12)][..`1esn`(Distinct .9e1[$`1esn`..][$``..])] Ascending Skip 7[..123456789][..true] Where {#usn7}[.12e-12]"), + octest_legacy:ct_string("Merge ((_usn3 {_usn3:.12e-12 Ends With `2esn`,usn1:Null[#usn7..][9.1e-1..]})<-[`8esn`{`8esn`:{usn2} Is Not Null Is Not Null}]->(`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]-({`5esn`:$`4esn` Ends With .12e12 Ends With 123.654,@usn6:{123456789} Contains $0})) On Match Set `5esn` =(`4esn` {``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})-[?:#usn7|:@usn5 *12]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}) Contains Case 1.0 Is Null Is Null When .12e12[..7] Then $_usn4[..$999] When .0e-0[..01234567] Then $#usn7 Starts With $123456789 End Contains Shortestpath((usn1 :#usn8:@usn6)),Reduce(`8esn`={12} Ends With $`3esn` Ends With 0xabc,`1esn` In $12 In {usn2}|6.0e0 Is Not Null Is Not Null).``? =`6esn`[..$0][..{7}] Create (`8esn` :@usn6:_usn3)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})-[`3esn`? *..07]-(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}) Merge #usn8=(({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[ *12{#usn8:0e0 =~{12} =~{1000}}]-(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})) On Create Set `4esn` =`3esn` Starts With 9.1e-1 Starts With .9e-1 On Create Set `3esn` =$7[.1e-1..{@usn6}][$7..{`1esn`}],None(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {0}[.1e-1..][_usn4..]).usn2 =$`7esn` In $`4esn`,usn1+=$`4esn` Ends With {999} Union All Start @usn6=Relationship:`3esn`(#usn7={_usn3}) ,_usn4=Relationship(0xabc,7,0Xa,01234567)Where 01[$`1esn`..$`7esn`][{usn2}..12.0] Load Csv With Headers From {`1esn`} Is Null As @usn6 Fieldterminator \"d_str\" Union Foreach(`1esn` In {`8esn`}[..999][.._usn3]| Remove Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $12 Is Null Is Null)._usn3.@usn6!) Unwind 1e-1[$#usn8] As `5esn` Match #usn8=({`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}) Using Join On `7esn` Using Index @usn5:@usn5(_usn4)"), + octest_legacy:ct_string("Start ``=Node:_usn3(@usn5={`3esn`}) Where false =~{`8esn`} =~00 Load Csv With Headers From Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) As usn2 Union With $`8esn` Is Not Null Is Not Null As _usn3 Order By 2.12 Is Null Is Null Ascending,.1e1 Ends With #usn7 Ends With {#usn7} Descending,false[9e12] Descending Limit Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``})[`3esn`(Distinct 0 Starts With `7esn` Starts With 9e0,$`4esn` Is Null Is Null)][`7esn`(Distinct $`4esn` Ends With .12e12 Ends With 123.654)] Union Load Csv From Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn`) Contains (`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) Contains Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}) As _usn3 Load Csv From $`1esn`[9e0..3.9e-1][`7esn`..`6esn`] As `4esn` Unwind {`3esn`}[..0xabc][..{`6esn`}] As `7esn`"), + octest_legacy:ct_string("With {`4esn`}[{`3esn`}][$`2esn`],$_usn3 Contains 1.0 Contains 0.12 As ``,12.0[.9e0] As `6esn` Skip $`6esn` Contains All(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) Limit 0Xa In 1.0 In $@usn5 Where Count ( * ) Contains 9.1e-1 Contains {`2esn`} Create #usn7=((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})) Union All Detach Delete 4.9e12 In 9e12 In .9e-12,2.9e1[Count ( * )..] With Distinct $123456789 As #usn8,{@usn6:2.9e1[{`2esn`}],usn1:01 Contains 9e-12 Contains $7} Is Null Is Null As `5esn`,$7 As usn1 Order By {`5esn`:9e-12[010..{#usn7}][{123456789}..7],`6esn`:`6esn`[0X0123456789ABCDEF..][`8esn`..]} Ends With (:@usn5{#usn7:Null,`5esn`:{@usn5} Ends With 0Xa Ends With .12e-12})-[:`3esn`|`3esn` *1000..]-(@usn6 ) Ends With {@usn6:{#usn8}[..@usn5],@usn6:$1000 Contains $123456789 Contains #usn8} Ascending,8.1e1[.1e1..][`4esn`..] Descending Skip 9.1e-1 Starts With .9e0 Union Create Unique `2esn`=(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1}) With .9e0 Is Not Null,$`7esn` Contains .12e12,false Starts With 0 Starts With 2.9e1 As `4esn` Skip (:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]-(:_usn3{_usn3:010[..9e-1][..0X7]}) Starts With Case When $1000 Starts With {@usn6} Starts With $@usn5 Then `2esn` When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else 12[4.9e12..] End Starts With (_usn4 {`3esn`:.0e-0 In 12})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc}) Create `5esn`=(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]})"), + octest_legacy:ct_string("Using Periodic Commit Load Csv From 00[(`3esn` :_usn3{@usn6:0.12 Is Not Null})-[#usn8:`5esn`]-({`6esn`:12[@usn6][{`2esn`}]})..] As `2esn` Foreach(`` In 10.12e12[.0e0]| Create `7esn`=((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[_usn3?:`7esn`|usn1]-(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[usn2 *7]-(`8esn` :#usn7:`8esn`)) Load Csv From 12[11.12e-12..][`4esn`..] As @usn6 ) Optional Match _usn3=(((`4esn` )-[{#usn7:1e-1[$`4esn`]}]->(`1esn` :`2esn`:`4esn`)-[?:#usn8|:``{usn2:{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],usn1:\"d_str\"[0x0..{@usn6}][$@usn5..0]}]-(:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12}))),`1esn`=Allshortestpaths((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[?$999]-(`4esn` {#usn7:$usn1[0e0...9e-12]})-[:`5esn` *01234567..{`2esn`:{usn1} Contains {`2esn`},#usn7:`4esn`[9e-12..true]}]-(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null}))"), + octest_legacy:ct_string("Create Unique @usn6=((:`4esn`:usn2{usn2:$usn2 Ends With 00 Ends With 9e12,_usn4:{`5esn`}})-[?:``|:`7esn` *12{#usn8:10.12e12 Contains .9e0,usn1:0xabc Contains {12} Contains {`6esn`}}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1})),_usn3=((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})) Start _usn3=Node(12) ,`2esn`=Relationship:@usn5({`4esn`})Where Count ( * ) Contains 9.1e-1 Contains {`2esn`} Union Merge `4esn`=Allshortestpaths((usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) On Match Set Case When $`4esn` Ends With {999} Then 6.0e0[$#usn7..$1000] When 00 Is Not Null Is Not Null Then $#usn7[01..2.12][2.12..3.9e-1] Else 2.12[`4esn`][.9e-1] End.`` =01234567[1000..][$`8esn`..],Allshortestpaths(((usn2 :`2esn`:`4esn`{`7esn`:@usn5 =~$#usn7 =~{usn1}})-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)<-[`3esn`?:`3esn`|`3esn`*..]-({`4esn`:{7}[0x0][1e1]}))).usn1! =6.0e0[{`2esn`}..$``],Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0[10.12e12]).`2esn`?.`2esn`? ={1000}[..`5esn`][..9e12]"), + octest_legacy:ct_string("Merge `6esn`=(({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[_usn4? *999..123456789{@usn6:$`4esn` Ends With .12e12 Ends With 123.654}]->(#usn8 {usn2:$0 Ends With 9e-12 Ends With $_usn4,`5esn`:0e-0[{@usn6}]})-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]-(`1esn` :_usn4:`2esn`)) On Match Set `8esn`+=Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null],@usn5+=Reduce(@usn6=0X0123456789ABCDEF Ends With {1000},usn1 In $@usn6 Is Null Is Null|.0e0 =~0 =~.0e0) Starts With None(`6esn` In 010[{`1esn`}..] Where _usn4 Ends With {`8esn`} Ends With usn2) Starts With Case When 01234567 Ends With .0e0 Ends With 12e12 Then @usn6 Starts With #usn7 Else .12e12 Ends With 07 Ends With 3.9e-1 End,#usn7 =$_usn3[0X0123456789ABCDEF..][0x0..]"), + octest_legacy:ct_string("Create ((:``{usn1:`4esn` Is Not Null})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})) Union All Remove Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0[..{#usn7}][..$_usn3]).#usn7?,($12)<-[#usn8?{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(usn1 {@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}).#usn7!.@usn5._usn3? With Distinct {_usn4}[{`6esn`}],true In 0.0 As #usn7 Skip Reduce(`2esn`=$@usn5[``..],`7esn` In 0.12 Is Not Null|$`4esn` Is Not Null) =~Any(_usn3 In `8esn`[_usn4] Where {`6esn`} In {_usn4} In $12) =~Reduce(`1esn`=false =~{`8esn`} =~00,`2esn` In $@usn5 Is Not Null Is Not Null|`1esn`[{@usn5}..][{_usn4}..]) With Distinct usn2[..$0][..`3esn`],{``:01234567[10.12e12][0Xa]} Is Null Is Null As #usn7,false Contains {`7esn`} Order By Extract(usn2 In $`5esn`[{`4esn`}][{0}] Where 12[4.9e12..]) =~Reduce(`1esn`=.0e-0[..``][..$7],`2esn` In $@usn5 Is Not Null Is Not Null|5.9e-12[\"d_str\"..][{`6esn`}..]) Desc,1.9e0[$`4esn`] Descending Skip {`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]} Is Null Is Null Union Start _usn3=Node:`8esn`(#usn8='s_str') Where 0X0123456789ABCDEF In false Remove Allshortestpaths((#usn7 {`5esn`:.12e12 Is Not Null,@usn5:.12e12 Is Not Null})-[ *0xabc..12]->(:`1esn`:``{`8esn`:5.9e-12[0x0..]})).@usn5?.`6esn`?"), + octest_legacy:ct_string("Remove All(usn2 In $`5esn`[{`4esn`}][{0}] Where Null[$`3esn`..][`1esn`..]).#usn8!.#usn8.`7esn`,usn1:`2esn`:`4esn` Load Csv With Headers From 9e1[...9e1][..$`6esn`] As #usn7 Union All Foreach(usn2 In 1e-1[$#usn8]| Create Shortestpath(((usn2 :`4esn`:usn2)-[?:#usn7|:@usn5 *..00]-(:@usn5{`7esn`:01234567[\"d_str\"..][$`4esn`..]})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))),`2esn`=Shortestpath((@usn6 :@usn5)) Create `2esn`=Allshortestpaths((:`3esn`{@usn5:9e12[..usn2][.._usn3]})),``=Shortestpath((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[ *0X0123456789ABCDEF]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Optional Match (`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5) Using Index _usn3:usn2(`4esn`) Using Index @usn5:`3esn`(`8esn`) Where $0 Contains $123456789 Contains {`3esn`} Match ((`4esn` :`6esn`)<-[{``:7.0e-0 Is Not Null}]->(:#usn7:`8esn`{@usn5:{0} In {`1esn`}})-[``?{``:{#usn7} =~$@usn6 =~$7}]-(`3esn` :@usn5)) Using Index usn1:#usn8(``) Using Index @usn5:@usn5(_usn4) Union Return .1e1 In 12.0 In $`` Skip None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0)"), + octest_legacy:ct_string("Start ``=Node:@usn5(`1esn`={1000}) Union All With $123456789[{usn1}][.12e-12] As `3esn`,1.9e0 =~.0e0 =~0X7 As #usn7,9e1 Ends With 9e12 Ends With 0x0 As #usn8 Order By $@usn5 Is Null Is Null Ascending,`1esn` Is Not Null Is Not Null Desc Limit {`8esn`} Ends With true Ends With {`3esn`} Where $12 Is Not Null Is Not Null Remove (`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(`1esn` :#usn7:`8esn`).@usn5.`5esn`?,[usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null|2.12[`4esn`][.9e-1]].`1esn`!,{`3esn`:00 =~`4esn` =~.9e-12}.`3esn`? Load Csv From $@usn6 Is Null As `1esn` "), + octest_legacy:ct_string("Delete `3esn`[{`4esn`}],Count(*)[Count ( * )][{0}] Remove [_usn3 In `8esn`[_usn4] Where 12.0[..Count ( * )][..@usn6]|$#usn7].``.usn1!.#usn8!,Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})).usn2!.`5esn`?,{usn2:.9e1 In .1e-1,usn2:1e-1 Contains 0.0}.`5esn`?.`` Union All Load Csv From 's_str'[`2esn`][12.0] As @usn6 Load Csv With Headers From 2.9e1[2.12..1.9e0] As `6esn` "), + octest_legacy:ct_string("Foreach(`7esn` In Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)]| With Distinct 0xabc[..Count(*)][..$`5esn`],{12} Ends With 1e1 As `8esn`,{`4esn`} In 1000 In {@usn5} Order By {7} Ends With 999 Asc,_usn3 =~{`4esn`} Desc Skip [`1esn` In $12 In {usn2} Where 12e-12 Starts With $`7esn`][{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}..] Where Null In {7} Create Unique `1esn`=Allshortestpaths((_usn3 {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})),(`6esn` {`3esn`:Count ( * )[_usn4..]})) Load Csv From {`8esn`}[.0e0..][999..] As `3esn` Fieldterminator 's_str' Return *,Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,Case \"d_str\"[0x0..{@usn6}][$@usn5..0] When 0e0 Contains {`2esn`} Then 0X0123456789ABCDEF[1e1..] Else .12e12 Starts With 5.9e-12 Starts With `4esn` End In {usn1:$#usn7[01..2.12][2.12..3.9e-1],`6esn`:.0e-0 Ends With $`2esn` Ends With `5esn`} Order By .9e12 Contains 5.9e-12 Contains 9e-1 Descending Skip $123456789[..$999][..`6esn`] Union Detach Delete \"d_str\" Starts With .1e-1,Reduce(`2esn`=$@usn5[``..],`7esn` In 0.12 Is Not Null|$`4esn` Is Not Null) =~Any(_usn3 In `8esn`[_usn4] Where {`6esn`} In {_usn4} In $12) =~Reduce(`1esn`=false =~{`8esn`} =~00,`2esn` In $@usn5 Is Not Null Is Not Null|`1esn`[{@usn5}..][{_usn4}..]),{`2esn`:`5esn` Ends With Count(*)}[..`8esn`({#usn7}[.12e-12],$`` =~.1e-1)][..Allshortestpaths(((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})))] Foreach(usn1 In Single(_usn3 In `8esn`[_usn4] Where $_usn3[usn2..][usn1..])[{`6esn`:Count(*) =~01234567 =~.1e-1}..[usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]]]| Create ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]}))"), + octest_legacy:ct_string("Match @usn5=Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))) Using Index _usn3:usn2(`4esn`) Where 0.12[Count ( * )..Count ( * )][$999..`5esn`] Load Csv From 9e-12[010..{#usn7}][{123456789}..7] As `8esn` Fieldterminator \"d_str\" Load Csv From #usn8(Distinct 12e12[{`4esn`}..`4esn`][999..{@usn6}])[Any(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1])..{``:9e1[0.0]}] As `7esn` Fieldterminator \"d_str\" Union All With Distinct `4esn`[..7][..$usn2] As #usn8,Reduce(@usn5=`1esn` In 010 In 1e-1,`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1 Contains $@usn6)[All(usn1 In {#usn7} =~.12e12 =~9e0 Where $7)][`8esn`(.1e-1[2.9e1..][$`7esn`..])] Skip `5esn` Is Not Null Is Not Null Return usn2[..$0][..`3esn`],{``:01234567[10.12e12][0Xa]} Is Null Is Null As #usn7,false Contains {`7esn`} Skip 0.0[$`4esn`] Limit (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])] With Distinct *,$1000[..0e-0][..010] As _usn4,Any(usn1 In $@usn6 Is Null Is Null)[Case {_usn3}[{0}...9e-1][9e-1...0e0] When 010[..9e-1][..0X7] Then $0 Ends With $usn1 Ends With {``} End..Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]})))] As `4esn` Order By 0Xa Starts With 9e0 Starts With Count(*) Descending,{0}[.0e-0][$`2esn`] Descending,$usn2 =~true =~#usn7 Asc Union Load Csv From $`` Starts With $`4esn` Starts With `3esn` As usn2 "), + octest_legacy:ct_string("Create Allshortestpaths(({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)})) Create Unique Shortestpath((((`1esn` :#usn8:@usn6{usn1:#usn8 Is Null Is Null,_usn3:{`4esn`} In 1000 In {@usn5}})<-[`6esn`?:@usn5|:#usn7{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)))),(:_usn4:`2esn`{`8esn`:12.0[...0e0]}) Union With Distinct _usn3($0 Ends With 9e-12 Ends With $_usn4) Is Null Is Null As `4esn`,1.9e0 In 2.12 As usn2,$#usn7[$``..999][$usn2..$usn2] Order By `4esn` =~usn1 =~Count(*) Descending,Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]) Desc Skip 2.12 Is Not Null Is Not Null Limit {`5esn`}[01234567..][5.9e-12..] Remove ({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`).#usn7 Union All Merge `2esn`=Shortestpath(((`4esn` :`3esn`))) On Create Set Shortestpath((`` :``)).`7esn`! =$999[{`6esn`}..$usn2],#usn8+=None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Starts With {@usn5:999 Ends With {#usn8},_usn4:Null In {7}},Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0).`3esn`!.#usn8? =$_usn3 Is Null On Create Set _usn3 =4.9e12 Starts With {``},usn2 ={usn1}[`7esn`..Count(*)],_usn3($123456789[{usn1}][.12e-12],9e0[`3esn`][0]).`4esn`? =`5esn`[..12.0] Return 10.12e12[usn2] As ``,Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] As `7esn` Order By 9e1[..{usn1}] Desc,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null Asc Skip 5.9e-12[01][`4esn`] Merge Allshortestpaths(((({@usn5:`2esn`})<-[`7esn`?:@usn5|:#usn7]->(`8esn` :@usn6:_usn3)<-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]-(`4esn` :`6esn`)))) On Match Set `2esn` =(`1esn` :`8esn`{`6esn`:9e-1 Contains 3.9e-1,_usn4:{`3esn`}[...1e1][..0]})<-[`7esn`?:@usn5|:#usn7]->(`8esn` :@usn6:_usn3)<-[`1esn`:#usn7|:@usn5 *..123456789]-({#usn7:{7}[0x0][1e1]})[{`3esn`:0.12 In $``}],`3esn`+={`8esn`} =~$#usn7 =~2.12,usn1(0X0123456789ABCDEF[1e1..],{usn2}[9e-1]).#usn7!.#usn7 =1e1[$_usn3] On Create Set {`5esn`:$999 Is Not Null}.`2esn`! =All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0)[..(_usn4 {`3esn`:.0e-0 In 12})-[`4esn`{_usn3:010[..9e-1][..0X7]}]-(@usn5 :`8esn`{12})-[_usn3:`6esn`]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})],`8esn`+=false Is Not Null Is Not Null,`1esn`+=5.9e-12 =~01234567 =~$`3esn`"), + octest_legacy:ct_string("Foreach(`4esn` In $1000[_usn4][{@usn5}]| Remove Case {0}[.0e-0][$`2esn`] When Count(*)[$7] Then $12 Ends With {_usn4} Ends With $`8esn` End.`6esn`,Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {_usn3} Is Null Is Null|$@usn5 Contains _usn3).`6esn`?.`2esn`? Start usn2=Node:@usn6({1000}) ,`1esn`=Rel(0Xa,0X7)) Foreach(_usn3 In 11.12e-12 =~Count ( * )| Load Csv With Headers From #usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) As `1esn` Fieldterminator \"d_str\" Load Csv With Headers From 1000[{123456789}][usn1] As `2esn` ) Foreach(`3esn` In Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]|0e-0[{@usn6}])[Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3))][Case When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] When {123456789} Starts With $_usn4 Starts With 0x0 Then 9e0[`3esn`][0] End]| Optional Match Shortestpath(((`7esn` {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))) Using Join On `2esn`,`6esn` Using Join On `4esn`,`2esn`,`` Where #usn8 Is Null Is Null Unwind Count ( * ) =~.9e1 =~$#usn8 As ``) Union Foreach(`` In 7 Starts With `` Starts With usn2| Match `4esn`=(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0})) Union Foreach(usn2 In {_usn4} In 0X7 In 0e0| Detach Delete $@usn5 Is Not Null Is Not Null,_usn3 =~{7} =~123.654,@usn5[@usn6] Start _usn4=Rel:_usn4({`1esn`}) )"), + octest_legacy:ct_string("Start `2esn`=Rel:@usn6(`8esn`='s_str') ,_usn4=Relationship(00)Where 2.9e1 In {``} Return 00 Is Not Null Is Not Null As _usn3,.0e-0[010..] As `6esn`,.0e-0 In 12 As `4esn` Order By All(`2esn` In $@usn5 Is Not Null Is Not Null Where 2.12[{12}]) Ends With Case `1esn`[..$1000] When .9e-12[.12e12..][0Xa..] Then {`7esn`} Is Not Null Is Not Null Else {@usn6} In 9e12 End Ends With Any(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where .9e12 Is Not Null Is Not Null) Ascending Skip Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`}) Ends With Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))) Ends With Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1) Limit {`5esn`}[{usn2}..$`1esn`] Unwind `1esn` In 010 In 1e-1 As `8esn` Union Load Csv With Headers From Allshortestpaths((:usn1$1000)) Starts With [#usn7 In .0e-0 In 12 Where `8esn`[.12e12..]|$123456789] Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`6esn`} =~2.12 =~123.654) As _usn3 Unwind Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[$usn1..])[..Shortestpath((((`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn2 *7]-(`8esn` {_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}))))][..{`3esn`:$`6esn` Starts With 0.0,#usn8:$usn1 =~.0e0 =~{`4esn`}}] As @usn6 Detach Delete 's_str'[`3esn`..0x0],0xabc Contains 12 Contains Null"), + octest_legacy:ct_string("Create Unique `2esn`=Allshortestpaths((:`3esn`{@usn5:9e12[..usn2][.._usn3]})),``=Shortestpath((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[ *0X0123456789ABCDEF]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) Remove [#usn7 In .0e-0 In 12 Where 1e1[$_usn3]]._usn3?.``!.@usn6? Union All Foreach(`5esn` In exists(usn1 Ends With 11.12e-12 Ends With 5.9e-12)[All(`7esn` In 0.12 Is Not Null Where 0X0123456789ABCDEF In false)..]| Unwind 0X7[#usn7..][$@usn5..] As @usn5) Load Csv With Headers From .9e1[$`1esn`..][$``..] As `7esn` Fieldterminator \"d_str\" Union All Remove (`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})<-[`3esn`?:@usn5|:#usn7]->({usn1:0X7[#usn7..][$@usn5..],usn2:01 Ends With .0e0 Ends With 7.0e-0}).@usn6,Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where $usn1 Ends With {`2esn`} Ends With $usn1|{usn1}[7.0e-0..][3.9e-1..])._usn4?.`8esn`?.`5esn`?,Case 7 Starts With 9e-12 When .9e12 Is Not Null Is Not Null Then 1000[{`1esn`}..][$`3esn`..] Else {`6esn`}[6.0e0..9e0][.9e1..12e12] End.`1esn` Remove Extract(usn1 In $@usn6 Is Null Is Null Where $999 =~false =~{`8esn`}|$@usn6[``..][3.9e-1..]).`2esn`.`1esn`?.`6esn`,[_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|{`3esn`}[...1e1][..0]].usn2!._usn3!._usn3!,Any(#usn7 In .0e-0 In 12 Where $123456789).#usn8?.`7esn`?.#usn8? Foreach(`7esn` In 9e1[..@usn5][..$`5esn`]| Unwind $`5esn`[{@usn6}..{`7esn`}] As `8esn`)"), + octest_legacy:ct_string("With Distinct *,1.0 In {usn1},5.9e-12[..9e0] As #usn8"), + octest_legacy:ct_string("Create ((usn2 :`2esn`:`4esn`)<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]->(_usn4 :`6esn`$_usn3)-[usn2?*]->(@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})) Union Optional Match `4esn`=(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0}) Where 2.9e1 Ends With `5esn` Ends With 1000 With Distinct Count(*)[@usn5..] As #usn8 Order By 9e1[$``.._usn4][999..`3esn`] Asc Skip .12e12[$`1esn`..0x0] Limit 0xabc[01234567][.12e-12] Where `2esn` Starts With 010 Starts With `` Start @usn5=Rel:`8esn`(usn1={#usn7}) ,usn1=Node:usn1(usn2='s_str')Where .12e12[..$123456789] Union All Return Distinct 0.0[$`4esn`] As `4esn` Order By 9e1 Ends With `7esn` Ends With 2.12 Descending,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null Asc,{0} =~{999} Desc Skip 6.0e0[None(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0)..][[_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]]..] Limit [usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]] With *,$123456789 As #usn8 Order By 6.0e0 Is Null Asc,0.0 In .0e-0 Ascending Skip usn2[12e-12..{`8esn`}][.12e12..{123456789}] Detach Delete $#usn7[$``..999][$usn2..$usn2],Case When {#usn7} Starts With .1e-1 Then $#usn7 Ends With 999 Ends With {12} Else 0e-0 In 0X0123456789ABCDEF In `3esn` End In `7esn`(Distinct {0}[.1e-1..][_usn4..],{`1esn`}[..$_usn4]) In Single(usn1 In \"d_str\" Contains {@usn6} Where {`8esn`}[9e12..][{_usn4}..])"), + octest_legacy:ct_string("Optional Match ``=Shortestpath(((`1esn` :`8esn`)-[`7esn`?:`2esn`|`5esn` *0]->(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))),@usn6=((#usn8 :@usn5{`8esn`:0x0 Ends With #usn8 Ends With .9e-1})) Using Index @usn5:_usn4(usn2) Using Scan @usn5:`5esn` Where 0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}] Merge Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))) Remove Reduce(`4esn`=Count(*) =~01234567 =~.1e-1,#usn7 In .0e-0 In 12|#usn8[\"d_str\"..usn2]).`2esn`?.`3esn`,Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]).`3esn`! Union All Remove Case When $999 =~0e0 =~0X7 Then $`7esn` Starts With 's_str' When $1000[_usn4][{@usn5}] Then 4.9e12[{_usn4}..] Else $`7esn` In $`4esn` End.``? Delete (`4esn` :`8esn`{12})<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:`6esn`]-({`6esn`:1000[{`1esn`}..][$`3esn`..]}) =~[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Is Not Null Is Not Null] =~Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true) Union With *,Allshortestpaths((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) In Extract(#usn7 In .0e-0 In 12 Where {#usn8}[..@usn5]) In [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 10.12e12[usn2]|{1000} Starts With 10.12e12 Starts With .0e-0] As `7esn` Order By 2.12[010..][{999}..] Descending Skip [`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]) Where {usn2}[9e-1] Delete 0X0123456789ABCDEF In false,9e-12[$7..],Filter(#usn7 In .0e-0 In 12 Where 00[$``])[Case When 12e12[usn2..$`6esn`] Then 9e-12 Starts With {1000} When 5.9e-12[0x0..] Then 12[..$`5esn`] Else 0.0[00..][0xabc..] End..]"), + octest_legacy:ct_string("Optional Match (`6esn` :`2esn`:`4esn`{`4esn`:9e-1 Is Not Null,`8esn`:9e0[`7esn`..][#usn8..]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(:_usn4:`2esn`) Using Join On @usn5 Where {`3esn`}[$#usn8..] Start ``=Node( {#usn7}) Start #usn8=Node(7,0X7,0,01) ,`4esn`=Rel:`2esn`({_usn3})Where $@usn5 Starts With #usn7"), + octest_legacy:ct_string("Start _usn4=Relationship( {@usn5}) Where usn1 =~false =~{999} Delete @usn6[0x0..][$_usn4..],1e1 =~{@usn5} =~`7esn`,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]) Is Null Merge `4esn`=Allshortestpaths((usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) Union All Unwind `8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End As @usn6 Create (({usn1:#usn7[.9e0..`3esn`][{`6esn`}..1000],_usn4:$usn2 In #usn7 In #usn7})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[``? *0Xa..12{@usn5:01 Ends With .0e0 Ends With 7.0e-0,_usn3:0.0[00..][0xabc..]}]-(`7esn` :`7esn`)),`4esn`=Allshortestpaths(((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null}))) Union Detach Delete 12e-12 Starts With $`7esn`"), + octest_legacy:ct_string("With Distinct _usn4['s_str'][8.1e1] As `` Order By {#usn7}[..\"d_str\"][..#usn8] Desc Skip (:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 )[Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..][(#usn8 :`4esn`:usn2)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})..] Union Unwind $12 Contains false Contains {`1esn`} As `5esn` Create _usn4=({`5esn`:`1esn` In 010 In 1e-1})<-[?:@usn6|:`4esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]-(`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]}),#usn8=(((:`1esn`:``{`8esn`:5.9e-12[0x0..]})<-[`1esn` *010..0]->(@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[{usn2:{1000}[..{usn1}][..1e-1]}]->(`4esn` {`6esn`}))) Union All Foreach(usn1 In Single(_usn3 In `8esn`[_usn4] Where $_usn3[usn2..][usn1..])[{`6esn`:Count(*) =~01234567 =~.1e-1}..[usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]]]| Create ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})) Load Csv With Headers From 1000[{123456789}][usn1] As `2esn` "), + octest_legacy:ct_string("Start `3esn`=Relationship:#usn8(usn2={@usn5}) ,#usn8=Relationship:_usn4(`5esn`={usn1}) Unwind 6.0e0 Is Not Null Is Not Null As `` Union Create Shortestpath(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}))) Detach Delete $usn1 In 4.9e12 In `` Return Distinct *,`4esn`($`6esn`[@usn6...9e-12],{12})[None(@usn6 In 9e12[..usn2][.._usn3] Where $7[999..10.12e12][$`1esn`..{usn1}])..Allshortestpaths((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})-[`5esn`?:`2esn`|`5esn`]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`))][usn1..Reduce(@usn5=`1esn` In 6.0e0 In 12,`` In `7esn` =~#usn8 =~\"d_str\"|$`6esn` =~$#usn7 =~$`4esn`)] Order By Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null Ascending Skip .9e-12[{@usn5}]"), + octest_legacy:ct_string("Foreach(`4esn` In .9e1 In 0 In `3esn`| Load Csv From 010[{`1esn`}..] As _usn3 Fieldterminator 's_str' Unwind {#usn7}[..\"d_str\"][..#usn8] As `6esn`) Start `2esn`=Rel(07,0Xa) Where 10.12e12 Starts With $`4esn` Starts With 0e0 Union All Foreach(`6esn` In Reduce(_usn4=999 Starts With 7.0e-0 Starts With true,`2esn` In $@usn5 Is Not Null Is Not Null|`7esn` =~#usn8 =~\"d_str\") Ends With [usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 123.654 Ends With {1000} Ends With 9e12|$``[9e12..]] Ends With [usn1 In {#usn7} =~.12e12 =~9e0 Where Count ( * ) =~123456789 =~{@usn5}|$@usn5 Is Null Is Null]| Start @usn5=Relationship:_usn3({`7esn`}) With Distinct (usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..]) As `2esn` Order By 6.0e0 In 9e-1 In 123456789 Ascending,Shortestpath(((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)))[..Any(#usn7 In .0e-0 In 12)] Asc,(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[`3esn` *..0x0]-(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:_usn4|:`1esn` *01]-(`4esn` {`3esn`:{`7esn`} =~\"d_str\" =~{``},`3esn`:{`1esn`} Contains 1.0 Contains 4.9e12}) =~Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 9e12 Is Null Is Null) =~(:@usn5{#usn7:Null,`5esn`:{@usn5} Ends With 0Xa Ends With .12e-12})-[:`3esn`|`3esn` *1000..]-(@usn6 ) Ascending Where {`5esn`}[01234567..][5.9e-12..]) Union All Match `1esn`=((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})),`1esn`=((_usn4 )-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})) Remove Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where Null In {7}).#usn7?,Single(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).usn1!"), + octest_legacy:ct_string("Return ({`7esn`:{`3esn`}[$#usn8..],`4esn`:{`8esn`}[..999][.._usn3]})-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Contains Reduce(``=0xabc Starts With 12 Starts With 0e-0,_usn3 In `8esn`[_usn4]|12.0 Starts With 00) Contains Any(@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null) As `1esn`,{123456789} Contains $0 As `1esn`,{`8esn`}[.0e0..][999..] Order By 11.12e-12 =~Count ( * ) Ascending,`3esn` =~$#usn7 Desc Limit {usn1}[`7esn`..Count(*)] Remove (_usn3 {`3esn`:`3esn` Is Null,`1esn`:$`8esn`[0x0][.9e0]})<-[?:`1esn`|:`1esn`]-(`5esn` :``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})<-[`1esn`? *0{usn2:.9e12[6.0e0..][@usn5..]}]->(usn2 :@usn6:_usn3).#usn7.`2esn`!,Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})).usn2!.`5esn`?,`4esn`(Distinct 9e12 Is Null Is Null,{#usn7} =~.12e12 =~9e0).usn2!.@usn5! Foreach(`` In 12e12 Contains {0}| With Distinct *,$`1esn`[4.9e12..][_usn3..],Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End =~{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]} Order By Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) Descending,5.9e-12[01][`4esn`] Descending,[`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] Descending Skip Count(*) Is Not Null Is Not Null Limit 12e-12 =~$_usn3 Where false Contains {`7esn`}) Union With Distinct Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] As #usn8,[`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]),{`7esn`} Is Not Null Is Not Null As `1esn` Order By 1000 Ends With 0x0 Asc Where $#usn7 Ends With {`5esn`} Ends With 01 Unwind Case When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] When {123456789} Starts With $_usn4 Starts With 0x0 Then 9e0[`3esn`][0] End[{`3esn`:false Starts With 0 Starts With 2.9e1,@usn6:9e-12 Ends With {1000}}..{`8esn`:_usn3[{#usn7}]}] As `8esn`"), + octest_legacy:ct_string("Delete Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null"), + octest_legacy:ct_string("Load Csv With Headers From {`8esn`}[9e-12..0] As `` With Distinct *,Any(usn2 In $`5esn`[{`4esn`}][{0}] Where .1e-1[2.9e1..][$`7esn`..]) Contains Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Contains Allshortestpaths((_usn3 :`4esn`:usn2)),9e1[...9e1][..$`6esn`] As `4esn` Create Unique `1esn`=((`4esn` :`8esn`{12}))"), + octest_legacy:ct_string("Delete 12e-12 In .9e0,$usn1[7.0e-0..][{123456789}..],_usn4[$_usn4]"), + octest_legacy:ct_string("Merge Allshortestpaths((:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})-[?:@usn5|:#usn7 *0]->(`4esn` :`8esn`{`4esn`:4.9e12 Starts With {``},`8esn`:$12 Ends With {_usn4} Ends With $`8esn`})-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12})) On Match Set `1esn` ={`2esn`}[0x0..9e0],Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]).`8esn`? ={123456789} Contains $#usn7 Contains {#usn8},`5esn` =Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End Ends With Reduce(``={`3esn`}[$#usn8..],usn1 In {#usn7} =~.12e12 =~9e0|2.9e1[{`2esn`}]) Ends With [`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}|$`` =~$_usn3] Remove Reduce(#usn7={12} Ends With $`3esn` Ends With 0xabc,usn1 In $@usn6 Is Null Is Null|`1esn`[Null][{@usn6}]).``?"), + octest_legacy:ct_string("Foreach(_usn3 In Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null) In `4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`)| Detach Delete $`4esn`[usn2..],Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`}) In Allshortestpaths(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) In Extract(usn1 In $@usn6 Is Null Is Null Where 0Xa In 1.0 In $@usn5|Null[#usn7..][9.1e-1..]),Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null)"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv With Headers From {`5esn`:9e-12[010..{#usn7}][{123456789}..7],`6esn`:`6esn`[0X0123456789ABCDEF..][`8esn`..]} Ends With (:@usn5{#usn7:Null,`5esn`:{@usn5} Ends With 0Xa Ends With .12e-12})-[:`3esn`|`3esn` *1000..]-(@usn6 ) Ends With {@usn6:{#usn8}[..@usn5],@usn6:$1000 Contains $123456789 Contains #usn8} As `2esn` "), + octest_legacy:ct_string("Merge _usn4=Shortestpath((`8esn` :#usn7:`8esn`)) On Match Set `` =$usn2 Starts With $999 Starts With .0e0,All(usn1 In \"d_str\" Contains {@usn6} Where $1000 Is Null)._usn3?._usn4!.`7esn`? ={usn1:$usn1[9e1][{999}],#usn8:0e-0[$``..10.12e12]}[Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End] Start @usn5=Node:``(`1esn`=\"d_str\") Where {`2esn`} Contains 0xabc Union Create Unique _usn4=(((`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]}))) Unwind Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) As @usn6"), + octest_legacy:ct_string("Using Periodic Commit 01 Load Csv With Headers From {999} Is Not Null Is Not Null As @usn6 Load Csv With Headers From `2esn` As `4esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Using Periodic Commit 12 Load Csv With Headers From {`5esn`}[01234567..][5.9e-12..] As _usn4 "), + octest_legacy:ct_string("Using Periodic Commit 01 Load Csv From All(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Ends With Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789 Is Not Null Is Not Null|{`8esn`}[@usn5][$`2esn`]) Ends With (#usn8 :`5esn`:`7esn`{usn2})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )-[_usn4? *..0x0{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null}) As `6esn` Load Csv With Headers From usn2[..$0][..`3esn`] As `` "), + octest_legacy:ct_string("Load Csv From {7}[#usn7..0xabc] As #usn8 Fieldterminator 's_str' Foreach(`6esn` In $`1esn`| Return Distinct $123456789[..$999][..`6esn`] As @usn5 Limit #usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Optional Match Shortestpath(((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(`4esn` :`8esn`{12})-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2))) Using Index `3esn`:usn2(`5esn`)) Load Csv With Headers From $`8esn` Starts With {`7esn`} As #usn8 Fieldterminator \"d_str\" Union All Foreach(`1esn` In [`1esn` In $12 In {usn2} Where $`8esn` Is Not Null Is Not Null|8.1e1 Contains $@usn6] In All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..]) In Extract(`7esn` In 0.12 Is Not Null Where .12e-12[@usn6..'s_str'])| Create Unique Allshortestpaths(((({#usn7:{7}[0x0][1e1]})<-[{@usn5:0.12 =~`6esn` =~.9e-1}]->({_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[usn2?:`2esn`|`5esn`{``:{#usn7} =~$@usn6 =~$7}]->(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})))) Load Csv From _usn4['s_str'][8.1e1] As `` ) Union All Merge ((`` :`1esn`:``)<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})) Unwind 6.0e0[None(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0)..][[_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]]..] As ``"), + octest_legacy:ct_string("Start #usn7=Rel:@usn6(`8esn`='s_str') ,`8esn`=Rel:`1esn`(`1esn`={usn1}) Union All Delete $1000[$`2esn`..] Detach Delete \"d_str\"[0x0..{@usn6}][$@usn5..0] Create Unique `7esn`=(`3esn` :usn2),#usn8=(({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[ *12{#usn8:0e0 =~{12} =~{1000}}]-(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})) Union Optional Match Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[`7esn`:`4esn`|:`2esn`*{``:true Is Null,_usn3:$12 Ends With 7.0e-0 Ends With 9e-12}]->({`6esn`:3.9e-1[..$1000][..0.12]}))),`2esn`=Allshortestpaths((#usn7 {usn1:2.12[{12}]})) Using Join On `1esn`,`3esn`,`5esn` Delete 0e-0[..7.0e-0][..{`8esn`}] Delete Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null"), + octest_legacy:ct_string("Delete 01234567[01234567..],Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null],{7}[.1e-1]"), + octest_legacy:ct_string("Foreach(`2esn` In $@usn6[.1e-1][9e12]| Load Csv From Single(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Is Not Null As `3esn` ) Union All Return Distinct 1.9e0[..1.0][..`6esn`] As `1esn` Skip Count(*) Starts With 07 Starts With $#usn7 Merge ((usn1 :#usn7:`8esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7}))"), + octest_legacy:ct_string("Load Csv With Headers From $#usn7[01..2.12][2.12..3.9e-1] As usn2 Fieldterminator 's_str' Merge Allshortestpaths(((:`8esn`{@usn6:$`6esn`[$_usn3..{1000}],_usn3:0xabc[..{usn1}][..\"d_str\"]}))) On Create Set `7esn`+={`3esn`} =~$@usn5 =~`2esn` Unwind Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)) Is Not Null Is Not Null As `8esn` Union Unwind Shortestpath((((#usn8 :`4esn`:usn2{#usn7:{`3esn`}[#usn7],`4esn`:010[..9e-1][..0X7]})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]})-[?:@usn5|:#usn7 *0]->(`7esn` :`8esn`))))[Case {12} When $12 Ends With 12.0 Ends With $`4esn` Then $`6esn` =~$#usn7 =~$`4esn` End..Filter(#usn8 In 07[..$`5esn`] Where 07[{@usn5}..])][{`8esn`:_usn3[{#usn7}]}..Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[999][1000]|00[{1000}])] As `7esn` Unwind 1e1 =~{@usn5} =~`7esn` As #usn8 Union Detach Delete 07 Ends With {1000} Ends With 01234567,.12e-12 Starts With .12e-12,{`3esn`} =~$@usn5 =~`2esn`"), + octest_legacy:ct_string("Detach Delete [usn1 In $@usn6 Is Null Is Null Where 9e0[`4esn`..$_usn4][9.1e-1..0e0]][Any(`` In `7esn` =~#usn8 =~\"d_str\" Where 9e-12 Ends With 9e1 Ends With 4.9e12)][(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]})],$_usn3[0x0][{0}],00[$_usn4][$`1esn`] Merge (((@usn5 {@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))) On Create Set All(`1esn` In $12 In {usn2} Where @usn6[true..]).@usn6 =0.0[`7esn`],@usn6 =.1e-1[2.9e1..][$`7esn`..] On Create Set Shortestpath((`` :``)).`7esn`! =$999[{`6esn`}..$usn2],#usn8+=None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Starts With {@usn5:999 Ends With {#usn8},_usn4:Null In {7}},Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0).`3esn`!.#usn8? =$_usn3 Is Null Foreach(@usn6 In $`7esn` In $0| With *,{`1esn`} In 0 As _usn3 Order By @usn5[9e-1..0e0][{_usn3}..$usn1] Descending,2.12[`4esn`][.9e-1] Ascending,$`1esn` In 0Xa Desc Skip {1000}[12] Load Csv From 8.1e1['s_str'..] As #usn7 Fieldterminator 's_str') Union Return Distinct {0}[.1e-1..][_usn4..],`3esn` Contains 1000 Contains 7.0e-0 Order By $@usn6[...9e-1] Descending,$#usn7 Starts With $123456789 Descending,Case {1000}[..{usn1}][..1e-1] When {@usn5}[10.12e12..] Then 1.0 Is Null Is Null When {`3esn`} Is Not Null Is Not Null Then .1e1 Contains 1e-1 Contains #usn8 Else $`5esn`[{`4esn`}][{0}] End[..{usn1:1.9e0[..0][.._usn3],`7esn`:1.9e0[.12e-12][9e-12]}][..{`1esn`:{0} Is Null Is Null}] Asc"), + octest_legacy:ct_string("Using Periodic Commit 123456789 Load Csv With Headers From 123.654[..999] As `8esn` Fieldterminator \"d_str\" Return Distinct None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Starts With {@usn5:999 Ends With {#usn8},_usn4:Null In {7}} As `4esn` Order By 00[Null..usn2] Desc,$`6esn` In 999 In {_usn3} Asc Limit {usn1} Is Not Null Is Not Null"), + octest_legacy:ct_string("Merge `3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})) Create Allshortestpaths(((:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))),((usn2 :`2esn`:`4esn`)<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]->(_usn4 :`6esn`$_usn3)-[usn2?*]->(@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})) Union All Return [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End,_usn3 =~{`4esn`},{usn1} Contains `4esn` As `6esn` Order By 12[@usn6][{`2esn`}] Ascending,Single(`` In `7esn` =~#usn8 =~\"d_str\")[Reduce(`3esn`=1e1[$_usn3],`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1[..9.1e-1][...9e1])][[#usn7 In .0e-0 In 12 Where \"d_str\"[0x0..{@usn6}][$@usn5..0]|{7}[$@usn5..123456789][1e1..1.9e0]]] Ascending,None(`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]) Starts With Reduce(`3esn`=.1e1 Ends With #usn7 Ends With {#usn7},usn2 In $`5esn`[{`4esn`}][{0}]|\"d_str\" In usn2 In $`7esn`) Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`1esn`}[{usn2}]) Asc Merge ((_usn3 {_usn3:.12e-12 Ends With `2esn`,usn1:Null[#usn7..][9.1e-1..]})<-[`8esn`{`8esn`:{usn2} Is Not Null Is Not Null}]->(`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]-({`5esn`:$`4esn` Ends With .12e12 Ends With 123.654,@usn6:{123456789} Contains $0})) On Match Set `5esn` =(`4esn` {``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})-[?:#usn7|:@usn5 *12]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}) Contains Case 1.0 Is Null Is Null When .12e12[..7] Then $_usn4[..$999] When .0e-0[..01234567] Then $#usn7 Starts With $123456789 End Contains Shortestpath((usn1 :#usn8:@usn6)),Reduce(`8esn`={12} Ends With $`3esn` Ends With 0xabc,`1esn` In $12 In {usn2}|6.0e0 Is Not Null Is Not Null).``? =`6esn`[..$0][..{7}]"), + octest_legacy:ct_string("Merge `4esn`=(usn1 :`3esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 )<-[_usn4{`5esn`:9e0[..{#usn7}][..`4esn`]}]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})"), + octest_legacy:ct_string("Unwind 9e-1[0.0..] As `7esn` With Distinct *,Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $#usn7[01..2.12][2.12..3.9e-1]) =~_usn3(.0e-0 Ends With $`2esn` Ends With `5esn`,$usn1 =~.9e12 =~`6esn`) =~Reduce(_usn3=5.9e-12 Is Null Is Null,_usn3 In `8esn`[_usn4]|2.9e1[Count ( * )..]) As `3esn`,{usn1} Contains `4esn` As `6esn` Order By Any(`7esn` In 0.12 Is Not Null Where $0 Contains $7) Is Not Null Is Not Null Desc Skip 999 Contains {999} Contains 12 Limit $999 =~0x0 Delete [`6esn` In 010[{`1esn`}..] Where 7 Starts With 9e-12|Null[#usn7..][9.1e-1..]][None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`})..][`1esn`(@usn5[9e-1..{`1esn`}],$`4esn`[$@usn6...12e12])..],.12e-12 Starts With .12e-12 Union Remove usn2(Distinct .9e0 In 8.1e1).usn2?,({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`2esn`{usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]}]-(:_usn3{@usn6:$1000 Starts With {@usn6} Starts With $@usn5})-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1}).usn1?.@usn5.`2esn`!,Reduce(`5esn`=.9e1 Ends With 0x0,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|Count ( * ) Contains 9.1e-1 Contains {`2esn`}).`6esn`"), + octest_legacy:ct_string("Remove [`2esn` In $@usn5 Is Not Null Is Not Null Where {`3esn`} =~$@usn5 =~`2esn`].#usn7,Allshortestpaths((usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[`8esn`*]-(`7esn` :``{usn2:$7})).@usn6! Unwind .0e0 Starts With $usn1 Starts With {`6esn`} As _usn4"), + octest_legacy:ct_string("Using Periodic Commit 0X0123456789ABCDEF Load Csv From {`1esn`:.9e-12[usn2]}[[`6esn` In 010[{`1esn`}..] Where Count(*) Starts With {usn2} Starts With `2esn`|$`5esn` =~Count(*) =~1.9e0]..Single(_usn3 In `8esn`[_usn4] Where 12.0[..Count ( * )][..@usn6])] As @usn6 Merge (({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})<-[usn2:`4esn`|:`2esn` *0X7..0Xa]-(#usn7 :#usn7:`8esn`))"), + octest_legacy:ct_string("Optional Match `4esn`=(((@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})<-[?:usn1|usn2{#usn8:2.9e1[2.12..1.9e0],#usn8:@usn6[true..]}]-(:@usn6:_usn3{``:{@usn5}[10.12e12..]})-[`1esn`]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]}))) Using Index usn1:``(@usn5) Using Index `5esn`:#usn8(_usn3) Where {`3esn`}[...1e1][..0]"), + octest_legacy:ct_string("Using Periodic Commit 010 Load Csv With Headers From #usn7({12} Starts With $`` Starts With 0X0123456789ABCDEF)[Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where .12e-12[9e1])..] As @usn5 Fieldterminator \"d_str\" Merge `4esn`=((:``{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[? *..00$_usn3]-({`5esn`:`1esn` In 010 In 1e-1}))"), + octest_legacy:ct_string("Detach Delete Null In {7} Load Csv With Headers From Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) As `8esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Load Csv With Headers From 1.0[$`4esn`..$@usn5] As `3esn` Fieldterminator \"d_str\" Union Detach Delete .9e-1 Is Not Null Is Not Null,$_usn3[.0e-0..999],0X0123456789ABCDEF Ends With {1000} Return *,0.12 In $`4esn` In $`3esn` As usn1 Skip #usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Limit Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] Union Load Csv From 0.0[$`4esn`] As `` Fieldterminator 's_str'"), + octest_legacy:ct_string("Merge `2esn`=Allshortestpaths(((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null}))) Union Create _usn4=((_usn3 {#usn7:$999 =~false =~{`8esn`}})) Load Csv From {`4esn`} In 1000 In {@usn5} As _usn4 Union Merge @usn5=((#usn8 :@usn5)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))"), + octest_legacy:ct_string("Create #usn7=Shortestpath(((`8esn` :@usn6:_usn3{`2esn`:#usn7 =~$@usn5 =~{7},`2esn`:{`3esn`}[..{`4esn`}][..usn2]})-[`8esn`:`4esn`|:`2esn`]->(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1}))),`8esn`=Allshortestpaths(((:`4esn`:usn2{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(_usn4 :usn2))) Unwind $@usn5 Is Null Is Null As @usn6 Unwind {usn2} Ends With {@usn6} Ends With 1000 As `` Union Remove Extract(usn1 In $@usn6 Is Null Is Null Where Count(*)[Count ( * )][{0}]|2.9e1[Count ( * )..]).`1esn`?.`1esn`?,{`4esn`:true Is Null,`5esn`:7.0e-0 Is Not Null}.`7esn`!,(`1esn` :#usn7:`8esn`)<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})-[_usn3?{`8esn`:{usn2} Is Not Null Is Not Null}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789}).`8esn`?.`8esn`! Union All Create Unique usn2=Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))),@usn6=Allshortestpaths(((#usn7 {`2esn`:`8esn`[.12e12..],_usn3:usn1 =~0Xa =~0}))) Delete Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Match Shortestpath(((_usn4 :`1esn`:``{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->({`7esn`:$usn1 =~.0e0 =~{`4esn`},`3esn`:usn2 Contains `2esn` Contains {1000}})-[_usn4:_usn3{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]}))),`8esn`=((`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]})-[`1esn`?]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]})) Where 0e-0[{@usn6}]"), + octest_legacy:ct_string("Foreach(`1esn` In $123456789| Start `2esn`=Node:`8esn`(#usn7={`6esn`}) Where 9e-1 Contains 3.9e-1)"), + octest_legacy:ct_string("Remove {#usn7:$@usn5 Starts With #usn7}.`3esn`?,[usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where Null In {7}|0.12 =~2.9e1 =~9e1].`3esn`!,`3esn`(Distinct 0 Starts With `7esn` Starts With 9e0,$`4esn` Is Null Is Null)._usn3!._usn3!.#usn8? Start @usn5=Rel:#usn7(\"d_str\") ,`2esn`=Node(0X7,123456789,123456789,0X7)Where 999 Is Null Is Null Union Merge ``=Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))) Union Match `5esn`=((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})) Using Index usn2:``(`3esn`) Where 0e-0[..7.0e-0][..{`8esn`}] Start _usn4=Relationship:`7esn`({123456789}) Where 3.9e-1[..$1000][..0.12] Remove `2esn`:_usn3,Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $usn1 Contains 4.9e12 Contains $`2esn`).usn2?.`1esn`!,`1esn`:`5esn`:`7esn`"), + octest_legacy:ct_string("Create Unique ``=((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999})) Create Unique `2esn`=(:_usn3{usn2:6.0e0[$12..0.12],#usn7:`2esn`})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}),Shortestpath(((`1esn` :`5esn`:`7esn`))) Delete Filter(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Starts With (#usn7 :``)-[`3esn`{`4esn`:12e12[.9e12..07]}]-(`1esn` :``{_usn4:$@usn5 =~{`3esn`}})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}) Starts With Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)"), + octest_legacy:ct_string("With Count(*)[@usn5..] As #usn8 Where {_usn3}[{0}...9e-1][9e-1...0e0] Optional Match `6esn`=((`1esn` :`8esn`)<-[:usn1|usn2]-(`` :`4esn`:usn2)<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``)) Using Index usn1:#usn8(``) Using Join On `4esn`,`2esn`,`` Where 0.0[$`4esn`] Return Distinct *,{@usn5:5.9e-12 Is Null Is Null} Ends With Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where _usn4['s_str'][8.1e1]|0.12 =~2.9e1 =~9e1) Ends With All(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12) Skip All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0)[..(_usn4 {`3esn`:.0e-0 In 12})-[`4esn`{_usn3:010[..9e-1][..0X7]}]-(@usn5 :`8esn`{12})-[_usn3:`6esn`]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})] Union All Merge (:usn2)<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:#usn8|:``{#usn8:{_usn4} In 0X7 In 0e0,`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]-(@usn5 ) Remove usn1:#usn7:`8esn`,0Xa.@usn6._usn4!,[`6esn` In 010[{`1esn`}..] Where `3esn` Starts With 9.1e-1 Starts With .9e-1].`5esn`! Return {#usn8:$`6esn`[..01][..{_usn3}]} Starts With Shortestpath(((`1esn` :`8esn`)-[`7esn`?:`2esn`|`5esn` *0]->(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))) As `3esn`,01 Contains Reduce(usn2=$1000[_usn4][{@usn5}],`8esn` In {usn1}[7.0e-0..][3.9e-1..]|9e-12 Ends With 9e1 Ends With 4.9e12) Contains usn2(Distinct `7esn` In _usn4 In $`7esn`,999 Is Null Is Null) As `5esn`,(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])] As `8esn` Limit @usn5[#usn7..]"), + octest_legacy:ct_string("Match Shortestpath(((@usn6 :usn2{@usn5:$`5esn`[{`4esn`}][{0}],usn2:9e12 Is Null Is Null})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})-[usn1?:@usn6|:`4esn` *..123456789]->({#usn8:_usn4[$_usn4]}))),usn2=(((:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})-[usn2:`5esn`]-(:`4esn`:usn2{@usn5:`8esn`[.12e12..],usn1:$#usn8[$0..`3esn`][1e-1..$7]})-[:#usn7|:@usn5]-(:`1esn`:``{`8esn`:5.9e-12[0x0..]}))) Using Scan #usn8:`8esn` Using Scan #usn7:`4esn` Where 5.9e-12[12e-12][$`8esn`] With Distinct Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)) Is Not Null Is Not Null As `8esn` Limit (@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(:`6esn`{`2esn`:`5esn` Ends With Count(*)})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12}) In Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}) In Single(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str') Union All With Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null As @usn6,Reduce(`7esn`=#usn7 Contains .0e0 Contains $@usn6,`6esn` In 010[{`1esn`}..]|00 Is Not Null Is Not Null)[$7..],$`1esn` Ends With 1000 As _usn3 Order By 0.0[$`4esn`] Ascending,`4esn`[12.0..][9.1e-1..] Desc Limit @usn6[0x0..][$_usn4..] Where .9e12 Contains 0 Contains $0 Match `3esn`=(((`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}))),`8esn`=((`8esn` :`6esn`)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(@usn5 :@usn6:_usn3)) Union Merge Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))) On Match Set Case .12e12 Ends With 07 Ends With 3.9e-1 When 0.12 In $`` Then 0e-0 In 0X0123456789ABCDEF In `3esn` When 01 Ends With .0e0 Ends With 7.0e-0 Then $`6esn`[@usn6...9e-12] End.`1esn`.`1esn` =1e-1 Starts With .1e1 Starts With 12.0 Load Csv With Headers From $`3esn` =~0x0 As usn1 "), + octest_legacy:ct_string("Start ``=Relationship:_usn4({_usn3}) ,@usn6=Rel:`6esn`(`2esn`={`4esn`})Where #usn7 =~$@usn5 =~{7} With $12 Ends With 7.0e-0 Ends With 9e-12 As usn1,{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] As ``,9e-1 Contains .12e-12 Contains $0 Order By `6esn`[$@usn5][01] Descending,{`5esn`} Desc Skip 123.654 Is Not Null Is Not Null Limit Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null Union All Foreach(_usn4 In {_usn3} Is Null Is Null| Unwind (`8esn` {``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[usn1?{`5esn`:$0 Ends With 9e-12 Ends With $_usn4}]-({`3esn`:`5esn` Ends With Count(*)})-[usn2?:#usn7|:@usn5 *7{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})[(`7esn` :@usn6:_usn3)<-[{@usn5:0.12 =~`6esn` =~.9e-1}]->({_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})..Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 3.9e-1 Starts With .9e0 Starts With {#usn7})][{_usn3:{123456789} Starts With `6esn`}..[`` In `7esn` =~#usn8 =~\"d_str\" Where 9e-12 Ends With 9e1 Ends With 4.9e12|{`1esn`}[{usn2}]]] As `7esn` Unwind ``[$#usn7] As #usn7)"), + octest_legacy:ct_string("With 6.0e0 Starts With 0x0 Starts With 0Xa As #usn7,9e0[`3esn`][0] As #usn7,false[..usn2][..999] Order By false Contains {`7esn`} Asc,{1000} =~4.9e12 =~9e1 Desc,#usn7[{_usn3}] Descending Where {12} Contains `8esn` Contains @usn5 Remove Case When 999 Is Null Is Null Then {12} Starts With $`` Starts With 0X0123456789ABCDEF When 01 =~07 Then `1esn` =~{12} =~{999} Else .9e1 In {#usn7} In .9e-12 End.`1esn`?,(`` :``)-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]})<-[`4esn`?]-(:usn1{#usn8:2.9e1[{`2esn`}]}).`3esn`? Union Create Unique (((`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(`3esn` $0)<-[usn2:#usn8|:``]->(`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0}))) Remove Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]).`6esn`!,Allshortestpaths((:`3esn`{usn2:01234567[10.12e12][0Xa]})).`1esn`? Union Start usn1=Node:`6esn`(@usn6='s_str') Match `2esn`=Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}}))) Where $123456789[..$999][..`6esn`] Load Csv From {`7esn`}[@usn5] As @usn5 Fieldterminator 's_str'"), + octest_legacy:ct_string("Merge (`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}) On Create Set #usn8:`8esn` Create Allshortestpaths((`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`))"), + octest_legacy:ct_string("Start `3esn`=Node:`6esn`(`4esn`='s_str') ,`2esn`=Relationship(0) Start usn2=Relationship(999,010,07,123456789) ,`7esn`=Node:`6esn`(@usn6='s_str')Where 123.654 Ends With {1000} Ends With 9e12 Load Csv With Headers From Reduce(`3esn`=2.12[`4esn`][.9e-1],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{`8esn`} In {_usn3} In 6.0e0)[`3esn`(Distinct)..[`` In `7esn` =~#usn8 =~\"d_str\" Where $`4esn` In {999}|0e-0[$``..10.12e12]]][Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`6esn`} =~2.12 =~123.654|{`8esn`} Contains $@usn5)..`5esn`(Distinct $`7esn` Ends With 7.0e-0 Ends With $usn2)] As #usn8 "), + octest_legacy:ct_string("Match ((:`1esn`:``{`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})),`2esn`=((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})) Using Scan `3esn`:`` Using Scan `1esn`:_usn3 Where $`7esn` In $@usn5 Match `3esn`=((_usn4 :_usn4:`2esn`{`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[_usn4]-(#usn8 )) Using Join On ``,`4esn`,_usn4 With 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Order By $1000 Is Null Descending,7.0e-0 Ends With {123456789} Ends With @usn6 Descending Limit 1000[{`1esn`}..][$`3esn`..] Union All Match ((:`1esn`:``{`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})),`2esn`=((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})) Using Scan `3esn`:`` Using Scan `1esn`:_usn3 Where $`7esn` In $@usn5 Match `3esn`=((_usn4 :_usn4:`2esn`{`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[_usn4]-(#usn8 )) Using Join On ``,`4esn`,_usn4 With 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Order By $1000 Is Null Descending,7.0e-0 Ends With {123456789} Ends With @usn6 Descending Limit 1000[{`1esn`}..][$`3esn`..] Union Delete Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 07 Ends With $_usn3 Ends With $#usn8)[Extract(usn2 In .12e-12 Ends With `2esn` Where $_usn3[0X0123456789ABCDEF..][0x0..])],1.9e0[`6esn`][`7esn`],9e0 In {usn2} In {@usn6} Optional Match ((usn1 :@usn6:_usn3)-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})) Where $usn2 In #usn7 In #usn7"), + octest_legacy:ct_string("Remove {`4esn`:0xabc[..Count(*)][..$`5esn`],`8esn`:01 =~{_usn3} =~01}.`3esn`! Remove Case {0} Is Not Null Is Not Null When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End.`4esn`?"), + octest_legacy:ct_string("Remove Shortestpath((((`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})-[?:_usn3]->(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})-[:`2esn`|`5esn` *01]-(@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0})))).`4esn`?.usn2?,(#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})-[_usn3?:@usn5|:#usn7]->(`2esn` :usn1).usn2 Return Distinct *,$123456789[..$999][..`6esn`] As @usn5,Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07)[Case 9e-12 Ends With 9e1 Ends With 4.9e12 When `3esn` =~$#usn7 Then $@usn5 Starts With #usn7 When {`4esn`}[{`3esn`}][$`2esn`] Then #usn7[$`8esn`][{`3esn`}] Else 9e0[`4esn`..$_usn4][9.1e-1..0e0] End][[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]] Skip @usn5[9e-1..{`1esn`}] Limit 11.12e-12 Contains usn1"), + octest_legacy:ct_string("Create #usn7=(_usn4 :`6esn`)<-[:#usn8|:``{#usn7:$#usn7}]-(#usn7 $12),`5esn`=(:usn1$1000) Merge `2esn`=(((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}))) On Create Set (`5esn` {_usn4:0xabc[..Count(*)][..$`5esn`]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}).usn1! ={_usn3}[{0}...9e-1][9e-1...0e0] On Match Set {usn1:1.0 Is Not Null}.usn1? ={123456789} Contains $0,usn1+=01 Is Not Null,usn1 ={999} =~$`6esn` =~$`6esn` Union Create Unique (({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})<-[usn2:`4esn`|:`2esn` *0X7..0Xa]-(#usn7 :#usn7:`8esn`)) Load Csv From Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null As usn2 Fieldterminator 's_str' Start _usn3=Relationship:`3esn`(#usn7={_usn3}) ,`1esn`=Rel:``({`4esn`})"), + octest_legacy:ct_string("Return $`4esn`[12e-12..$`1esn`][$`2esn`...9e12] As usn2,Case When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 Else 9e-12 Ends With {1000} End[Shortestpath((:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[`1esn`:`4esn`|:`2esn`{`5esn`:$_usn3[usn2..][usn1..]}]->(:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`}))..] Order By Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]|0e-0[{@usn6}])[Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3))][Case When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] When {123456789} Starts With $_usn4 Starts With 0x0 Then 9e0[`3esn`][0] End] Ascending,All(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`]) Ends With Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e-12[9e1]) Asc,[`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null] =~`6esn`(Distinct 2.9e1[Count ( * )..]) Desc Skip $12 In {usn2} Limit $1000 Contains {`2esn`} Contains {`8esn`}"), + octest_legacy:ct_string("Create Unique ((`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(`1esn` {@usn6:6.0e0[$#usn7..$1000]})),((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}})) Return *,`1esn`[..$1000] As _usn3 Order By $@usn5 =~{`3esn`} Descending,_usn4['s_str'][8.1e1] Descending Limit $`8esn` Is Null Is Null Load Csv With Headers From Count ( * ) Contains 9.1e-1 Contains {`2esn`} As #usn8 "), + octest_legacy:ct_string("Optional Match (((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}))) Using Join On `2esn`,@usn5 Using Join On `1esn`,`3esn`,`5esn` Where $@usn5[`8esn`][12e12] Load Csv With Headers From Case {`4esn`} Ends With Count(*) When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] When $#usn7 Contains 3.9e-1 Then 123.654[10.12e12..$12][6.0e0..{#usn8}] Else $usn1[0e0...9e-12] End[Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))..][Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})..] As `5esn` With Distinct $_usn4 =~$#usn8 =~{`4esn`} As @usn5 Union Merge `7esn`=Shortestpath(((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})))) On Create Set {_usn3:$999 Is Not Null}.@usn6! =_usn4 Match ((#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn4]-(`2esn` :`1esn`:``)) Using Scan #usn7:`3esn` Where 123.654 Contains true Contains 7.0e-0 Load Csv With Headers From Allshortestpaths((((@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?*..]-(`` {`6esn`:1000[{`1esn`}..][$`3esn`..]})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))))[Allshortestpaths((`1esn` :usn2{`8esn`:12.0[...0e0]})-[?:`1esn`|:`1esn` *..0x0{@usn6:.0e-0 In 12}]-(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]}))][Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 01234567[1000..][$`8esn`..])] As `3esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Load Csv From $`8esn` Contains {@usn6} Contains `7esn` As usn2 Fieldterminator \"d_str\" Return Distinct *,1.0 In {usn1} As `5esn` Limit 1.9e0[123.654..][{@usn5}..] Foreach(usn1 In \"d_str\" Is Not Null Is Not Null| Create #usn7=(((#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})-[?:@usn5|:#usn7 *0]->({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})-[:usn2{``:07 Ends With {1000} Ends With 01234567,`5esn`:999 Ends With {#usn8}}]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]}))) Unwind (@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[`8esn`?:_usn3 *12{usn1:#usn7[.9e0..`3esn`][{`6esn`}..1000],_usn4:$usn2 In #usn7 In #usn7}]-(_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(usn2 :`2esn`:`4esn`)[..Reduce(`2esn`={1000}[..{usn1}][..1e-1],_usn3 In `8esn`[_usn4]|Count(*)[$7])][..{_usn3}] As `6esn`) Union All Merge `1esn`=Shortestpath((({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[`8esn`*]->(#usn7 :#usn7:`8esn`))) On Create Set _usn3+=Case {`4esn`} Ends With Count(*) When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] When $#usn7 Contains 3.9e-1 Then 123.654[10.12e12..$12][6.0e0..{#usn8}] Else $usn1[0e0...9e-12] End[Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))..][Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})..],count(usn1 =~0Xa =~0).`6esn`.usn2? =0X7 Contains $12 Contains 0e0,#usn8+='s_str'[`3esn`..0x0] On Create Set `3esn`+=12 Ends With 12e12,usn1+=Case 0e-0[$``..10.12e12] When $usn2 In #usn7 In #usn7 Then \"d_str\" In usn2 In $`7esn` When {`3esn`}[_usn4][2.9e1] Then `6esn` =~999 =~$999 End Ends With None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn5 Starts With #usn7) Ends With [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0X0123456789ABCDEF Ends With {1000}|Count ( * )[_usn4..]],`1esn` =0x0 Contains 7.0e-0 Create @usn5=Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))) Detach Delete $`1esn` Ends With 1000,Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) Ends With Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When 0.12[Count ( * )..Count ( * )][$999..`5esn`] Then $123456789[..$999][..`6esn`] Else 7[{`4esn`}..] End Ends With ({`7esn`:$usn1 =~.0e0 =~{`4esn`},`3esn`:usn2 Contains `2esn` Contains {1000}})<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})"), + octest_legacy:ct_string("Remove #usn7:`1esn`:`` Union All Merge Shortestpath(((usn1 :#usn8:@usn6))) On Match Set `6esn`+=01[$`1esn`..$`7esn`][{usn2}..12.0],[usn1 In {#usn7} =~.12e12 =~9e0 Where $`4esn`[12e-12..$`1esn`][$`2esn`...9e12]|$`1esn`[4.9e12..][_usn3..]].#usn7 =9.1e-1[..Null][..#usn8] Create Unique (((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}))) Create `8esn`=Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})) Union All Match @usn6=Allshortestpaths((((@usn6 :`5esn`:`7esn`)-[`8esn`{#usn8:.12e12[..7]}]-({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})))) Using Join On _usn4 Using Scan @usn6:#usn7 Where {#usn7}[.12e-12] Create `4esn`=((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})<-[ *01234567..{usn1:{12} Contains `8esn` Contains @usn5}]->(usn1 :@usn6:_usn3)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})),(:`3esn`{@usn5:9e12[..usn2][.._usn3]})<-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]->(:`5esn`:`7esn`{`1esn`:{1000}[..`5esn`][..9e12]})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1})"), + octest_legacy:ct_string("Remove Reduce(`5esn`=8.1e1 Contains $@usn6,#usn7 In .0e-0 In 12|{1000} Starts With 10.12e12 Starts With .0e-0).usn1!,None(`6esn` In 010[{`1esn`}..] Where $usn1[9e1][{999}]).`3esn`!,_usn4:_usn3 Union Create @usn5=Allshortestpaths((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})-[`3esn`? *..07]-(#usn7 {_usn4:$12[$`6esn`..][01..]})),Allshortestpaths(((`` :`7esn`))) Merge Allshortestpaths(((`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})<-[usn2? *0xabc..12{`6esn`:`8esn`[_usn4]}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]}))) On Match Set usn1 ={`6esn`} In 11.12e-12 In 2.9e1,#usn8+={@usn5} Contains .1e1 Contains {`5esn`},@usn6+={`3esn`}[#usn7] On Create Set @usn6 =$`5esn` In `` Load Csv From {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null) As usn1 Union Unwind Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {12} Ends With $`3esn` Ends With 0xabc)[Case When {0} Is Null Is Null Then $``[1.0..][_usn3..] Else 999[..$@usn5][..``] End..] As `6esn`"), + octest_legacy:ct_string("Foreach(`1esn` In {usn1} In Count ( * ) In 12e12| Return Distinct 01 Starts With 12 Starts With $`2esn` As usn1,{`8esn`} In {_usn3} In 6.0e0 Order By {`4esn`} Ends With Count(*) Asc,.0e0[{`5esn`}..3.9e-1] Descending,$999 Ends With `2esn` Ends With 12.0 Ascending) Detach Delete 0 Starts With `7esn` Starts With 9e0"), + octest_legacy:ct_string("Remove Allshortestpaths((((@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})-[:`3esn`|`3esn`]-(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(:`4esn`:usn2)))).`6esn`? Match `6esn`=(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Where 0[..{#usn7}][..$_usn3] Create `2esn`=((:``{usn1:`4esn` Is Not Null})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})),@usn5=Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))) Union Create (_usn3 {#usn7:$999 =~false =~{`8esn`}})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0}) Detach Delete `1esn` In 010 In 1e-1,usn2($usn1 =~.0e0 =~{`4esn`}) Contains Allshortestpaths(((#usn8 :@usn5)<-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 )<-[?:`1esn`|:`1esn`{`5esn`:9e1[0.0]}]->(`8esn` ))) Create Unique `8esn`=(({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})),Allshortestpaths((:`3esn`)) Union All Unwind 00[$_usn4][$`1esn`] As _usn4 Remove `4esn`().`6esn`!.#usn7!.`2esn` Remove Case $`8esn` Is Not Null Is Not Null When #usn8[\"d_str\"..usn2] Then .12e-12 Is Null End.@usn6?,Filter(`6esn` In 010[{`1esn`}..] Where {`8esn`}[9e12..][{_usn4}..]).`3esn`!,Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]|$1000 Starts With {@usn6} Starts With $@usn5).usn1"), + octest_legacy:ct_string("Detach Delete #usn8(Distinct 12e12[{`4esn`}..`4esn`][999..{@usn6}])[Any(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1])..{``:9e1[0.0]}],{999}[..`6esn`] Union Merge #usn8=Allshortestpaths((`` :``)<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})) On Create Set Reduce(_usn3={#usn7} Ends With 999 Ends With 12,usn2 In $`5esn`[{`4esn`}][{0}]|6.0e0[$#usn7..$1000]).@usn5 =6.0e0 Is Null Unwind $usn2[$999][1e1] As `4esn` Union Load Csv From {`8esn`}[..999][.._usn3] As #usn8 Fieldterminator 's_str'"), + octest_legacy:ct_string("Foreach(`7esn` In 2.9e1 Ends With `5esn` Ends With 1000| Return Distinct 9e-1 Is Not Null,{`6esn`} In 11.12e-12 In 2.9e1 Order By `3esn` Is Null Is Null Asc,8.1e1[.1e1..][`4esn`..] Asc Skip @usn5[@usn6] Match #usn8=(:`4esn`:usn2) Using Index `4esn`:`1esn`(`2esn`) Where $`5esn` Is Not Null) Create `6esn`=Shortestpath((@usn5 :_usn4:`2esn`{@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})),`2esn`=Shortestpath(((`1esn` :`7esn`{usn1:3.9e-1 Starts With .9e0 Starts With {#usn7}})<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]}))) Start `8esn`=Node:`5esn`({`2esn`}) "), + octest_legacy:ct_string("With Distinct Count ( * )[9e0..$``] As `2esn` Skip ``[$7..$_usn4] Limit _usn4['s_str'][8.1e1] Where 12e12[usn2..$`6esn`] With .1e1 Contains 1e-1 Contains #usn8,.9e-12[usn2] As usn1,.1e1 Contains 1e-1 Contains #usn8 As `` Skip Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Limit 010 =~9.1e-1 =~{`8esn`} Merge Allshortestpaths((((`4esn` :``{_usn4:$_usn3[0x0][{0}],@usn6:9e-12 Is Not Null Is Not Null})-[`3esn`:@usn6|:`4esn`]-(`1esn` :usn2{`8esn`:12.0[...0e0]})-[usn2:_usn3 *0xabc..12]->(usn1 :usn1{#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})))) On Match Set Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999}).`5esn`.#usn8!.`3esn`? =$12 In {usn2},`4esn`(Distinct .9e0[07..][4.9e12..]).`4esn`! =Reduce(#usn7=#usn8[\"d_str\"..usn2],#usn7 In .0e-0 In 12|`` Ends With 1.0 Ends With usn1) Ends With [_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3]] Ends With Shortestpath((((:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[`2esn`?:`8esn`|:#usn8]->(`` )<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)))),`5esn`+=7 Starts With 9e-12 Union Start #usn7=Node:`5esn`({999}) ,`8esn`=Node( {`4esn`})Where $12 =~4.9e12 Union All Load Csv With Headers From 5.9e-12[..9e0] As `1esn` "), + octest_legacy:ct_string("Merge ((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]}))"), + octest_legacy:ct_string("Create Unique (`1esn` {usn2:.9e-12[.12e12..][0Xa..]}),Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}}))) Return 12e12[usn2..$`6esn`] As usn1,0Xa Contains 12e-12,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As #usn7 Order By $_usn3[0X0123456789ABCDEF..][0x0..] Desc,$`5esn` Is Not Null Is Not Null Descending Limit 12e12[usn2..$`6esn`]"), + octest_legacy:ct_string("Remove Any(usn1 In {#usn7} =~.12e12 =~9e0 Where usn1 Ends With 11.12e-12 Ends With 5.9e-12).`1esn`._usn3!,All(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999}).``?._usn3,Extract(usn1 In \"d_str\" Contains {@usn6} Where $`` =~.1e-1|$`3esn` =~0x0).@usn6.``! Union All With `6esn`[3.9e-1..`8esn`][12.0..0.0],Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}])[Any(usn2 In .12e-12 Ends With `2esn` Where {``} Is Null Is Null)] As usn2,{usn1} Is Not Null Order By {`8esn`}[.0e0..][999..] Asc,#usn8(Distinct 12e12[{`4esn`}..`4esn`][999..{@usn6}])[Any(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1])..{``:9e1[0.0]}] Descending Skip 9e-1[0.0..] Limit Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null Delete $`8esn`[...1e-1],12.0 In `7esn` Load Csv With Headers From $`7esn` Is Null As `5esn` Fieldterminator 's_str' Union Unwind .0e0 Starts With $usn1 Starts With {`6esn`} As _usn4"), + octest_legacy:ct_string("Remove Case When {``} Is Null Is Null Then {usn2} Ends With {@usn6} Ends With 1000 When .12e12[..7] Then Count ( * )[_usn4..] Else 1.9e0[.12e-12][9e-12] End.`3esn`!.`2esn`!.`7esn`! Return Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {#usn8}[..@usn5])[(:#usn8:@usn6{`3esn`:$#usn7})-[ *12{#usn8:0e0 =~{12} =~{1000}}]-(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})-[usn2:`5esn`]-(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})][[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01|_usn4 Ends With {`8esn`} Ends With usn2]],999 Ends With {#usn8},010[.0e-0..\"d_str\"][.9e0..123.654] As `6esn` Order By {123456789} Contains $#usn7 Contains {#usn8} Desc Create Unique @usn5=(usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[?$999]-(`4esn` {#usn7:$usn1[0e0...9e-12]})-[:`5esn` *01234567..{`2esn`:{usn1} Contains {`2esn`},#usn7:`4esn`[9e-12..true]}]-(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null}) Union All Detach Delete $`1esn` Ends With 1000,Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) Ends With Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When 0.12[Count ( * )..Count ( * )][$999..`5esn`] Then $123456789[..$999][..`6esn`] Else 7[{`4esn`}..] End Ends With ({`7esn`:$usn1 =~.0e0 =~{`4esn`},`3esn`:usn2 Contains `2esn` Contains {1000}})<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Create Unique #usn8=(#usn7 {#usn7:.0e-0[..01234567],#usn7:{1000}[0..]}),@usn6=Shortestpath((_usn4 )) Union All With $0 In {`5esn`:.9e-1 Contains .9e0 Contains ``} In {`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12} As `7esn`,.9e0 Ends With $0 As @usn6 Limit $`5esn` In $12 In `2esn`"), + octest_legacy:ct_string("Remove Reduce(#usn7=Count(*)[Count ( * )][{0}],`1esn` In $12 In {usn2}|.1e1 Is Not Null Is Not Null).@usn5! Delete 1e-1[..$`2esn`][..01],6.0e0[{`2esn`}..$``],$0 Ends With $usn1 Ends With {``} Union All With Distinct 12.0 =~{@usn6} As _usn3,Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``}) In (_usn4 :_usn3)<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-({#usn7:12e12[.9e12..07]}) In @usn5({1000}[0..]) Skip {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]} Is Not Null Start `3esn`=Node(0xabc,7,0Xa,01234567) Where $12 Is Null Unwind `3esn` Is Null Is Null As usn1"), + octest_legacy:ct_string("Create usn2=((_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})) Union All Merge `4esn`=Shortestpath((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) On Create Set @usn5 =Count(*)[$7] On Create Set `` =6.0e0[$12..0.12],#usn7+=7 In 1e1 In {``} Union Optional Match (({`6esn`:3.9e-1[..$1000][..0.12]})-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-(:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})),`5esn`=Allshortestpaths((({`6esn`:8.1e1 Contains .9e-1 Contains false}))) Using Index `4esn`:`1esn`(`2esn`) Unwind 5.9e-12 =~{12} =~{`2esn`} As usn1"), + octest_legacy:ct_string("Start _usn4=Node:usn2({123456789}) Return 00 Is Not Null Is Not Null As _usn3,.0e-0[010..] As `6esn`,.0e-0 In 12 As `4esn` Order By All(`2esn` In $@usn5 Is Not Null Is Not Null Where 2.12[{12}]) Ends With Case `1esn`[..$1000] When .9e-12[.12e12..][0Xa..] Then {`7esn`} Is Not Null Is Not Null Else {@usn6} In 9e12 End Ends With Any(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where .9e12 Is Not Null Is Not Null) Ascending Skip Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`}) Ends With Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))) Ends With Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1) Limit {`5esn`}[{usn2}..$`1esn`] Optional Match `7esn`=Allshortestpaths(((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}))) Using Index #usn8:`3esn`(@usn6) Union Detach Delete {#usn7}[..\"d_str\"][..#usn8],`1esn`[Null][{@usn6}]"), + octest_legacy:ct_string("Unwind `4esn` =~_usn4 =~0e-0 As `7esn`"), + octest_legacy:ct_string("Start `4esn`=Rel:@usn5(_usn4='s_str') ,`4esn`=Node:@usn6(\"d_str\") Merge usn2=(((:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})-[usn2:`5esn`]-(:`4esn`:usn2{@usn5:`8esn`[.12e12..],usn1:$#usn8[$0..`3esn`][1e-1..$7]})-[:#usn7|:@usn5]-(:`1esn`:``{`8esn`:5.9e-12[0x0..]}))) On Match Set @usn5 =$@usn5[`8esn`][12e12] Union All Unwind Case false =~{`8esn`} =~00 When usn2 Starts With $usn1 Starts With 10.12e12 Then usn2 Starts With $usn1 Starts With 10.12e12 When {1000} =~4.9e12 =~9e1 Then `3esn` =~$#usn7 End Ends With All(usn2 In $`5esn`[{`4esn`}][{0}] Where 0e0 Contains {`2esn`}) Ends With [#usn7 In .0e-0 In 12 Where Count ( * ) Is Not Null Is Not Null|$`7esn` Starts With 's_str'] As `1esn` Union Merge `3esn`=((:`1esn`:``{@usn6:$`7esn` Ends With 7.0e-0 Ends With $usn2})) On Match Set Case .12e12 Ends With 07 Ends With 3.9e-1 When 0.12 In $`` Then 0e-0 In 0X0123456789ABCDEF In `3esn` When 01 Ends With .0e0 Ends With 7.0e-0 Then $`6esn`[@usn6...9e-12] End.`1esn`.`1esn` =1e-1 Starts With .1e1 Starts With 12.0 On Match Set [`` In `7esn` =~#usn8 =~\"d_str\" Where 3.9e-1 Starts With .9e0 Starts With {#usn7}|$usn1 =~.9e12 =~`6esn`].`5esn`! =`3esn`[{`4esn`}],`7esn`+=$_usn3 Is Null"), + octest_legacy:ct_string("Start `8esn`=Node:`1esn`(_usn4={123456789}) ,@usn6=Node:`1esn`(_usn4='s_str') Union All Return Distinct 0.0 Starts With 0X0123456789ABCDEF,{123456789} =~.9e1 =~$_usn3,Case When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 Else $12 Is Not Null Is Not Null End Starts With usn1(Distinct .9e1[$`1esn`..][$``..]) Starts With Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End Order By Null Ends With `4esn` Ends With `3esn` Descending,None(`6esn` In 010[{`1esn`}..] Where 0 In 2.9e1 In 7) Ends With [@usn6 In 9e12[..usn2][.._usn3] Where .12e12 Ends With 07 Ends With 3.9e-1|$@usn5 Is Null Is Null] Ascending,Case When true In 0.0 Then {`4esn`}[{`3esn`}][$`2esn`] Else @usn6 Starts With #usn7 End =~{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}} =~{_usn3:010[..9e-1][..0X7]} Descending Union All Detach Delete 00[(`3esn` :_usn3{@usn6:0.12 Is Not Null})-[#usn8:`5esn`]-({`6esn`:12[@usn6][{`2esn`}]})..],Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])[..(#usn7 {`5esn`:.12e12 Is Not Null,@usn5:.12e12 Is Not Null})-[#usn8:`7esn`|usn1 *0X7..0Xa{usn1:_usn4 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})][..Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`)] Create #usn7=(((#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})-[?:@usn5|:#usn7 *0]->({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})-[:usn2{``:07 Ends With {1000} Ends With 01234567,`5esn`:999 Ends With {#usn8}}]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]}))) Start @usn6=Node:`2esn`(#usn7={`4esn`}) "), + octest_legacy:ct_string("Detach Delete 00[(`3esn` :_usn3{@usn6:0.12 Is Not Null})-[#usn8:`5esn`]-({`6esn`:12[@usn6][{`2esn`}]})..],Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])[..(#usn7 {`5esn`:.12e12 Is Not Null,@usn5:.12e12 Is Not Null})-[#usn8:`7esn`|usn1 *0X7..0Xa{usn1:_usn4 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})][..Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`)] Create #usn7=(((#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})-[?:@usn5|:#usn7 *0]->({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})-[:usn2{``:07 Ends With {1000} Ends With 01234567,`5esn`:999 Ends With {#usn8}}]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]}))) Start @usn6=Node:`2esn`(#usn7={`4esn`}) Union Delete Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[..None(#usn7 In .0e-0 In 12 Where 0xabc =~123456789)][..11.12e-12],12e12[{`4esn`}..`4esn`][999..{@usn6}] Detach Delete $`1esn` Ends With 1000,Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) Ends With Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When 0.12[Count ( * )..Count ( * )][$999..`5esn`] Then $123456789[..$999][..`6esn`] Else 7[{`4esn`}..] End Ends With ({`7esn`:$usn1 =~.0e0 =~{`4esn`},`3esn`:usn2 Contains `2esn` Contains {1000}})<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Merge (`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}) On Create Set #usn8:`8esn` Union All Merge Allshortestpaths(((@usn6 :@usn5))) On Create Set `4esn`+=0e-0 In 0X0123456789ABCDEF In `3esn` With Distinct *,_usn4[{``}..{`6esn`}][$7..$_usn3] Order By 9e0 Ends With {7} Desc,`4esn` =~_usn4 =~0e-0 Descending"), + octest_legacy:ct_string("Unwind $`3esn`[..{`5esn`}] As @usn6 Unwind None(`` In `7esn` =~#usn8 =~\"d_str\" Where .9e-1 Ends With .0e-0 Ends With {_usn3})[[`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07|{1000} Starts With 10.12e12 Starts With .0e-0]][All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])] As `4esn` Union All Create Unique `4esn`=((`3esn` :#usn8:@usn6)-[`4esn`? *01{#usn8:12.0[..Count ( * )][..@usn6]}]-(usn1 :#usn8:@usn6)) With Distinct (usn1 :usn1{#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[`3esn`?:_usn4|:`1esn`]->(`6esn` :`4esn`:usn2)[Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {@usn6} In 9e12)][(`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})] As #usn7 Order By Filter(#usn7 In .0e-0 In 12 Where 00[$``])[Case When 12e12[usn2..$`6esn`] Then 9e-12 Starts With {1000} When 5.9e-12[0x0..] Then 12[..$`5esn`] Else 0.0[00..][0xabc..] End..] Asc,{usn1} Contains `4esn` Ascending,{_usn3}[@usn6..] Descending Where $12 =~4.9e12 Unwind Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null As @usn5"), + octest_legacy:ct_string("Create Unique Shortestpath((((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[:`3esn`|`3esn`]-(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})))),_usn4=Shortestpath(((#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]}))) Match ((`5esn` {usn1:01234567[10.12e12][0Xa]})-[ *..123456789{@usn5:1e-1[$`4esn`]}]->(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(_usn4 :`1esn`:``{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}})) Union All Create _usn4=Allshortestpaths(((_usn4 :_usn4:`2esn`{`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[_usn4]-(#usn8 ))) Start @usn5=Node:_usn4({_usn3}) Union Remove Reduce(usn2=12e12[{`4esn`}..`4esn`][999..{@usn6}],`1esn` In $12 In {usn2}|$`8esn`).`5esn`?,(`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})<-[_usn3?:`5esn`*..]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}).@usn5!"), + octest_legacy:ct_string("Unwind None(`2esn` In $@usn5 Is Not Null Is Not Null Where {7}[$@usn5..123456789][1e1..1.9e0]) Ends With Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End Ends With {_usn3:$1000 Starts With {@usn6} Starts With $@usn5} As `5esn` Foreach(usn2 In Case 12.0[...0e0] When {#usn8}[..@usn5] Then `3esn` Is Null End Is Null Is Null| Return Distinct 0xabc[..Count(*)][..$`5esn`],Case {1000}[..`5esn`][..9e12] When $`8esn` Then Null[$`3esn`..][`1esn`..] End =~None(`` In `7esn` =~#usn8 =~\"d_str\" Where 7 In 1e1 In {``}) =~{`6esn`:usn2 Contains `2esn` Contains {1000}} As `3esn` Order By Single(usn1 In $@usn6 Is Null Is Null Where 0X0123456789ABCDEF Ends With {1000}) In (`1esn` :#usn8:@usn6{usn1:#usn8 Is Null Is Null,_usn3:{`4esn`} In 1000 In {@usn5}})-[``:``|:`7esn`*{#usn8:{#usn7}[.12e-12],`3esn`:1.9e0[`6esn`][`7esn`]}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})-[usn1?:`3esn`|`3esn`*..]->(:usn1) In Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1) Ascending Skip $_usn3[.0e-0..999]) Match ((#usn8 :usn2)-[``? *0Xa..12{@usn5:01 Ends With .0e0 Ends With 7.0e-0,_usn3:0.0[00..][0xabc..]}]-(usn2 :`2esn`:`4esn`{`7esn`:@usn5 =~$#usn7 =~{usn1}})) Using Scan _usn3:@usn5 Using Join On `7esn` Where 11.12e-12 Ends With 's_str'"), + octest_legacy:ct_string("Remove Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]).`4esn`? Remove `2esn`:`2esn`:`4esn`,Single(usn1 In {#usn7} =~.12e12 =~9e0 Where {1000} Starts With 10.12e12 Starts With .0e-0).usn2 Load Csv From {`4esn`} In 1000 In {@usn5} As _usn4 "), + octest_legacy:ct_string("Start `5esn`=Relationship:#usn8(@usn5={@usn6}) ,@usn6=Node:@usn5({`4esn`}) Unwind 5.9e-12 =~{12} =~{`2esn`} As usn1 Create Unique ``=Allshortestpaths(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2))),`7esn`=(@usn5 :@usn5{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6})-[usn2?:`1esn`|:`1esn` *..123456789]-(:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[:_usn3]-(`3esn` )"), + octest_legacy:ct_string("Start `4esn`=Node:@usn6(\"d_str\") Foreach(`7esn` In {`5esn`}[01234567..][5.9e-12..]| Detach Delete .12e12[01..{1000}][8.1e1..Count ( * )] Return Distinct Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As @usn6,07 Ends With {1000} Ends With 01234567 Order By Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null) In `4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`) Desc Skip true Contains 0X7 Contains $#usn8) Union Foreach(@usn6 In 7.0e-0 Ends With 0e0 Ends With 3.9e-1| With Distinct 5.9e-12[01][`4esn`],$#usn8 Starts With 9.1e-1 Starts With {#usn7} As `8esn`,`5esn` Ends With 's_str' Ends With @usn5 As `1esn` Order By 's_str'[$_usn3..][9.1e-1..] Desc Where 1.0 Is Null Is Null Create Shortestpath((`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})),((_usn3 :`7esn`{@usn6:$`4esn` Ends With .12e12 Ends With 123.654})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)<-[#usn7? *0xabc..12]-(:`3esn`))) Optional Match @usn5=Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))),(@usn6 :_usn4:`2esn`) Using Join On `2esn`,`6esn` Using Scan #usn8:`1esn` Where 5.9e-12[12e-12][$`8esn`] Union Start `1esn`=Node(0) ,_usn3=Node:`8esn`(#usn8='s_str')Where {0} Ends With 0Xa Start `2esn`=Relationship:``(`1esn`=\"d_str\") ,`2esn`=Node( {`6esn`}) Return *,{0}[.1e-1..][_usn4..] As _usn3 Skip ``(Distinct $1000 Is Null,1e-1[$`4esn`])[None(_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3])][[usn1 In \"d_str\" Contains {@usn6} Where 5.9e-12[0x0..]|4.9e12 Ends With $@usn6]]"), + octest_legacy:ct_string("Return Distinct *,.12e-12 Starts With .12e-12 As `5esn`,Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] As #usn8 Load Csv From [usn2 In .12e-12 Ends With `2esn` Where @usn5 In Null|false =~{`8esn`} =~00][Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where Count ( * ) =~123456789 =~{@usn5})..Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)] As #usn8 Union All Merge ((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})) On Create Set `5esn` =0xabc[9.1e-1..],Case When $12[$`6esn`..][01..] Then $`4esn`[$@usn6...12e12] When .9e-12[.12e12..][0Xa..] Then {`7esn`} Is Not Null Is Not Null Else {`6esn`}[6.0e0..9e0][.9e1..12e12] End.#usn8! =(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(:`6esn`{`2esn`:`5esn` Ends With Count(*)})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12}) In Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}) In Single(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str'),Allshortestpaths((`8esn` :@usn6:_usn3)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})).`3esn` ={123456789} Starts With $_usn4 Starts With 0x0 On Create Set `5esn`+=7.0e-0 Is Not Null,Any(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).`3esn`! =_usn4 Is Not Null,`` =9e1 Is Null Is Null"), + octest_legacy:ct_string("Delete $`3esn` =~#usn8 =~0x0,$@usn5[.9e-1],Reduce(`5esn`=.12e12[$usn1..][{@usn6}..],`3esn` In 8.1e1 Contains .9e-1 Contains false|{usn1} Contains {`2esn`}) In {_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7} In All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654) Merge `6esn`=(`4esn` :_usn3)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}) On Create Set @usn5 =Count(*)[$7] On Create Set usn1:`6esn`,{`7esn`:{#usn7}[.12e-12]}.@usn6!.#usn7?.`6esn`! ={12} Contains `8esn` Contains @usn5 Union All With Distinct *,{`1esn`} In 0 As _usn3"), + octest_legacy:ct_string("Load Csv With Headers From (`4esn` :`8esn`{12})<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:`6esn`]-({`6esn`:1000[{`1esn`}..][$`3esn`..]}) =~[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Is Not Null Is Not Null] =~Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true) As _usn4 Fieldterminator 's_str' With Distinct 10.12e12[usn2] As _usn4,$`5esn` =~Count(*) =~1.9e0 As usn1,9e-1 Contains .12e-12 Contains $0 Order By (`1esn` {`2esn`})-[@usn6:`3esn`|`3esn` *0X7..0Xa]->(_usn4 :#usn8:@usn6)[Allshortestpaths((`3esn` :`6esn`{_usn3:.12e-12 Ends With `2esn`,usn1:Null[#usn7..][9.1e-1..]})-[_usn3?:@usn5|:#usn7]->(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]}))][Filter(usn2 In .12e-12 Ends With `2esn` Where 0.12 =~2.9e1 =~9e1)] Desc,usn2[12e-12..{`8esn`}][.12e12..{123456789}] Ascending Skip $`1esn` =~`8esn` Detach Delete $`8esn` Contains _usn4"), + octest_legacy:ct_string("Load Csv With Headers From 1e1 =~{@usn5} =~`7esn` As `7esn` Create ((`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})-[`3esn`?:`1esn`|:`1esn`]-({_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})),(((:`1esn`:``{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]})<-[:#usn8|:``{#usn7:$#usn7}]-(#usn7 $12)-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5))) Match (@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})-[#usn8?*..]-(`` {`6esn`:1000[{`1esn`}..][$`3esn`..]}) Using Index `6esn`:usn1(`3esn`) Using Scan #usn7:`4esn`"), + octest_legacy:ct_string("Foreach(@usn6 In $12 In {usn2}| Return *,$#usn8[$0..`3esn`][1e-1..$7] As `5esn`,(usn1 :usn1{#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[`3esn`?:_usn4|:`1esn`]->(`6esn` :`4esn`:usn2)[Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {@usn6} In 9e12)][(`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})] As #usn7 Skip $`4esn`[$@usn6...12e12] Limit Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]) Unwind .9e-1 Ends With .0e-0 Ends With {_usn3} As `3esn`) Foreach(`6esn` In $`1esn`[$`3esn`..`8esn`]| Return Distinct Shortestpath((`3esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})) Starts With All(_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]) Starts With ({`5esn`:{`8esn`} Starts With .9e-1 Starts With 1000})<-[:`8esn`|:#usn8 *0X7..0Xa]->(`8esn` :`6esn`)<-[?:#usn7|:@usn5 *12]->(`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}) As _usn4,3.9e-1[{@usn6}..][01234567..] Order By 1.9e0 In $@usn6 In $_usn3 Descending) Union All Start `5esn`=Node:`1esn`(`4esn`={@usn5}) Where {`6esn`} =~2.12 =~123.654"), + octest_legacy:ct_string("Create _usn4=Shortestpath(((:`6esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})-[#usn7:`2esn`|`5esn` *1000..]-(`5esn` {`3esn`:$@usn5 Is Null Is Null}))) Delete 9e1 Ends With 9e12 Ends With 0x0"), + octest_legacy:ct_string("Using Periodic Commit 0x0 Load Csv From $@usn5 =~{`3esn`} As `8esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Match ``=Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))),((`4esn` :`8esn`{12})-[_usn3?:@usn5|:#usn7]->(@usn5 {`8esn`:123456789[#usn7..9e-1][10.12e12..{0}],@usn6:1.0 Is Not Null})) Using Join On `1esn`,usn1,`7esn` Using Scan #usn8:_usn3 Where {7}[0x0][1e1] Unwind {`3esn`}[..0xabc][..{`6esn`}] As `7esn` Merge _usn3=((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})) On Create Set `3esn` ={1000}[`2esn`...0e-0][9e-1..0X7] On Create Set `6esn`+=None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12)[Case When .12e12 Is Not Null Then {`6esn`} Starts With .12e-12 When .1e-1 Starts With @usn6 Starts With _usn3 Then $`5esn` Ends With 's_str' Ends With $`6esn` End..][Extract(usn1 In $@usn6 Is Null Is Null Where $999 =~false =~{`8esn`}|$@usn6[``..][3.9e-1..])..],{_usn3:.9e1 Ends With 0x0,_usn3:usn1 Ends With 11.12e-12 Ends With 5.9e-12}.`4esn`? =(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 )[Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..][(#usn8 :`4esn`:usn2)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})..] Union Match (`8esn` :@usn6:_usn3)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})-[`3esn`? *..07]-(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}) Using Index `5esn`:#usn8(_usn3) Where 9e-12 Is Not Null Is Not Null"), + octest_legacy:ct_string("Load Csv With Headers From `6esn` =~999 =~$999 As #usn8 Fieldterminator \"d_str\" Load Csv From 12e12[usn2..$`6esn`] As usn2 Union All With Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]|0e-0[{@usn6}])[Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3))][Case When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] When {123456789} Starts With $_usn4 Starts With 0x0 Then 9e0[`3esn`][0] End] As `3esn`,Extract(#usn8 In 07[..$`5esn`] Where $usn2[..$999][..#usn8]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )])[Case {#usn7}[.12e-12] When $`4esn`[$@usn6...12e12] Then .12e-12[@usn6..'s_str'] Else .12e-12 Starts With .12e-12 End..(`` :``)-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})][Reduce(`5esn`=Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|{usn2}[9e-1])..All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}])] As @usn5,({`7esn`:{`3esn`}[$#usn8..],`4esn`:{`8esn`}[..999][.._usn3]})-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Contains Reduce(``=0xabc Starts With 12 Starts With 0e-0,_usn3 In `8esn`[_usn4]|12.0 Starts With 00) Contains Any(@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null) Skip @usn6 =~Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 1.0 Is Null Is Null) Where #usn7 =~$@usn5 =~{7} Unwind 0X0123456789ABCDEF In false As `6esn` Foreach(@usn6 In Case When .9e1 In .1e-1 Then $7 =~01234567 =~12.0 When {`8esn`} Is Not Null Is Not Null Then $12 =~4.9e12 Else {#usn7}[.12e-12] End[..Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`}))]| With *,Single(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1])[Case When 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Then $#usn8 Is Not Null Is Not Null When \"d_str\" Starts With $`7esn` Starts With 999 Then \"d_str\"[0x0..{@usn6}][$@usn5..0] Else .0e-0[..01234567] End..] Order By {123456789} Starts With $_usn4 Starts With 0x0 Descending,9e-12 Ends With 9e1 Ends With 4.9e12 Ascending,$@usn6[.1e-1][9e12] Asc Unwind .9e0[$#usn8][Count ( * )] As #usn8)"), + octest_legacy:ct_string("Unwind 2.9e1 Ends With `5esn` Ends With 1000 As @usn6 Union With *,@usn5[{`1esn`}..][Count ( * )..] As _usn4,(`8esn` {``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[usn1?{`5esn`:$0 Ends With 9e-12 Ends With $_usn4}]-({`3esn`:`5esn` Ends With Count(*)})-[usn2?:#usn7|:@usn5 *7{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})[(`7esn` :@usn6:_usn3)<-[{@usn5:0.12 =~`6esn` =~.9e-1}]->({_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})..Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 3.9e-1 Starts With .9e0 Starts With {#usn7})][{_usn3:{123456789} Starts With `6esn`}..[`` In `7esn` =~#usn8 =~\"d_str\" Where 9e-12 Ends With 9e1 Ends With 4.9e12|{`1esn`}[{usn2}]]] As `7esn` Order By Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``})[`3esn`(Distinct 0 Starts With `7esn` Starts With 9e0,$`4esn` Is Null Is Null)][`7esn`(Distinct $`4esn` Ends With .12e12 Ends With 123.654)] Desc Limit $@usn5[``..] Where .9e-1 Ends With .0e-0 Ends With {_usn3} Create Unique `5esn`=(:usn1$1000),((usn1 :#usn7:`8esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})) Create Unique usn2=((({`5esn`:`1esn` In 010 In 1e-1})-[_usn3:`6esn`]-(`5esn` :#usn8:@usn6{``:Count(*) Starts With {usn2} Starts With `2esn`,`1esn`:12e12[{`4esn`}..`4esn`][999..{@usn6}]})<-[:``|:`7esn`{@usn6:{#usn8}[..@usn5],@usn6:$1000 Contains $123456789 Contains #usn8}]->(`1esn` :@usn6:_usn3{#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12})))"), + octest_legacy:ct_string("Delete Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where usn2[..$0][..`3esn`]|{0}[`4esn`..{`8esn`}])[Reduce(``=Null,`7esn` In 0.12 Is Not Null|{#usn7} Starts With .1e-1)..][Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1)..],{`6esn`} Starts With 12e12 Starts With {`2esn`} Foreach(usn2 In usn2 Contains `2esn` Contains {1000}| Load Csv From 9e-1 Contains .12e-12 Contains $0 As `6esn` With Distinct 12e12[usn2..$`6esn`] As usn1,0Xa Contains 12e-12,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As #usn7 Order By 9e12 Ends With \"d_str\" Ends With 0X7 Desc Skip {12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1] Where $@usn6 Is Null) Optional Match _usn3=(((`4esn` )-[{#usn7:1e-1[$`4esn`]}]->(`1esn` :`2esn`:`4esn`)-[?:#usn8|:``{usn2:{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],usn1:\"d_str\"[0x0..{@usn6}][$@usn5..0]}]-(:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12}))),`1esn`=Allshortestpaths((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[?$999]-(`4esn` {#usn7:$usn1[0e0...9e-12]})-[:`5esn` *01234567..{`2esn`:{usn1} Contains {`2esn`},#usn7:`4esn`[9e-12..true]}]-(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})) Union All Match #usn7=(`4esn` {#usn7:$usn1[0e0...9e-12]}) Where $`7esn` In $`4esn`"), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv With Headers From 12e12 As `2esn` Fieldterminator 's_str' Start #usn8=Node:_usn4({_usn3}) ,`1esn`=Rel:@usn6(`2esn`='s_str')Where 0[..{0}][..true] Return *,7 Starts With 9e-12 As #usn7,$_usn3 In `2esn` In `3esn`"), + octest_legacy:ct_string("Create Unique usn1=({`1esn`:01 =~{_usn3} =~01,`8esn`:{#usn7} Ends With 999 Ends With 12})-[_usn4]-(#usn8 )-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}) Foreach(_usn4 In 01 Contains 9e-12 Contains $7| Return Distinct Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null As @usn6,Reduce(`7esn`=#usn7 Contains .0e0 Contains $@usn6,`6esn` In 010[{`1esn`}..]|00 Is Not Null Is Not Null)[$7..],$`1esn` Ends With 1000 As _usn3 Order By _usn4 Ends With {`8esn`} Ends With usn2 Asc With Count(*)[@usn5..] As #usn8 Where {_usn3}[{0}...9e-1][9e-1...0e0]) Start _usn3=Rel:`8esn`(usn1={#usn7}) ,`4esn`=Rel:_usn4(@usn5={#usn7})Where 6.0e0 =~12.0 =~9e1 Union All Load Csv With Headers From .9e-12 Contains 9e0 As `5esn` Load Csv From (usn1 :usn1{#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[`3esn`?:_usn4|:`1esn`]->(`6esn` :`4esn`:usn2)[Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {@usn6} In 9e12)][(`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})] As `` Fieldterminator \"d_str\" Union All Merge ((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]})) On Create Set `2esn` ={#usn8} Is Not Null,#usn8+=11.12e-12 Starts With 1.0 Starts With 12.0 On Create Set Reduce(#usn8=2.9e1[2.9e1..][`4esn`..],`7esn` In 0.12 Is Not Null|123456789[_usn4..`1esn`][$`6esn`..{@usn6}]).@usn5 =.0e0 Starts With 1.0 Starts With $12"), + octest_legacy:ct_string("Return `8esn`[11.12e-12...1e-1] As `4esn`,.9e0 Is Not Null,0e0 Ends With {`5esn`} Ends With 10.12e12 Order By Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``})[`3esn`(Distinct 0 Starts With `7esn` Starts With 9e0,$`4esn` Is Null Is Null)][`7esn`(Distinct $`4esn` Ends With .12e12 Ends With 123.654)] Desc Unwind usn2(Distinct $_usn3 =~'s_str' =~12) In (`` :usn1)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}) In Case When {_usn4}[{`6esn`}] Then 12e12 Is Not Null Is Not Null When #usn7 Is Null Is Null Then {`8esn`} Starts With .9e-1 Starts With 1000 End As `1esn` Start usn2=Relationship:#usn8(@usn5={@usn6}) Where $999 =~0e0 =~0X7 Union All Start usn2=Relationship:`8esn`(#usn8='s_str') Union All Remove `4esn`().`6esn`!.#usn7!.`2esn` Load Csv With Headers From 11.12e-12 Starts With 1.0 Starts With 12.0 As #usn8 Fieldterminator \"d_str\" With Distinct *,$usn1[..$999][..0e0] As #usn7,.9e-12[{@usn5}] As `7esn` Order By 01 Ends With .0e0 Ends With 7.0e-0 Asc,Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]) Desc,.0e0[$usn1][0] Desc Skip 12e12[.9e12..07] Limit {`2esn`} Contains 0xabc Where 0X7[#usn7..][$@usn5..]"), + octest_legacy:ct_string("Using Periodic Commit 0x0 Load Csv With Headers From $`3esn` =~0x0 As usn1 Load Csv With Headers From 7 Starts With 9e-12 As @usn6 Fieldterminator 's_str'"), + octest_legacy:ct_string("Return Distinct {`8esn`} In {_usn3} In 6.0e0 As `8esn`,None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null) As _usn3,.1e-1[.9e-1..#usn8][`2esn`..$`7esn`] Order By .1e1 Contains 1e-1 Contains #usn8 Asc,`4esn`($@usn5[.9e-1],00[{1000}]) Ends With Reduce(`7esn`=0.0[00..][0xabc..],usn1 In {#usn7} =~.12e12 =~9e0|10.12e12 In Null In .12e12) Descending,$`5esn` Starts With 1000 Desc Limit {@usn6} =~Count ( * ) =~1.0 Union All Create Unique (#usn7 :`6esn`{usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[`2esn`?:``|:`7esn` *1000..]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})"), + octest_legacy:ct_string("Foreach(`4esn` In 9e-12 Starts With {1000}| Create (((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}))) Create Unique `5esn`=(_usn3 :`1esn`:``),`7esn`=Allshortestpaths((`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})<-[_usn3? *..123456789{`6esn`:.0e-0[..``][..$7],usn2:{usn2} Ends With {@usn6} Ends With 1000}]-(`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(#usn8 :_usn4:`2esn`{`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})))"), + octest_legacy:ct_string("Optional Match (({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 {#usn7:$999 =~false =~{`8esn`}})),(((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}))) Using Scan `4esn`:`1esn` Using Index `6esn`:`8esn`(`3esn`) Where $#usn7[01..2.12][2.12..3.9e-1] Start `6esn`=Node:@usn6(#usn8='s_str') ,usn2=Node:_usn3(`7esn`='s_str') With Distinct *,(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[`3esn` *..0x0]-(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:_usn4|:`1esn` *01]-(`4esn` {`3esn`:{`7esn`} =~\"d_str\" =~{``},`3esn`:{`1esn`} Contains 1.0 Contains 4.9e12}) =~Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 9e12 Is Null Is Null) =~(:@usn5{#usn7:Null,`5esn`:{@usn5} Ends With 0Xa Ends With .12e-12})-[:`3esn`|`3esn` *1000..]-(@usn6 ),(`2esn` :`4esn`:usn2{`8esn`:.9e-1 Contains .9e0 Contains ``,_usn4:8.1e1 Contains .9e-1 Contains false})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Is Null Is Null As `1esn` Skip (#usn8 :`4esn`:usn2)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})[Case When $_usn3[0X0123456789ABCDEF..][0x0..] Then #usn8 =~{@usn5} End..][Reduce(`6esn`=00 Is Not Null Is Not Null,`3esn` In 8.1e1 Contains .9e-1 Contains false|{usn2} In false)..] Limit Case 9e1 In $1000 When 999 Starts With 7.0e-0 Starts With true Then {usn2}[{999}..][9e12..] End[Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End..][Any(`1esn` In $12 In {usn2} Where @usn6[true..])..] Where 0xabc Contains {12} Contains {`6esn`} Union Remove Case $`8esn` Is Null Is Null When {usn1} Contains {`2esn`} Then \"d_str\" In usn2 In $`7esn` Else Null End.`8esn`,@usn5:@usn6:_usn3 Foreach(#usn8 In 0xabc Contains {12} Contains {`6esn`}| Load Csv From {0}[..`3esn`][..\"d_str\"] As `7esn` ) Create (((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))"), + octest_legacy:ct_string("Create Allshortestpaths(((`4esn` :`6esn`)-[`4esn`? *01{#usn8:12.0[..Count ( * )][..@usn6]}]-(usn1 :#usn8:@usn6))) Load Csv From Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..])[..{_usn3:9e0[..{#usn7}][..`4esn`],``:{#usn8} Ends With _usn3 Ends With `2esn`}][..Reduce(usn2=.9e0 Ends With $0,#usn8 In 07[..$`5esn`]|{`7esn`} Is Not Null Is Not Null)] As usn1 Return 1.0 Is Null Is Null,Extract(`1esn` In $12 In {usn2} Where 12e12[{`4esn`}..`4esn`][999..{@usn6}])[None(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}][Reduce(#usn7=12[..$`5esn`],usn1 In $@usn6 Is Null Is Null|12e12 Ends With `5esn` Ends With .0e0)..[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 0.12 Is Not Null]] As `3esn`,All(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) As #usn7 Order By Count ( * ) =~.9e1 =~$#usn8 Ascending,1e-1 Starts With .1e1 Starts With 12.0 Asc,9.1e-1 In 9e1 Ascending Skip 01[{usn2}..][1.9e0..] Limit Case When 9e-12[010..{#usn7}][{123456789}..7] Then $999 =~false =~{`8esn`} When {0}[.0e-0][$`2esn`] Then 12e12 Is Not Null Is Not Null Else false[..usn2][..999] End[Allshortestpaths(((({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(@usn6 :@usn5)-[`2esn`? *7{`5esn`:false[..usn2][..999]}]-(`4esn` :@usn6:_usn3))))..All(usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null)][.9e0..`4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`)] Union All With $123456789[{usn1}][.12e-12] As `3esn`,1.9e0 =~.0e0 =~0X7 As #usn7,9e1 Ends With 9e12 Ends With 0x0 As #usn8 Order By $@usn5 Is Null Is Null Ascending,`1esn` Is Not Null Is Not Null Desc Limit {`8esn`} Ends With true Ends With {`3esn`} Where $usn1[9e1][{999}] Unwind @usn5[#usn7..] As usn1 Create ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})),`6esn`=(usn1 :#usn8:@usn6) Union Unwind Allshortestpaths(((@usn6 :@usn6:_usn3))) Is Null Is Null As `2esn` Start @usn6=Relationship:#usn8(usn2={12}) ,@usn5=Rel:usn2({`1esn`}) Return Distinct 2.9e1 =~{123456789} =~01 As usn1,.9e12 Is Not Null Is Not Null,12e12[usn2..$`6esn`] As usn1 Order By [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..] Asc,Case When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else {123456789} Starts With `6esn` End =~Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where `4esn` Contains 0X0123456789ABCDEF Contains $usn2) =~Allshortestpaths((`7esn` :``{usn2:$7})) Descending Skip Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End In (:usn1)<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}) In [_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|usn2 Ends With $123456789 Ends With {999}] Limit $`6esn`[$_usn3..{1000}]"), + octest_legacy:ct_string("Unwind $0 Contains $123456789 Contains {`3esn`} As @usn5 Create Unique (:_usn3{@usn5:`2esn`[`7esn`][1000]}),_usn4=((_usn3 :`6esn`)<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})) Start `5esn`=Node:usn2(_usn4='s_str') Union All Optional Match Allshortestpaths(((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[_usn3?:`7esn`|usn1]-(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[usn2 *7]-(`8esn` :#usn7:`8esn`))),({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Foreach(`3esn` In $7| With Distinct $`8esn` Is Not Null Is Not Null As _usn3 Order By Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Descending,\"d_str\" In 7.0e-0 Desc Skip Reduce(_usn3=7.0e-0[$`6esn`..],`7esn` In 0.12 Is Not Null|false Starts With 0 Starts With 2.9e1) =~Case $`3esn` =~0x0 When $12[$@usn5] Then 11.12e-12 In {usn1} When 4.9e12[{_usn4}..] Then $@usn5 Contains _usn3 Else .12e-12 Starts With .12e-12 End =~Reduce(_usn4=_usn4 Is Not Null Is Not Null,`2esn` In $@usn5 Is Not Null Is Not Null|7.0e-0 Is Not Null) Limit {_usn3:.0e-0[..``][..$7]}[..(`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`)][..@usn5] Load Csv With Headers From {`1esn`} Is Null As @usn6 Fieldterminator \"d_str\") Match `5esn`=Shortestpath((`5esn` :``{_usn3:$_usn4[..$999],`7esn`:0X0123456789ABCDEF Ends With {1000}})-[*{@usn5:`6esn` =~999 =~$999}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})),`1esn`=Allshortestpaths(((:usn1{`6esn`:$_usn3[usn2..][usn1..],#usn7:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}))) Using Join On `6esn`,``,usn2 Using Join On @usn5,`5esn` Where .12e12[$usn1..][{@usn6}..] Union Return Distinct `4esn`[12.0..][9.1e-1..] As `4esn`,true In 0.0 As `5esn` Order By $`5esn` Is Not Null Asc,3.9e-1[..$1000][..0.12] Asc,Null Ends With `4esn` Ends With `3esn` Descending Skip $`6esn` Contains All(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) Limit $123456789 =~1e-1"), + octest_legacy:ct_string("Start ``=Node:_usn3(@usn5={`3esn`}) Where {#usn7} Ends With 999 Ends With 12 Return Distinct false Contains {`7esn`},{0} Is Not Null As `` Skip ({`7esn`:$usn1 =~.0e0 =~{`4esn`},`3esn`:usn2 Contains `2esn` Contains {1000}})<-[?:``|:`7esn`{@usn6:12e12[{`4esn`}..`4esn`][999..{@usn6}]}]->(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})[None(usn1 In \"d_str\" Contains {@usn6} Where $`5esn` =~Count(*) =~1.9e0)..][Reduce(`5esn`=@usn6[0x0..][$_usn4..],usn2 In .12e-12 Ends With `2esn`|.12e12 Is Not Null)..] Foreach(`8esn` In 0.12 In $`4esn` In $`3esn`| Unwind {@usn6} =~Count ( * ) =~1.0 As `4esn` Load Csv With Headers From 0[..{#usn7}][..$_usn3] As `7esn` Fieldterminator 's_str') Union All Delete 2.9e1 =~Count(*) =~{123456789},Any(`1esn` In $12 In {usn2} Where @usn6[true..]) Contains Any(usn2 In .12e-12 Ends With `2esn` Where 9e12 Ends With 9e-1 Ends With 9e1) Contains (`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3),`3esn` Is Null Create Shortestpath(((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999}))),_usn3=(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}) Load Csv With Headers From $`1esn`[4.9e12..][_usn3..] As `2esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Create Unique ((`4esn` :#usn7:`8esn`)<-[:`8esn`|:#usn8{_usn4:$#usn7 Ends With {`5esn`} Ends With 01}]-({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[usn1:#usn7|:@usn5 *999..123456789]->(`5esn` :``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})),(`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})"), + octest_legacy:ct_string("Foreach(`5esn` In #usn8(Distinct 12e12[{`4esn`}..`4esn`][999..{@usn6}])[Any(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1])..{``:9e1[0.0]}]| Detach Delete 9e1 =~123456789 =~{`6esn`},6.0e0[None(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0)..][[_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]]..] Remove usn2:``) Union All Return Distinct 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Skip {usn1:$1000 Is Null}[Shortestpath((:usn1$1000))..][Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true)..]"), + octest_legacy:ct_string("Remove None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0[..{#usn7}][..$_usn3])._usn3._usn4!.`5esn`"), + octest_legacy:ct_string("Delete 5.9e-12 =~.9e-1 =~@usn6 Union All Unwind `4esn` =~010 As `` Remove ({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000})<-[`5esn` *01]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}).#usn7!,All(usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]).`8esn`!,`7esn`:usn2 Union Return Distinct `4esn`[..7][..$usn2] As #usn8,Reduce(@usn5=`1esn` In 010 In 1e-1,`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1 Contains $@usn6)[All(usn1 In {#usn7} =~.12e12 =~9e0 Where $7)][`8esn`(.1e-1[2.9e1..][$`7esn`..])] Skip `5esn` Is Not Null Is Not Null"), + octest_legacy:ct_string("Foreach(`3esn` In {999} Contains $12 Contains 00| Create Allshortestpaths(((`` :``)<-[`6esn`?:@usn6|:`4esn` *12{`6esn`:{12} Starts With $`` Starts With 0X0123456789ABCDEF,@usn6:0 Starts With `7esn` Starts With 9e0}]->(`2esn` :`4esn`:usn2{`8esn`:.9e-1 Contains .9e0 Contains ``,_usn4:8.1e1 Contains .9e-1 Contains false})))) Remove (#usn8 :@usn5{`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[`2esn`?:``|:`7esn` *1000..]-(:_usn3{@usn5:`2esn`[`7esn`][1000]}).`4esn`! Load Csv With Headers From $`3esn` =~0x0 As usn1 Union Detach Delete {#usn8}[0..],6.0e0 In 9e-1 In 123456789,$`6esn` =~$#usn7 =~$`4esn` Optional Match Allshortestpaths(((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))) Using Join On @usn5,`1esn` Using Join On `3esn`,`` Where 12.0[..Count ( * )][..@usn6]"), + octest_legacy:ct_string("Unwind 123456789 =~true As `1esn` Unwind {#usn7}[.12e-12] As `5esn` Union Create Unique `7esn`=(((:`3esn`{usn2:01234567[10.12e12][0Xa]})-[_usn3?{`8esn`:{usn2} Is Not Null Is Not Null}]->({`7esn`:.9e12 Is Not Null Is Not Null})-[#usn8?:`4esn`|:`2esn` *7{`6esn`:{0} Ends With 0Xa,usn1:.9e1 Is Null Is Null}]->({`1esn`:01 =~{_usn3} =~01,`8esn`:{#usn7} Ends With 999 Ends With 12}))) Start usn2=Relationship:_usn3(\"d_str\") "), + octest_legacy:ct_string("Create Unique (`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`}),`5esn`=(:``{usn1:`4esn` Is Not Null})-[ *01{usn1:false[..usn2][..999]}]-(_usn3 ) With 9e-1 Contains .12e-12 Contains $0 As `8esn` Skip \"d_str\" Is Not Null Is Not Null Where @usn5 Ends With $`8esn` Ends With $1000 Start usn2=Node(07,0Xa) Union Load Csv With Headers From 0Xa In 1.0 In $@usn5 As @usn5 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Create `7esn`=(((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))),@usn5=Allshortestpaths(((`8esn` :`8esn`)<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})))"), + octest_legacy:ct_string("Detach Delete {_usn4} In 0X7 In 0e0 With *,$999 =~0e0 =~0X7 As `1esn` Skip {7} Is Not Null"), + octest_legacy:ct_string("Load Csv From ({`4esn`:#usn8[\"d_str\"..usn2],`1esn`:12.0[..Count ( * )][..@usn6]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ) =~Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End =~{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} As #usn7 Fieldterminator \"d_str\" Create Unique ((`` :`4esn`:usn2)) Union All Start `7esn`=Node:usn2({`1esn`}) ,usn2=Rel:``(_usn3='s_str')Where 10.12e12[usn2] Union Remove `2esn`:`2esn`:`4esn`,Single(usn1 In {#usn7} =~.12e12 =~9e0 Where {1000} Starts With 10.12e12 Starts With .0e-0).usn2 Start `3esn`=Node(0xabc,7,0Xa,01234567) Where $`8esn` Is Not Null Is Not Null"), + octest_legacy:ct_string("Match `6esn`=(:`3esn`{@usn5:9e12[..usn2][.._usn3]}) Using Scan `5esn`:usn1 Using Join On `5esn`,usn1,`7esn` Where $@usn5 Contains _usn3 Union All Create #usn8=(#usn7 {#usn7:.0e-0[..01234567],#usn7:{1000}[0..]}),((:`1esn`:``{`7esn`:`5esn` Contains 0 Contains $12,`2esn`:.9e12[6.0e0..][@usn5..]})<-[_usn3?:`5esn`*..]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}))"), + octest_legacy:ct_string("Foreach(`5esn` In true[..{`2esn`}]| Start `1esn`=Rel:``({`4esn`}) ,`4esn`=Node:@usn6(\"d_str\")) Merge ((:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]})-[``:usn1|usn2{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]}]-(`7esn` {@usn5:Count ( * )[_usn4..]})-[usn2:_usn3 *0xabc..12]->(:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})) On Create Set _usn4+=123456789[_usn4..`1esn`][$`6esn`..{@usn6}],#usn7+=1.9e0[..1.0][..`6esn`] Create Allshortestpaths((((@usn6 :`5esn`:`7esn`)-[`8esn`{#usn8:.12e12[..7]}]-({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})))) Union All Delete Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) Contains `5esn`(`3esn` Starts With 9.1e-1 Starts With .9e-1,.12e-12 Ends With `2esn`) Contains {`2esn`:999 Ends With {#usn8}},$#usn7[$``..999][$usn2..$usn2] Optional Match ((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})) Using Index `6esn`:`3esn`(``) Using Index `8esn`:@usn5(usn1) Union All Create ((#usn7 :@usn6:_usn3)-[:`6esn` *12{#usn7:`3esn` =~$#usn7,`8esn`:0e-0[{@usn6}]}]->(@usn5 :@usn6:_usn3)),_usn4=((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})) Load Csv With Headers From {#usn8} In {12} In .9e12 As `5esn` Fieldterminator \"d_str\" Remove (:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})<-[#usn7?]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]}).`6esn`"), + octest_legacy:ct_string("Using Periodic Commit Load Csv From Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..])[..{_usn3:9e0[..{#usn7}][..`4esn`],``:{#usn8} Ends With _usn3 Ends With `2esn`}][..Reduce(usn2=.9e0 Ends With $0,#usn8 In 07[..$`5esn`]|{`7esn`} Is Not Null Is Not Null)] As usn1 "), + octest_legacy:ct_string("Create Unique @usn5=Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))),usn1=Allshortestpaths(((:`4esn`:usn2{usn2:$usn2 Ends With 00 Ends With 9e12,_usn4:{`5esn`}})-[?:``|:`7esn` *12{#usn8:10.12e12 Contains .9e0,usn1:0xabc Contains {12} Contains {`6esn`}}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))) Unwind [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End As #usn8 Union All Remove Shortestpath(((:usn1{#usn8:2.9e1[{`2esn`}]})<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``))).@usn5?._usn4,Allshortestpaths(({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})<-[`8esn`*]-(@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})).`5esn`!,Shortestpath(((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}))).`5esn`?._usn3? Create Allshortestpaths(({`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]})),((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})) Merge #usn8=(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]}) On Match Set _usn3+=0X7 Contains $12 Contains 0e0,`7esn`+=.9e1 In {#usn7} In .9e-12 On Create Set ``(Distinct .12e12 Starts With 5.9e-12 Starts With `4esn`,1000[{123456789}][usn1]).`2esn`?.@usn6!.#usn8! =5.9e-12 Is Null Is Null"), + octest_legacy:ct_string("Delete 9e0[`4esn`..$_usn4][9.1e-1..0e0],Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null)[#usn7(`1esn`[..$1000])..][Reduce(`5esn`=$@usn5 =~{`3esn`},`1esn` In $12 In {usn2}|$`5esn` Ends With 's_str' Ends With $`6esn`)..],1e-1[$#usn8] Union Create (#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null}) Create `5esn`=Allshortestpaths((({`6esn`:8.1e1 Contains .9e-1 Contains false}))) Match _usn4=Shortestpath((_usn4 {`3esn`:.0e-0 In 12}))"), + octest_legacy:ct_string("Foreach(@usn5 In 0e0 Ends With .9e0 Ends With 01234567| Optional Match `5esn`=Allshortestpaths(((#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]}))) Using Index @usn5:`5esn`(usn2) Load Csv With Headers From (:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]-(:_usn3{_usn3:010[..9e-1][..0X7]}) Starts With Case When $1000 Starts With {@usn6} Starts With $@usn5 Then `2esn` When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else 12[4.9e12..] End Starts With (_usn4 {`3esn`:.0e-0 In 12})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc}) As @usn5 ) Optional Match _usn3=(({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})),#usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2)))) Detach Delete Single(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`)[Case When $999 Is Not Null Then {`3esn`} =~$@usn5 =~`2esn` Else .12e-12 Ends With `2esn` End][[`2esn` In $@usn5 Is Not Null Is Not Null Where $1000[..0e-0][..010]|00[$``]]],[`` In `7esn` =~#usn8 =~\"d_str\"|$_usn4 Ends With {#usn8}][Single(`7esn` In 0.12 Is Not Null Where 4.9e12 Starts With {``})..],`6esn`[3.9e-1..`8esn`][12.0..0.0]"), + octest_legacy:ct_string("Remove Case 0X0123456789ABCDEF Is Not Null Is Not Null When .0e-0[..01234567] Then $#usn7 Starts With $123456789 When $`4esn` Ends With .12e12 Ends With 123.654 Then {`5esn`}[.1e-1..1e-1][999..{_usn3}] Else .9e1 Is Null Is Null End.`5esn`.@usn6"), + octest_legacy:ct_string("Foreach(@usn5 In $`` Ends With 1e-1 Ends With $@usn6| Return *,_usn4[{``}..{`6esn`}][$7..$_usn3] Order By 9e0 Ends With {7} Desc,`4esn` =~_usn4 =~0e-0 Descending)"), + octest_legacy:ct_string("Merge Allshortestpaths(({#usn8:_usn4[$_usn4]})<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})-[ *7{`4esn`:9e-12 Starts With {1000},`2esn`:4.9e12 Ends With $@usn6}]-({`3esn`:`5esn` Ends With Count(*)})) On Match Set `7esn` ={@usn6:0.12 Is Not Null} Is Not Null,`3esn`+=Any(`7esn` In 0.12 Is Not Null Where $0 Contains $7) Is Not Null Is Not Null On Match Set `4esn` =Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 7 In 1e1 In {``})[Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..])..@usn6(0xabc[..Count(*)][..$`5esn`])][$`6esn`..{#usn7:00 =~`4esn` =~.9e-12}] Load Csv From Allshortestpaths(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0}))[Reduce(@usn6=10.12e12 Starts With $`4esn` Starts With 0e0,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$1000 Contains $123456789 Contains #usn8)..Case 7[..123456789][..true] When $1000[..0e-0][..010] Then 999 Starts With 7.0e-0 Starts With true End][[`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]]..Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When 0.12[Count ( * )..Count ( * )][$999..`5esn`] Then $123456789[..$999][..`6esn`] Else 7[{`4esn`}..] End] As @usn5 Fieldterminator \"d_str\" Union Return Distinct .0e-0[010..] As `3esn` Order By Filter(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}]) Starts With Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3)) Starts With {@usn5:$123456789 Is Not Null Is Not Null} Asc,11.12e-12 Ends With 's_str' Desc,`2esn` Ascending With Distinct {#usn7:2.12[`4esn`][.9e-1],`1esn`:#usn7[123.654][{12}]}[{#usn7:01 Contains 9e-12 Contains $7}..][9e1..],{`5esn`:$`6esn`[@usn6...9e-12]}[{usn1:$_usn3[0x0][{0}]}..Filter(_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`])][Case When .12e12 Ends With 07 Ends With 3.9e-1 Then 01234567[\"d_str\"..][$`4esn`..] End..Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End] As `5esn`,Case Count ( * ) =~123456789 =~{@usn5} When 0[10.12e12] Then 12.0 Starts With 00 Else 2.9e1 In {``} End[..Case $`8esn`[0x0][.9e0] When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null Else $usn1 =~.0e0 =~{`4esn`} End][..Extract(#usn8 In 07[..$`5esn`] Where 07[{@usn5}..]|9e-1 Contains 3.9e-1)] As @usn5 Order By 01[$`1esn`..$`7esn`][{usn2}..12.0] Ascending Where $@usn6 Is Null Is Null Union All Load Csv With Headers From 1000 As #usn8 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Delete Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null,`1esn`[..$1000],.1e1 Is Not Null Is Not Null With Distinct *,$`4esn`[#usn7][8.1e1] As `2esn` Skip .1e1 Contains 1e-1 Contains #usn8 Limit 9e1 Ends With `7esn` Ends With 2.12 Where .1e1 Is Not Null Is Not Null Create Unique Shortestpath(((:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(`3esn` $0)<-[`7esn`:#usn8|:`` *01234567..{`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7}]-(#usn8 :usn2)))"), + octest_legacy:ct_string("Load Csv From Filter(usn1 In $@usn6 Is Null Is Null Where {`3esn`}[#usn7]) Is Null Is Null As _usn4 Fieldterminator 's_str' Create _usn3=Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)),Allshortestpaths((`6esn` :`4esn`:usn2)-[? *0Xa..12{`4esn`:9e-12[$7..]}]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0})) Union Optional Match (`6esn` :`2esn`:`4esn`{`4esn`:9e-1 Is Not Null,`8esn`:9e0[`7esn`..][#usn8..]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(:_usn4:`2esn`) Using Join On @usn5 Where {`3esn`}[$#usn8..] Start ``=Node( {#usn7}) Start #usn8=Node(7,0X7,0,01) ,`4esn`=Rel:`2esn`({_usn3})Where $@usn5 Starts With #usn7 Union Load Csv From Case When {0} Is Null Is Null Then $``[1.0..][_usn3..] Else 999[..$@usn5][..``] End In Case .9e0 =~#usn7 When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 When 0e0 Contains {`2esn`} Then {1000}[0..] Else 2.9e1 Ends With `5esn` Ends With 1000 End In (#usn7 :@usn5)<-[?*{_usn4:{`4esn`} In 1000 In {@usn5}}]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}) As #usn8 Fieldterminator 's_str'"), + octest_legacy:ct_string("Merge `5esn`=((`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})-[ *..123456789{@usn5:1e-1[$`4esn`]}]->(#usn7 {usn1:2.12[{12}]})<-[`3esn`?*{`7esn`:.9e12 Contains 0 Contains $0}]->(:@usn5{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]})) On Create Set (`4esn` {@usn5:5.9e-12[12e-12][$`8esn`],`5esn`:{123456789} Contains $0})-[_usn4*{`3esn`:{``} Is Null Is Null}]-({`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})<-[#usn7?]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]}).`3esn`!.`2esn`! ={_usn4} Starts With `2esn`(Distinct .1e-1[..$_usn3][..0]) Starts With #usn7(Distinct usn1 =~false =~{999},{`3esn`} =~$@usn5 =~`2esn`),Reduce(``=0.12[Count ( * )..Count ( * )][$999..`5esn`],usn1 In $@usn6 Is Null Is Null|$`3esn` =~#usn8 =~0x0).#usn8?._usn4 =9e0[`4esn`..$_usn4][9.1e-1..0e0],Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0X0123456789ABCDEF Ends With {1000})._usn4? =(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})<-[:``|:`7esn`{@usn6:{#usn8}[..@usn5],@usn6:$1000 Contains $123456789 Contains #usn8}]->(`8esn` :`7esn`) Is Null Is Null Union All Delete (`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End],{usn1:12[..$`5esn`]}[None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..])] Foreach(usn1 In Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999|{`6esn`} Starts With {`5esn`} Starts With 2.9e1) Is Not Null Is Not Null| Load Csv From [`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null] =~`6esn`(Distinct 2.9e1[Count ( * )..]) As _usn4 Fieldterminator \"d_str\" Create _usn3=Allshortestpaths(((#usn8 :usn2)<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))),_usn3=Shortestpath(((_usn4 {#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12})))) Start `8esn`=Node( {`4esn`}) ,`4esn`=Node:`2esn`(`7esn`=\"d_str\")Where $`3esn` =~0x0 Union Foreach(_usn3 In 11.12e-12 =~Count ( * )| Load Csv With Headers From #usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) As `1esn` Fieldterminator \"d_str\" Load Csv With Headers From 1000[{123456789}][usn1] As `2esn` ) Start @usn5=Node:_usn4({_usn3}) ,`3esn`=Node(0xabc,7,0Xa,01234567)Where {123456789} Contains $0"), + octest_legacy:ct_string("Merge (_usn3 {#usn7:$999 =~false =~{`8esn`}})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})"), + octest_legacy:ct_string("Remove Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When $1000[_usn4][{@usn5}] Then 4.9e12[{_usn4}..] End.@usn6?.#usn8! Delete {`2esn`} Is Null Union All Return Distinct *,(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})<-[?{#usn7:`2esn`,`7esn`:$@usn5 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}) In Reduce(usn1={123456789} Ends With 11.12e-12 Ends With 00,`8esn` In {_usn4} Ends With {0} Ends With `1esn`|`4esn` Is Not Null) In All(`1esn` In $12 In {usn2} Where $`8esn` Is Not Null Is Not Null) As `6esn`,$`` Starts With $`4esn` Starts With `3esn` Skip .1e1 Is Null Is Null Limit 0.0 In .0e-0 Create (`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})))"), + octest_legacy:ct_string("Delete Reduce(`1esn`={`5esn`}[01234567..][5.9e-12..],usn1 In {#usn7} =~.12e12 =~9e0|$`6esn`[..01][..{_usn3}]) Ends With (`2esn` :usn1)<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-(_usn3 :`1esn`:``) Ends With {usn1:{12}[6.0e0..{usn2}][{_usn3}..{#usn7}]},6.0e0[$12..0.12],$`3esn` In 01 In Count ( * ) Merge Shortestpath(((:@usn5{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null}))) Union All Detach Delete 0e-0 In 0X0123456789ABCDEF In `3esn`,true[..{`2esn`}],`4esn` =~010 Union All Remove {@usn6:$`` =~.1e-1}.``?.@usn5?.`8esn`,$7.@usn6.`1esn`"), + octest_legacy:ct_string("Create Unique ((`5esn` {usn1:01234567[10.12e12][0Xa]})-[ *..123456789{@usn5:1e-1[$`4esn`]}]->(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(_usn4 :`1esn`:``{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}))"), + octest_legacy:ct_string("Foreach(`` In Reduce(@usn6=0X0123456789ABCDEF Ends With {1000},usn1 In $@usn6 Is Null Is Null|.0e0 =~0 =~.0e0) Starts With None(`6esn` In 010[{`1esn`}..] Where _usn4 Ends With {`8esn`} Ends With usn2) Starts With Case When 01234567 Ends With .0e0 Ends With 12e12 Then @usn6 Starts With #usn7 Else .12e12 Ends With 07 Ends With 3.9e-1 End| Unwind {`8esn`:$#usn7} =~All(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) As `4esn`) Return 00[..@usn6] As `6esn`,{`3esn`}[...1e1][..0],Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null As `2esn` Skip $usn2 Ends With 9e12 Ends With Count ( * ) Limit 0xabc Starts With {`3esn`} Starts With {``}"), + octest_legacy:ct_string("Start _usn4=Relationship:usn2({usn1}) ,_usn4=Relationship:`4esn`(\"d_str\") Union All Start @usn5=Relationship:_usn3({`7esn`}) Where `5esn` Ends With Count(*) Union All Load Csv From [@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null] Starts With Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789) Starts With All(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0) As _usn4 Fieldterminator 's_str' Unwind 0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}] As `6esn` Load Csv With Headers From $`5esn` Is Null As `` Fieldterminator 's_str'"), + octest_legacy:ct_string("Start `4esn`=Rel:#usn8(usn2='s_str') ,_usn4=Relationship( {@usn5}) Union Load Csv With Headers From 9e-1 Is Not Null As `1esn` Fieldterminator 's_str' Union Foreach(`2esn` In $#usn8[$0..`3esn`][1e-1..$7]| Return Distinct {0}[`4esn`..{`8esn`}] As `2esn`,$`3esn` =~$123456789 =~`3esn` As `2esn` Limit `7esn`[$1000..$usn1][12..$`1esn`])"), + octest_legacy:ct_string("Return Distinct .9e12 Is Not Null Is Not Null,Shortestpath((:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})) Starts With {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF} Starts With Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})),.9e12 Contains 0 Contains $0 As #usn7 Order By .0e-0 Ends With $`2esn` Ends With `5esn` Descending Limit 12e-12 =~$_usn3 Union All Create `3esn`=(_usn4 ),((usn1 )<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})) Unwind 0.0[`7esn`] As ``"), + octest_legacy:ct_string("Using Periodic Commit 0 Load Csv From Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) Ends With `2esn` As @usn5 "), + octest_legacy:ct_string("Create Unique ``=({`4esn`:{7}[0x0][1e1]})-[:`8esn`|:#usn8 *01]-(usn2 :`2esn`:`4esn`)-[$#usn8]->({usn2:01[`4esn`..]}),#usn7=(((:`3esn`)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))) Create `5esn`=Shortestpath(((@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))),@usn6=Allshortestpaths(((#usn7 {`2esn`:`8esn`[.12e12..],_usn3:usn1 =~0Xa =~0}))) Optional Match (((`8esn` :`5esn`:`7esn`{usn1:{``} Contains 0.0 Contains `4esn`})-[`2esn`?:`4esn`|:`2esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]->(@usn5 {`8esn`:123456789[#usn7..9e-1][10.12e12..{0}],@usn6:1.0 Is Not Null})-[#usn8?:usn2*..]->(:``{usn2:00 Is Not Null Is Not Null}))) Using Join On #usn8,_usn3,`6esn` Using Join On `1esn`,usn1,`7esn`"), + octest_legacy:ct_string("Create `1esn`=Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))),usn2=((:`7esn`{`4esn`:@usn5 =~$#usn7 =~{usn1}})-[`8esn`{#usn8:.12e12[..7]}]-({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`1esn`? *0{@usn6:true Is Null}]-(_usn4 ))"), + octest_legacy:ct_string("Optional Match `2esn`=(:_usn3{usn2:6.0e0[$12..0.12],#usn7:`2esn`})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Using Join On @usn5,_usn4 Using Join On `1esn`,usn1,`7esn` Where .9e12 Contains 0 Contains $0"), + octest_legacy:ct_string("Load Csv With Headers From $`4esn`[...0e-0] As `8esn` Detach Delete {`5esn`},None(@usn6 In 9e12[..usn2][.._usn3] Where $7) Is Not Null Is Not Null,$``[9e0..][5.9e-12..] Remove Allshortestpaths((({`6esn`:3.9e-1[..$1000][..0.12]})-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-(:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00}))).`2esn`.#usn8"), + octest_legacy:ct_string("Using Periodic Commit 0X7 Load Csv From 8.1e1['s_str'..] As #usn7 Fieldterminator 's_str'"), + octest_legacy:ct_string("Merge ``=(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}) On Match Set None(usn2 In .12e-12 Ends With `2esn` Where {``} Is Null Is Null).`6esn` =1e-1 Starts With .1e1 Starts With 12.0,Case {1000} Starts With {`1esn`} When {`4esn`} Ends With Count(*) Then {0} In {`1esn`} When {`3esn`}[#usn7] Then 2.12[`4esn`][.9e-1] End.@usn5!.@usn6! ={`8esn`:`1esn` In 6.0e0 In 12} =~Case 7 Starts With 9e-12 When .9e12 Is Not Null Is Not Null Then 1000[{`1esn`}..][$`3esn`..] Else {`6esn`}[6.0e0..9e0][.9e1..12e12] End On Create Set (:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}).usn2 =Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] Unwind usn2({`6esn`} In .0e0 In $0,0X0123456789ABCDEF Is Not Null Is Not Null) Ends With [`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 1.9e0[.12e-12][9e-12]|{`6esn`}[6.0e0..9e0][.9e1..12e12]] As `8esn` Foreach(_usn3 In Case When 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Then $#usn8 Is Not Null Is Not Null When \"d_str\" Starts With $`7esn` Starts With 999 Then \"d_str\"[0x0..{@usn6}][$@usn5..0] Else .0e-0[..01234567] End =~`6esn`(Distinct 2.9e1[Count ( * )..]) =~Allshortestpaths((`` :`4esn`:usn2)-[? *..123456789{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]}))| Return Distinct {`8esn`} Ends With true Ends With {`3esn`} As `1esn`,#usn8[$`2esn`] As _usn4,@usn5[@usn6] Order By 5.9e-12 =~01234567 =~$`3esn` Desc,\"d_str\" Starts With .1e-1 Asc Limit $`5esn` In `` Create Allshortestpaths((((:`7esn`{usn2:00 Is Not Null Is Not Null})<-[`8esn`? *..123456789{@usn6:5.9e-12[\"d_str\"..][{`6esn`}..],`7esn`:{@usn5}[10.12e12..]}]->(:`3esn`{usn2:01234567[10.12e12][0Xa]})<-[ *1000..{`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]->(`` )))),usn1=((`4esn` :_usn4:`2esn`{#usn8:\"d_str\" Contains {@usn6}})<-[?{@usn5:@usn6[999][1000]}]->(`1esn` )))"), + octest_legacy:ct_string("Merge `1esn`=Allshortestpaths((((`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})-[`8esn`:`4esn`|:`2esn`]->(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})))) On Match Set {usn1:1.0 Is Not Null}.usn1? ={123456789} Contains $0,usn1+=01 Is Not Null,usn1 ={999} =~$`6esn` =~$`6esn` Optional Match ((:``{usn1:`4esn` Is Not Null})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})) Using Join On usn1,_usn4,`1esn` Where 7.0e-0[$`6esn`..] Union All With Distinct 0.0[$`4esn`] As `4esn` Order By 9e1 Ends With `7esn` Ends With 2.12 Descending,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null Asc,{0} =~{999} Desc Skip 6.0e0[None(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0)..][[_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]]..] Limit [usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]] Merge _usn4=((#usn7 :@usn6:_usn3{``:9e1[0.0]})) On Match Set `6esn`+=$_usn3[0X0123456789ABCDEF..][0x0..],_usn3 =[usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]|{12} Contains `8esn` Contains @usn5] Contains Shortestpath(((({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(@usn6 :@usn5)-[`2esn`? *7{`5esn`:false[..usn2][..999]}]-(`4esn` :@usn6:_usn3)))) Contains (:usn1{#usn8:$`8esn` Is Not Null Is Not Null,`5esn`:3.9e-1 Starts With .9e0 Starts With {#usn7}})-[:#usn8|:`` *..07{@usn5:01234567[\"d_str\"..][$`4esn`..],`6esn`:$usn1 Ends With {`2esn`} Ends With $usn1}]-(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[? *0X7..0Xa]->(`1esn` ),[`` In `7esn` =~#usn8 =~\"d_str\" Where .9e-1 Ends With .0e-0 Ends With {_usn3}|00 =~`4esn` =~.9e-12].`6esn`!.`7esn` =Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 10.12e12[usn2]|usn1 Ends With 11.12e-12 Ends With 5.9e-12)[Reduce(usn1={usn1} Is Not Null,usn1 In \"d_str\" Contains {@usn6}|{`3esn`} =~$`` =~$`8esn`)..Single(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)][[usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 00 =~`4esn` =~.9e-12]..Single(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12)] Load Csv From 0x0 Contains 7.0e-0 As @usn5 Fieldterminator \"d_str\" Union All Foreach(`` In Shortestpath(((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(_usn3 :usn1)))[..{_usn4:.9e-1 Ends With .0e-0 Ends With {_usn3},_usn4:9e1 Ends With 9e12 Ends With 0x0}][..Reduce(#usn8=`8esn`[_usn4],`1esn` In $12 In {usn2}|$`4esn` Is Not Null)]| Start #usn7=Relationship:#usn8(usn2={12}) Where 01234567 Ends With .0e0 Ends With 12e12 Unwind `6esn`[0X0123456789ABCDEF..][`8esn`..] As _usn4) Merge ((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})) On Create Set Case When 01234567 Ends With .0e0 Ends With 12e12 Then 00[$``] End.`1esn` ={1000} Ends With .12e12 Ends With 010 Optional Match `6esn`=((`3esn` :#usn8:@usn6)) Using Join On `6esn`,`1esn`"), + octest_legacy:ct_string("Start `3esn`=Rel:`7esn`(`8esn`={`3esn`}) ,`2esn`=Relationship:@usn5({`4esn`}) Merge ((`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})-[`3esn`?:`1esn`|:`1esn`]-({_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})) Union All Create `1esn`=Allshortestpaths(((:usn1{`6esn`:$_usn3[usn2..][usn1..],#usn7:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}))),Allshortestpaths((`6esn` :`4esn`:usn2)-[? *0Xa..12{`4esn`:9e-12[$7..]}]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0})) Unwind {@usn5} As _usn4 Return [`1esn` In $12 In {usn2} Where 12e-12 Starts With $`7esn`][{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}..] As #usn7,Case When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else {123456789} Starts With `6esn` End =~Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where `4esn` Contains 0X0123456789ABCDEF Contains $usn2) =~Allshortestpaths((`7esn` :``{usn2:$7})),Allshortestpaths((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) In Extract(#usn7 In .0e-0 In 12 Where {#usn8}[..@usn5]) In [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 10.12e12[usn2]|{1000} Starts With 10.12e12 Starts With .0e-0] Order By {999} =~$`6esn` =~$`6esn` Desc,[@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End Descending Skip .1e1 Is Null Is Null Limit 9e-12[$7..]"), + octest_legacy:ct_string("Start #usn7=Node:`5esn`({999}) ,`8esn`=Node( {`4esn`})Where $12 =~4.9e12"), + octest_legacy:ct_string("Create Unique Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]}))) Return Distinct 12.0 =~{@usn6} As _usn3,$_usn4 =~$#usn8 =~{`4esn`},$`1esn` Ends With 1000 As `3esn` Skip {`8esn`}[9e12..][{_usn4}..] Limit 0.0 Starts With 0X0123456789ABCDEF Remove Reduce(`4esn`=Count(*) =~01234567 =~.1e-1,#usn7 In .0e-0 In 12|#usn8[\"d_str\"..usn2]).`2esn`?.`3esn` Union Foreach(`7esn` In 1e1[$_usn3]| Remove _usn3:usn2,Reduce(``=true In 0.0,`1esn` In $12 In {usn2}|9e0[..{#usn7}][..`4esn`]).`6esn`! Return *,$@usn6 Ends With 123456789 Ends With $`` As `5esn`,`3esn` Starts With 9.1e-1 Starts With .9e-1 As @usn5 Order By {7}[$@usn5..123456789][1e1..1.9e0] Ascending,Reduce(`7esn`=#usn7 Contains .0e0 Contains $@usn6,`6esn` In 010[{`1esn`}..]|00 Is Not Null Is Not Null)[$7..] Descending Skip Count ( * ) Is Not Null Is Not Null) Load Csv From {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null) As @usn6 Merge #usn8=((:@usn6:_usn3{``:{@usn5}[10.12e12..]})-[:`2esn`|`5esn` *01]-(@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(:@usn5{#usn7:Null,`5esn`:{@usn5} Ends With 0Xa Ends With .12e-12})) On Create Set `7esn`+=$``[Count(*)..{12}],@usn5 =All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))]"), + octest_legacy:ct_string("Load Csv With Headers From \"d_str\" Contains {@usn6} As `3esn` Fieldterminator \"d_str\" Create Unique (({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})),`2esn`=(((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})))"), + octest_legacy:ct_string("Foreach(`7esn` In .1e-1[$@usn6]| Delete $`8esn` Contains _usn4,{usn2} Contains {0} Start `1esn`=Relationship:_usn4(`5esn`={usn1}) ) Foreach(`` In Any(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0xabc[..{usn1}][..\"d_str\"])[Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 0X0123456789ABCDEF Is Not Null Is Not Null)..None(#usn8 In 07[..$`5esn`] Where 8.1e1 Contains .9e-1 Contains false)][Case {0} Is Not Null Is Not Null When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End..[`` In `7esn` =~#usn8 =~\"d_str\"|$_usn4 Ends With {#usn8}]]| Load Csv From {@usn6:3.9e-1[..$1000][..0.12]}[All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000)] As `3esn` ) Union All Unwind Reduce(`6esn`=$`5esn`[$_usn3][$12],`2esn` In $@usn5 Is Not Null Is Not Null|1.9e0 In $@usn6 In $_usn3)[{``:.12e-12 Is Null}..][Case When $1000 Starts With {@usn6} Starts With $@usn5 Then `2esn` When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else 12[4.9e12..] End..] As usn1 Union All Detach Delete {7} Ends With 999,Any(_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12)[(`5esn` :`8esn`{`1esn`:{`8esn`} Starts With .9e-1 Starts With 1000,@usn5:10.12e12 In Null In .12e12})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})..] Remove Extract(usn1 In \"d_str\" Contains {@usn6} Where $`` =~.1e-1|$`3esn` =~0x0).`7esn`.`6esn`!,Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $1000[_usn4][{@usn5}]).#usn8!,Reduce(`2esn`=$`4esn`[$@usn6...12e12],`1esn` In $12 In {usn2}|{12} Starts With $`` Starts With 0X0123456789ABCDEF).usn1!._usn3 Create ``=Shortestpath(((`1esn` :`8esn`)-[`7esn`?:`2esn`|`5esn` *0]->(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))),@usn6=((#usn8 :@usn5{`8esn`:0x0 Ends With #usn8 Ends With .9e-1}))"), + octest_legacy:ct_string("Detach Delete 123.654[10.12e12..$12][6.0e0..{#usn8}],None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null),(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 ) Ends With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Union With Distinct 4.9e12 Starts With {``} Where $0 Ends With 9e-12 Ends With $_usn4 Union With `1esn` In 6.0e0 In 12 Limit {12} Starts With 01 Starts With $1000 Unwind (`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End] As `7esn` Start usn2=Node:`2esn`(_usn4={#usn7}) ,`5esn`=Rel:`6esn`(`4esn`='s_str')Where 12[..$`5esn`]"), + octest_legacy:ct_string("Using Periodic Commit 0x0 Load Csv With Headers From 11.12e-12 Starts With 1.0 Starts With 12.0 As #usn8 Fieldterminator \"d_str\" Unwind 01 Contains 9e-12 Contains $7 As @usn6"), + octest_legacy:ct_string("Foreach(usn1 In None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null)| Match Shortestpath((`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[:`7esn`|usn1 *7]-(`8esn` :`5esn`:`7esn`{usn1:{``} Contains 0.0 Contains `4esn`})-[? *1000..{`1esn`:{`1esn`} Is Null}]->(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})),(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}}) Using Index `7esn`:``(`8esn`) Where .9e12[6.0e0..][@usn5..] Create @usn5=(((`1esn` :usn2{`8esn`:12.0[...0e0]})-[`5esn`?:@usn5|:#usn7{`4esn`:9e-12[$7..]}]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]}))),Shortestpath((`6esn` :``)<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]}))) Remove Reduce(#usn7=Count(*)[Count ( * )][{0}],`1esn` In $12 In {usn2}|.1e1 Is Not Null Is Not Null).@usn5!"), + octest_legacy:ct_string("Unwind (`` :`7esn`)-[usn1?:usn2]-(:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0}) Is Not Null As @usn5"), + octest_legacy:ct_string("Match Shortestpath((((:`3esn`{usn2:01234567[10.12e12][0Xa]})-[_usn3?{`8esn`:{usn2} Is Not Null Is Not Null}]->({`7esn`:.9e12 Is Not Null Is Not Null})-[#usn8?:`4esn`|:`2esn` *7{`6esn`:{0} Ends With 0Xa,usn1:.9e1 Is Null Is Null}]->({`1esn`:01 =~{_usn3} =~01,`8esn`:{#usn7} Ends With 999 Ends With 12})))) Optional Match #usn7=((:`8esn`{@usn6:$`6esn`[$_usn3..{1000}],_usn3:0xabc[..{usn1}][..\"d_str\"]})),`4esn`=(#usn7 :@usn6:_usn3)<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(`3esn` :#usn8:@usn6)-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(:`6esn`{`2esn`:`5esn` Ends With Count(*)}) Merge Shortestpath((((`3esn` $0)-[`4esn`? *01{#usn8:12.0[..Count ( * )][..@usn6]}]-(usn1 :#usn8:@usn6)-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2)))) Union All Create Shortestpath(((usn2 :`4esn`:usn2)-[?:#usn7|:@usn5 *..00]-(:@usn5{`7esn`:01234567[\"d_str\"..][$`4esn`..]})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))),`2esn`=Shortestpath((@usn6 :@usn5)) Create Unique Shortestpath(((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}))),usn2=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})))"), + octest_legacy:ct_string("Merge ``=((:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})-[?:`4esn`|:`2esn`{usn1:{123456789} Starts With `6esn`,@usn5:9e1 Ends With 9e12 Ends With 0x0}]-(`2esn` :usn1)) Merge Allshortestpaths(((`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})<-[usn2? *0xabc..12{`6esn`:`8esn`[_usn4]}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]}))) Start _usn4=Rel:_usn4({`1esn`}) Union All Optional Match Shortestpath(((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})))),_usn3=Allshortestpaths((((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999})<-[``?:@usn5|:#usn7 *..00{#usn8:$`8esn`[...1e-1]}]->(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]})))) Using Index `3esn`:`8esn`(`5esn`) Where .12e12 Ends With 07 Ends With 3.9e-1 Foreach(`8esn` In 2.9e1 In {``}| Create Shortestpath(((`7esn` {@usn5:Count ( * )[_usn4..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))) Unwind Allshortestpaths(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0}))[Reduce(@usn6=10.12e12 Starts With $`4esn` Starts With 0e0,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$1000 Contains $123456789 Contains #usn8)..Case 7[..123456789][..true] When $1000[..0e-0][..010] Then 999 Starts With 7.0e-0 Starts With true End][[`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]]..Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When 0.12[Count ( * )..Count ( * )][$999..`5esn`] Then $123456789[..$999][..`6esn`] Else 7[{`4esn`}..] End] As @usn6)"), + octest_legacy:ct_string("Foreach(`` In Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 10.12e12[usn2]|usn1 Ends With 11.12e-12 Ends With 5.9e-12)[Reduce(usn1={usn1} Is Not Null,usn1 In \"d_str\" Contains {@usn6}|{`3esn`} =~$`` =~$`8esn`)..Single(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)][[usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 00 =~`4esn` =~.9e-12]..Single(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12)]| Create Unique Shortestpath((((`1esn` :#usn8:@usn6{usn1:#usn8 Is Null Is Null,_usn3:{`4esn`} In 1000 In {@usn5}})<-[`6esn`?:@usn5|:#usn7{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)))),(:_usn4:`2esn`{`8esn`:12.0[...0e0]}) Remove Case When 999 Is Null Is Null Then {12} Starts With $`` Starts With 0X0123456789ABCDEF When 01 =~07 Then `1esn` =~{12} =~{999} Else .9e1 In {#usn7} In .9e-12 End.`1esn`?,(`` :``)-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]})<-[`4esn`?]-(:usn1{#usn8:2.9e1[{`2esn`}]}).`3esn`?) Create Unique `4esn`=((#usn8 :@usn5{`8esn`:0x0 Ends With #usn8 Ends With .9e-1})),({#usn8:_usn4[$_usn4]})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7}) Union All Start @usn5=Rel:`8esn`(usn1={#usn7}) ,``=Node:`7esn`({#usn7})Where 00[$``] Optional Match (:usn2)<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:#usn8|:``{#usn8:{_usn4} In 0X7 In 0e0,`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]-(@usn5 ) Union All Remove Any(usn1 In {#usn7} =~.12e12 =~9e0 Where usn1 Ends With 11.12e-12 Ends With 5.9e-12).`1esn`._usn3!,All(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999}).``?._usn3,Extract(usn1 In \"d_str\" Contains {@usn6} Where $`` =~.1e-1|$`3esn` =~0x0).@usn6.``!"), + octest_legacy:ct_string("Load Csv From $`8esn` Is Not Null Is Not Null As usn1 Delete Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 07 Ends With $_usn3 Ends With $#usn8)[Extract(usn2 In .12e-12 Ends With `2esn` Where $_usn3[0X0123456789ABCDEF..][0x0..])],1.9e0[`6esn`][`7esn`],9e0 In {usn2} In {@usn6} Return Distinct *,{usn1}[$`4esn`..$12] As usn2,$`8esn` =~{`1esn`} =~$7 As `1esn` Skip 1.0[$12..][\"d_str\"..] Union Optional Match (({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})),usn1=({#usn8:_usn4[$_usn4]})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7}) Using Scan `1esn`:_usn3 Using Join On @usn5 Where $``[1.0..][_usn3..]"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv From None(`1esn` In $12 In {usn2})[..Reduce(usn2=.9e0 In 8.1e1,`3esn` In 8.1e1 Contains .9e-1 Contains false|$_usn3 Is Not Null)] As #usn7 Fieldterminator 's_str' Remove None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e-12[9e1]).`7esn`?,{`5esn`:{`6esn`}[@usn5..{@usn6}],`6esn`:$`6esn` Starts With 0.0}.usn2!"), + octest_legacy:ct_string("Unwind 2.12[010..][{999}..] As #usn7 Create Unique `7esn`=((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]-(usn2 :`2esn`:`4esn`{`7esn`:@usn5 =~$#usn7 =~{usn1}})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]->(:@usn6:_usn3{usn1:{123456789} Starts With $_usn4 Starts With 0x0,`3esn`:$`4esn` Is Null Is Null})) Optional Match Shortestpath(((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(`4esn` :`8esn`{12})-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2))) Using Index `3esn`:usn2(`5esn`) Union All Unwind Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) As @usn6 Union All Return *,$999 =~0e0 =~0X7 As `1esn` Order By {_usn3:.0e-0[..``][..$7]}[..(`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`)][..@usn5] Descending,Any(@usn6 In 9e12[..usn2][.._usn3] Where 12e12[.9e12..07]) Ends With Shortestpath(((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))) Asc,$`1esn` In 0Xa Desc Skip \"d_str\" Is Not Null Is Not Null Limit {#usn8} Is Not Null Is Not Null Match usn2=Allshortestpaths(((@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0}))) Using Index `5esn`:#usn8(_usn3) Using Join On @usn6,usn1,`5esn`"), + octest_legacy:ct_string("Merge `4esn`=Shortestpath((((@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})<-[?:usn1|usn2{#usn8:2.9e1[2.12..1.9e0],#usn8:@usn6[true..]}]-(:@usn6:_usn3{``:{@usn5}[10.12e12..]})-[`1esn`]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})))) On Match Set Single(`2esn` In $@usn5 Is Not Null Is Not Null Where $_usn3[.0e-0..999]).`1esn`? =11.12e-12 Contains usn1,usn1+=$`4esn`[...0e-0],{`8esn`:`` Ends With 1.0 Ends With usn1,@usn5:$usn1 =~.0e0 =~{`4esn`}}.#usn7 ={usn1} Contains {`2esn`} On Create Set (`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})<-[`3esn`?:@usn5|:#usn7]->({usn1:0X7[#usn7..][$@usn5..],usn2:01 Ends With .0e0 Ends With 7.0e-0}).`5esn` =$999 Is Not Null,Case When .12e-12[9e1] Then 2.9e1[2.9e1..][`4esn`..] Else $``[1.0..][_usn3..] End.`3esn` =Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where @usn6[true..]) =~Single(usn2 In .12e-12 Ends With `2esn` Where $`4esn` Ends With .12e12 Ends With 123.654) Load Csv With Headers From `4esn`[9e-12..true] As #usn7 Fieldterminator \"d_str\" With Distinct 12e-12 Starts With $`7esn` As `5esn`,`7esn` Ends With $123456789 Ends With 1e-1,(`3esn` :#usn8:@usn6)<-[`8esn`? *..123456789{@usn6:5.9e-12[\"d_str\"..][{`6esn`}..],`7esn`:{@usn5}[10.12e12..]}]->(#usn7 :`7esn`)[None(usn2 In .12e-12 Ends With `2esn` Where `7esn`[1.9e0..5.9e-12][9e0..@usn5])..][usn1(`8esn`[.12e12..],usn2[12e-12..{`8esn`}][.12e12..{123456789}])..] As _usn4 Order By 6.0e0 Is Null Asc,0.0 In .0e-0 Ascending Limit Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Contains (:`2esn`:`4esn`{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``) Contains {@usn6:10.12e12 Contains .9e0,`3esn`:`6esn` =~999 =~$999} Where $1000 Contains {`2esn`} Contains {`8esn`} Union All Foreach(`6esn` In Reduce(_usn4=999 Starts With 7.0e-0 Starts With true,`2esn` In $@usn5 Is Not Null Is Not Null|`7esn` =~#usn8 =~\"d_str\") Ends With [usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 123.654 Ends With {1000} Ends With 9e12|$``[9e12..]] Ends With [usn1 In {#usn7} =~.12e12 =~9e0 Where Count ( * ) =~123456789 =~{@usn5}|$@usn5 Is Null Is Null]| Start @usn5=Relationship:_usn3({`7esn`}) With Distinct (usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..]) As `2esn` Order By 6.0e0 In 9e-1 In 123456789 Ascending,Shortestpath(((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)))[..Any(#usn7 In .0e-0 In 12)] Asc,(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[`3esn` *..0x0]-(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:_usn4|:`1esn` *01]-(`4esn` {`3esn`:{`7esn`} =~\"d_str\" =~{``},`3esn`:{`1esn`} Contains 1.0 Contains 4.9e12}) =~Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 9e12 Is Null Is Null) =~(:@usn5{#usn7:Null,`5esn`:{@usn5} Ends With 0Xa Ends With .12e-12})-[:`3esn`|`3esn` *1000..]-(@usn6 ) Ascending Where {`5esn`}[01234567..][5.9e-12..]) Union All Detach Delete .1e-1 Contains .12e-12,{`5esn`:$`6esn`[@usn6...9e-12]}[{usn1:$_usn3[0x0][{0}]}..Filter(_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`])][Case When .12e12 Ends With 07 Ends With 3.9e-1 Then 01234567[\"d_str\"..][$`4esn`..] End..Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End],0xabc Is Null Is Null Start _usn4=Node:@usn6(#usn8='s_str') "), + octest_legacy:ct_string("Return *,Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]) As _usn3,[usn1 In \"d_str\" Contains {@usn6} Where $`8esn`|0X0123456789ABCDEF Is Not Null Is Not Null] Is Null Is Null Order By Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where .9e1[$`1esn`..][$``..]) Ascending,7.0e-0 Ends With {123456789} Ends With @usn6 Descending Start usn2=Relationship:`8esn`(#usn8='s_str') "), + octest_legacy:ct_string("Detach Delete 9e1 =~123456789 =~{`6esn`},6.0e0[None(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0)..][[_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]]..] Start @usn6=Relationship:`3esn`(#usn7={_usn3}) ,@usn5=Rel:usn2({`1esn`})Where $`6esn`[0..{@usn6}][@usn5..1000] Foreach(`3esn` In Extract(@usn6 In 9e12[..usn2][.._usn3] Where 01[`4esn`..]|$`7esn` In $@usn5) Ends With Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Ends With {#usn8:`6esn`[$@usn5][01]}| Match ((`4esn` {@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})) Using Index `5esn`:`4esn`(_usn3) Using Join On #usn7,`7esn`) Union All Foreach(#usn7 In {1000} Starts With {`1esn`}| Match `8esn`=(({@usn6:01 Contains 9e-12 Contains $7})),`2esn`=Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) Using Index `2esn`:usn1(_usn3) Optional Match @usn6=({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})<-[`8esn`*]-(@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}}),``=(((@usn6 :@usn6:_usn3)-[:`2esn`|`5esn` *01]-({@usn6:{_usn4} In 0X7 In 0e0})-[? *0Xa..12{`4esn`:9e-12[$7..]}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12})))) Union Remove All(usn2 In .12e-12 Ends With `2esn` Where $12 =~4.9e12)._usn4!.@usn5.@usn6!,[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null].`7esn`?,(`3esn` :#usn7:`8esn`{`4esn`:$`5esn`[$_usn3][$12],#usn8:`8esn`[.12e12..]})-[`4esn`? *01{#usn8:12.0[..Count ( * )][..@usn6]}]-(_usn4 {#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12}).`2esn`? Create Unique `5esn`=((`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})-[?:`1esn`|:`1esn` *999..123456789]-(`8esn` :#usn7:`8esn`))"), + octest_legacy:ct_string("With Distinct .12e-12[@usn6..'s_str'],Allshortestpaths((((@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[``? *..00{@usn5:$`8esn` =~{`1esn`} =~$7,#usn7:.12e-12 Starts With .12e-12}]->({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]})-[:`8esn`|:#usn8 *01]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))))[..Case When {#usn7} Ends With 999 Ends With 12 Then {`3esn`}[999..$`4esn`] End],5.9e-12[01][`4esn`] As _usn4 Skip Single(`` In `7esn` =~#usn8 =~\"d_str\")[Reduce(`3esn`=1e1[$_usn3],`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1[..9.1e-1][...9e1])][[#usn7 In .0e-0 In 12 Where \"d_str\"[0x0..{@usn6}][$@usn5..0]|{7}[$@usn5..123456789][1e1..1.9e0]]] Remove Extract(usn1 In \"d_str\" Contains {@usn6} Where $`` =~.1e-1|$`3esn` =~0x0).`7esn`.`6esn`!,Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $1000[_usn4][{@usn5}]).#usn8!,Reduce(`2esn`=$`4esn`[$@usn6...12e12],`1esn` In $12 In {usn2}|{12} Starts With $`` Starts With 0X0123456789ABCDEF).usn1!._usn3 Merge `4esn`=((:``{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[? *..00$_usn3]-({`5esn`:`1esn` In 010 In 1e-1})) On Match Set #usn7 =All(#usn8 In 07[..$`5esn`] Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Union All Merge (`1esn` :@usn5{@usn6:$`7esn` Ends With 7.0e-0 Ends With $usn2}) On Create Set `` =$`3esn` =~$123456789 =~`3esn`,Reduce(#usn7=4.9e12 Starts With {``},usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|3.9e-1 Contains $@usn5).`7esn`?.#usn7.`1esn`? =12 Ends With {#usn8} Ends With $_usn4,(_usn3 )<-[:`8esn`|:#usn8 *0X7..0Xa]->(`4esn` :`8esn`{12}).`8esn`!._usn3? =Filter(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Starts With (#usn7 :``)-[`3esn`{`4esn`:12e12[.9e12..07]}]-(`1esn` :``{_usn4:$@usn5 =~{`3esn`}})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}) Starts With Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12) On Match Set Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999}).`5esn`.#usn8!.`3esn`? =$12 In {usn2},`4esn`(Distinct .9e0[07..][4.9e12..]).`4esn`! =Reduce(#usn7=#usn8[\"d_str\"..usn2],#usn7 In .0e-0 In 12|`` Ends With 1.0 Ends With usn1) Ends With [_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3]] Ends With Shortestpath((((:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[`2esn`?:`8esn`|:#usn8]->(`` )<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)))),`5esn`+=7 Starts With 9e-12"), + octest_legacy:ct_string("Merge ((`3esn` :@usn5)<-[`3esn` *..0x0]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)) On Match Set @usn5:`1esn`:`` On Match Set Extract(#usn7 In .0e-0 In 12 Where 123.654[01..][Count(*)..]|0X0123456789ABCDEF[1e1..]).`5esn`? ={`2esn`:_usn3 =~{7} =~123.654}[Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4})..{#usn7:1e-1 =~$`7esn` =~1e1,`7esn`:{0}[`4esn`..{`8esn`}]}],[`7esn` In 0.12 Is Not Null Where 0X0123456789ABCDEF In false|_usn3 =~{7} =~123.654].`6esn`.@usn6.usn1 =Reduce(`2esn`=01234567 =~12e12 =~.0e-0,usn1 In \"d_str\" Contains {@usn6}|`6esn` Ends With 1e1 Ends With $#usn7) Is Null Is Null Create Unique usn2=Allshortestpaths((@usn6 {`6esn`:1000[{`1esn`}..][$`3esn`..]})) Unwind 00[{1000}] As usn1 Union Delete (`4esn` :`8esn`{12})<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:`6esn`]-({`6esn`:1000[{`1esn`}..][$`3esn`..]}) =~[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Is Not Null Is Not Null] =~Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true) Remove Extract(usn1 In \"d_str\" Contains {@usn6} Where $`` =~.1e-1|$`3esn` =~0x0).`7esn`.`6esn`!,Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $1000[_usn4][{@usn5}]).#usn8!,Reduce(`2esn`=$`4esn`[$@usn6...12e12],`1esn` In $12 In {usn2}|{12} Starts With $`` Starts With 0X0123456789ABCDEF).usn1!._usn3"), + octest_legacy:ct_string("Return _usn4[$_usn4] As _usn4,`3esn` Starts With 9.1e-1 Starts With .9e-1 As `8esn` Order By \"d_str\" Starts With .1e-1 Descending,0X0123456789ABCDEF In false Asc With Distinct _usn4['s_str'][8.1e1] As `` Order By {#usn7}[..\"d_str\"][..#usn8] Desc Skip (:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 )[Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..][(#usn8 :`4esn`:usn2)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})..] Union All Create Unique #usn8=(`6esn` :`4esn`:usn2),(((:`3esn`)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))) Return .0e-0[010..] As `3esn` Skip 10.12e12 =~9e1 Limit _usn4 Is Not Null Is Not Null Start `3esn`=Rel:`2esn`({1000}) ,usn2=Rel:_usn4(#usn8=\"d_str\")Where 9e1[0.0] Union Optional Match #usn8=({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)}),((:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]})-[``:usn1|usn2{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]}]-(`7esn` {@usn5:Count ( * )[_usn4..]})-[usn2:_usn3 *0xabc..12]->(:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})) Using Scan ``:#usn8 Using Scan #usn7:`8esn` Match `3esn`=({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}),((:#usn7:`8esn`{@usn6:123456789[_usn4..`1esn`][$`6esn`..{@usn6}]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}})) Using Index `5esn`:`4esn`(_usn3)"), + octest_legacy:ct_string("Create ((`1esn` :`8esn`)<-[:usn1|usn2]-(`` :`4esn`:usn2)<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``)),Allshortestpaths(({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)}))"), + octest_legacy:ct_string("Remove All(usn2 In $`5esn`[{`4esn`}][{0}]).#usn7?.usn2!"), + octest_legacy:ct_string("Using Periodic Commit 010 Load Csv With Headers From Extract(`1esn` In $12 In {usn2} Where 2.9e1 =~Count(*) =~{123456789})[{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}..][123.654..] As `4esn` Match ``=({`4esn`:{7}[0x0][1e1]})-[:`8esn`|:#usn8 *01]-(usn2 :`2esn`:`4esn`)-[$#usn8]->({usn2:01[`4esn`..]}),#usn7=(((:`3esn`)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))) Where Count ( * )[_usn4..]"), + octest_legacy:ct_string("Match Allshortestpaths((((:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})-[`7esn`:`1esn`|:`1esn` *0Xa..12]-(`8esn` :`7esn`)<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})))),#usn7=((`1esn` :usn2{`8esn`:12.0[...0e0]})) Using Join On @usn5,_usn4 Using Join On ``,`4esn`,_usn4 Unwind usn2({`6esn`} In .0e0 In $0,0X0123456789ABCDEF Is Not Null Is Not Null) Ends With [`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 1.9e0[.12e-12][9e-12]|{`6esn`}[6.0e0..9e0][.9e1..12e12]] As `8esn` Foreach(`5esn` In 7.0e-0[true]| Create @usn5=Shortestpath((`4esn` :_usn3)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})),Allshortestpaths(((`1esn` :usn2{`8esn`:12.0[...0e0]}))))"), + octest_legacy:ct_string("Match (((`1esn` :`3esn`{@usn6:$12 Is Null})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))) Using Index `6esn`:`8esn`(`3esn`) Using Index `1esn`:usn2(usn1) Where 0.12 Is Not Null Remove Any(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12).`1esn`? Load Csv With Headers From {`3esn`}[#usn7] As @usn5 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Create Unique `6esn`=(`7esn` {#usn8:2.9e1[{`2esn`}]})<-[`7esn`?:`7esn`|usn1 *1000..{@usn6:#usn7 In 07,#usn8:$999[usn1..0e-0]}]->(#usn7 {usn1:2.12[{12}]}) With *,@usn5[{`1esn`}..][Count ( * )..] As `8esn` Skip Reduce(`7esn`=3.9e-1 Starts With .9e0 Starts With {#usn7},`8esn` In {_usn4} Ends With {0} Ends With `1esn`|#usn8 Is Null Is Null) Contains (`2esn` :_usn3{`6esn`:_usn4[{``}..{`6esn`}][$7..$_usn3],`6esn`:$`4esn` Ends With {999}})-[`1esn` *0X7..0Xa]->(`1esn` :`1esn`:``{#usn7:`5esn` Ends With Count(*)}) Contains [#usn7 In .0e-0 In 12 Where `1esn` In 6.0e0 In 12] Start `7esn`=Node:usn1(\"d_str\") Where 12e12[usn2..$`6esn`] Union All Merge `2esn`=((`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[?:`2esn`|`5esn` *..123456789$1000]-({`1esn`:$`8esn` Is Null Is Null,`1esn`:0.12 =~2.9e1 =~9e1})-[usn2:`5esn`]-(:`4esn`:usn2{@usn5:`8esn`[.12e12..],usn1:$#usn8[$0..`3esn`][1e-1..$7]})) Foreach(#usn8 In {`8esn`:$#usn7} =~All(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0)| Load Csv With Headers From 2.9e1 =~{123456789} =~01 As _usn3 Fieldterminator \"d_str\") Delete Filter(@usn6 In 9e12[..usn2][.._usn3] Where 1.9e0[..0][.._usn3]) Ends With {`6esn`:9e12 Ends With \"d_str\" Ends With 0X7,`3esn`:0X0123456789ABCDEF[1e1..]} Ends With Reduce(@usn5=`` Contains {`6esn`} Contains 123456789,`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|00[$``]),{usn1},9e12 Is Not Null Is Not Null"), + octest_legacy:ct_string("With Distinct $7 In 1.0 In 01234567,.12e12[$`1esn`..0x0] As `4esn` Order By Filter(#usn7 In .0e-0 In 12 Where #usn7[123.654][{12}])[[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]..Reduce(`1esn`=`2esn`,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|.9e0 =~#usn7)] Desc,{0} =~{999} Desc,$999 =~0x0 Desc Skip `1esn`[..$1000] Limit 0e-0[#usn7..999]"), + octest_legacy:ct_string("Create Unique `2esn`=(:_usn3{usn2:6.0e0[$12..0.12],#usn7:`2esn`})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}),Shortestpath(((`1esn` :`5esn`:`7esn`))) Return Distinct *,.0e0 Starts With 1.0 Starts With $12 Order By Case When $999 =~false =~{`8esn`} Then 999 Is Null Is Null When {``} Contains 0.0 Contains `4esn` Then $999 Is Not Null End Contains Case $usn2 In #usn7 In #usn7 When {12} Ends With $`3esn` Ends With 0xabc Then $@usn5 Contains _usn3 End Contains None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0xabc[01234567][.12e-12]) Asc Skip {`6esn`} In {_usn4} In $12 Unwind 2.12[`4esn`][.9e-1] As `3esn` Union All Load Csv With Headers From _usn4[{`3esn`}][00] As `6esn` Fieldterminator \"d_str\" Union All Foreach(@usn6 In ({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})-[`8esn`?:_usn3]->(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Ends With {_usn3:{123456789} Starts With `6esn`} Ends With {usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}| Unwind $`6esn` =~$#usn7 =~$`4esn` As usn1) Load Csv From Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)) Is Not Null Is Not Null As `1esn` Merge `8esn`=((`8esn` :`6esn`)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(@usn5 :@usn6:_usn3)) On Create Set ``+=12e12 Contains {0},`4esn`+=$`2esn` Contains {`4esn`}"), + octest_legacy:ct_string("Match `1esn`=((`4esn` :`8esn`{12})) Using Join On `4esn`,`5esn`,@usn6 Using Join On @usn5,_usn4 Where #usn7 =~$@usn5 =~{7} Remove All(usn2 In .12e-12 Ends With `2esn` Where `7esn`[1.9e0..5.9e-12][9e0..@usn5]).usn1?,All(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]).usn2?.`4esn`._usn4?"), + octest_legacy:ct_string("Foreach(_usn4 In Case When 9e-12[010..{#usn7}][{123456789}..7] Then $999 =~false =~{`8esn`} When {0}[.0e-0][$`2esn`] Then 12e12 Is Not Null Is Not Null Else false[..usn2][..999] End[Allshortestpaths(((({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(@usn6 :@usn5)-[`2esn`? *7{`5esn`:false[..usn2][..999]}]-(`4esn` :@usn6:_usn3))))..All(usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null)][.9e0..`4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`)]| Remove Reduce(`5esn`=8.1e1 Contains $@usn6,#usn7 In .0e-0 In 12|{1000} Starts With 10.12e12 Starts With .0e-0).usn1!,None(`6esn` In 010[{`1esn`}..] Where $usn1[9e1][{999}]).`3esn`!,_usn4:_usn3 Return Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {#usn8}[..@usn5])[(:#usn8:@usn6{`3esn`:$#usn7})-[ *12{#usn8:0e0 =~{12} =~{1000}}]-(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})-[usn2:`5esn`]-(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})][[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01|_usn4 Ends With {`8esn`} Ends With usn2]],999 Ends With {#usn8},010[.0e-0..\"d_str\"][.9e0..123.654] As `6esn` Order By {123456789} Contains $#usn7 Contains {#usn8} Desc) Remove Case {@usn5} Ends With 0Xa Ends With .12e-12 When 0[..{0}][..true] Then $@usn6[``..][3.9e-1..] When Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] Then {12} Ends With $`3esn` Ends With 0xabc End.usn2,Allshortestpaths(((#usn8 :usn2)<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))).@usn5? Merge Allshortestpaths(((:`7esn`))) Union All Unwind 999[..$@usn5][..``] As #usn8 Remove `2esn`:`3esn`,None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where Null In {7})._usn4,Case $usn1 =~.9e12 =~`6esn` When Count ( * ) Starts With 0.12 Then 7 Starts With 9e-12 When 7.0e-0[$`6esn`..] Then .9e12 Contains 0 Contains $0 Else {`6esn`} =~2.12 =~123.654 End._usn3?"), + octest_legacy:ct_string("Optional Match Shortestpath(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}}))),Allshortestpaths((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})) Using Scan `8esn`:`2esn` Where .9e12 Contains 0 Contains $0 Create Unique Shortestpath(((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999}))),_usn3=(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}) Load Csv From $1000[$`2esn`..] As `1esn` Union All Remove None(#usn8 In 07[..$`5esn`] Where 0.0[$`4esn`]).usn2.#usn7!.usn2,12.usn1?,Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`]).usn1 Create Unique Allshortestpaths((((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})))),(((`8esn` :usn2)-[@usn5:`2esn`|`5esn` *7]->(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})-[? *12{@usn6:$`` =~.1e-1}]->(:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})))"), + octest_legacy:ct_string("Detach Delete $999[{`6esn`}..$usn2] Union Optional Match (:_usn4:`2esn`{`8esn`:12.0[...0e0]}) Using Join On ``,`4esn`,_usn4 Using Index #usn8:`3esn`(@usn6) Where $999 =~false =~{`8esn`} Remove Allshortestpaths((`` :`4esn`:usn2)-[? *..123456789{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})).`3esn`!,(:#usn8:@usn6{`3esn`:$#usn7})-[ *12{#usn8:0e0 =~{12} =~{1000}}]-(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})-[usn2:`5esn`]-(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}).`4esn`? Start `2esn`=Relationship:@usn5({`4esn`}) Union All Unwind ({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}) Contains Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Contains All(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]) As `8esn` Unwind Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[$usn1..])[..Shortestpath((((`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn2 *7]-(`8esn` {_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}))))][..{`3esn`:$`6esn` Starts With 0.0,#usn8:$usn1 =~.0e0 =~{`4esn`}}] As @usn6"), + octest_legacy:ct_string("Start ``=Node( {#usn7}) ,#usn7=Node:#usn8(usn2='s_str')Where 6.0e0 Is Not Null Is Not Null Foreach(`3esn` In Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Not Null Is Not Null| Unwind {usn1} Contains {`2esn`} As `8esn`) Delete $`1esn` Ends With 1000 Union Delete 7 Starts With 9e-12 Remove Single(`2esn` In $@usn5 Is Not Null Is Not Null Where false =~$7).`7esn`!.`5esn`?,Reduce(#usn7={`5esn`},`2esn` In $@usn5 Is Not Null Is Not Null|`1esn` =~{12} =~{999})._usn4! Return Distinct $``[1.0..][_usn3..] As _usn4,{`5esn`:$`6esn`[@usn6...9e-12]}[{usn1:$_usn3[0x0][{0}]}..Filter(_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`])][Case When .12e12 Ends With 07 Ends With 3.9e-1 Then 01234567[\"d_str\"..][$`4esn`..] End..Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End] As `5esn`,_usn3($`5esn`[$_usn3][$12])[None(#usn8 In 07[..$`5esn`])..][All(`` In `7esn` =~#usn8 =~\"d_str\" Where 12e12 Is Not Null Is Not Null)..] Skip $`6esn`[..01][..{_usn3}] Limit 9e-1[1.9e0] Union All Match @usn5=(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})<-[{usn1:$_usn3 Starts With 010}]-(#usn8 :`8esn`) Using Index _usn3:`3esn`(`4esn`) Using Index @usn5:@usn5(_usn4) Where $usn2 In #usn7 In #usn7 Foreach(`1esn` In Case When $123456789 Is Not Null Is Not Null Then $`5esn` Is Not Null End Ends With {_usn3:$12 Is Not Null Is Not Null} Ends With [`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 6.0e0 =~12.0 =~9e1|@usn6 Ends With $`2esn` Ends With 1.0]| Create Unique `5esn`=Shortestpath((`5esn` :``{_usn3:$_usn4[..$999],`7esn`:0X0123456789ABCDEF Ends With {1000}})-[*{@usn5:`6esn` =~999 =~$999}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})) Create Unique _usn4=((_usn3 :`6esn`)<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})))"), + octest_legacy:ct_string("Delete 01[`6esn`..][0e0..],9e0[`1esn`..0e-0][00..`1esn`] Foreach(#usn8 In $usn2[..$999][..#usn8]| Start usn2=Relationship:@usn6(#usn8='s_str') Match @usn5=Allshortestpaths((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})-[`3esn`? *..07]-(#usn7 {_usn4:$12[$`6esn`..][01..]})),Allshortestpaths(((`` :`7esn`))) Where 999[..$@usn5][..``]) Start _usn3=Rel:usn2(#usn7='s_str') ,`1esn`=Rel:`2esn`(#usn8=\"d_str\")Where Count(*)[Null..][01234567..]"), + octest_legacy:ct_string("Merge `5esn`=((_usn4 {_usn3:.0e-0[..``][..$7]})) On Match Set #usn7 =usn1 =~false =~{999},Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}).`2esn`! =9e12 Is Null Is Null,`2esn`+=Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`}) Ends With Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))) Ends With Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1) On Match Set None(usn2 In $`5esn`[{`4esn`}][{0}] Where 2.12 Is Not Null Is Not Null).@usn5! =Any(_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12)[(`5esn` :`8esn`{`1esn`:{`8esn`} Starts With .9e-1 Starts With 1000,@usn5:10.12e12 In Null In .12e12})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})..] Create `4esn`=Allshortestpaths((_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})) Delete Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`8esn`}[..999][.._usn3]) Starts With Reduce(``=$#usn7 Ends With 999 Ends With {12},`2esn` In $@usn5 Is Not Null Is Not Null|{`6esn`} Starts With .12e-12) Union All Return .9e0 Ends With $0 As @usn6,$0[1e1][12e-12] As _usn3 Skip .12e12 Is Not Null Limit 0e-0 In 0X0123456789ABCDEF In `3esn` Start @usn6=Node(0) ,`3esn`=Relationship( {#usn8}) Start `3esn`=Node(0xabc,7,0Xa,01234567) Where $`8esn` Is Not Null Is Not Null"), + octest_legacy:ct_string("Unwind 1000[{`1esn`}..][$`3esn`..] As `4esn` Union Load Csv From 01 Contains $`2esn` Contains 9e-12 As usn1 Union All Match `8esn`=Allshortestpaths(((:`4esn`:usn2{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(_usn4 :usn2)))"), + octest_legacy:ct_string("With 12e-12 Starts With $`7esn` As `5esn`,10.12e12[usn2] As _usn4,$999 Ends With `2esn` Ends With 12.0 As #usn8 Limit {`4esn`} In 1000 In {@usn5} Return 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Skip {usn1:$1000 Is Null}[Shortestpath((:usn1$1000))..][Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true)..] Merge @usn6=((`1esn` :`8esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})) On Create Set #usn7 =0.0[$`4esn`],count({123456789} Starts With $_usn4 Starts With 0x0).#usn7? =5.9e-12 Contains {12} Contains {#usn8} On Create Set `3esn` =$`1esn`[4.9e12..][_usn3..] Union With *,9e1[...9e1][..$`6esn`] Match Shortestpath((:`2esn`:`4esn`{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({#usn7:12e12[.9e12..07]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->()),(`4esn` :`8esn`{12})-[_usn3:`6esn`]-(`3esn` :#usn8:@usn6)-[`1esn`]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]}) Using Index `7esn`:``(`8esn`) Where $usn2 Starts With $999 Starts With .0e0 Unwind {@usn6} In 9e12 As usn2 Union All Start _usn4=Relationship:usn2({usn1}) Where 1e1 =~{@usn5} =~`7esn` Create Unique Allshortestpaths((`2esn` :_usn3{usn1:5.9e-12 Is Null Is Null})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(:`5esn`:`7esn`{`4esn`:2.9e1[{`2esn`}]})-[ *..123456789{@usn5:$`8esn`}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})),``=Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})))"), + octest_legacy:ct_string("Merge `3esn`=(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})<-[?:`5esn`]-($12)<-[?:@usn5|:#usn7 *0]-(`7esn` :`5esn`:`7esn`) On Create Set Case When .9e1[$`1esn`..][$``..] Then {12}[6.0e0..{usn2}][{_usn3}..{#usn7}] When `1esn` Is Not Null Is Not Null Then `3esn` Is Null Else 0xabc Starts With 12 Starts With 0e-0 End.`8esn`!.`6esn` =Reduce(`5esn`=$usn1[..$999][..0e0],`2esn` In $@usn5 Is Not Null Is Not Null|``[$#usn7]) Starts With [`6esn` In 010[{`1esn`}..] Where 9e-12[$7..]] Starts With Any(_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12),Any(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12).`1esn`? =Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] On Create Set #usn7+=$`6esn` Contains All(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]),_usn4 =9e-12[$7..] With 6.0e0 Starts With 0x0 Starts With 0Xa As #usn7,9e0[`3esn`][0] As #usn7,false[..usn2][..999] Order By false Contains {`7esn`} Asc,{1000} =~4.9e12 =~9e1 Desc,#usn7[{_usn3}] Descending Where {12} Contains `8esn` Contains @usn5 Union All Match #usn8=Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[`7esn`:`4esn`|:`2esn`*{``:true Is Null,_usn3:$12 Ends With 7.0e-0 Ends With 9e-12}]->({`6esn`:3.9e-1[..$1000][..0.12]}))) Using Join On `4esn`,`2esn`,`` Remove {`8esn`:false Starts With 0 Starts With 2.9e1,@usn6:010 Starts With 9e12 Starts With 1000}.`3esn` Load Csv From (`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Is Not Null Is Not Null As `1esn` Union All Create ``=(usn1 )-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[_usn4?:_usn3 *010..0]->(_usn4 :usn2)"), + octest_legacy:ct_string("Detach Delete \"d_str\" In 7.0e-0,@usn5[#usn7..] Merge `3esn`=Allshortestpaths((((`4esn` :`3esn`)<-[@usn5?*..]->(:_usn3{_usn3:010[..9e-1][..0X7]})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)))) Union Return Distinct *,$1000[..0e-0][..010] As _usn4,Any(usn1 In $@usn6 Is Null Is Null)[Case {_usn3}[{0}...9e-1][9e-1...0e0] When 010[..9e-1][..0X7] Then $0 Ends With $usn1 Ends With {``} End..Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]})))] As `4esn` Order By 11.12e-12 Ends With 's_str' Desc Skip {`4esn`:12e12 Is Not Null Is Not Null} Contains Case When {_usn4}[{`6esn`}] Then 12e12 Is Not Null Is Not Null When #usn7 Is Null Is Null Then {`8esn`} Starts With .9e-1 Starts With 1000 End Remove Case #usn8[\"d_str\"..usn2] When $12[$`6esn`..][01..] Then $`4esn`[$@usn6...12e12] End.`6esn`._usn3,Any(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12).`1esn`? Union All Return Distinct [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,$`7esn` In $`4esn` As `8esn`,Extract(`1esn` In $12 In {usn2} Where 2.9e1 =~Count(*) =~{123456789})[{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}..][123.654..] Order By $`6esn`[@usn6...9e-12] Asc,9e-12 Starts With {1000} Desc Skip 9e0 Ends With {7} Start `5esn`=Node:`1esn`(`4esn`={@usn5}) Where {`8esn`} In {_usn3} In 6.0e0 Create Unique (@usn5 )"), + octest_legacy:ct_string("Start @usn6=Node:@usn6(`8esn`='s_str') ,@usn5=Node:#usn8(`8esn`={123456789})Where 0xabc Starts With {`3esn`} Starts With {``} Union Optional Match ((`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(`1esn` {@usn6:6.0e0[$#usn7..$1000]})),((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}})) Using Index `3esn`:usn2(`5esn`) Using Index `4esn`:`3esn`(`2esn`) Where .9e1 Is Null Is Null Create Unique `5esn`=Allshortestpaths((({`6esn`:8.1e1 Contains .9e-1 Contains false}))) Union All Remove Filter(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12).`3esn`?.`7esn`?,Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0xabc[01234567][.12e-12]).`8esn`,Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`]).usn1 Create Unique `5esn`=(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}) Create _usn4=((_usn3 {#usn7:$999 =~false =~{`8esn`}}))"), + octest_legacy:ct_string("Detach Delete Single(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1])[Case When 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Then $#usn8 Is Not Null Is Not Null When \"d_str\" Starts With $`7esn` Starts With 999 Then \"d_str\"[0x0..{@usn6}][$@usn5..0] Else .0e-0[..01234567] End..],Single(usn1 In $@usn6 Is Null Is Null Where 0X0123456789ABCDEF Ends With {1000}) In (`1esn` :#usn8:@usn6{usn1:#usn8 Is Null Is Null,_usn3:{`4esn`} In 1000 In {@usn5}})-[``:``|:`7esn`*{#usn8:{#usn7}[.12e-12],`3esn`:1.9e0[`6esn`][`7esn`]}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})-[usn1?:`3esn`|`3esn`*..]->(:usn1) In Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1),Reduce(usn1=.12e-12[9e1],#usn7 In .0e-0 In 12|0.12 Is Not Null) Ends With Reduce(`4esn`=999 Contains {999} Contains 12,usn1 In {#usn7} =~.12e12 =~9e0|_usn4['s_str'][8.1e1]) Ends With ``(Distinct 12e12 Is Not Null Is Not Null)"), + octest_legacy:ct_string("Create Unique `4esn`=((`3esn` :#usn8:@usn6)-[`4esn`? *01{#usn8:12.0[..Count ( * )][..@usn6]}]-(usn1 :#usn8:@usn6)) With Distinct (usn1 :usn1{#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[`3esn`?:_usn4|:`1esn`]->(`6esn` :`4esn`:usn2)[Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {@usn6} In 9e12)][(`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})] As #usn7 Order By Filter(#usn7 In .0e-0 In 12 Where 00[$``])[Case When 12e12[usn2..$`6esn`] Then 9e-12 Starts With {1000} When 5.9e-12[0x0..] Then 12[..$`5esn`] Else 0.0[00..][0xabc..] End..] Asc,{usn1} Contains `4esn` Ascending,{_usn3}[@usn6..] Descending Where $12 =~4.9e12 Unwind Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null As @usn5 Union Return Count(*)[{12}..{#usn8}] As @usn6,$123456789 =~1e-1,`5esn`({`5esn`}[01234567..][5.9e-12..],5.9e-12 Is Null Is Null)[Reduce(#usn7={12} Ends With $`3esn` Ends With 0xabc,usn1 In $@usn6 Is Null Is Null|`1esn`[Null][{@usn6}])..@usn5(`3esn` Contains `2esn` Contains {_usn4},2.9e1 In {``})][Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789}))..Any(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`)] As _usn4 Order By $usn1[9e1][{999}] Ascending Skip @usn6[999][1000] Limit (`4esn` :`8esn`{12})<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:`6esn`]-({`6esn`:1000[{`1esn`}..][$`3esn`..]}) =~[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Is Not Null Is Not Null] =~Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true) Create (:`7esn`{@usn6:$_usn3 Starts With 010})<-[:_usn3]->(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})<-[``?:@usn5|:#usn7 *..00{#usn8:$`8esn`[...1e-1]}]->(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]}),(@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})-[#usn8?*..]-(`` {`6esn`:1000[{`1esn`}..][$`3esn`..]}) Match Shortestpath(((`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(`1esn` {@usn6:6.0e0[$#usn7..$1000]}))),({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Using Join On `6esn`,`1esn` Where 1e1 Ends With $_usn3 Ends With .1e1 Union All Start usn2=Rel:_usn4(@usn5={#usn7}) ,usn2=Relationship:#usn8(@usn5={@usn6}) Unwind $@usn5 Is Null Is Null As `6esn`"), + octest_legacy:ct_string("Merge usn1=(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0}) On Create Set `5esn` ={`8esn`} In {_usn3} In 6.0e0 On Create Set usn1:`6esn`,{`7esn`:{#usn7}[.12e-12]}.@usn6!.#usn7?.`6esn`! ={12} Contains `8esn` Contains @usn5 Unwind .12e12[01..{1000}][8.1e1..Count ( * )] As `2esn` Load Csv With Headers From #usn7[.9e0..`3esn`][{`6esn`}..1000] As `7esn` "), + octest_legacy:ct_string("Create Shortestpath((@usn6 :@usn5)),Shortestpath(((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}))) Foreach(`2esn` In Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`) Is Null Is Null| Return $12 Ends With 7.0e-0 Ends With 9e-12 As usn1,{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] As ``,9e-1 Contains .12e-12 Contains $0 Order By `6esn`[$@usn5][01] Descending,{`5esn`} Desc Skip 123.654 Is Not Null Is Not Null Limit Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null) With Distinct None(`` In `7esn` =~#usn8 =~\"d_str\" Where $`4esn` In {999}) Starts With ({usn1:12[..$`5esn`]})-[:`1esn`|:`1esn` *999..123456789{@usn5:$999 Ends With `2esn` Ends With 12.0}]->(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}) Starts With Case When $#usn8 Is Not Null Is Not Null Then $#usn8[$0..`3esn`][1e-1..$7] When $`` Starts With $`4esn` Starts With `3esn` Then .12e12[$usn1..][{@usn6}..] End As _usn3,{`1esn`} In 0 As ``,`3esn` Starts With 9.1e-1 Starts With .9e-1 As `8esn` Order By 999 Ends With {#usn8} Ascending,`1esn`({`4esn`} Ends With Count(*),$usn1 Contains 4.9e12 Contains $`2esn`) Is Not Null Is Not Null Desc Skip 6.0e0[$#usn7..$1000]"), + octest_legacy:ct_string("With Distinct $`8esn` Starts With {`7esn`} As `7esn` Order By $`6esn` Contains 2.12 Contains $`7esn` Ascending,_usn3[{#usn7}] Desc Skip $`8esn`[..5.9e-12][..`8esn`] Limit $12 Ends With 12.0 Ends With $`4esn` Start `4esn`=Rel:#usn8(usn2='s_str') Union Detach Delete Case .12e-12 Is Null When Count ( * )[_usn4..] Then 7.0e-0 Is Not Null When 2.12[{12}] Then {usn2} Ends With {@usn6} Ends With 1000 End[Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..])][({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})],{`1esn`}[7.0e-0..9e-1][01234567..{`4esn`}],1e-1 Starts With .1e1 Starts With 12.0 Unwind {`7esn`}[0.12] As `6esn` Start _usn4=Relationship:@usn6(\"d_str\") Where `3esn` =~$#usn7"), + octest_legacy:ct_string("Remove Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0xabc[..{usn1}][..\"d_str\"]|0 Starts With `7esn` Starts With 9e0).`6esn`! Union Create `5esn`=Allshortestpaths((({`6esn`:8.1e1 Contains .9e-1 Contains false}))) Union Remove @usn6:`3esn` Foreach(`6esn` In 9e-12[{`1esn`}..]| Optional Match Shortestpath(((`7esn` {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))) Using Join On `2esn`,`6esn` Using Join On `4esn`,`2esn`,`` Where #usn8 Is Null Is Null) Merge Shortestpath((((`3esn` $0)-[`4esn`? *01{#usn8:12.0[..Count ( * )][..@usn6]}]-(usn1 :#usn8:@usn6)-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2))))"), + octest_legacy:ct_string("Load Csv From {@usn6:3.9e-1[..$1000][..0.12]}[All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000)] As `3esn` Union Detach Delete #usn7({12} Starts With $`` Starts With 0X0123456789ABCDEF)[Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where .12e-12[9e1])..],.0e-0 =~usn2,Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]]"), + octest_legacy:ct_string("Remove count(Distinct $1000 Starts With {@usn6} Starts With $@usn5)._usn3.usn1?,@usn5(Distinct $7[999..10.12e12][$`1esn`..{usn1}],$`5esn` Is Null).usn1.``?.#usn8 Match Shortestpath((:`3esn`)) Where 12.0 Starts With 00"), + octest_legacy:ct_string("With @usn5[9e-1..{`1esn`}] As ``,`1esn` Is Not Null As `6esn`,Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) Ends With `2esn` As @usn5 Order By {@usn5}[10.12e12..] Asc,{@usn5}[10.12e12..] Asc Limit Reduce(``=$`3esn` =~#usn8 =~0x0,usn2 In $`5esn`[{`4esn`}][{0}]|_usn3 =~{7} =~123.654) Contains [usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF] Contains Allshortestpaths(((`8esn` :`7esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 ))) Return Distinct *,Reduce(`2esn`=$@usn5[``..],`7esn` In 0.12 Is Not Null|$`4esn` Is Not Null) =~Any(_usn3 In `8esn`[_usn4] Where {`6esn`} In {_usn4} In $12) =~Reduce(`1esn`=false =~{`8esn`} =~00,`2esn` In $@usn5 Is Not Null Is Not Null|`1esn`[{@usn5}..][{_usn4}..]),1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Skip .12e-12 Starts With .12e-12 Limit (@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(:`6esn`{`2esn`:`5esn` Ends With Count(*)})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12}) In Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}) In Single(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str') Return Distinct 00[..@usn6] As `6esn`,{`3esn`}[...1e1][..0],Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null As `2esn` Skip $usn2 Ends With 9e12 Ends With Count ( * ) Limit 0xabc Starts With {`3esn`} Starts With {``}"), + octest_legacy:ct_string("Detach Delete 0e0 Ends With {`5esn`} Ends With 10.12e12,01 Ends With .0e0 Ends With 7.0e-0,{`8esn`} =~$#usn7 =~2.12 With Distinct 1.0 Is Null Is Null,Extract(`1esn` In $12 In {usn2} Where 12e12[{`4esn`}..`4esn`][999..{@usn6}])[None(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}][Reduce(#usn7=12[..$`5esn`],usn1 In $@usn6 Is Null Is Null|12e12 Ends With `5esn` Ends With .0e0)..[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 0.12 Is Not Null]] As `3esn`,All(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) As #usn7 Skip {usn1} Is Not Null Limit false[9e12] Where `6esn`[$@usn5][01]"), + octest_legacy:ct_string("Create _usn4=((`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})) Start `5esn`=Node:_usn4(@usn5={`4esn`}) Where {999} Starts With $`4esn` Starts With $`1esn` Union All Load Csv With Headers From {`8esn`}[9e-12..0] As `` With Distinct *,Any(usn2 In $`5esn`[{`4esn`}][{0}] Where .1e-1[2.9e1..][$`7esn`..]) Contains Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Contains Allshortestpaths((_usn3 :`4esn`:usn2)),9e1[...9e1][..$`6esn`] As `4esn` Create Unique `1esn`=((`4esn` :`8esn`{12}))"), + octest_legacy:ct_string("Detach Delete {0} Is Not Null Is Not Null,Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn`) Contains (`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) Contains Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}),5.9e-12[12e-12][$`8esn`] Union Create Unique `5esn`=(:`3esn`{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}),(usn1 :`3esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 )<-[_usn4{`5esn`:9e0[..{#usn7}][..`4esn`]}]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}) Optional Match _usn4=Allshortestpaths(((`5esn` :`4esn`:usn2{_usn4:Count ( * ) Is Not Null Is Not Null,#usn8:`1esn`[{usn1}..]}))) Using Scan #usn7:`` Using Join On usn1 Where 10.12e12[usn2] With Distinct *,$`1esn`[4.9e12..][_usn3..],Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End =~{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]} Order By Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) Descending,5.9e-12[01][`4esn`] Descending,[`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] Descending Skip Count(*) Is Not Null Is Not Null Limit 12e-12 =~$_usn3 Where false Contains {`7esn`} Union All Create (:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[_usn3?:`5esn`*..]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}),`5esn`=(((#usn7 )-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(`2esn` :@usn5)<-[?:`2esn`|`5esn` *..123456789$1000]-({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})))"), + octest_legacy:ct_string("Unwind [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]][None(#usn7 In .0e-0 In 12 Where $12 In {usn2})..{`1esn`:{0} Is Null Is Null}][Extract(#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12|{`5esn`} Is Not Null Is Not Null)..Reduce(`7esn`=`7esn` Ends With 10.12e12,usn2 In $`5esn`[{`4esn`}][{0}]|@usn5[9e-1..{`1esn`}])] As usn1"), + octest_legacy:ct_string("Unwind 00[(`3esn` :_usn3{@usn6:0.12 Is Not Null})-[#usn8:`5esn`]-({`6esn`:12[@usn6][{`2esn`}]})..] As `6esn` With {`4esn`}[{`3esn`}][$`2esn`],$_usn3 Contains 1.0 Contains 0.12 As ``,12.0[.9e0] As `6esn` Skip $`6esn` Contains All(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) Limit 0Xa In 1.0 In $@usn5 Where Count ( * ) Contains 9.1e-1 Contains {`2esn`} Union All Start `6esn`=Node:#usn8(usn2={@usn5}) Where 9e-1[0.0..] Union Merge (`1esn` {`6esn`:{`5esn`},usn1:$`4esn` Ends With {999}})"), + octest_legacy:ct_string("Unwind $`7esn` Ends With 7.0e-0 Ends With $usn2 As `5esn` With Distinct 0.0[$`4esn`] As `4esn` Order By 9e1 Ends With `7esn` Ends With 2.12 Descending,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null Asc,{0} =~{999} Desc Skip 6.0e0[None(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0)..][[_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]]..] Limit [usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]] Union All Optional Match `2esn`=(((@usn6 :`2esn`:`4esn`{@usn6:$12[10.12e12][.1e1],`8esn`:@usn5 In Null})-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(#usn7 )-[`3esn`?:usn2]-(:`1esn`:``{_usn4:123.654[01..][Count(*)..],`8esn`:12e12}))),`5esn`=Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))) Using Index `8esn`:#usn8(#usn8) Using Join On #usn8,#usn7 Where $`1esn` =~`8esn` Optional Match (((`8esn` :`5esn`:`7esn`{usn1:{``} Contains 0.0 Contains `4esn`})-[`2esn`?:`4esn`|:`2esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]->(@usn5 {`8esn`:123456789[#usn7..9e-1][10.12e12..{0}],@usn6:1.0 Is Not Null})-[#usn8?:usn2*..]->(:``{usn2:00 Is Not Null Is Not Null}))) Match (((`7esn` :usn1)<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})<-[`3esn`?:@usn6|:`4esn`]-(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))),``=((:_usn4:`2esn`{@usn5:1e-1[$`4esn`]})<-[? *0]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})) Using Scan ``:`1esn` Union Create Unique Shortestpath(((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999}))),_usn3=(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})"), + octest_legacy:ct_string("With Distinct {_usn4}[{`6esn`}],true In 0.0 As #usn7 Skip Reduce(`2esn`=$@usn5[``..],`7esn` In 0.12 Is Not Null|$`4esn` Is Not Null) =~Any(_usn3 In `8esn`[_usn4] Where {`6esn`} In {_usn4} In $12) =~Reduce(`1esn`=false =~{`8esn`} =~00,`2esn` In $@usn5 Is Not Null Is Not Null|`1esn`[{@usn5}..][{_usn4}..]) Detach Delete $`1esn` Contains {@usn5} Contains 9.1e-1,{`8esn`} Starts With .9e-1 Starts With 1000,@usn5({`3esn`}[..0xabc][..{`6esn`}],7.0e-0 Is Not Null)[..[usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0Xa[999]|$1000 Starts With {@usn6} Starts With $@usn5]][..Reduce(``=1e1 =~{@usn5} =~`7esn`,usn1 In $@usn6 Is Null Is Null|9e-1 Contains 3.9e-1)] Union Start _usn4=Rel:_usn4({`1esn`}) Load Csv With Headers From 9.1e-1 In 9e1 As @usn5 "), + octest_legacy:ct_string("Foreach(`1esn` In `5esn` Contains 0 Contains $12| Load Csv From $12 Contains false Contains {`1esn`} As _usn4 ) Unwind 9e-1[0.0..] As `7esn` Unwind Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`|.9e-12[.12e12..][0Xa..])[{#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}..] As `1esn`"), + octest_legacy:ct_string("Create Unique (((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))),`4esn`=(((`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})-[?:_usn3]->(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})-[:`2esn`|`5esn` *01]-(@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0}))) Load Csv From 1e-1[..$`2esn`][..01] As #usn7 "), + octest_legacy:ct_string("Start usn1=Node:`2esn`({_usn3}) Where {usn1} Is Not Null Foreach(`7esn` In 2.9e1 Ends With `5esn` Ends With 1000| Return Distinct 9e-1 Is Not Null,{`6esn`} In 11.12e-12 In 2.9e1 Order By `3esn` Is Null Is Null Asc,8.1e1[.1e1..][`4esn`..] Asc Skip @usn5[@usn6] Match #usn8=(:`4esn`:usn2) Using Index `4esn`:`1esn`(`2esn`) Where $`5esn` Is Not Null)"), + octest_legacy:ct_string("Start @usn5=Node:#usn7(usn1={`6esn`}) ,usn1=Rel:_usn4(@usn5={`4esn`})Where {12}"), + octest_legacy:ct_string("With Distinct 12.0 =~{@usn6} As _usn3,.1e-1[$@usn6] As `3esn` Skip {`4esn`}[{`3esn`}][$`2esn`] Where .0e-0[..01234567] Return .1e1 Contains 1e-1 Contains #usn8 As ``,None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Starts With {@usn5:999 Ends With {#usn8},_usn4:Null In {7}} As `4esn`,9e-12 Contains .12e12 As `5esn` Order By Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where $usn2[..$999][..#usn8])[Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`)..] Asc,2.9e1 =~Count(*) =~{123456789} Descending Skip 7 Starts With 9e-12"), + octest_legacy:ct_string("Load Csv From Shortestpath((`6esn` :``)) Contains Case When $@usn6[``..][3.9e-1..] Then 7[..123456789][..true] When `4esn` Contains 0X0123456789ABCDEF Contains $usn2 Then 12e12[{`4esn`}..`4esn`][999..{@usn6}] End As _usn4 Fieldterminator \"d_str\" With *,Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Contains (:`2esn`:`4esn`{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``) Contains {@usn6:10.12e12 Contains .9e0,`3esn`:`6esn` =~999 =~$999} As `7esn`,@usn5[{`1esn`}..][Count ( * )..] Skip 2.12[10.12e12][_usn4] Limit 5.9e-12[\"d_str\"..][{`6esn`}..] Where 11.12e-12 Ends With 's_str' Union All Merge @usn6=(({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)) With Distinct {`1esn`}[{usn2}],{usn2} Ends With {@usn6} Ends With 1000 As `6esn` Skip 9e0[`3esn`][0] Where 11.12e-12 Contains usn1 Detach Delete All(`2esn` In $@usn5 Is Not Null Is Not Null Where 2.12[{12}]) Ends With Case `1esn`[..$1000] When .9e-12[.12e12..][0Xa..] Then {`7esn`} Is Not Null Is Not Null Else {@usn6} In 9e12 End Ends With Any(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where .9e12 Is Not Null Is Not Null),(`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End] Union Create Shortestpath((`4esn` )-[:`6esn` *12{#usn7:`3esn` =~$#usn7,`8esn`:0e-0[{@usn6}]}]->(usn1 :#usn7:`8esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)),`3esn`=({#usn8:_usn4[$_usn4]})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7}) Unwind @usn5 In Null As `4esn`"), + octest_legacy:ct_string("Merge `2esn`=((_usn3 :`6esn`{usn2:.9e1 In .1e-1,usn2:1e-1 Contains 0.0})) On Match Set Reduce(`4esn`=.12e12[..$123456789],usn1 In $@usn6 Is Null Is Null|2.9e1 Ends With `5esn` Ends With 1000).#usn7.usn1 =Count(*)[@usn5..],_usn3 =0.12 Ends With 7 Ends With 12 Optional Match #usn8=Allshortestpaths((usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[`3esn`:#usn8|:``{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}]->(:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})),(#usn7 :@usn5)-[:`8esn`|:#usn8 *0X7..0Xa]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(_usn4 :`5esn`:`7esn`{_usn4:$_usn3[.0e-0..999]}) Using Scan #usn7:`` Merge ((#usn7 :@usn6:_usn3)-[:`6esn` *12{#usn7:`3esn` =~$#usn7,`8esn`:0e-0[{@usn6}]}]->(@usn5 :@usn6:_usn3)) Union All Start `2esn`=Rel:usn1('s_str') ,`4esn`=Rel:`2esn`({_usn3}) Start @usn6=Node:`1esn`(_usn4='s_str') Where 1e1 =~{@usn5} =~`7esn`"), + octest_legacy:ct_string("With Distinct 0X0123456789ABCDEF In .9e-1 In 123456789 Order By {7}[#usn7..0xabc] Descending,1e-1[$#usn8] Ascending Limit $1000 Contains {`2esn`} Contains {`8esn`} Where 9e1 Ends With 9e12 Ends With 0x0 Delete $999 =~0x0,12[@usn6][{`2esn`}] With *,Reduce(#usn7=$usn1 Ends With {`2esn`} Ends With $usn1,`6esn` In 010[{`1esn`}..]|.9e-12[.12e12..][0Xa..])[#usn7(8.1e1 Contains $@usn6,$12[$`6esn`..][01..])..Reduce(@usn5=`1esn` In 6.0e0 In 12,`` In `7esn` =~#usn8 =~\"d_str\"|$`6esn` =~$#usn7 =~$`4esn`)] Order By {#usn8} In {12} In .9e12 Asc,9e0[`1esn`..0e-0][00..`1esn`] Ascending Skip 1.0[$12..][\"d_str\"..] Limit {@usn5} Ends With 0Xa Ends With .12e-12"), + octest_legacy:ct_string("Return 2.9e1 Ends With 12e12 Ends With .9e12,$`1esn`[..1000][..\"d_str\"] As `7esn` Union Detach Delete $usn2 =~true =~#usn7 Remove All(@usn6 In 9e12[..usn2][.._usn3] Where .12e12 Ends With 07 Ends With 3.9e-1)._usn4,#usn7($12[10.12e12][.1e1]).`6esn`!.usn2?.usn2! Union Merge (((#usn7 :`6esn`{usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]-(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}))) Merge Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))) On Match Set #usn7 =``[$7..$_usn4] On Match Set Shortestpath(((@usn6 :@usn6:_usn3))).usn1 =01 =~{_usn3} =~01,`2esn`:`6esn`,Any(usn1 In $@usn6 Is Null Is Null Where {_usn4}[{`6esn`}]).usn1?.`4esn`.`8esn`? =010 Starts With 9e12 Starts With 1000"), + octest_legacy:ct_string("Delete .9e-1 Contains {#usn7},$`2esn` Is Null,[usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]][`5esn`(Distinct $@usn5[`8esn`][12e12])..][``(Distinct $1000 Is Null,1e-1[$`4esn`])..] Load Csv With Headers From 0x0 Contains 7.0e-0 As `4esn` Fieldterminator 's_str' Union All Remove Case 9e-12 Starts With {1000} When `1esn`[Null][{@usn6}] Then {_usn3} Is Null Is Null When 10.12e12[usn2] Then $12 =~4.9e12 Else .9e12[6.0e0..][@usn5..] End.@usn5! Create (`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})))"), + octest_legacy:ct_string("Optional Match `5esn`=Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))),#usn7=((`1esn` :`5esn`:`7esn`)) Using Index _usn4:`1esn`(@usn5) Where usn2[12e-12..{`8esn`}][.12e12..{123456789}]"), + octest_legacy:ct_string("Detach Delete `4esn` =~010,`5esn`[..12.0],11.12e-12 Starts With 1.0 Starts With 12.0 Merge ((:`7esn`{`3esn`:`7esn`[1.9e0..5.9e-12][9e0..@usn5],#usn8:$`6esn` In 999 In {_usn3}})) On Create Set Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0[..{#usn7}][..$_usn3]).#usn7? ={@usn5}[10.12e12..],[`1esn` In $12 In {usn2} Where 9e-1[1.9e0]]._usn4!.`4esn`? ={`8esn`}[@usn5][$`2esn`],`1esn` ={@usn6:$12 Is Null} In (`4esn` {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}) Start @usn6=Relationship:`3esn`(#usn7={_usn3}) ,_usn4=Node:@usn6(#usn8='s_str')Where #usn8 Is Null Is Null Union All Delete 0[10.12e12],6.0e0 Is Not Null Is Not Null,1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Union Create Unique ((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)),_usn4=(`8esn` :`4esn`:usn2)-[#usn8?:`8esn`|:#usn8 *999..123456789]->(#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})"), + octest_legacy:ct_string("Using Periodic Commit 0 Load Csv From {123456789} Starts With `6esn` As `8esn` Fieldterminator 's_str' Detach Delete #usn7 In 07,[`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null] =~`6esn`(Distinct 2.9e1[Count ( * )..]),Extract(`1esn` In $12 In {usn2} Where 12e12[{`4esn`}..`4esn`][999..{@usn6}])[None(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}][Reduce(#usn7=12[..$`5esn`],usn1 In $@usn6 Is Null Is Null|12e12 Ends With `5esn` Ends With .0e0)..[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 0.12 Is Not Null]]"), + octest_legacy:ct_string("Optional Match _usn3=(({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})),#usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2)))) Start `2esn`=Node:`8esn`(#usn7={`6esn`}) Where 9e-1 Contains 3.9e-1 Unwind Extract(`1esn` In $12 In {usn2} Where 12e12[{`4esn`}..`4esn`][999..{@usn6}])[None(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}][Reduce(#usn7=12[..$`5esn`],usn1 In $@usn6 Is Null Is Null|12e12 Ends With `5esn` Ends With .0e0)..[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 0.12 Is Not Null]] As `1esn` Union All Load Csv From {1000} Contains `5esn` Contains 4.9e12 As _usn4 Load Csv From {0}[.0e-0][$`2esn`] As `3esn` "), + octest_legacy:ct_string("Create Unique #usn7=(((:`3esn`)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))),Allshortestpaths(((:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))) Return Distinct 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Skip {usn1:$1000 Is Null}[Shortestpath((:usn1$1000))..][Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true)..] Union All With Distinct 1e-1[$`4esn`] Order By Count(*)[Null..][01234567..] Ascending,Count ( * ) =~.9e1 =~$#usn8 Ascending Skip Count ( * ) Contains 9.1e-1 Contains {`2esn`} Where @usn5 In Null Remove `2esn`:_usn3,Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $usn1 Contains 4.9e12 Contains $`2esn`).usn2?.`1esn`!,`1esn`:`5esn`:`7esn` Union Start `3esn`=Relationship:usn2({usn2}) "), + octest_legacy:ct_string("Match Shortestpath((:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})),`8esn`=(({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})) Using Index @usn5:`5esn`(usn2) Using Join On ``,`4esn`,_usn4 Where 9e-12[010..{#usn7}][{123456789}..7] Unwind [`6esn` In 010[{`1esn`}..] Where 7 Starts With 9e-12|Null[#usn7..][9.1e-1..]][None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`})..][`1esn`(@usn5[9e-1..{`1esn`}],$`4esn`[$@usn6...12e12])..] As `3esn` Union Remove None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e-12[9e1]).`7esn`?,{`5esn`:{`6esn`}[@usn5..{@usn6}],`6esn`:$`6esn` Starts With 0.0}.usn2!"), + octest_legacy:ct_string("With Distinct Allshortestpaths(((@usn6 :@usn6:_usn3))) Is Null Is Null As @usn5,0.12 In $`4esn` In $`3esn`,$123456789 =~1e-1 As _usn4 Skip Single(`` In `7esn` =~#usn8 =~\"d_str\")[Reduce(`3esn`=1e1[$_usn3],`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1[..9.1e-1][...9e1])][[#usn7 In .0e-0 In 12 Where \"d_str\"[0x0..{@usn6}][$@usn5..0]|{7}[$@usn5..123456789][1e1..1.9e0]]] Create (#usn8 :_usn4:`2esn`) Create Unique (((`1esn` :`3esn`{@usn6:$12 Is Null})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),`3esn`=(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0})-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[usn1?:`3esn`|`3esn`*..]-(`1esn` )"), + octest_legacy:ct_string("Merge #usn8=((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) On Create Set `5esn`+=.12e12 Ends With 07 Ends With 3.9e-1,`1esn` =1e-1 =~$`7esn` =~1e1 On Create Set `7esn` =1e1 Ends With $_usn3 Ends With .1e1"), + octest_legacy:ct_string("Create Unique (:usn1{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`),``=Shortestpath((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) Union All Delete $12 =~4.9e12,Case {`4esn`} Ends With Count(*) When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] When $#usn7 Contains 3.9e-1 Then 123.654[10.12e12..$12][6.0e0..{#usn8}] Else $usn1[0e0...9e-12] End[Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))..][Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})..] Union All Foreach(@usn6 In Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null| Unwind .0e-0 Contains $1000 As `3esn`) Foreach(`6esn` In Any(usn1 In $@usn6 Is Null Is Null Where 9e0[`3esn`][0]) Ends With None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[01234567][{#usn7}]) Ends With Any(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}])| Load Csv With Headers From 0[..{#usn7}][..$_usn3] As `7esn` Fieldterminator 's_str' Unwind `8esn`[0e-0.._usn3][Null..`6esn`] As `2esn`) With Distinct _usn3($0 Ends With 9e-12 Ends With $_usn4) Is Null Is Null As `4esn`,1.9e0 In 2.12 As usn2,$#usn7[$``..999][$usn2..$usn2] Order By `4esn` =~usn1 =~Count(*) Descending,Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]) Desc Skip 2.12 Is Not Null Is Not Null Limit {`5esn`}[01234567..][5.9e-12..]"), + octest_legacy:ct_string("Load Csv From 's_str'[$`8esn`..$999] As @usn6 "), + octest_legacy:ct_string("With Distinct $usn2 Starts With $999 Starts With .0e0,Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $`` =~$_usn3) In .0e0 In Shortestpath((:`7esn`{usn2:00 Is Not Null Is Not Null})) Skip 0xabc Contains 12 Contains Null Limit None(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {0}[.1e-1..][_usn4..])[Case {_usn3} In $#usn8 In $12 When $`5esn` =~Count(*) =~1.9e0 Then {123456789} Ends With 11.12e-12 Ends With 00 Else 01 =~{_usn3} =~01 End..][Case When .1e1 Is Not Null Is Not Null Then @usn6 Starts With #usn7 When {1000}[`2esn`...0e-0][9e-1..0X7] Then $`8esn`[..12][..9e12] End..] Where `5esn` Contains 0 Contains $12"), + octest_legacy:ct_string("Detach Delete 0.12[8.1e1..0Xa][Count ( * )..{_usn3}],7 Starts With `` Starts With usn2 Return `1esn` In 6.0e0 In 12,11.12e-12 Starts With 1.0 Starts With 12.0 As `6esn`,$`7esn` Contains .12e12 Order By 9e0 Ends With {7} Descending,Extract(`1esn` In $12 In {usn2} Where 2.9e1 =~Count(*) =~{123456789})[{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}..][123.654..] Desc,1.9e0[`6esn`][`7esn`] Asc"), + octest_legacy:ct_string("Foreach(`` In Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`8esn`}[..999][.._usn3]) Starts With Reduce(``=$#usn7 Ends With 999 Ends With {12},`2esn` In $@usn5 Is Not Null Is Not Null|{`6esn`} Starts With .12e-12)| Create Unique `6esn`=(`7esn` {#usn8:2.9e1[{`2esn`}]})<-[`7esn`?:`7esn`|usn1 *1000..{@usn6:#usn7 In 07,#usn8:$999[usn1..0e-0]}]->(#usn7 {usn1:2.12[{12}]})) Return *"), + octest_legacy:ct_string("Match `2esn`=((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})),Allshortestpaths((:`3esn`{@usn5:9e12[..usn2][.._usn3]})) Using Join On `6esn`,_usn3 Where $0 Ends With 9e-12 Ends With $_usn4 Match _usn4=(({`2esn`:00[Null..usn2],`2esn`:3.9e-1[..$1000][..0.12]})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})),_usn4=Allshortestpaths(((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))) Using Scan #usn7:`3esn` Using Index @usn5:`4esn`(usn1) Start #usn7=Node:@usn6(#usn8='s_str') ,_usn4=Rel:`5esn`(@usn5=\"d_str\")"), + octest_legacy:ct_string("Match Allshortestpaths((`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})-[`3esn`?:`3esn`|`3esn`*..]-({`6esn`:1000[{`1esn`}..][$`3esn`..]})) Where $`4esn` In {999} With Distinct {usn2} In false,{_usn4} In 0X7 In 0e0 As `2esn` Order By {#usn8} In {12} In .9e12 Asc,9e0[`1esn`..0e-0][00..`1esn`] Ascending Where $_usn3[0X0123456789ABCDEF..][0x0..] With *,00[(`3esn` :_usn3{@usn6:0.12 Is Not Null})-[#usn8:`5esn`]-({`6esn`:12[@usn6][{`2esn`}]})..] As @usn5,\"d_str\" Starts With $`7esn` Starts With 999 Order By Case {1000}[..{usn1}][..1e-1] When {@usn5}[10.12e12..] Then 1.0 Is Null Is Null When {`3esn`} Is Not Null Is Not Null Then .1e1 Contains 1e-1 Contains #usn8 Else $`5esn`[{`4esn`}][{0}] End[..{usn1:1.9e0[..0][.._usn3],`7esn`:1.9e0[.12e-12][9e-12]}][..{`1esn`:{0} Is Null Is Null}] Asc,`3esn` Ends With $`` Ends With #usn7 Descending Skip {`6esn`} In {_usn4} In $12 Where {0}[`4esn`..{`8esn`}] Union Match `2esn`=(((:`7esn`{`4esn`:@usn5 =~$#usn7 =~{usn1}})<-[?:`1esn`|:`1esn`]-(usn2 :``{#usn7:1e-1 =~$`7esn` =~1e1,`7esn`:{0}[`4esn`..{`8esn`}]})<-[:`6esn` *1000..{#usn7:`2esn`,`7esn`:$@usn5 Is Not Null Is Not Null}]->(@usn5 {`8esn`:123456789[#usn7..9e-1][10.12e12..{0}],@usn6:1.0 Is Not Null}))),#usn7=Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)) Using Index @usn5:`3esn`(`8esn`) Foreach(`3esn` In Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End Ends With Reduce(``={`3esn`}[$#usn8..],usn1 In {#usn7} =~.12e12 =~9e0|2.9e1[{`2esn`}]) Ends With [`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}|$`` =~$_usn3]| Detach Delete 0.0[`7esn`],$12 Contains 's_str') Unwind 12e-12 Starts With $`7esn` As usn2 Union Load Csv With Headers From Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) As `8esn` Fieldterminator 's_str' Start `3esn`=Node(0xabc,7,0Xa,01234567) Where $`8esn` Is Not Null Is Not Null"), + octest_legacy:ct_string("Using Periodic Commit 0x0 Load Csv From `1esn`({`4esn`} Ends With Count(*),$usn1 Contains 4.9e12 Contains $`2esn`) Is Not Null Is Not Null As `5esn` "), + octest_legacy:ct_string("Start _usn3=Rel:usn2(#usn7='s_str') ,_usn3=Node( {usn2}) Union Remove All(usn1 In {#usn7} =~.12e12 =~9e0 Where {7}[$@usn5..123456789][1e1..1.9e0]).`6esn`!,{`8esn`:2.9e1[Count ( * )..]}.@usn6.usn2!,Any(_usn3 In `8esn`[_usn4] Where 010[..9e-1][..0X7]).`1esn`? Create `2esn`=Allshortestpaths(((:#usn8:@usn6{`3esn`:$#usn7})))"), + octest_legacy:ct_string("With {`5esn`} Is Not Null Is Not Null As `6esn`,[usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0|4.9e12 Is Not Null Is Not Null] =~Case {_usn3} In $#usn8 In $12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else 0[..{0}][..true] End =~Case Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else $_usn3 Starts With 010 End As `7esn` Order By Extract(@usn6 In 9e12[..usn2][.._usn3] Where 01[`4esn`..]|$`7esn` In $@usn5) Ends With Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Ends With {#usn8:`6esn`[$@usn5][01]} Ascending,false[9e12] Descending,{0}[..`3esn`][..\"d_str\"] Ascending Skip Case false =~$7 When 999 Ends With {#usn8} Then `1esn` =~{12} =~{999} Else @usn5 In Null End[..Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $#usn8[$0..`3esn`][1e-1..$7])] Optional Match @usn6=Shortestpath((@usn6 :`5esn`:`7esn`)) Union Return *,Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]) As _usn3,[usn1 In \"d_str\" Contains {@usn6} Where $`8esn`|0X0123456789ABCDEF Is Not Null Is Not Null] Is Null Is Null Order By Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where .9e1[$`1esn`..][$``..]) Ascending,7.0e-0 Ends With {123456789} Ends With @usn6 Descending Start usn2=Relationship:`8esn`(#usn8='s_str') "), + octest_legacy:ct_string("Create `5esn`=Shortestpath((`5esn` :``{_usn3:$_usn4[..$999],`7esn`:0X0123456789ABCDEF Ends With {1000}})-[*{@usn5:`6esn` =~999 =~$999}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})) Create Unique @usn6=Allshortestpaths((((:`1esn`:``{`8esn`:5.9e-12[0x0..]})-[?:`1esn`|:`1esn` *999..123456789]-(usn2 :@usn6:_usn3)<-[_usn4:`2esn`|`5esn` *7{`2esn`:999 Ends With {#usn8},#usn8:.12e12 Is Not Null}]-(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})))) Union With $`7esn` In $@usn5,{999} =~$`6esn` =~$`6esn` As `1esn`,12[4.9e12..] As #usn8 Skip [@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null] Starts With Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789) Starts With All(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0) Where {_usn4} In 0X7 In 0e0 Unwind #usn7 In 07 As `` Merge Allshortestpaths(((@usn6 :`5esn`:`7esn`)-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)-[`3esn`:`6esn` *..0x0]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}))) On Match Set `2esn`+=9e1[0.0],#usn8+=.12e-12[@usn6..'s_str'],{`6esn`:4.9e12 Is Not Null Is Not Null,_usn4:`4esn`[9e-12..true]}.#usn8._usn3? =Shortestpath((((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))))[None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0.0[`7esn`])..Single(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])][`5esn`(Distinct .9e1[$`1esn`..][$``..])..Case When 12e12 Ends With `5esn` Ends With .0e0 Then .9e0 In 8.1e1 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else .9e1 Ends With 0x0 End] On Create Set @usn6+=00 =~`4esn` =~.9e-12,`3esn` =$123456789,[usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF].`5esn`! =.0e-0 Ends With $`2esn` Ends With `5esn` Union Remove All(usn1 In $@usn6 Is Null Is Null Where _usn4 Is Not Null Is Not Null).`7esn`!.@usn5?"), + octest_legacy:ct_string("Return *,{`7esn`} =~\"d_str\" =~{``} Skip $_usn4 Ends With {#usn8} Limit $12 Is Not Null Is Not Null"), + octest_legacy:ct_string("Optional Match ((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})) Using Index #usn7:`4esn`(@usn5) Using Join On `4esn`,`2esn`,`` Where {123456789} Starts With $_usn4 Starts With 0x0 Unwind 2.9e1 =~Count(*) =~{123456789} As `1esn`"), + octest_legacy:ct_string("Using Periodic Commit 999 Load Csv With Headers From 1.9e0[..0][.._usn3] As @usn5 Fieldterminator \"d_str\" Delete $`1esn` Ends With 1000"), + octest_legacy:ct_string("Start `7esn`=Relationship:usn1(usn2='s_str') ,`1esn`=Rel:@usn6(`2esn`='s_str')Where 999[..$@usn5][..``] Foreach(`1esn` In Case When true In 0.0 Then {`4esn`}[{`3esn`}][$`2esn`] Else @usn6 Starts With #usn7 End =~{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}} =~{_usn3:010[..9e-1][..0X7]}| Create Shortestpath(((`1esn` :`8esn`)-[`7esn`?:`2esn`|`5esn` *0]->(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))),`7esn`=((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))) Create Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2)))),@usn5=(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})<-[{usn1:$_usn3 Starts With 010}]-(#usn8 :`8esn`)"), + octest_legacy:ct_string("Remove {`3esn`:{#usn7} Is Not Null,`7esn`:7 In 1e1 In {``}}.`1esn`!,`7esn`:`` Union Start _usn3=Relationship(0x0) ,``=Relationship( {@usn5})Where 0Xa In 1.0 In $@usn5"), + octest_legacy:ct_string("Unwind Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] As usn1 Union Create ((`3esn` :#usn8:@usn6))"), + octest_legacy:ct_string("Start `3esn`=Rel:`7esn`(`8esn`={`3esn`}) Where {`8esn`} In {_usn3} In 6.0e0 Union Optional Match (((`7esn` :usn1)<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})<-[`3esn`?:@usn6|:`4esn`]-(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))),`6esn`=(((`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn2 *7]-(`8esn` {_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}))) Using Join On _usn4 Where @usn5 In Null Delete Case {1000}[..`5esn`][..9e12] When $`8esn` Then Null[$`3esn`..][`1esn`..] End =~None(`` In `7esn` =~#usn8 =~\"d_str\" Where 7 In 1e1 In {``}) =~{`6esn`:usn2 Contains `2esn` Contains {1000}},Single(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str') =~{``:01234567[10.12e12][0Xa]},(`1esn` {`2esn`})-[@usn6:`3esn`|`3esn` *0X7..0Xa]->(_usn4 :#usn8:@usn6)[Allshortestpaths((`3esn` :`6esn`{_usn3:.12e-12 Ends With `2esn`,usn1:Null[#usn7..][9.1e-1..]})-[_usn3?:@usn5|:#usn7]->(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]}))][Filter(usn2 In .12e-12 Ends With `2esn` Where 0.12 =~2.9e1 =~9e1)] Foreach(#usn7 In 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]| Unwind (`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End] As `7esn`)"), + octest_legacy:ct_string("Unwind (usn2 )-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(_usn4 :`1esn`:``{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}})-[:`2esn`|`5esn` *999..123456789{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]}]-(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}) =~Case When {`1esn`} Is Null Then .1e1[{@usn6}][true] When \"d_str\" Starts With $`7esn` Starts With 999 Then 07[..$`5esn`] Else 00[Null..usn2] End As @usn6 Start _usn3=Rel:usn2(#usn7='s_str') Union All Create Unique ((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})-[{``:{`3esn`}[01234567][{#usn7}],_usn4:999 Is Null Is Null}]->(usn2 {``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})),``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))) Match @usn5=Allshortestpaths((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``))),_usn4=(({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[#usn8? *0Xa..12]->(`7esn` {#usn8:2.9e1[{`2esn`}]})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]})) Using Scan @usn5:`5esn` Using Scan `1esn`:`2esn` Where .12e-12[@usn6..'s_str']"), + octest_legacy:ct_string("Detach Delete .9e-1 Is Not Null Is Not Null,$_usn3[.0e-0..999],0X0123456789ABCDEF Ends With {1000} Return *,0.12 In $`4esn` In $`3esn` As usn1 Skip #usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Limit Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]]"), + octest_legacy:ct_string("Unwind 0xabc[9.1e-1..] As `6esn` Union Remove `7esn`:`4esn`:usn2,Filter(usn2 In .12e-12 Ends With `2esn` Where $7).usn1.#usn7!.`5esn` Start `8esn`=Node( {`4esn`}) ,`3esn`=Node( {1000}) Union All Foreach(#usn8 In 9e12 Is Null| Unwind Allshortestpaths(((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}))) Is Null Is Null As usn2 Remove Filter(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12).`3esn`?.`7esn`?,Allshortestpaths((((`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})-[`8esn`:`4esn`|:`2esn`]->(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})))).`3esn`) Detach Delete [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End,8.1e1[$``] Remove (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)}).`8esn`.`3esn`?,@usn6:usn2"), + octest_legacy:ct_string("Using Periodic Commit Load Csv From {`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]} Is Null Is Null As _usn3 "), + octest_legacy:ct_string("Using Periodic Commit 0Xa Load Csv From {`8esn`}[..999][.._usn3] As #usn8 Fieldterminator 's_str'"), + octest_legacy:ct_string("Merge Allshortestpaths(((_usn4 {_usn3:.0e-0[..``][..$7]}))) On Match Set @usn5+=Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null Return Distinct $_usn3 Contains 1.0 Contains 0.12 As ``,({`7esn`:{`3esn`}[$#usn8..],`4esn`:{`8esn`}[..999][.._usn3]})-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Contains Reduce(``=0xabc Starts With 12 Starts With 0e-0,_usn3 In `8esn`[_usn4]|12.0 Starts With 00) Contains Any(@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null) As `2esn` Order By {`7esn`} =~\"d_str\" =~{``} Desc,{@usn5:$@usn5 Is Not Null Is Not Null} Contains None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[..0xabc][..{`6esn`}]) Desc Union Unwind 9e-12 Ends With 9e1 Ends With 4.9e12 As `7esn` Start `2esn`=Relationship:_usn4(@usn6=\"d_str\") ,``=Node:``(`1esn`=\"d_str\")Where $`6esn`[..01][..{_usn3}]"), + octest_legacy:ct_string("Unwind {12}[true..][7..] As @usn5 Load Csv With Headers From \"d_str\" Contains {@usn6} As `3esn` Fieldterminator \"d_str\" Union Unwind #usn7 Is Null Is Null As usn1 Foreach(`4esn` In 11.12e-12 In {usn1}| Match Shortestpath((@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?:`8esn`|:#usn8 *999..123456789]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})),`3esn`=(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0})-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[usn1?:`3esn`|`3esn`*..]-(`1esn` ) Using Scan ``:#usn8 Remove ``(.9e-1 Is Null Is Null,{`8esn`}[@usn5][$`2esn`]).`1esn`._usn4)"), + octest_legacy:ct_string("Optional Match Allshortestpaths((`6esn` {`3esn`:Count ( * )[_usn4..]})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})-[:`6esn` *12{#usn7:`3esn` =~$#usn7,`8esn`:0e-0[{@usn6}]}]->(:`1esn`:``)),`3esn`=((:`5esn`:`7esn`{`4esn`:2.9e1[{`2esn`}]})-[`3esn`:#usn8|:``{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}]->(:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})<-[@usn5?:#usn7|:@usn5]->(:`8esn`{`2esn`:0[..{#usn7}][..$_usn3],#usn8:.9e-1 Is Null Is Null})) Using Scan `6esn`:#usn7 Using Join On @usn6,#usn7 Where 0X0123456789ABCDEF In false Union Return Distinct $12 Contains 's_str',.9e1 Is Null Is Null As `` Skip {`7esn`}[@usn5] Merge @usn6=((`` {_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})) On Match Set `2esn`+=9e1[0.0],#usn8+=.12e-12[@usn6..'s_str'],{`6esn`:4.9e12 Is Not Null Is Not Null,_usn4:`4esn`[9e-12..true]}.#usn8._usn3? =Shortestpath((((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))))[None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0.0[`7esn`])..Single(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])][`5esn`(Distinct .9e1[$`1esn`..][$``..])..Case When 12e12 Ends With `5esn` Ends With .0e0 Then .9e0 In 8.1e1 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else .9e1 Ends With 0x0 End] Unwind 7[{`4esn`}..] As `3esn`"), + octest_legacy:ct_string("Create Unique (({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})),usn1=({#usn8:_usn4[$_usn4]})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7}) Union Unwind 9e1[$``.._usn4][999..`3esn`] As @usn5 Merge usn1=Shortestpath((`1esn` :`7esn`{usn1:3.9e-1 Starts With .9e0 Starts With {#usn7}})<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`6esn` :`4esn`:usn2)-[`1esn`]-(`2esn` :`2esn`:`4esn`{#usn7:0 Starts With `7esn` Starts With 9e0})) On Match Set `1esn`+=[_usn3 In `8esn`[_usn4] Where {#usn7} Starts With .1e-1|`3esn` Is Null] Contains `5esn`({#usn8} Ends With _usn3 Ends With `2esn`,.9e0 =~#usn7),@usn6 =[`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0|{`4esn`} In 1000 In {@usn5}] Is Null,{`1esn`:$999 Is Not Null}.`6esn`? =Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) On Match Set `6esn`+=\"d_str\" Starts With ``,[usn1 In \"d_str\" Contains {@usn6} Where $`8esn`|$usn1 =~.0e0 =~{`4esn`}].`4esn`! =.9e0 Is Not Null,usn2 =Case When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else {123456789} Starts With `6esn` End =~Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where `4esn` Contains 0X0123456789ABCDEF Contains $usn2) =~Allshortestpaths((`7esn` :``{usn2:$7})) Match Shortestpath(((:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(`2esn` :_usn3)<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(:#usn7:`8esn`))),_usn4=((`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})) Using Scan #usn8:`1esn` Where $`4esn`[$@usn6...12e12]"), + octest_legacy:ct_string("Start #usn7=Relationship:#usn8(usn2={12}) Where 01234567 Ends With .0e0 Ends With 12e12"), + octest_legacy:ct_string("Foreach(`3esn` In Extract(@usn6 In 9e12[..usn2][.._usn3] Where 01[`4esn`..]|$`7esn` In $@usn5) Ends With Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Ends With {#usn8:`6esn`[$@usn5][01]}| Match ((`4esn` {@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})) Using Index `5esn`:`4esn`(_usn3) Using Join On #usn7,`7esn`) Union Optional Match _usn3=Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}))),usn1=(({`2esn`:0[..{#usn7}][..$_usn3],`5esn`:`2esn` Starts With 010 Starts With ``})-[``?{``:{#usn7} =~$@usn6 =~$7}]-(`3esn` :@usn5)-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})) Using Index usn1:#usn8(``) Using Index `6esn`:usn1(#usn8) Where {0} In {`1esn`}"), + octest_legacy:ct_string("Foreach(_usn4 In 07 Ends With {1000} Ends With 01234567| Create Unique Allshortestpaths((((@usn6 :`5esn`:`7esn`)-[`8esn`{#usn8:.12e12[..7]}]-({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))))) Return *,$`6esn` Limit {12} Starts With 01 Starts With $1000 Optional Match ((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)) Union All Create _usn3=Shortestpath((_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})),`5esn`=(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})<-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-(@usn5 :@usn6:_usn3{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`2esn` *1000..{`2esn`:{@usn6} In 9e12}]->(:usn1{usn1:true In 0.0,@usn5:{`1esn`} Is Null})"), + octest_legacy:ct_string("Start #usn8=Relationship:``({7}) ,`4esn`=Rel:@usn5(_usn4='s_str')Where $999 =~false =~{`8esn`} Load Csv With Headers From 0X0123456789ABCDEF In .9e-1 In 123456789 As usn1 Fieldterminator \"d_str\" Optional Match `7esn`=Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))) Where 0xabc[0Xa..] Union All Unwind 12e-12 Starts With $`7esn` As `6esn` Unwind {`4esn`}[..{`2esn`}] As `5esn` Union All Foreach(usn1 In [`` In `7esn` =~#usn8 =~\"d_str\"|$_usn4 Ends With {#usn8}][Single(`7esn` In 0.12 Is Not Null Where 4.9e12 Starts With {``})..]| Create Unique _usn4=((#usn8 {``:@usn6 Starts With #usn7,@usn6:7[..123456789][..true]})-[`7esn`?:@usn6|:`4esn` *..00{_usn3:1.9e0 In $@usn6 In $_usn3}]-(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})),#usn7=Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)) Start `5esn`=Relationship:#usn8(@usn5={@usn6}) Where 0.12 =~`6esn` =~.9e-1) Start `7esn`=Node:usn2({`1esn`}) ,usn2=Rel:``(_usn3='s_str')Where 10.12e12[usn2]"), + octest_legacy:ct_string("Detach Delete 0e-0[{@usn6}],{0} =~{999},$`3esn`[0e-0] Return Distinct 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Skip {usn1:$1000 Is Null}[Shortestpath((:usn1$1000))..][Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true)..] Merge ((_usn3 {_usn3:.12e-12 Ends With `2esn`,usn1:Null[#usn7..][9.1e-1..]})<-[`8esn`{`8esn`:{usn2} Is Not Null Is Not Null}]->(`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]-({`5esn`:$`4esn` Ends With .12e12 Ends With 123.654,@usn6:{123456789} Contains $0})) On Match Set `5esn` =(`4esn` {``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})-[?:#usn7|:@usn5 *12]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}) Contains Case 1.0 Is Null Is Null When .12e12[..7] Then $_usn4[..$999] When .0e-0[..01234567] Then $#usn7 Starts With $123456789 End Contains Shortestpath((usn1 :#usn8:@usn6)),Reduce(`8esn`={12} Ends With $`3esn` Ends With 0xabc,`1esn` In $12 In {usn2}|6.0e0 Is Not Null Is Not Null).``? =`6esn`[..$0][..{7}]"), + octest_legacy:ct_string("Match ((#usn8 :usn2)-[``? *0Xa..12{@usn5:01 Ends With .0e0 Ends With 7.0e-0,_usn3:0.0[00..][0xabc..]}]-(usn2 :`2esn`:`4esn`{`7esn`:@usn5 =~$#usn7 =~{usn1}})) Using Index usn1:``(@usn5) Create (`1esn` :`7esn`) Return Distinct *,$999 =~0e0 =~0X7 As `1esn` Skip {7} Is Not Null Union All Merge `5esn`=((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})) On Match Set (:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12}).`3esn`! =0x0[{`6esn`}..],_usn3+=Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`|.9e-12[.12e12..][0Xa..])[{#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}..],`4esn` ={`8esn`}[.0e0..][999..] Create Unique Shortestpath((@usn6 :@usn5)),@usn6=(({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)) Create (_usn4 :`6esn`)<-[`2esn` *7]->(`4esn` :@usn5),_usn3=(_usn3 :`1esn`:``{`8esn`:{#usn8} In {12} In .9e12})<-[?:`3esn`|`3esn` *999..123456789{_usn3:$`4esn`[$@usn6...12e12]}]->(usn1 {#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]})"), + octest_legacy:ct_string("Remove {usn1:9e-1[1.9e0],@usn6:0[10.12e12]}.#usn7! Remove (`3esn` )<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(`7esn` )<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}).#usn8,#usn7(07[{@usn5}..],{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1])._usn3.`4esn`?"), + octest_legacy:ct_string("Using Periodic Commit 01 Load Csv With Headers From .1e1[{@usn6}][true] As `4esn` Create Unique usn2=Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Optional Match Shortestpath(((`8esn` :@usn6:_usn3{`2esn`:#usn7 =~$@usn5 =~{7},`2esn`:{`3esn`}[..{`4esn`}][..usn2]})-[`8esn`:`4esn`|:`2esn`]->(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1}))),`2esn`=(usn1 :#usn8:@usn6)"), + octest_legacy:ct_string("Start ``=Relationship:@usn6(#usn8='s_str') Where {``}[usn1..][{`8esn`}..] Unwind $12[$`6esn`..][01..] As #usn7 Union All Create `6esn`=Shortestpath((@usn5 :_usn4:`2esn`{@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})),`2esn`=Shortestpath(((`1esn` :`7esn`{usn1:3.9e-1 Starts With .9e0 Starts With {#usn7}})<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]}))) Load Csv With Headers From Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|`3esn` Is Null) In usn1(Distinct $999[usn1..0e-0],0Xa[999]) In Case 0X0123456789ABCDEF Is Not Null Is Not Null When Count ( * )[_usn4..] Then $999 Ends With `2esn` Ends With 12.0 Else .9e1 In .1e-1 End As `` Fieldterminator 's_str'"), + octest_legacy:ct_string("With Distinct *,{@usn5:5.9e-12 Is Null Is Null} Ends With Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where _usn4['s_str'][8.1e1]|0.12 =~2.9e1 =~9e1) Ends With All(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12) Limit 12[11.12e-12..][`4esn`..] Where $#usn7 Merge Allshortestpaths((:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})-[?:@usn5|:#usn7 *0]->(`4esn` :`8esn`{`4esn`:4.9e12 Starts With {``},`8esn`:$12 Ends With {_usn4} Ends With $`8esn`})-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12})) On Match Set `1esn` ={`2esn`}[0x0..9e0],Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]).`8esn`? ={123456789} Contains $#usn7 Contains {#usn8},`5esn` =Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End Ends With Reduce(``={`3esn`}[$#usn8..],usn1 In {#usn7} =~.12e12 =~9e0|2.9e1[{`2esn`}]) Ends With [`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}|$`` =~$_usn3] Union Create ({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})<-[_usn3? *0xabc..12]->(_usn3 {#usn7:$999 =~false =~{`8esn`}}) Start _usn3=Node( {123456789}) Where {`3esn`}[$#usn8..] With Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn`) Contains (`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) Contains Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}),1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As _usn4 Skip (`1esn` :`8esn`{`6esn`:9e-1 Contains 3.9e-1,_usn4:{`3esn`}[...1e1][..0]})<-[`7esn`?:@usn5|:#usn7]->(`8esn` :@usn6:_usn3)<-[`1esn`:#usn7|:@usn5 *..123456789]-({#usn7:{7}[0x0][1e1]})[{`3esn`:0.12 In $``}] Limit 11.12e-12 =~Count ( * ) Union Merge `7esn`=((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]})) On Match Set usn1 ={`6esn`} In 11.12e-12 In 2.9e1,#usn8+={@usn5} Contains .1e1 Contains {`5esn`},@usn6+={`3esn`}[#usn7]"), + octest_legacy:ct_string("Unwind 9e0 Is Null As ``"), + octest_legacy:ct_string("Return *,$123456789 As #usn8 Order By 6.0e0 Is Null Asc,0.0 In .0e-0 Ascending Skip usn2[12e-12..{`8esn`}][.12e12..{123456789}] Remove (@usn6 :@usn5)-[`3esn`? *..07]-(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]}).`6esn`?,Reduce(`6esn`=5.9e-12 Contains {12} Contains {#usn8},usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{123456789} Ends With 11.12e-12 Ends With 00).`2esn` With Distinct *,{7} Ends With 999 As @usn5 Order By 7.0e-0 Ends With 0e0 Ends With 3.9e-1 Asc Skip {`5esn`}[{1000}..] Union Foreach(@usn5 In {@usn5}[10.12e12..]| Unwind {12}[true..][7..] As @usn5) Start #usn7=Rel:``({0}) ,``=Relationship:@usn6(#usn8='s_str') Union All Merge Shortestpath(((:_usn3{_usn3:010[..9e-1][..0X7]}))) On Match Set `3esn`+=Case .12e-12 Is Null When Count ( * )[_usn4..] Then 7.0e-0 Is Not Null When 2.12[{12}] Then {usn2} Ends With {@usn6} Ends With 1000 End[Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..])][({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})],_usn4+=Single(_usn3 In `8esn`[_usn4] Where $_usn3[usn2..][usn1..])[{`6esn`:Count(*) =~01234567 =~.1e-1}..[usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]]],`2esn`+=0X0123456789ABCDEF In false Create ``=Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))) Create Unique (@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})<-[`7esn`?]-(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}),`7esn`=(({_usn4:1e-1[$`4esn`]}))"), + octest_legacy:ct_string("Merge ``=((_usn4 {_usn3:.0e-0[..``][..$7]})) On Create Set `6esn`+=00 In {#usn7} In $usn1 Return Reduce(#usn7=#usn8[\"d_str\"..usn2],#usn7 In .0e-0 In 12|`` Ends With 1.0 Ends With usn1) Ends With [_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3]] Ends With Shortestpath((((:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[`2esn`?:`8esn`|:#usn8]->(`` )<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)))),Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As usn1 Limit Case Null[#usn7..][9.1e-1..] When 12.0[..Count ( * )][..@usn6] Then {0} In {`1esn`} When 4.9e12 Starts With {``} Then $`8esn` Is Null Is Null Else $#usn7 Contains 3.9e-1 End Contains None(#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null) Contains [usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]] Load Csv With Headers From $123456789[1e1][$`8esn`] As `` Union All Unwind {`7esn`}[$12..123456789] As usn1 Foreach(`3esn` In $123456789| Delete {usn2} Is Not Null Is Not Null,Extract(#usn7 In .0e-0 In 12 Where {`6esn`}[6.0e0..9e0][.9e1..12e12]|Count(*)[$7]) Is Null Is Null,$@usn6 Is Null Is Null) With Distinct @usn5({`3esn`}[..0xabc][..{`6esn`}],7.0e-0 Is Not Null)[..[usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0Xa[999]|$1000 Starts With {@usn6} Starts With $@usn5]][..Reduce(``=1e1 =~{@usn5} =~`7esn`,usn1 In $@usn6 Is Null Is Null|9e-1 Contains 3.9e-1)] Skip $`7esn` In $@usn5 Union All Optional Match ({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12}),#usn8=Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))) Using Index #usn8:`1esn`(`2esn`) Where 01 Contains 9e-12 Contains $7 Remove {usn1:9e-1[1.9e0],@usn6:0[10.12e12]}.#usn7! Return Distinct *,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) As #usn8,Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``}) In (_usn4 :_usn3)<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-({#usn7:12e12[.9e12..07]}) In @usn5({1000}[0..])"), + octest_legacy:ct_string("Remove #usn8(Distinct 123.654 Ends With {1000} Ends With 9e12,.1e-1[2.9e1..][$`7esn`..]).`8esn`?,(:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12}).`3esn`! Union Detach Delete $@usn5 Is Not Null Is Not Null,_usn3 =~{7} =~123.654,@usn5[@usn6] Merge Allshortestpaths((((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[`8esn`*]-(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)))) Union Optional Match (:_usn4:`2esn`{`8esn`:12.0[...0e0]}),(`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Using Join On @usn6,usn1,`5esn` Using Index @usn5:`3esn`(`8esn`) Merge Shortestpath(((usn1 :_usn4:`2esn`)<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[?{#usn7:`2esn`,`7esn`:$@usn5 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))) On Match Set `8esn` =Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null,Reduce(`5esn`=Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|{usn2}[9e-1]).usn2 ={usn1} In Count ( * ) In 12e12,Case 01[`6esn`..][0e0..] When {0}[`4esn`..{`8esn`}] Then \"d_str\" In usn2 In $`7esn` When `8esn`[_usn4] Then $`4esn`[usn2..] End.#usn7! =Case When true In 0.0 Then {`4esn`}[{`3esn`}][$`2esn`] Else @usn6 Starts With #usn7 End =~{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}} =~{_usn3:010[..9e-1][..0X7]} On Match Set usn1 ={`8esn`}[..`5esn`][..01],usn2+={#usn7} Ends With 999 Ends With 12"), + octest_legacy:ct_string("Load Csv From .0e0 =~0 =~.0e0 As `3esn` Fieldterminator \"d_str\" Load Csv From 11.12e-12 Contains usn1 As `8esn` Create Allshortestpaths(((`4esn` :`6esn`)-[`4esn`? *01{#usn8:12.0[..Count ( * )][..@usn6]}]-(usn1 :#usn8:@usn6))) Union Load Csv With Headers From 0e-0 In 0X0123456789ABCDEF In `3esn` As `4esn` Fieldterminator \"d_str\" Create Unique `5esn`=((#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7})<-[`6esn`?:@usn5|:#usn7{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})),`6esn`=((`7esn` :usn1)) Detach Delete Allshortestpaths((({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)))[Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0])..][Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End..]"), + octest_legacy:ct_string("Foreach(`5esn` In Allshortestpaths((({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}))) In All(usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]) In Case When 8.1e1[usn2..{1000}][0X7..9e12] Then {usn1} Is Not Null Is Not Null When $12[$@usn5] Then 11.12e-12 In {usn1} End| Detach Delete $usn1 =~9e1 =~$1000 Start usn2=Node(07,0Xa) ) With Count ( * )[9e0..$``] As `2esn` Skip ``[$7..$_usn4] Limit _usn4['s_str'][8.1e1] Where $`` =~.1e-1 Return Distinct Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where .9e1[$`1esn`..][$``..]) As ``,Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[$usn1..])[..Shortestpath((((`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn2 *7]-(`8esn` {_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}))))][..{`3esn`:$`6esn` Starts With 0.0,#usn8:$usn1 =~.0e0 =~{`4esn`}}] As @usn6,5.9e-12 =~.9e-1 =~@usn6 As #usn7 Order By Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`8esn`}[..999][.._usn3]) Starts With Reduce(``=$#usn7 Ends With 999 Ends With {12},`2esn` In $@usn5 Is Not Null Is Not Null|{`6esn`} Starts With .12e-12) Descending Union All Return *,Allshortestpaths((((@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[``? *..00{@usn5:$`8esn` =~{`1esn`} =~$7,#usn7:.12e-12 Starts With .12e-12}]->({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]})-[:`8esn`|:#usn8 *01]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))))[..Case When {#usn7} Ends With 999 Ends With 12 Then {`3esn`}[999..$`4esn`] End] Skip .0e0 =~0 =~.0e0 Return Distinct *,{`3esn`}[#usn7] As _usn3 Skip {usn2}[..{@usn6}][..@usn5] Limit All(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Union Return Distinct *,@usn6 Ends With $`2esn` Ends With 1.0,.1e-1[$@usn6] Order By $123456789 Is Not Null Is Not Null Asc Limit (usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..]) Foreach(`3esn` In 0e-0[#usn7..999]| With Distinct (usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..]) As `2esn` Order By None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) Descending,9e-12 Is Not Null Is Not Null Desc Skip Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`|.9e-12[.12e12..][0Xa..])[{#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}..] Where #usn7 In 07) Create Unique #usn8=(@usn6 :_usn4:`2esn`),(usn1 :#usn7:`8esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})-[`8esn`?:usn2 *0X0123456789ABCDEF{``:2.9e1[Count ( * )..],`7esn`:$@usn6 Ends With 123456789 Ends With $``}]-(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})"), + octest_legacy:ct_string("Unwind 2.9e1[Count ( * )..] As `7esn` Return Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]|@usn5 =~$#usn7 =~{usn1}) In Case 9.1e-1 Contains {`3esn`} Contains $12 When {@usn6} In 9e12 Then 01[$`1esn`..$`7esn`][{usn2}..12.0] When {#usn8} In {12} In .9e12 Then @usn6 Starts With #usn7 End In All(usn1 In $@usn6 Is Null Is Null Where {7} Starts With 0x0 Starts With 9e1) As usn1 Skip Any(#usn8 In 07[..$`5esn`] Where .9e0[07..][4.9e12..]) =~_usn3 =~(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``) Delete {`5esn`}[01234567..][5.9e-12..]"), + octest_legacy:ct_string("Remove Any(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12).`1esn`? Foreach(@usn5 In {12}[00..$`1esn`]| Load Csv With Headers From Any(usn1 In $@usn6 Is Null Is Null)[Case {_usn3}[{0}...9e-1][9e-1...0e0] When 010[..9e-1][..0X7] Then $0 Ends With $usn1 Ends With {``} End..Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]})))] As _usn3 Fieldterminator 's_str' Return Distinct None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0) As usn2 Skip $#usn7[01..2.12][2.12..3.9e-1] Limit `5esn` Ends With Count(*)) Return Distinct @usn5[9e-1..{`1esn`}] As ``,`1esn` Is Not Null As `6esn`,Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) Ends With `2esn` As @usn5 Limit [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]][None(#usn7 In .0e-0 In 12 Where $12 In {usn2})..{`1esn`:{0} Is Null Is Null}][Extract(#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12|{`5esn`} Is Not Null Is Not Null)..Reduce(`7esn`=`7esn` Ends With 10.12e12,usn2 In $`5esn`[{`4esn`}][{0}]|@usn5[9e-1..{`1esn`}])] Union All Match Shortestpath(((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1))),(((usn2 :`4esn`:usn2)<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})-[usn1?:#usn8|:`` *0xabc..12{usn2:01234567[10.12e12][0Xa]}]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}))) Using Join On @usn5,`1esn` Unwind .9e1 In .1e-1 As `` Load Csv From 9e-1 Contains .12e-12 Contains $0 As `6esn` "), + octest_legacy:ct_string("Merge _usn3=(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}) On Create Set Single(`2esn` In $@usn5 Is Not Null Is Not Null Where {`3esn`} =~$@usn5 =~`2esn`).@usn5?.@usn6! ={#usn8} Starts With .1e-1 Starts With 9e1,_usn3+='s_str'[$_usn3..][9.1e-1..] On Create Set (@usn5 )<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}).@usn6? =.0e-0 In 12 Union Start `7esn`=Rel( {_usn3}) With Distinct *,0 Contains {`2esn`} Union Delete .9e1 Is Null Is Null,(`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Is Not Null Is Not Null,Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] Merge Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) On Match Set `6esn` =_usn4 Match `2esn`=((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})),Allshortestpaths((:`3esn`{@usn5:9e12[..usn2][.._usn3]})) Using Join On `6esn`,_usn3 Where $0 Ends With 9e-12 Ends With $_usn4"), + octest_legacy:ct_string("Remove Allshortestpaths(((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))).`6esn`.`5esn`?,[usn2 In .12e-12 Ends With `2esn` Where {usn1}[`7esn`..Count(*)]|.9e-1 Is Not Null Is Not Null].`8esn`!.``,`8esn`:`6esn`"), + octest_legacy:ct_string("Return *,$12 Is Null As #usn8 Order By ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[_usn3?:@usn5|:#usn7]->(`` :``)-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Starts With Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`) Ascending,{`8esn`} =~$#usn7 =~2.12 Desc,Count(*) Starts With 07 Starts With $#usn7 Desc Skip @usn6[true..] Merge `4esn`=Shortestpath(((`1esn` :`7esn`)<-[usn2:#usn8|:``]->({`6esn`:9e0[`4esn`..$_usn4][9.1e-1..0e0]}))) On Match Set Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where Count ( * ) Starts With 0.12).`7esn`.`2esn`? =12e12[{`4esn`}..`4esn`][999..{@usn6}],Reduce(`8esn`=.9e0 =~#usn7,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|#usn8 Is Null Is Null).#usn7? =00[..@usn6] On Match Set `6esn`(Distinct 1.0 In {usn1}).`5esn`! =.0e-0 Contains $1000,Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0).`1esn`! =`8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End,Reduce(`5esn`={``} Contains 0.0 Contains `4esn`,`2esn` In $@usn5 Is Not Null Is Not Null|0.0[`7esn`]).`2esn`.`8esn`!.`` =1.0 In {usn1} Union Create Unique #usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2)))),(((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))) Detach Delete .9e-1 Is Null Is Null,{`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]} Starts With [`6esn` In 010[{`1esn`}..] Where `3esn` Starts With 9.1e-1 Starts With .9e-1] Starts With Case {`6esn`} In {_usn4} In $12 When {0} Is Not Null Then $12 In {usn2} Else $999 =~false =~{`8esn`} End"), + octest_legacy:ct_string("Load Csv With Headers From 0[..{#usn7}][..$_usn3] As `7esn` Fieldterminator 's_str' Union All With $12 Ends With 7.0e-0 Ends With 9e-12 As usn1,{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] As ``,9e-1 Contains .12e-12 Contains $0 Order By `6esn`[$@usn5][01] Descending,{`5esn`} Desc Skip 123.654 Is Not Null Is Not Null Limit Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null"), + octest_legacy:ct_string("Delete $usn1[7.0e-0..][{123456789}..],{usn1}[`7esn`..Count(*)] Load Csv From .0e0 =~Case $`6esn` Starts With 0.0 When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] End =~All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}]) As #usn8 Union Return Distinct Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn`) Contains (`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) Contains Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}),1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As _usn4 Skip (`1esn` :`8esn`{`6esn`:9e-1 Contains 3.9e-1,_usn4:{`3esn`}[...1e1][..0]})<-[`7esn`?:@usn5|:#usn7]->(`8esn` :@usn6:_usn3)<-[`1esn`:#usn7|:@usn5 *..123456789]-({#usn7:{7}[0x0][1e1]})[{`3esn`:0.12 In $``}] Limit 11.12e-12 =~Count ( * ) Unwind .12e-12[9e1] As @usn5 Optional Match `7esn`=(((:`6esn`{`3esn`:9e12[..usn2][.._usn3]})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})<-[_usn4 *010..0{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}]-(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}))) Using Join On `1esn` Where 00[Null..usn2]"), + octest_legacy:ct_string("Start `5esn`=Node:`1esn`(`4esn`={@usn5}) Where {`8esn`} In {_usn3} In 6.0e0 Return Distinct $`7esn` In $@usn5,{999} =~$`6esn` =~$`6esn` As `1esn`,12[4.9e12..] As #usn8 Order By $@usn6[...9e-1] Asc,Allshortestpaths((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))[usn1..] Asc,Count ( * ) Contains 9.1e-1 Contains {`2esn`} Ascending Limit (:#usn7:`8esn`{usn2:`1esn` =~{12} =~{999}})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})-[:`2esn`|`5esn` *01]-(`6esn` {`6esn`:$999 Is Not Null}) Starts With {`1esn`:$#usn7 Ends With {`5esn`} Ends With 01} Starts With All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 0xabc[..{usn1}][..\"d_str\"]) Load Csv From 0.0[$`4esn`] As `` Fieldterminator 's_str' Union All Load Csv With Headers From $usn1 Ends With {`2esn`} Ends With $usn1 As `4esn` Fieldterminator 's_str' Return Distinct .0e-0[010..] As `3esn` Order By Filter(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}]) Starts With Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3)) Starts With {@usn5:$123456789 Is Not Null Is Not Null} Asc,11.12e-12 Ends With 's_str' Desc,`2esn` Ascending Detach Delete {_usn3}[{0}...9e-1][9e-1...0e0]"), + octest_legacy:ct_string("Return *,None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12)[Case When .12e12 Is Not Null Then {`6esn`} Starts With .12e-12 When .1e-1 Starts With @usn6 Starts With _usn3 Then $`5esn` Ends With 's_str' Ends With $`6esn` End..][Extract(usn1 In $@usn6 Is Null Is Null Where $999 =~false =~{`8esn`}|$@usn6[``..][3.9e-1..])..],@usn6[true..] As _usn4 Order By $`4esn` Ends With .12e12 Ends With 123.654 Desc,Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) =~usn2({`1esn`} Is Null) =~Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 1.9e0 In $@usn6 In $_usn3) Descending Skip $`7esn` Is Null Limit Reduce(`5esn`=$usn1[..$999][..0e0],`2esn` In $@usn5 Is Not Null Is Not Null|``[$#usn7]) Starts With [`6esn` In 010[{`1esn`}..] Where 9e-12[$7..]] Starts With Any(_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12) Optional Match @usn5=(((`1esn` :usn2{`8esn`:12.0[...0e0]})-[`5esn`?:@usn5|:#usn7{`4esn`:9e-12[$7..]}]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]}))),Shortestpath((`6esn` :``)<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})) Where $@usn6 Is Null With Distinct *,Case Count ( * ) =~123456789 =~{@usn5} When 0[10.12e12] Then 12.0 Starts With 00 Else 2.9e1 In {``} End[..Case $`8esn`[0x0][.9e0] When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null Else $usn1 =~.0e0 =~{`4esn`} End][..Extract(#usn8 In 07[..$`5esn`] Where 07[{@usn5}..]|9e-1 Contains 3.9e-1)] As `4esn`,(`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3)[Case When 3.9e-1 Ends With {usn1} Ends With {`5esn`} Then 5.9e-12 Is Null Is Null When 9e1 Ends With 9e12 Ends With 0x0 Then .9e0 =~#usn7 Else 0 Starts With `7esn` Starts With 9e0 End..Filter(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null)] As _usn4 Skip 00[$``] Where @usn6 Ends With $`2esn` Ends With 1.0 Union With .1e1 Contains 1e-1 Contains #usn8 As ``,None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Starts With {@usn5:999 Ends With {#usn8},_usn4:Null In {7}} As `4esn`,9e-12 Contains .12e12 As `5esn` Order By Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where $usn2[..$999][..#usn8])[Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`)..] Asc,2.9e1 =~Count(*) =~{123456789} Descending Skip 7 Starts With 9e-12"), + octest_legacy:ct_string("Remove Shortestpath(((:_usn3{_usn3:010[..9e-1][..0X7]}))).@usn5!.`3esn`?.`7esn`?,[#usn7 In .0e-0 In 12 Where 0xabc =~123456789].`1esn`.`6esn`?.`4esn`?,(:usn1{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[`3esn`?:`3esn`|`3esn`*..]-({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[?:`3esn`|`3esn` *999..123456789{_usn3:$`4esn`[$@usn6...12e12]}]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null})._usn3!.#usn7 Detach Delete ({`7esn`:{`3esn`}[$#usn8..],`4esn`:{`8esn`}[..999][.._usn3]})-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Contains Reduce(``=0xabc Starts With 12 Starts With 0e-0,_usn3 In `8esn`[_usn4]|12.0 Starts With 00) Contains Any(@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null),0.0[..9e1][..2.12]"), + octest_legacy:ct_string("Remove (`3esn` :#usn7:`8esn`{`4esn`:$`5esn`[$_usn3][$12],#usn8:`8esn`[.12e12..]})-[`4esn`? *01{#usn8:12.0[..Count ( * )][..@usn6]}]-(_usn4 {#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12}).`2esn`?,Case {0}[`4esn`..{`8esn`}] When `2esn` Starts With 010 Starts With `` Then 00[$``] End.usn1 Return {#usn8}[0..] As `5esn`,{`3esn`}[..{`4esn`}][..usn2] As #usn8 Skip Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Limit `2esn`[.9e12..] Detach Delete $`6esn`[..01][..{_usn3}],true Contains 0X7 Contains $#usn8 Union Return Distinct $#usn8 Starts With 9.1e-1 Starts With {#usn7} As `8esn`,$`1esn` Contains 1000 Contains $123456789 As _usn3 Order By 00[{1000}] Descending,'s_str'[$_usn3..][9.1e-1..] Desc,$_usn4 =~$#usn8 =~{`4esn`} Desc Skip $@usn6[...9e-1] Limit $#usn7[01..2.12][2.12..3.9e-1] Union All Return All(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Ends With Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789 Is Not Null Is Not Null|{`8esn`}[@usn5][$`2esn`]) Ends With (#usn8 :`5esn`:`7esn`{usn2})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )-[_usn4? *..0x0{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null}) As usn2,All(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Ends With Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789 Is Not Null Is Not Null|{`8esn`}[@usn5][$`2esn`]) Ends With (#usn8 :`5esn`:`7esn`{usn2})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )-[_usn4? *..0x0{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null}) As usn2,Count(*)[..{#usn7}] Skip $usn2 Ends With 9e12 Ends With Count ( * ) Load Csv From 11.12e-12 Contains usn1 As @usn6 Fieldterminator 's_str'"), + octest_legacy:ct_string("Create `5esn`=((`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})-[?:`1esn`|:`1esn` *999..123456789]-(`8esn` :#usn7:`8esn`)) Start ``=Relationship:_usn4({_usn3}) ,@usn6=Rel:`6esn`(`2esn`={`4esn`})Where #usn7 =~$@usn5 =~{7} Create Unique ((`5esn` :#usn8:@usn6)) Union All Optional Match Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),_usn3=(#usn7 :@usn6:_usn3)-[`6esn`?:@usn5|:#usn7{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}) Foreach(#usn7 In .0e0 Starts With $usn1 Starts With {`6esn`}| Load Csv From $1000[$`2esn`..] As `1esn` Create (:@usn5),_usn3=((`1esn` :`8esn`)<-[:usn1|usn2]-(`` :`4esn`:usn2)<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``)))"), + octest_legacy:ct_string("Load Csv From Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12])[Reduce(@usn5=1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$0 Ends With 9e-12 Ends With $_usn4)..] As #usn8 Fieldterminator 's_str' Optional Match _usn3=((@usn6 :@usn5)) Using Index _usn3:`3esn`(`5esn`) Where 00 =~`4esn` =~.9e-12 Union Detach Delete Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`) Is Null Is Null,6.0e0[$#usn7..$1000],$12 Is Not Null Is Not Null Union All Foreach(`` In Case Count(*) =~01234567 =~.1e-1 When {123456789} Starts With $_usn4 Starts With 0x0 Then .9e-12[usn2] When {`8esn`}[@usn5][$`2esn`] Then 00[$``] End[..Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 999[..$@usn5][..``])][..Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End]| Remove Reduce(`6esn`=$999 =~0x0,@usn6 In 9e12[..usn2][.._usn3]|.9e1 Is Null Is Null).`2esn`,Reduce(@usn5={`3esn`}[01234567][{#usn7}],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|0e0 =~{12} =~{1000}).#usn7!)"), + octest_legacy:ct_string("Delete {@usn6} In 1.0,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))]"), + octest_legacy:ct_string("Create Unique `6esn`=(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})<-[?$999]-(`4esn` {#usn7:$usn1[0e0...9e-12]})-[:`8esn`|:#usn8 *01]-(:#usn7:`8esn`{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}),_usn3=(((`4esn` )-[{#usn7:1e-1[$`4esn`]}]->(`1esn` :`2esn`:`4esn`)-[?:#usn8|:``{usn2:{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],usn1:\"d_str\"[0x0..{@usn6}][$@usn5..0]}]-(:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12}))) Start usn2=Node:@usn6({1000}) ,`1esn`=Rel(0Xa,0X7) Merge `1esn`=Shortestpath((:`7esn`{usn2:00 Is Not Null Is Not Null})) On Create Set ``+=9e12,Shortestpath((:usn1$1000)).@usn5? =1e-1[$`4esn`] On Match Set Case When 7.0e-0 Is Not Null Then {`8esn`}[@usn5][$`2esn`] When {usn2} Is Not Null Is Not Null Then false Contains {`7esn`} Else {1000}[..`5esn`][..9e12] End.`4esn`?.@usn6!.`6esn`? =9.1e-1[1.9e0..usn2],`7esn` =Count ( * ) Is Not Null Is Not Null Union All Optional Match @usn5=Shortestpath((`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})<-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-(@usn5 :@usn6:_usn3{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`2esn` *1000..{`2esn`:{@usn6} In 9e12}]->(:usn1{usn1:true In 0.0,@usn5:{`1esn`} Is Null})) Where `6esn`[$@usn5][01]"), + octest_legacy:ct_string("Create Unique #usn7=((#usn8 :@usn5)<-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 )<-[?:`1esn`|:`1esn`{`5esn`:9e1[0.0]}]->(`8esn` )) Create Unique Shortestpath(((`1esn` :_usn3)<-[?:`3esn`|`3esn` *999..123456789{_usn3:$`4esn`[$@usn6...12e12]}]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}))) Match `3esn`=(((`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}))),`8esn`=((`8esn` :`6esn`)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(@usn5 :@usn6:_usn3))"), + octest_legacy:ct_string("Start _usn4=Relationship:`4esn`(\"d_str\") Where `5esn` Is Not Null Is Not Null With Any(`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]) In Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Order By `3esn` Is Null Descending Skip [usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3]] =~Allshortestpaths((({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 {#usn7:$999 =~false =~{`8esn`}}))) =~None(usn1 In \"d_str\" Contains {@usn6} Where {`8esn`}[9e12..][{_usn4}..]) Limit 5.9e-12 =~{12} =~{`2esn`} Match _usn3=Shortestpath((({`2esn`:00[Null..usn2],`2esn`:3.9e-1[..$1000][..0.12]})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}}))),usn2=((#usn7 :@usn6:_usn3{``:9e1[0.0]})) Using Scan usn1:`4esn` Where `4esn` Contains 0X0123456789ABCDEF Contains $usn2"), + octest_legacy:ct_string("Unwind 11.12e-12 Starts With 1.0 Starts With 12.0 As @usn6 Start usn2=Node:@usn6({1000}) ,`3esn`=Rel:#usn7(`6esn`={12}) Return Distinct *,3.9e-1[{@usn6}..][01234567..] Skip 9e0[{7}...0e-0][Null..@usn5] Limit 0X0123456789ABCDEF[1e1..] Union Foreach(`2esn` In {_usn4} In 0X7 In 0e0| Create ``=Shortestpath((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)),`5esn`=Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})))) Return [`1esn` In $12 In {usn2} Where $`8esn` Is Not Null Is Not Null|8.1e1 Contains $@usn6] In All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..]) In Extract(`7esn` In 0.12 Is Not Null Where .12e-12[@usn6..'s_str']) As @usn6,1.9e0 =~.0e0 =~0X7 As @usn6,{`3esn`}[$#usn8..] Order By $`` =~.1e-1 Asc,9e1[..@usn5][..$`5esn`] Descending,$#usn7 Ends With 999 Ends With {12} Descending Skip 3.9e-1 Contains 2.9e1 Contains `5esn`"), + octest_legacy:ct_string("Remove [usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`|{#usn8}[..@usn5]].usn1!._usn3,Allshortestpaths((((#usn8 :``{usn2:9e1 =~$`8esn` =~10.12e12})-[_usn3:`6esn`]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})))).#usn7? Create Unique ((`1esn` :`8esn`)<-[:usn1|usn2]-(`` :`4esn`:usn2)<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``)),Allshortestpaths(({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)})) Remove {``:@usn6 Starts With #usn7,@usn6:7[..123456789][..true]}.`1esn`!,Case When $usn1 Ends With {`2esn`} Ends With $usn1 Then @usn6 Starts With #usn7 When 0xabc Starts With {`3esn`} Starts With {``} Then $`8esn`[..5.9e-12][..`8esn`] Else 9e-1 Contains 3.9e-1 End.usn2? Union Unwind .9e12 Is Not Null Is Not Null As #usn7 Load Csv From 9e-1[1.9e0] As #usn8 Union All Unwind 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As `1esn` Return Distinct {@usn6:$12 Is Null} In (`4esn` {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}) As usn2,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null Limit 01 =~07 Remove Single(#usn8 In 07[..$`5esn`] Where 123.654 Ends With {1000} Ends With 9e12).``!"), + octest_legacy:ct_string("With Distinct *,{`3esn`}[$#usn8..],Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null As `2esn` Order By {`1esn`} Is Null Descending,12.0 In `7esn` Asc Skip (#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[?:#usn8|:``]-(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]}) Starts With Case {`8esn`} Is Not Null Is Not Null When 999 Starts With 7.0e-0 Starts With true Then .12e12[$usn1..][{@usn6}..] End Starts With (:_usn3{`6esn`:{`3esn`}[..{`4esn`}][..usn2]})-[@usn6?:`4esn`|:`2esn`{`2esn`:Count ( * )[9e0..$``]}]-(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}) Limit None(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999)[Shortestpath((((:#usn8:@usn6{`3esn`:$#usn7})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(`4esn` :`8esn`{12})-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12}))))..] Where #usn8[$`2esn`]"), + octest_legacy:ct_string("Remove Case $`8esn`[0x0][.9e0] When 9e1 Starts With $@usn6 Starts With 0e-0 Then {#usn8} Starts With {`2esn`} Else 9e-12[$7..] End.#usn7 Load Csv From $``[Count(*)..{12}] As usn2 Fieldterminator 's_str'"), + octest_legacy:ct_string("Merge (((#usn8 :`4esn`:usn2{#usn7:{`3esn`}[#usn7],`4esn`:010[..9e-1][..0X7]})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]})-[?:@usn5|:#usn7 *0]->(`7esn` :`8esn`))) Create _usn4=Shortestpath((`8esn` :#usn7:`8esn`)) Create Shortestpath(((`7esn` {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))),`5esn`=Shortestpath((((#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})<-[? *1000..]->({usn1:true In 0.0,@usn5:{`1esn`} Is Null})<-[`4esn`?:`4esn`|:`2esn`]->(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})))) Union Load Csv From usn1 Ends With 0Xa Ends With 07 As `` Fieldterminator 's_str' Create Unique #usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2)))),(((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))) Union Detach Delete 1.9e0 In $@usn6 In $_usn3,$@usn5 =~{`3esn`} Load Csv With Headers From .0e0 =~Case $`6esn` Starts With 0.0 When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] End =~All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}]) As `1esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("With Distinct 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Skip {usn1:$1000 Is Null}[Shortestpath((:usn1$1000))..][Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true)..] Where `3esn` Starts With 9.1e-1 Starts With .9e-1 Foreach(`7esn` In $`1esn`[..1000][..\"d_str\"]| Create Unique #usn8=((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) Create usn2=Allshortestpaths(((:`8esn`{@usn6:$`6esn`[$_usn3..{1000}],_usn3:0xabc[..{usn1}][..\"d_str\"]}))),#usn7=Shortestpath(()<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]-({`4esn`:.9e12[6.0e0..][@usn5..],``:1.0 Is Not Null})-[`3esn`? *..07]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}))) Union All Unwind $`6esn` As `3esn` Union Optional Match (((usn2 :`4esn`:usn2)<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})-[usn1?:#usn8|:`` *0xabc..12{usn2:01234567[10.12e12][0Xa]}]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}))) Using Scan `8esn`:`4esn` Using Index @usn5:`3esn`(`8esn`) Where $`8esn` With Distinct $7 In 1.0 In 01234567,.12e12[$`1esn`..0x0] As `4esn` Order By Filter(#usn7 In .0e-0 In 12 Where #usn7[123.654][{12}])[[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]..Reduce(`1esn`=`2esn`,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|.9e0 =~#usn7)] Desc,{0} =~{999} Desc,$999 =~0x0 Desc Skip `1esn`[..$1000] Limit 0e-0[#usn7..999]"), + octest_legacy:ct_string("Unwind {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null) As `3esn` Union Remove Case {_usn3} Is Null Is Null When $999 =~false =~{`8esn`} Then {`6esn`}[6.0e0..9e0][.9e1..12e12] Else {`7esn`} Is Not Null Is Not Null End.`8esn`!,(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]}).#usn8?.`3esn`.`6esn`? Union All Unwind $`1esn` Contains {@usn5} Contains 9.1e-1 As `1esn`"), + octest_legacy:ct_string("Optional Match ((usn1 :@usn6:_usn3)-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})) Where $usn2 In #usn7 In #usn7 Match `2esn`=Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}}))) Where $123456789[..$999][..`6esn`] Union All Delete Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]) Is Null Union All Load Csv From $#usn7 Ends With 999 Ends With {12} As #usn7 Optional Match #usn8=Allshortestpaths((usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[`3esn`:#usn8|:``{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}]->(:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})),Shortestpath(((@usn6 :usn2{@usn5:$`5esn`[{`4esn`}][{0}],usn2:9e12 Is Null Is Null})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})-[usn1?:@usn6|:`4esn` *..123456789]->({#usn8:_usn4[$_usn4]}))) Using Index usn1:``(@usn5) Using Scan `2esn`:_usn3 Where 3.9e-1[{@usn6}..][01234567..]"), + octest_legacy:ct_string("Using Periodic Commit 123456789 Load Csv From `3esn` Contains `2esn` Contains {_usn4} As #usn8 Optional Match @usn5=Shortestpath((_usn3 )-[usn2:_usn3 *0xabc..12]->(:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)) Using Index `1esn`:_usn4(`5esn`) Using Index `2esn`:usn1(_usn3) Where {usn2} Ends With {@usn6} Ends With 1000 Create Unique @usn6=(:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}),((`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}))"), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv From All(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Ends With Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789 Is Not Null Is Not Null|{`8esn`}[@usn5][$`2esn`]) Ends With (#usn8 :`5esn`:`7esn`{usn2})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )-[_usn4? *..0x0{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null}) As `` Fieldterminator 's_str'"), + octest_legacy:ct_string("Using Periodic Commit 07 Load Csv From {7} Starts With 0x0 Starts With 9e1 As `3esn` "), + octest_legacy:ct_string("Return Distinct $`7esn` Is Null Is Null,$`5esn`[{0}][1.9e0],Reduce(`3esn`=`7esn`[1.9e0..5.9e-12][9e0..@usn5],`` In `7esn` =~#usn8 =~\"d_str\"|{_usn3}[{0}...9e-1][9e-1...0e0]) Ends With None(usn1 In $@usn6 Is Null Is Null Where $999 =~false =~{`8esn`}) Ends With Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})))) As `` Order By {`8esn`} Ends With true Ends With {`3esn`} Desc Skip $usn2 Ends With 00 Ends With 9e12 Limit {#usn8} Is Not Null Is Not Null Foreach(`` In Case Count(*) =~01234567 =~.1e-1 When {123456789} Starts With $_usn4 Starts With 0x0 Then .9e-12[usn2] When {`8esn`}[@usn5][$`2esn`] Then 00[$``] End[..Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 999[..$@usn5][..``])][..Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End]| Remove Reduce(`6esn`=$999 =~0x0,@usn6 In 9e12[..usn2][.._usn3]|.9e1 Is Null Is Null).`2esn`,Reduce(@usn5={`3esn`}[01234567][{#usn7}],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|0e0 =~{12} =~{1000}).#usn7!)"), + octest_legacy:ct_string("Match Allshortestpaths(((`4esn` :_usn3)<-[_usn3?:`5esn`*..]-(:@usn5{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]-(`4esn` :`6esn`))) Using Join On usn1,usn2 Using Join On #usn8,_usn3,`6esn`"), + octest_legacy:ct_string("Merge Allshortestpaths(((`8esn` :`7esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 ))) Return ({`7esn`:{`3esn`}[$#usn8..],`4esn`:{`8esn`}[..999][.._usn3]})-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Contains Reduce(``=0xabc Starts With 12 Starts With 0e-0,_usn3 In `8esn`[_usn4]|12.0 Starts With 00) Contains Any(@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null) As `1esn`,{123456789} Contains $0 As `1esn`,{`8esn`}[.0e0..][999..] Order By 11.12e-12 =~Count ( * ) Ascending,`3esn` =~$#usn7 Desc Limit {usn1}[`7esn`..Count(*)] Match Shortestpath(((`` :`7esn`))),Allshortestpaths((:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[*{usn1:{`6esn`} In .0e0 In $0,usn1:07[..$`5esn`]}]-(:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})) Using Index @usn5:usn1(`4esn`) Where {0}[.1e-1..][_usn4..] Union All Start `3esn`=Rel:`7esn`(`8esn`={`3esn`}) ,#usn8=Relationship:``({7})"), + octest_legacy:ct_string("With {0} Is Not Null As ``,00 Is Not Null Is Not Null Limit Allshortestpaths((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) In Extract(#usn7 In .0e-0 In 12 Where {#usn8}[..@usn5]) In [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 10.12e12[usn2]|{1000} Starts With 10.12e12 Starts With .0e-0] Create Unique ``=Shortestpath((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})),`2esn`=Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}})<-[?{@usn5:@usn6[999][1000]}]-(:usn1{#usn8:2.9e1[{`2esn`}]})) Foreach(`2esn` In 010[.0e-0..\"d_str\"][.9e0..123.654]| Create Unique `6esn`=(@usn6 :`5esn`:`7esn`) Remove (:`1esn`:``{`8esn`:0X0123456789ABCDEF Ends With {1000}})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`6esn` :`4esn`:usn2).`2esn`!._usn4?.`4esn`!,Case `1esn` =~{12} =~{999} When .9e1[$`1esn`..][$``..] Then $12 Is Null Is Null When $#usn7[01..2.12][2.12..3.9e-1] Then $999 Ends With `2esn` Ends With 12.0 End.usn1!.`6esn`!.#usn7!) Union Return Distinct 01 Starts With 12 Starts With $`2esn` As usn1,{`8esn`} In {_usn3} In 6.0e0 Order By {`4esn`} Ends With Count(*) Asc,.0e0[{`5esn`}..3.9e-1] Descending,$999 Ends With `2esn` Ends With 12.0 Ascending Load Csv From {@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] As `5esn` Match `5esn`=(((`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[?:_usn3]->(`8esn` :usn1)-[?:`1esn`|:`1esn` *999..123456789]-(`8esn` :#usn7:`8esn`))),`5esn`=Shortestpath(((@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))) Using Scan `4esn`:#usn7 Using Scan `7esn`:`` Where .12e-12[@usn6..'s_str'] Union Load Csv From {`8esn`} Contains $@usn5 As _usn4 Fieldterminator 's_str'"), + octest_legacy:ct_string("With Distinct *,`4esn`($`6esn`[@usn6...9e-12],{12})[None(@usn6 In 9e12[..usn2][.._usn3] Where $7[999..10.12e12][$`1esn`..{usn1}])..Allshortestpaths((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})-[`5esn`?:`2esn`|`5esn`]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`))][usn1..Reduce(@usn5=`1esn` In 6.0e0 In 12,`` In `7esn` =~#usn8 =~\"d_str\"|$`6esn` =~$#usn7 =~$`4esn`)] Order By Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null Ascending Skip .9e-12[{@usn5}] Return Distinct *,9e1[0.0] As `4esn` Order By 1e-1[..$`2esn`][..01] Asc,[usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`|{#usn8}[..@usn5]][Case When .9e1 In {#usn7} In .9e-12 Then #usn7 Is Null Is Null End..] Asc,12 Ends With 12e12 Desc Limit 00[{1000}] Union All Detach Delete 010[.0e-0..\"d_str\"][.9e0..123.654],11.12e-12 Is Null Is Null Merge ((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[ *..123456789{@usn5:1e-1[$`4esn`]}]->(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})) Union Unwind 1e1 =~{@usn5} =~`7esn` As #usn8 Create Unique `5esn`=Shortestpath(((`8esn` :`8esn`)-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`8esn`*]-(`7esn` :``{usn2:$7}))),`3esn`=Allshortestpaths((((`4esn` :`3esn`)<-[@usn5?*..]->(:_usn3{_usn3:010[..9e-1][..0X7]})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5))))"), + octest_legacy:ct_string("Load Csv From 12e12[usn2..$`6esn`] As usn2 Foreach(usn2 In (`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End]| Start _usn4=Relationship( {#usn8}) ,`4esn`=Node:usn2(usn1={_usn3})) Union All With Allshortestpaths((({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)))[Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0])..][Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End..] As #usn8,{12} Ends With 1e1 As `8esn` Order By Any(`1esn` In $12 In {usn2} Where @usn6[true..]) Contains Any(usn2 In .12e-12 Ends With `2esn` Where 9e12 Ends With 9e-1 Ends With 9e1) Contains (`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3) Desc Skip 4.9e12 In 9e12 In .9e-12"), + octest_legacy:ct_string("Delete `1esn`(Distinct) Contains All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 123.654 Ends With {1000} Ends With 9e12) Contains Case $0 Contains $7 When 9e0[`4esn`..$_usn4][9.1e-1..0e0] Then .1e1 Is Not Null Is Not Null When usn2[12e-12..{`8esn`}][.12e12..{123456789}] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else {usn1} In Count ( * ) In 12e12 End,{12} Ends With $`3esn` Ends With 0xabc,{0}[...9e1] Delete {``:$`8esn`[..5.9e-12][..`8esn`]}[[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .9e12[6.0e0..][@usn5..]|2.9e1[2.9e1..][`4esn`..]]..][Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End..],010[...12e-12] With Distinct Count ( * )[`5esn`..\"d_str\"][01234567..{1000}],$`8esn` Contains {@usn6} Contains `7esn`,5.9e-12[..9e0] As #usn8 Order By $`7esn` Contains .12e12 Ascending,Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where {7}[$@usn5..123456789][1e1..1.9e0]) Ends With (`3esn` :_usn3{@usn6:0.12 Is Not Null})-[#usn8:`5esn`]-({`6esn`:12[@usn6][{`2esn`}]}) Desc,$usn1[..$999][..0e0] Ascending Where $`6esn`[$_usn3..{1000}]"), + octest_legacy:ct_string("Load Csv With Headers From 6.0e0 Starts With 0x0 Starts With 0Xa As `2esn` Fieldterminator 's_str' Unwind $@usn6 Is Null As `8esn` Create _usn3=((`` :_usn4:`2esn`{`7esn`:_usn3 =~{7} =~123.654})-[usn2?:`1esn`|:`1esn` *..123456789]-(:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})<-[`6esn`?:@usn5|:#usn7{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})) Union All Unwind `4esn` =~_usn4 =~0e-0 As `7esn` Union All Remove {@usn6:6.0e0[$#usn7..$1000]}.`8esn`?,{`3esn`:9e0[`3esn`][0],usn2:$`5esn` Is Not Null}.`8esn` Remove Extract(usn1 In $@usn6 Is Null Is Null|010[...12e-12]).``.usn2?.usn1?,@usn5(`3esn` Contains `2esn` Contains {_usn4},2.9e1 In {``}).#usn8,Shortestpath((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})).`8esn`?"), + octest_legacy:ct_string("With Distinct *,12.0[..Count ( * )][..@usn6] Where 12e12 Foreach(@usn5 In Shortestpath(((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)))[..Any(#usn7 In .0e-0 In 12)]| Load Csv From [usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0|4.9e12 Is Not Null Is Not Null] =~Case {_usn3} In $#usn8 In $12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else 0[..{0}][..true] End =~Case Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else $_usn3 Starts With 010 End As #usn7 ) Union All Optional Match (`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}),#usn7=Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))) Using Join On #usn7,`7esn` Using Index `3esn`:_usn4(@usn6) Create Unique (((@usn5 {@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))) Create Shortestpath((((`2esn` :_usn3{usn1:5.9e-12 Is Null Is Null})-[`7esn`?:#usn7|:@usn5 *1000..]->(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]})))) Union All With $_usn3 Contains 1.0 Contains 0.12 As ``,0x0 Ends With #usn8 Ends With .9e-1 As _usn4 Order By 01234567 Ends With .0e0 Ends With 12e12 Ascending,usn1(Distinct {usn1}[7.0e-0..][3.9e-1..]) Asc,.0e-0[..01234567] Descending"), + octest_legacy:ct_string("Start _usn4=Rel:`5esn`(@usn5=\"d_str\") ,@usn5=Rel:usn2(_usn4='s_str') Union Remove Filter(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1]).`5esn`!._usn3!,Any(usn2 In .12e-12 Ends With `2esn` Where .12e-12 Starts With .12e-12).#usn7.`7esn`,`7esn`(Distinct `` Ends With 1.0 Ends With usn1).`3esn`? Create Unique #usn8=(`6esn` :`4esn`:usn2),(((:`3esn`)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))) Union All Start ``=Node:`7esn`({#usn7}) ,usn2=Relationship:#usn8(usn2={@usn5}) Load Csv From $12 Is Null As `7esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Remove Allshortestpaths(((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})-[_usn3:#usn8|:``{#usn8:{_usn4} In 0X7 In 0e0,`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]-(@usn5 )<-[?:#usn7|:@usn5 *12]-(_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null}))).``?.usn1.@usn6?,{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:{12}}.#usn7.``!,Case When $usn1 Contains 4.9e12 Contains $`2esn` Then {usn1} Contains `4esn` Else {0} Ends With 0Xa End.@usn5 Merge Allshortestpaths((`4esn` :@usn6:_usn3)-[?:_usn3{usn2:010[{`1esn`}..],`1esn`:`5esn` Contains 0 Contains $12}]-(@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})<-[ *01234567..{usn1:{12} Contains `8esn` Contains @usn5}]->(`5esn` )) Foreach(_usn3 In $0 =~{@usn5} =~1e1| Start @usn5=Relationship( {#usn8}) ,_usn3=Rel:`1esn`({0}) Unwind 01234567[10.12e12][0Xa] As `1esn`)"), + octest_legacy:ct_string("Foreach(`8esn` In {`5esn`}| Unwind Extract(`1esn` In $12 In {usn2} Where 12e12[{`4esn`}..`4esn`][999..{@usn6}])[None(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}][Reduce(#usn7=12[..$`5esn`],usn1 In $@usn6 Is Null Is Null|12e12 Ends With `5esn` Ends With .0e0)..[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 0.12 Is Not Null]] As `1esn`) Start `5esn`=Node:usn2(_usn4='s_str') ,usn2=Node:_usn4(`3esn`={_usn3})Where {`3esn`} =~$`` =~$`8esn` Create Unique @usn6=((`1esn` :`8esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})) Union Unwind $@usn5 =~{`3esn`} As `5esn` Union Merge `1esn`=Shortestpath((({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[`8esn`*]->(#usn7 :#usn7:`8esn`))) On Match Set `3esn`(Count ( * )[_usn4..],`2esn`).usn1!._usn4 =`1esn` In 010 In 1e-1,Any(#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null).`2esn`! =Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null,usn2+=8.1e1[$``] Create ((`8esn` :`2esn`:`4esn`)-[?:#usn7|:@usn5 *12]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})),`2esn`=(`6esn` :``)<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})"), + octest_legacy:ct_string("Create `3esn`=({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}),((:#usn7:`8esn`{@usn6:123456789[_usn4..`1esn`][$`6esn`..{@usn6}]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}})) With $`7esn` In $@usn5,{999} =~$`6esn` =~$`6esn` As `1esn`,12[4.9e12..] As #usn8 Skip [@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null] Starts With Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789) Starts With All(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0) Where {_usn4} In 0X7 In 0e0 Union Start usn2=Relationship:#usn8(@usn5={@usn6}) Where $999 =~0e0 =~0X7 Foreach(`5esn` In Count ( * )[_usn4..]| Create ((({_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12}))),(:usn1{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`)) Union Load Csv From $`8esn` Starts With {`7esn`} As `8esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Start #usn8=Relationship:_usn4(`5esn`={usn1}) ,@usn6=Rel(0Xa,0X7)Where @usn6[0x0..][$_usn4..] Return Distinct Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null As #usn8,.9e1 Is Null Is Null As #usn8,00[..@usn6] Order By 12 Ends With 12e12 Asc,.9e12 Starts With 0X7 Starts With .9e-1 Asc Skip 00[Null..usn2] Limit 01[{usn2}..][1.9e0..]"), + octest_legacy:ct_string("Remove Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .12e12 Starts With 5.9e-12 Starts With `4esn`).`3esn`? Delete {`6esn`}[@usn5..{@usn6}],00[$_usn4][$`1esn`] Create @usn5=Allshortestpaths(({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})<-[#usn7?]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})),#usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))))"), + octest_legacy:ct_string("Create Unique (`8esn` :`6esn`),`8esn`=(({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})-[`2esn`?:@usn6|:`4esn` *010..0{`4esn`:Null[$`3esn`..][`1esn`..],_usn3:6.0e0[$#usn7..$1000]}]-(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]})-[`3esn`{`4esn`:12e12[.9e12..07]}]-(:`4esn`:usn2{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})) Return *,`4esn`[..7][..$usn2] As #usn8,Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $#usn7[01..2.12][2.12..3.9e-1]) =~_usn3(.0e-0 Ends With $`2esn` Ends With `5esn`,$usn1 =~.9e12 =~`6esn`) =~Reduce(_usn3=5.9e-12 Is Null Is Null,_usn3 In `8esn`[_usn4]|2.9e1[Count ( * )..]) As `8esn` Order By 0.0[$999][`6esn`] Asc Limit 10.12e12 Contains .9e0"), + octest_legacy:ct_string("Create Unique (:usn1$1000)"), + octest_legacy:ct_string("Foreach(`7esn` In {usn1}[$`4esn`..$12]| Detach Delete Reduce(#usn7=#usn8[\"d_str\"..usn2],#usn7 In .0e-0 In 12|`` Ends With 1.0 Ends With usn1) Ends With [_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3]] Ends With Shortestpath((((:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[`2esn`?:`8esn`|:#usn8]->(`` )<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)))),{1000}[0..],usn2[12e-12..{`8esn`}][.12e12..{123456789}] With @usn5[9e-1..{`1esn`}] As ``,`1esn` Is Not Null As `6esn`,Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) Ends With `2esn` As @usn5 Limit [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]][None(#usn7 In .0e-0 In 12 Where $12 In {usn2})..{`1esn`:{0} Is Null Is Null}][Extract(#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12|{`5esn`} Is Not Null Is Not Null)..Reduce(`7esn`=`7esn` Ends With 10.12e12,usn2 In $`5esn`[{`4esn`}][{0}]|@usn5[9e-1..{`1esn`}])] Where {`1esn`} Contains 1.0 Contains 4.9e12)"), + octest_legacy:ct_string("Return {#usn8:$`6esn`[..01][..{_usn3}]} Starts With Shortestpath(((`1esn` :`8esn`)-[`7esn`?:`2esn`|`5esn` *0]->(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))) As `3esn`,01 Contains Reduce(usn2=$1000[_usn4][{@usn5}],`8esn` In {usn1}[7.0e-0..][3.9e-1..]|9e-12 Ends With 9e1 Ends With 4.9e12) Contains usn2(Distinct `7esn` In _usn4 In $`7esn`,999 Is Null Is Null) As `5esn`,(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])] As `8esn` Limit @usn5[#usn7..] Match `1esn`=((`4esn` :`6esn`)-[`4esn`? *01{#usn8:12.0[..Count ( * )][..@usn6]}]-(usn1 :#usn8:@usn6)),({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[usn1?:`3esn`|`3esn`*..]->(`8esn` :`6esn`) Using Scan `1esn`:`2esn` Union All Detach Delete 010[.0e-0..\"d_str\"][.9e0..123.654],1.9e0 In $@usn6 In $_usn3,Reduce(@usn6=0X0123456789ABCDEF Ends With {1000},usn1 In $@usn6 Is Null Is Null|.0e0 =~0 =~.0e0) Starts With None(`6esn` In 010[{`1esn`}..] Where _usn4 Ends With {`8esn`} Ends With usn2) Starts With Case When 01234567 Ends With .0e0 Ends With 12e12 Then @usn6 Starts With #usn7 Else .12e12 Ends With 07 Ends With 3.9e-1 End Detach Delete .9e12 Ends With #usn8 Ends With {#usn7},2.9e1[2.12..1.9e0],.0e-0 In 12 Delete Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]) Is Null Union With *,Case .12e-12 Is Null When Count ( * )[_usn4..] Then 7.0e-0 Is Not Null When 2.12[{12}] Then {usn2} Ends With {@usn6} Ends With 1000 End[Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..])][({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})] Order By .0e0 Starts With 1.0 Starts With $12 Ascending Limit 0e0[2.9e1..][.12e-12..]"), + octest_legacy:ct_string("Create Allshortestpaths((`1esn` :`5esn`:`7esn`)-[{``:{`3esn`}[01234567][{#usn7}],_usn4:999 Is Null Is Null}]->(usn2 {``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})),(:``{usn1:`4esn` Is Not Null})-[ *01{usn1:false[..usn2][..999]}]-(_usn3 ) Union Load Csv With Headers From Filter(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}]) Starts With Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3)) Starts With {@usn5:$123456789 Is Not Null Is Not Null} As `4esn` Load Csv From {`1esn`}[{usn2}] As @usn5 Fieldterminator 's_str' Union All Load Csv From 3.9e-1 Starts With .9e0 Starts With {#usn7} As `8esn` "), + octest_legacy:ct_string("Merge _usn3=Shortestpath(((_usn4 {#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12}))) Unwind `3esn` Is Null Is Null As usn1 Union Create (`1esn` :`7esn`)"), + octest_legacy:ct_string("Match _usn3=Shortestpath((({`2esn`:00[Null..usn2],`2esn`:3.9e-1[..$1000][..0.12]})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}}))),usn2=((#usn7 :@usn6:_usn3{``:9e1[0.0]})) Using Scan usn1:`4esn` Where `4esn` Contains 0X0123456789ABCDEF Contains $usn2 Union Foreach(`5esn` In $`5esn` In $12 In `2esn`| Start #usn8=Node:_usn4({_usn3}) ,`3esn`=Node:#usn8(usn2='s_str')) With Distinct *,$999 =~0e0 =~0X7 As `1esn` Order By $`6esn`[@usn6...9e-12] Asc,9e-12 Starts With {1000} Desc Limit Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789)[..All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 1e1 =~{@usn5} =~`7esn`)][..Case 07[..$`5esn`] When 00[$_usn4][$`1esn`] Then {#usn7}[.12e-12] Else `5esn` Contains 0 Contains $12 End] Where `4esn`[9e-12..true] Return Distinct *,9e1[0.0] As `4esn` Order By 1e-1[..$`2esn`][..01] Asc,[usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`|{#usn8}[..@usn5]][Case When .9e1 In {#usn7} In .9e-12 Then #usn7 Is Null Is Null End..] Asc,12 Ends With 12e12 Desc Limit 00[{1000}]"), + octest_legacy:ct_string("Foreach(`` In None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Starts With {@usn5:999 Ends With {#usn8},_usn4:Null In {7}}| Return *,Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`}) Ends With Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))) Ends With Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1) As #usn7,{1000} Ends With .12e12 Ends With 010 As _usn3 Order By None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) Descending,9e-12 Is Not Null Is Not Null Desc Skip 999[..$@usn5][..``] Limit {`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]} =~{`8esn`:_usn4['s_str'][8.1e1]} =~(:usn1{#usn8:$`8esn` Is Not Null Is Not Null,`5esn`:3.9e-1 Starts With .9e0 Starts With {#usn7}})-[:#usn8|:`` *..07{@usn5:01234567[\"d_str\"..][$`4esn`..],`6esn`:$usn1 Ends With {`2esn`} Ends With $usn1}]-(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[? *0X7..0Xa]->(`1esn` ) Remove None(usn2 In .12e-12 Ends With `2esn` Where `7esn`[1.9e0..5.9e-12][9e0..@usn5]).`7esn`,Reduce(`2esn`={``} Contains 0.0 Contains `4esn`,usn1 In {#usn7} =~.12e12 =~9e0|.0e0['s_str'..][0Xa..]).#usn7!)"), + octest_legacy:ct_string("Create Unique (@usn6 {usn1:0Xa In 1.0 In $@usn5})-[#usn8?:`8esn`|:#usn8 *999..123456789]->(`3esn` :usn2)"), + octest_legacy:ct_string("Create Unique (_usn4 {_usn3:.0e-0[..``][..$7]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}),`2esn`=((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)) Detach Delete Allshortestpaths((({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)))[Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0])..][Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End..] Create Unique `3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})),(:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[`7esn`?:`7esn`|usn1 *1000..{@usn6:#usn7 In 07,#usn8:$999[usn1..0e-0]}]->(#usn8 :`5esn`:`7esn`{usn2})-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})"), + octest_legacy:ct_string("Return {`8esn`} Ends With true Ends With {`3esn`} As `1esn`,#usn8[$`2esn`] As _usn4,@usn5[@usn6] Order By 5.9e-12 =~01234567 =~$`3esn` Desc,\"d_str\" Starts With .1e-1 Asc Limit $`5esn` In `` Remove {#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}._usn3!._usn3,[#usn7 In .0e-0 In 12 Where $999 Is Not Null|1000[{`1esn`}..][$`3esn`..]].#usn7?,`1esn`:@usn6:_usn3 Union All Load Csv With Headers From .9e1[$`1esn`..][$``..] As `7esn` Fieldterminator \"d_str\" Union Create #usn7=Shortestpath(((`8esn` :@usn6:_usn3{`2esn`:#usn7 =~$@usn5 =~{7},`2esn`:{`3esn`}[..{`4esn`}][..usn2]})-[`8esn`:`4esn`|:`2esn`]->(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})))"), + octest_legacy:ct_string("Start _usn4=Node(01234567,0X7) ,#usn8=Relationship:usn2({usn1})Where 123.654[01..][Count(*)..] Return usn2[..$0][..`3esn`],{``:01234567[10.12e12][0Xa]} Is Null Is Null As #usn7,false Contains {`7esn`} Skip 0.0[$`4esn`] Limit (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])]"), + octest_legacy:ct_string("Unwind Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[..None(#usn7 In .0e-0 In 12 Where 0xabc =~123456789)][..11.12e-12] As @usn5 Start #usn7=Node:`5esn`({999}) ,`8esn`=Node( {`4esn`})Where $12 =~4.9e12 Create Unique @usn5=Allshortestpaths(({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})<-[#usn7?]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})),#usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2)))) Union All Unwind Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] As usn1"), + octest_legacy:ct_string("With 9e-1 Contains .12e-12 Contains $0 As `8esn` Skip \"d_str\" Is Not Null Is Not Null Where @usn5 Ends With $`8esn` Ends With $1000 Load Csv With Headers From 1.0 Is Null Is Null As `6esn` "), + octest_legacy:ct_string("Return Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {12} Ends With $`3esn` Ends With 0xabc)[Case When {0} Is Null Is Null Then $``[1.0..][_usn3..] Else 999[..$@usn5][..``] End..] Skip 9e0[`4esn`..$_usn4][9.1e-1..0e0] Start `6esn`=Node:@usn6(#usn8='s_str') Where {`7esn`} =~\"d_str\" =~{``} Union All Unwind Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}])[Any(usn2 In .12e-12 Ends With `2esn` Where {``} Is Null Is Null)] As @usn5 Return *,(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})<-[?{#usn7:`2esn`,`7esn`:$@usn5 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}) In Reduce(usn1={123456789} Ends With 11.12e-12 Ends With 00,`8esn` In {_usn4} Ends With {0} Ends With `1esn`|`4esn` Is Not Null) In All(`1esn` In $12 In {usn2} Where $`8esn` Is Not Null Is Not Null) As `6esn`,$`` Starts With $`4esn` Starts With `3esn` Skip .1e1 Is Null Is Null Limit 0.0 In .0e-0"), + octest_legacy:ct_string("Using Periodic Commit 7 Load Csv With Headers From Filter(#usn7 In .0e-0 In 12 Where 00[$``])[[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $`4esn`[usn2..]|3.9e-1 Contains $@usn5]] As usn1 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Return Distinct $12 Contains 's_str',.9e1 Is Null Is Null As `` Skip {`7esn`}[@usn5] Merge @usn6=((`` {_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})) On Match Set `2esn`+=9e1[0.0],#usn8+=.12e-12[@usn6..'s_str'],{`6esn`:4.9e12 Is Not Null Is Not Null,_usn4:`4esn`[9e-12..true]}.#usn8._usn3? =Shortestpath((((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))))[None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0.0[`7esn`])..Single(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])][`5esn`(Distinct .9e1[$`1esn`..][$``..])..Case When 12e12 Ends With `5esn` Ends With .0e0 Then .9e0 In 8.1e1 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else .9e1 Ends With 0x0 End] Unwind 7[{`4esn`}..] As `3esn`"), + octest_legacy:ct_string("Create @usn5=(`8esn` :#usn7:`8esn`),Allshortestpaths((((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})))) Union With Distinct {usn2} In false,{_usn4} In 0X7 In 0e0 As `2esn` Order By {#usn8} In {12} In .9e12 Asc,9e0[`1esn`..0e-0][00..`1esn`] Ascending Where $_usn3[0X0123456789ABCDEF..][0x0..] Optional Match ``=Shortestpath((`1esn` :`2esn`:`4esn`)<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})),@usn5=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))) Where 01234567[10.12e12][0Xa]"), + octest_legacy:ct_string("Foreach(@usn6 In Case When .9e1 In .1e-1 Then $7 =~01234567 =~12.0 When {`8esn`} Is Not Null Is Not Null Then $12 =~4.9e12 Else {#usn7}[.12e-12] End[..Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`}))]| With *,Single(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1])[Case When 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Then $#usn8 Is Not Null Is Not Null When \"d_str\" Starts With $`7esn` Starts With 999 Then \"d_str\"[0x0..{@usn6}][$@usn5..0] Else .0e-0[..01234567] End..] Order By {123456789} Starts With $_usn4 Starts With 0x0 Descending,9e-12 Ends With 9e1 Ends With 4.9e12 Ascending,$@usn6[.1e-1][9e12] Asc Unwind .9e0[$#usn8][Count ( * )] As #usn8) Create ((:#usn7:`8esn`{@usn5:{0} In {`1esn`}})),usn2=Shortestpath(((:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12})-[``?:#usn7|:@usn5{``:$usn1 Ends With {`2esn`} Ends With $usn1}]->(:`5esn`:`7esn`$usn2)-[{#usn8:\"d_str\" Contains {@usn6}}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12}))) Detach Delete [usn1 In $@usn6 Is Null Is Null Where 9e0[`4esn`..$_usn4][9.1e-1..0e0]][Any(`` In `7esn` =~#usn8 =~\"d_str\" Where 9e-12 Ends With 9e1 Ends With 4.9e12)][(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]})],$_usn3[0x0][{0}],00[$_usn4][$`1esn`]"), + octest_legacy:ct_string("Create Unique ({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})<-[_usn3? *0xabc..12]->(_usn3 {#usn7:$999 =~false =~{`8esn`}}) Detach Delete .0e-0 Contains $1000 Load Csv With Headers From {`5esn`}[01234567..][5.9e-12..] As _usn3 Union Foreach(_usn4 In #usn7(Distinct $`8esn`[..5.9e-12][..`8esn`],{`3esn`}[01234567][{#usn7}]) =~Case When {`8esn`} Starts With .9e-1 Starts With 1000 Then $`6esn`[$_usn3..{1000}] When 3.9e-1 Starts With .9e0 Starts With {#usn7} Then .0e-0 Ends With $`2esn` Ends With `5esn` Else _usn4[$_usn4] End =~Single(#usn7 In .0e-0 In 12 Where #usn7[123.654][{12}])| Return Distinct *,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null,{#usn8} Ends With _usn3 Ends With `2esn` Skip Case When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 Else 9e-12 Ends With {1000} End[Shortestpath((:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[`1esn`:`4esn`|:`2esn`{`5esn`:$_usn3[usn2..][usn1..]}]->(:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`}))..] Limit {`1esn`} In 0 Return *,$123456789 As #usn8 Order By 6.0e0 Is Null Asc,0.0 In .0e-0 Ascending Skip usn2[12e-12..{`8esn`}][.12e12..{123456789}]) Union All Start @usn6=Node(1000,999,01,07) ,`3esn`=Relationship:usn1(_usn3={@usn6})Where $`6esn`[$_usn3..{1000}] Match Shortestpath(((`1esn` :`5esn`:`7esn`))) Where $1000[_usn4][{@usn5}]"), + octest_legacy:ct_string("Create Unique `5esn`=Shortestpath((@usn5 :_usn4:`2esn`{@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})) Foreach(`6esn` In 12.0 Starts With 00| Unwind 7.0e-0 Starts With {123456789} Starts With @usn6 As _usn3 Unwind Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Contains (:`2esn`:`4esn`{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``) Contains {@usn6:10.12e12 Contains .9e0,`3esn`:`6esn` =~999 =~$999} As `2esn`) With Distinct 0e0 Is Null Is Null As `2esn`,{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]} In Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}))) In Extract(_usn3 In `8esn`[_usn4] Where 0[..{#usn7}][..$_usn3]|0x0 Ends With #usn8 Ends With .9e-1) As ``,$`6esn` In 999 In {_usn3} As usn2 Order By 010 =~9.1e-1 =~{`8esn`} Desc Skip false[9e12] Limit 0e-0[..7.0e-0][..{`8esn`}]"), + octest_legacy:ct_string("Optional Match @usn5=(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(`2esn` :_usn3{`6esn`:_usn4[{``}..{`6esn`}][$7..$_usn3],`6esn`:$`4esn` Ends With {999}})-[@usn6?:`4esn`|:`2esn`{`2esn`:Count ( * )[9e0..$``]}]-(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}) Optional Match `4esn`=(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0}) Where 2.9e1 Ends With `5esn` Ends With 1000 Start ``=Node:@usn5({`4esn`}) Where .12e-12 Starts With .12e-12 Union Remove (usn2 )-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(_usn4 :`1esn`:``{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}})-[:`2esn`|`5esn` *999..123456789{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]}]-(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}).#usn8! Create Unique `7esn`=Shortestpath((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})-[:#usn7|:@usn5]-(:`1esn`:``{`8esn`:5.9e-12[0x0..]})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)),Allshortestpaths(((`` :`7esn`)))"), + octest_legacy:ct_string("Detach Delete @usn5[9e-1..0e0][{_usn3}..$usn1],010[..9e-1][..0X7] Delete $12 =~4.9e12,Case {`4esn`} Ends With Count(*) When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] When $#usn7 Contains 3.9e-1 Then 123.654[10.12e12..$12][6.0e0..{#usn8}] Else $usn1[0e0...9e-12] End[Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))..][Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})..] Foreach(@usn6 In 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))]| Remove Single(`2esn` In $@usn5 Is Not Null Is Not Null Where false =~$7).`7esn`!.`5esn`?,Reduce(#usn7={`5esn`},`2esn` In $@usn5 Is Not Null Is Not Null|`1esn` =~{12} =~{999})._usn4! Remove (#usn8 )<-[:_usn4|:`1esn`{@usn5:.0e-0 In 12}]-(:_usn4:`2esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1})-[`3esn`? *..07]-(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}).`7esn`?,Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[..0][.._usn3]).usn1) Union All Detach Delete Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])[..(#usn7 {`5esn`:.12e12 Is Not Null,@usn5:.12e12 Is Not Null})-[#usn8:`7esn`|usn1 *0X7..0Xa{usn1:_usn4 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})][..Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`)] Start `5esn`=Node:`8esn`('s_str') "). diff --git a/test/performance_statement_SUITE.erl b/test/performance_statement_SUITE.erl index a7c3d62..14e4996 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 : 15.12.2016 +%%% Created : 29.12.2016 %%%------------------------------------------------------------------- -module(performance_statement_SUITE). @@ -38,1003 +38,1003 @@ all() -> %%-------------------------------------------------------------------- test_statement(_Config) -> - 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"). + octest:ct_string("Remove `4esn`(12e12 In $`` In 6.0e0,.9e1[#usn7..]).`5esn`?,@usn6:@usn6:_usn4 Delete 's_str' Ends With $usn1 Merge `1esn`=(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))) On Create Set `8esn`+=Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),`8esn`+=0.0 Is Not Null Is Not Null On Create Set `2esn` =$999[$usn1...0e0] Union Merge #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})) Match ({`4esn`:7 Is Null Is Null})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})"), + octest:ct_string("With *,7.0e-0 Contains Count ( * ) Contains 0Xa As `7esn` Order By [_usn4 In Count(*)[9e1..][12e-12..] Where $_usn3[1e-1..]][[`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0]][None(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)] Ascending,9e0[$usn2][0] Ascending Skip 3.9e-1[010..][9e1..] Limit (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null Where $_usn4[Null]"), + octest:ct_string("Delete true In $0 In @usn5 With Distinct *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5[..1e-1] Merge ((_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null On Create Set `3esn`+=12e12 Is Not Null Union With #usn7[`5esn`..`2esn`][$`4esn`...1e1] As _usn4,8.1e1 Is Not Null,$_usn3 Is Not Null Skip usn2 Starts With usn1 Limit 00 Is Not Null Where `6esn`[0e0..`4esn`] Unwind Null Starts With 9e1 Starts With `` As `8esn`"), + octest:ct_string("Merge ((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) On Create Set `2esn` =(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)],`3esn` =9e1 Contains 4.9e12 Contains 123456789 Unwind 0.12 =~2.9e1 =~12e-12 As @usn5 Return Distinct *,@usn5 Ends With 's_str' Ends With 01 As _usn4,Null[.12e-12] Skip 's_str' Ends With $usn1 Union Return Distinct *,0 Starts With 0Xa Starts With $0 Limit Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}] Union All Delete 9e12 Contains $@usn6 Contains Count(*),All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)]"), + octest:ct_string("With Distinct (`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[:usn2|:``*..{`1esn`:3.9e-1[.0e0..][07..],`6esn`:$`6esn` Ends With 12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})[All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)..`1esn`(Distinct 01234567 Ends With $1000 Ends With $#usn7,$0[..0x0][..01234567])][_usn3(9e0[.0e-0])..[`5esn` In 12[0xabc..][$0..] Where $usn2[0e0][$7]|Count ( * )[`7esn`..]]] As `6esn` Order By #usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Ascending,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) Asc With Distinct *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip 0xabc =~7.0e-0 =~4.9e12 Limit Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))),(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}) Where $`3esn`[..`1esn`][..$`7esn`] Union All Create ((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]})) Return Distinct *,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]},00[$`6esn`] As `6esn` Order By [`7esn` In .12e12[Count(*)..] Where \"d_str\" =~9e-12 =~`5esn`] Is Null Is Null Asc Limit 123456789[.1e1..][$`5esn`..] Union Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set All(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null).usn1! =.12e12[`7esn`][#usn8],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `2esn` Starts With $`7esn` Starts With _usn4).`1esn`?.#usn8?.@usn6! =All(`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])[None(`` In $_usn3 Is Not Null)..][All(`8esn` In 01234567[..0.0][..false] Where .12e-12[$@usn6..5.9e-12])..]"), + octest:ct_string("With Distinct All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,usn2[..7.0e-0] As `1esn` Skip `2esn` =~usn1 Limit .1e-1[..12][.._usn4] Where 0e0 Is Null Is Null Create ((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),(((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]})))"), + octest:ct_string("Match `3esn`=((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})),_usn4=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[@usn6?:`5esn`]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) Union With *,.9e-12[9e1..6.0e0][`1esn`..9e0] As @usn6,$`6esn` In $`3esn` In 9e1 Order By 5.9e-12 Ends With 1e1 Ends With false Descending,$`2esn` Starts With .12e12 Starts With 3.9e-1 Ascending,`6esn`[`6esn`..] Descending Skip $_usn4 =~$_usn4 =~2.9e1 Where $`4esn` In 123456789 In `5esn`"), + octest:ct_string("With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Order By 12.0[.._usn4][..0X7] Descending,`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Ascending Skip 's_str' Ends With 0.0 Ends With .12e12 With *,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2 Order By .1e-1 Contains 1e1 Contains $`6esn` Asc,(_usn4 {`3esn`:1.9e0 Ends With 0Xa Ends With $12,@usn5:.9e12 Is Not Null Is Not Null})<-[`2esn`{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-(`3esn` {`7esn`:9.1e-1 =~@usn5 =~Count ( * )})<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) In None(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]) In `7esn`(12 Ends With $7 Ends With $#usn8) Desc Skip \"d_str\" =~`5esn` =~.12e-12 Limit .9e12[..$usn1][..10.12e12] Where $`6esn`[$_usn4][01] Unwind .9e1 Contains Null As _usn3"), + octest:ct_string("With 00 Starts With Count(*) Starts With 12e12 As `4esn`,(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})<-[?:usn1|:#usn8{`8esn`:`2esn` Is Not Null Is Not Null}]-({#usn8:1e1[Null..][.12..]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null As `3esn` Order By $@usn5 In .9e1 In $`` Ascending,$_usn3[.1e1..][$`1esn`..] Ascending,.1e1 In 9e12 Asc Skip 01 Is Null Where $123456789[$_usn3..][$usn2..] Detach Delete [usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},{`4esn`:5.9e-12[9e0..]} =~None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12),10.12e12 Ends With _usn3 Ends With `4esn` Union All Return Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] As `7esn`,12e12 Starts With `6esn` Starts With true As #usn8,$_usn4[1e-1..8.1e1][`1esn`..1.9e0] As `` Order By 9e-1 Contains $@usn5 Contains Count(*) Asc,\"d_str\"[12e12..][4.9e12..] Descending,12e-12 Ends With @usn5 Ends With $`2esn` Desc Skip `4esn`[0.0..][.1e-1..] Remove Any(`` In $`5esn` Starts With 0X7 Starts With 1e1).#usn7!,Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\").#usn7!,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`8esn` Is Null|`2esn` Starts With $`7esn` Starts With _usn4].usn2?.@usn5! Remove Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7]).#usn8?.`3esn`?.@usn5"), + octest:ct_string("With [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..] Delete Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null,0X0123456789ABCDEF Is Not Null Is Not Null Union All Match (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Create #usn8=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Return 0 Contains $`6esn` Contains #usn7 Limit usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) Union Create `5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)),``=(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`` :@usn6:_usn4)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})"), + octest:ct_string("Remove #usn8(Distinct .0e0 Contains `4esn` Contains Null,_usn4 Is Not Null Is Not Null).`3esn`!.`1esn`,usn1($usn2[1e-1])._usn3?.`1esn`?.`8esn`? Union All Merge usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) On Create Set usn2 =[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]|12e12 Is Not Null][{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]}],`5esn`+=.9e1[..`5esn`] Union Create ((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})),#usn8=(#usn7 :usn2)<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}) Optional Match (_usn4 :`7esn`{@usn6:.12e-12[999...12]}) Where Null Starts With 9e1 Starts With ``"), + octest:ct_string("Merge (`5esn` :`5esn`) On Match Set #usn8+=All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)]"), + octest:ct_string("Optional Match ((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Where 1e1[Null..][.12..] Union With Distinct _usn3[`2esn`..][0x0..] As usn1 Order By 01234567 Starts With `4esn` Starts With 10.12e12 Ascending,0Xa In 0.12 In $#usn7 Descending,$999 Is Not Null Desc Skip $@usn5 Ends With $@usn6 Ends With \"d_str\" Limit (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Union Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) Where _usn3 Starts With `2esn`"), + octest:ct_string("Return *,Null[...9e1],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Unwind 0.12 =~2.9e1 =~12e-12 As `6esn` Merge ((_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})) On Match Set (#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`3esn`?:usn1|:#usn8*..{usn1:.12e-12[999...12]}]->(#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]}).`7esn`? =12 Ends With $7 Ends With $#usn8 On Match Set usn2 =[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Union All Unwind 12[123456789][5.9e-12] As `5esn` With Distinct *,_usn3[`2esn`..10.12e12][9e1..true] Where .9e1[#usn7..] Union Remove [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|.9e1[..`5esn`]]._usn3!.`6esn`?.`3esn`?,(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )._usn4!.usn2.#usn7! Optional Match `7esn`=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}),((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Where .0e0 Is Null Is Null Create @usn5=({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})"), + octest:ct_string("Create #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})),``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Union Match (({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})),#usn7=(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[?{#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0}]-({`6esn`:07 Ends With @usn6 Ends With _usn3}) Return *,.12e-12 In 9e12 In 9e-12 As `5esn`,1e-1 Starts With usn2 Starts With 12e-12 As `` Order By 0[true..$7] Descending Skip (_usn4 :`2esn`:`8esn`)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})<-[`2esn`?:@usn5]-(`7esn` :usn1$`6esn`) =~(#usn8 {`3esn`:123456789 Contains .1e-1 Contains .12e12,`1esn`:$`3esn` =~4.9e12 =~$7})-[#usn7? *00..123456789]->(`8esn` :@usn5)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) Union All Detach Delete {`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)],Null Is Not Null Merge @usn6=(((@usn5 {``:.0e0[$`6esn`..]})-[?:usn2|:``]-(_usn4 :`4esn`:`7esn`{#usn7:0xabc Is Not Null,`4esn`:_usn3[`2esn`..10.12e12][9e1..true]})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(@usn5 :usn2))) On Match Set usn2 =$`8esn`[.9e-1][_usn3] On Match Set #usn7+=Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}],`8esn`(Distinct `2esn` Is Not Null Is Not Null,$``[4.9e12..2.9e1]).`6esn`.`1esn`! =.9e0 Is Not Null,usn1($@usn5[...9e-1][..$usn1],$`3esn` Ends With 010 Ends With $`7esn`).`3esn` =(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[? *07..{_usn4:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:$#usn8[...9e1]}]-({`1esn`:0X0123456789ABCDEF Contains 8.1e1})[Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`|$@usn6 =~$`2esn` =~9e1)..][[_usn4 In Count(*)[9e1..][12e-12..] Where $usn1 Starts With 12 Starts With 12e12|0e-0 Contains _usn4 Contains 1e-1]..] With Distinct *,#usn8 In $@usn6 As `8esn` Skip `1esn`[..0x0][..\"d_str\"]"), + octest:ct_string("Optional Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Where `` Ends With .9e-1 Ends With 9e-12 Union Merge _usn3=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Optional Match `2esn`=((@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]})) Where @usn5[...9e12] Unwind (`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As `7esn` Union Optional Match usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})),_usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]})))"), + octest:ct_string("Remove Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).`5esn`?,None(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).@usn5? Detach Delete .0e-0 =~12e-12,12e12[07..] Remove `2esn`:`7esn`,{`8esn`:`1esn` In 12e-12 In 1e-1}.`4esn`.`3esn`!.usn1!"), + octest:ct_string("Detach Delete 5.9e-12 Contains $`` Contains $`5esn`,#usn7 =~0.0 =~usn2,10.12e12[..10.12e12][..`6esn`] With 8.1e1 Is Null Is Null,Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` Is Null Is Null) Is Not Null Is Not Null As _usn4 Order By (`6esn` $@usn6)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]}) =~All(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~{``:7.0e-0 Is Null Is Null,@usn5:9e-12[$0][$`4esn`]} Asc,999 =~0Xa =~9e0 Asc Skip All(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])[..(:_usn4{`4esn`:9e1 Contains 4.9e12 Contains .9e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})][..(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)<-[?{_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})] Where 9e1 Ends With .9e0 Return Distinct *,@usn5 In $1000 In 07 Order By `5esn`[0X7..][12..] Asc Union All Return *,.12e-12 In 9e12 In 9e-12 As `5esn`,1e-1 Starts With usn2 Starts With 12e-12 As `` Order By 0[true..$7] Descending Skip (_usn4 :`2esn`:`8esn`)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})<-[`2esn`?:@usn5]-(`7esn` :usn1$`6esn`) =~(#usn8 {`3esn`:123456789 Contains .1e-1 Contains .12e12,`1esn`:$`3esn` =~4.9e12 =~$7})-[#usn7? *00..123456789]->(`8esn` :@usn5)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Union All Remove Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]).#usn8?"), + octest:ct_string("With Distinct Null[...9e1] As usn2 Union All Optional Match ((`7esn` :usn1$`6esn`)-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(`7esn` :`2esn`:`8esn`)-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1)),usn2=(`2esn` )-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}) Where 0[$999..] Optional Match (({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})) Where 5.9e-12 =~$@usn6 Remove [`` In $`5esn` Starts With 0X7 Starts With 1e1]._usn4?,[_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]].usn2"), + octest:ct_string("Return Distinct `8esn` Is Null As `6esn`,01234567 Starts With `4esn` Starts With 10.12e12,Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null As _usn3 Order By 01[7][`1esn`] Asc,Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null Descending,Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|.9e12 Starts With 6.0e0 Starts With .1e1) Is Null Is Null Asc Skip 1.9e0 =~0x0 Create @usn6=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})),@usn6=(#usn8 {#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[`8esn`?:`8esn`|:`2esn`]-(:usn1{``:.9e1[..`5esn`]})<-[:usn1|:#usn8{_usn4:$12[01]}]-(:`1esn`{`3esn`:#usn8[`2esn`]}) Union All Unwind (#usn7 :@usn6:_usn4)-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]->(:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(usn1 {`6esn`:$`5esn`[true],usn2:1e1 Is Not Null Is Not Null}) Ends With (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]})<-[`6esn`:`6esn`|#usn7*]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12}) Ends With Any(`5esn` In 12[0xabc..][$0..]) As `2esn` Delete $#usn7 =~8.1e1 Create usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))"), + octest:ct_string("Optional Match `7esn`=((#usn7 )) Where 0.12[07..3.9e-1] Create `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Union Detach Delete .1e1[..0][..010] Detach Delete ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]),`2esn` Starts With 12 Starts With 10.12e12,.12e-12[07] Return 1.9e0 Ends With Count ( * ) Ends With .12 As `4esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12),9e1 Is Not Null As #usn8 Order By $`4esn` Ends With 0e-0 Ascending,.9e-1 Contains .0e0 Contains usn1 Asc Skip None(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8) Is Null Is Null"), + octest:ct_string("Remove None(`5esn` In 12[0xabc..][$0..] Where .9e0 Is Null Is Null).`4esn`?.`7esn`!,{`4esn`:9.1e-1 Is Null}.`` Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})) Unwind $`6esn`[$`8esn`..][false..] As usn2 Union All Merge `7esn`=(((`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`))) On Match Set [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]|0x0 Contains $`1esn` Contains 0.0].@usn5.``?.`8esn` =All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] Create `5esn`=(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})"), + octest:ct_string("Detach Delete None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567) Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1) Starts With (:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`),All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] Union Unwind .0[01234567][$#usn8] As `2esn` Merge `6esn`=(({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Create Set All(usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]).`2esn`? =0Xa[$usn2..],`3esn`:usn1,`1esn` =$``[`6esn`][00] Union With Distinct `5esn`[$`4esn`] As @usn6,.0e0 Is Null Is Null As _usn4,1.9e0 Starts With .9e0 Order By @usn5 Contains _usn3 Contains 00 Descending,$`6esn` Ends With 12 Ascending"), + octest:ct_string("Create ((`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})<-[`8esn`?:`3esn`|:_usn3*..{@usn5:$0 Starts With 010}]-(`3esn` :@usn5)<-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(`1esn` )) Union Merge @usn5=(({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})-[:``|:`3esn` *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})) On Match Set #usn7 ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0} =~Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]),`8esn` =`5esn`(Distinct 123456789 Ends With 8.1e1,01234567[6.0e0][$usn2])[{@usn5:usn1 Is Not Null,usn2:0xabc[7.0e-0..][12e12..]}..][(_usn3 :_usn3:_usn3)<-[`6esn`?:``|:`3esn`]-(:@usn6:_usn4$`6esn`)<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})..] On Create Set [usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]].`4esn`?.usn2?.usn2! =[@usn6 In .9e12 Starts With #usn8 Starts With 00|9e12 Contains $@usn6 Contains Count(*)][(`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]})][Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null)],Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654).`4esn`? =Count ( * )[0e-0..01],#usn7+={usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])]"), + octest:ct_string("Create ((:@usn6:_usn4$`6esn`)<-[_usn3:_usn3|`2esn`{`7esn`:0X7[_usn4..1.9e0][Count ( * )..false],_usn4:.9e-12[9e1..8.1e1]}]-({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})<-[`2esn`?:usn2|:`` *0Xa..7]->(`` :`5esn`)) Create (({_usn4:01234567[6.0e0][$usn2]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})),(`7esn` :`8esn`:#usn7{`4esn`:`8esn` =~.1e1 =~.0}) Union All Remove (_usn3 {`5esn`:`8esn` =~.1e1 =~.0})-[?{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]}]-({_usn3:$`8esn` Is Null})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`).@usn6.``! Return Distinct *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By 01 Ends With \"d_str\" Asc,$_usn3[$`8esn`..$`4esn`] Descending,Null[12e-12..] Desc Skip None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) =~[@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] Limit $``[0.12..] Union Remove (`` :`3esn`{`5esn`:``[$``..]})-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}).`7esn`,[`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$`` Is Not Null].`8esn`._usn3?,(`` :usn2)-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}).usn1! Delete None(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Is Not Null"), + octest:ct_string("Merge `6esn`=((#usn7 )) On Match Set `1esn`().`` =$`2esn`[$1000..][$@usn5..] Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As #usn7"), + octest:ct_string("Remove (:@usn6:_usn4$`6esn`)<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)<-[`7esn`?]-({usn2:#usn7[10.12e12..][\"d_str\"..]}).`6esn`!.`3esn`.`1esn`!,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0 Starts With 0Xa Starts With $0|#usn8 =~.9e-12 =~$usn1].`4esn`,{#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}.`7esn` Return Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 123456789 Ends With _usn4) =~{usn2:$``[`6esn`][00],#usn7:.12e12[$12..4.9e12][11.12e-12..9e12]} =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`5esn` Is Null Is Null),1e1 Skip 8.1e1 Starts With 9e-12 Starts With $1000 Remove [`8esn` In 12.0 Contains $_usn4 Contains $usn2|#usn8 Starts With 11.12e-12 Starts With $`3esn`].`6esn`.`6esn`!.`5esn` Union Unwind _usn3(0x0 Starts With 1000,.1e1[.0e0..])[[`` In $_usn3 Is Not Null Where 7.0e-0 =~$123456789 =~`8esn`|999[...12e12][..0]]..``(Distinct)][(`2esn` :`1esn`)-[?{@usn5:6.0e0 Is Not Null}]->({`8esn`:$`7esn` Is Not Null,`5esn`:01234567 Starts With `4esn` Starts With 10.12e12})<-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]->(`` )..({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)] As `4esn`"), + octest:ct_string("Remove All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9e12[$#usn8..9e-1][$999..$`4esn`]).``?.`8esn`!,{`8esn`:9e-1 Starts With 123.654 Starts With .9e1}._usn3!._usn3?.#usn8,(`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``! Union Remove {`4esn`:#usn8[..#usn7][..@usn6],`4esn`:8.1e1 Ends With $0 Ends With 6.0e0}.@usn6!.``! Return Distinct `8esn` Is Null As `6esn`,01234567 Starts With `4esn` Starts With 10.12e12,Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null As _usn3 Order By 01[7][`1esn`] Asc,Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null Descending,Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|.9e12 Starts With 6.0e0 Starts With .1e1) Is Null Is Null Asc Skip 1.9e0 =~0x0"), + octest:ct_string("Remove Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12).`5esn`?,(`7esn` :@usn5{usn2:$`8esn`[#usn7][.9e1],`7esn`:@usn5[$``]})<-[:`1esn`{`8esn`:0xabc[7.0e-0..][12e12..]}]->(:`6esn`:`3esn`{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12}).`6esn`!,Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]).usn1!._usn3?._usn3? Create `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}))"), + octest:ct_string("Merge _usn3=(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})<-[`1esn` *0..010]-(usn2 :``:usn1)<-[?:usn2|:`` *..0X7]-(#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})"), + octest:ct_string("Optional Match ((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Optional Match `3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})),`6esn`=((#usn7 )) Where 9.1e-1 In #usn8 Remove Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $@usn5 =~.12e-12).`4esn`?,Single(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]).`8esn`? Union All Remove {`4esn`:`8esn` =~.1e1 =~.0,`4esn`:Count(*) Starts With $_usn4}.@usn5?,count(Distinct 9.1e-1 =~@usn5 =~Count ( * )).`2esn`,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7).#usn7! Union With *,Count(*)[..Count(*)][..9e0] Order By 07 Starts With usn1 Starts With 010 Ascending,7.0e-0[..$`7esn`][..Null] Descending,$usn2[8.1e1...9e-1][.1e-1..11.12e-12] Desc Skip Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] Limit 999 Ends With $123456789 Ends With $_usn4"), + octest:ct_string("Remove [`5esn` In 12[0xabc..][$0..]].#usn8!,[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]|$`3esn` In 's_str' In $#usn7]._usn4!.#usn8?,Filter(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)._usn3!.@usn5! With *,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"] Starts With ``(12.0[`8esn`],4.9e12 In 5.9e-12 In .9e0) Starts With Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]),$12 Contains $#usn8 Contains 01 Unwind Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) As `6esn` Union Return Distinct *,Null[...9e1] As `2esn` Order By 10.12e12 =~12e-12 =~0X0123456789ABCDEF Descending,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) Asc,8.1e1 Starts With .9e12 Starts With `7esn` Desc"), + octest:ct_string("Remove None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`8esn`?.`3esn`?.@usn6?,Extract(`5esn` In 12[0xabc..][$0..] Where `7esn` Ends With 9e12).`8esn` Optional Match `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Where 0e0 Starts With $1000 Starts With `2esn` Match @usn6=(((`3esn` :`4esn`:`7esn`)<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(usn1 :`2esn`:`8esn`))) Union Return Distinct Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],(`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As `6esn`,$123456789 Is Not Null Order By $usn1 Contains `7esn` Contains .9e12 Ascending Limit `6esn` In 9e-12 Merge ((`7esn` {usn2:12.0[..123456789][..01]})-[_usn3{#usn7:Count(*)}]->(`2esn` :_usn3:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})) On Create Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Union All Return *,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null As `6esn`,01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..] Skip [_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789|0e-0 Contains _usn4 Contains 1e-1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567) Limit @usn5[``..][12e-12..] Detach Delete 12e-12 Starts With .9e12 Starts With 0.12,9e-12 Ends With `7esn`,010"), + octest:ct_string("Unwind $`6esn` Ends With 12 As @usn6 Delete 01[7][`1esn`],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|$@usn5 In .9e1 In $``) Contains (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null}),07[$`1esn`..$999] Merge `7esn`=((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)) On Match Set Filter(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).``.`8esn` =Count ( * )[..`8esn`],usn1 =123456789 Contains .1e-1 Contains .12e12,`8esn`+=`7esn` Ends With _usn4 On Match Set `6esn` ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])],All(`5esn` In 12[0xabc..][$0..] Where _usn3 Ends With 01 Ends With .1e-1).`6esn`? =12.0[..Count(*)][..5.9e-12] Union All Create `7esn`=((:_usn4{#usn7:.0e0[1e1..][01234567..],@usn5:`2esn` Is Not Null Is Not Null})-[? *0X0123456789ABCDEF..0]-({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})),`8esn`=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2})) Create `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),((_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))"), + octest:ct_string("Detach Delete 9e1 Ends With 123456789,usn1 Ends With .9e-12,9e-12[$0][$`4esn`]"), + octest:ct_string("Create (`1esn` :`6esn`:`3esn`),(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Union All With Distinct $#usn7 Is Not Null Skip 12e-12 Contains .9e-1 Contains 9e-1 Unwind .12e12[Count(*)..] As `5esn`"), + octest:ct_string("Unwind .9e1 Is Null As `4esn`"), + octest:ct_string("With count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0])[_usn3(8.1e1[usn2..$1000][$7..0x0],false[..12e-12][...9e1])..] As @usn6,.0e-0[0e0..00][.9e1..12] As `1esn`,Count ( * ) Starts With 10.12e12 Starts With `` As `5esn` Order By 5.9e-12[9e0..] Ascending,0x0 Asc Skip 0Xa[$usn2..] Where $``[`6esn`][00] Delete 12e12[..123456789][..false] Union Create @usn5=({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Detach Delete {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null,$`4esn` =~0e0 Delete 10.12e12[0Xa..999][1000..Count(*)],2.9e1 Union With $0 =~01234567 As `2esn`,07[.0e0][3.9e-1] Skip Extract(`7esn` In .12e12[Count(*)..] Where true Starts With 2.9e1 Starts With 9e1|12[0xabc..][$0..]) Starts With Extract(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12|0.12[3.9e-1]) Starts With ``(12e12[true..][$`2esn`..]) Limit [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]] Where 5.9e-12[`4esn`..12e12][0x0..1.9e0] Return #usn7[`5esn`..`2esn`][$`4esn`...1e1] As _usn4,8.1e1 Is Not Null,$_usn3 Is Not Null Order By $`6esn`[.9e1..][`5esn`..] Ascending,#usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Desc,Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Ascending"), + octest:ct_string("Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|.1e1 In 9e12).``,{`2esn`:.0,`5esn`:$`3esn` =~4.9e12 =~$7}.`1esn`!.@usn5!,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`).#usn8? With Distinct *,$`2esn`[$1000..][$@usn5..] As #usn8 Order By .9e0 Is Null Asc,0 Is Not Null Desc Skip #usn7[5.9e-12][00] Where 12e12[..$`8esn`][...0e-0] Union All Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set `6esn` =.1e1 =~10.12e12 On Match Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] Create (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}) Unwind _usn4['s_str'..] As `6esn` Union Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``]|`4esn` Starts With $_usn3 Starts With .9e-12].@usn5!._usn4?.`1esn`?,All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where true In $0 In @usn5).`3esn`"), + octest:ct_string("Detach Delete 010 Is Not Null Is Not Null,None(`8esn` In 01234567[..0.0][..false] Where `7esn`) Is Not Null Is Not Null,07[.0e0][3.9e-1]"), + octest:ct_string("Delete $usn1[$7..][$0..]"), + octest:ct_string("Unwind 12[0..usn2] As `7esn`"), + octest:ct_string("Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Where 4.9e12 In 5.9e-12 In .9e0 Union Merge ((:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})-[usn2?:@usn6|:_usn3]->({usn1:01[.9e-12..],@usn6:$`5esn` Ends With $#usn7 Ends With .0e-0})) On Create Set @usn5:usn2,None(`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]).`5esn`? =#usn7 Is Null,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where .9e1[#usn7..]).`8esn` =$`8esn` In 9e-12 In 3.9e-1 On Create Set @usn5 =0.12 Is Not Null Is Not Null,`3esn`+=11.12e-12 Is Null,`` =Count ( * )[..2.9e1] Union All Delete [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]],All(`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])[None(`` In $_usn3 Is Not Null)..][All(`8esn` In 01234567[..0.0][..false] Where .12e-12[$@usn6..5.9e-12])..] Match usn1=((`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[?{_usn3:Null Starts With 9e1 Starts With ``}]->({`1esn`:0X0123456789ABCDEF Contains 8.1e1})-[_usn3:_usn4|`1esn`{`2esn`:123456789 In 9e-12 In false}]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]})) With Distinct *,$usn1 Contains `7esn` Contains .9e12,$`2esn` In 0X7 In 3.9e-1 As #usn7"), + octest:ct_string("With 3.9e-1[0.12..] Order By 123456789 =~6.0e0 Ascending,Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Ascending,1.9e0 Starts With 's_str' Starts With 9.1e-1 Descending Where $123456789 Starts With Count ( * ) Union All Return Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null As `6esn`,`` Contains 12.0 As usn1,.1e-1 Ends With $_usn3 As @usn6 Order By $@usn6 =~$`2esn` =~9e1 Ascending,0Xa[9e0] Desc Limit .0e0[$`1esn`][.9e-12] Delete $usn1[$7..][$0..]"), + octest:ct_string("With #usn7[10.12e12..][\"d_str\"..] As `1esn`,9e-1 Contains $@usn5 Contains Count(*),`` Is Not Null Is Not Null As usn1 Order By @usn6 In 3.9e-1 In 9e-12 Asc,1.9e0[$12][``] Desc,12e12 =~#usn7 =~.9e-1 Asc Limit 0X7 =~$123456789 =~$`` Where $1000[$1000...9e0] Match `1esn`=((({``:_usn3[$_usn3][usn1]})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(#usn8 {_usn3:$usn2 In usn1 In 1e-1})<-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(_usn3 :#usn8))) Union All Detach Delete Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})],$`1esn` =~0.0,8.1e1 Is Not Null Union With Distinct *,Null[12e-12..] As _usn4,$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Skip Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`])[0x0..[`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`]] Create `6esn`=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0})))"), + octest:ct_string("Remove ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(usn1 :usn1)<-[@usn5?:`8esn`|:`2esn` *0..010]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}).`5esn`!.usn2!.`1esn`! Remove `2esn`(usn1[12e-12])._usn4.@usn5!.`6esn`?,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2).`8esn`?._usn3!.`8esn`,[usn1 In 7.0e-0[.._usn4][..0X7] Where 12.0[..Count(*)][..5.9e-12]|.1e-1 Ends With $`8esn` Ends With .9e0].usn2 With Distinct *,Null[12e-12..] As _usn4,$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Skip Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`])[0x0..[`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`]]"), + octest:ct_string("Remove `8esn`:`4esn`:`7esn`,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1])._usn4?.`8esn`,(`6esn` :`2esn`:`8esn`{`6esn`:.1e-1[..12e12]})<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}).@usn5? Create usn1=({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}),#usn8=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Optional Match ((#usn8 {_usn3:$usn2 In usn1 In 1e-1})),usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union Create (`1esn` :`5esn`)-[:#usn8|:`4esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}]-(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}),_usn4=(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}) With Distinct *,.0e-0[0e0..00][.9e1..12] Order By 4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Ascending Skip 0x0 Starts With $`5esn` Starts With 9e-12 Detach Delete #usn7 Ends With Count ( * ) Ends With @usn6,Extract(usn2 In .0e0[$`6esn`..] Where 010|0e-0 Contains _usn4 Contains 1e-1)[{#usn7:_usn4 Ends With .0 Ends With 7,#usn8:`` Ends With .9e-1 Ends With 9e-12}],`5esn` Contains 1.9e0 Contains 9e0 Union Merge #usn7=((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?]->(:@usn5{usn2:$usn1[$12..]})) On Create Set [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]].`8esn`.@usn6? =07[..@usn6][..$`4esn`],Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]).`3esn` =Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07),usn1:`8esn`:#usn7 On Match Set usn2+=#usn7 Ends With $#usn7 Ends With #usn7,`5esn` =Count ( * )[7],`4esn` =123456789 =~2.9e1 =~@usn5 Merge #usn7=((:`4esn`:`7esn`{`7esn`:9e-12 In usn2,usn2:0x0[`5esn`][$`5esn`]})) On Create Set `2esn` =(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)],`3esn` =9e1 Contains 4.9e12 Contains 123456789 On Create Set `6esn` =.1e1 =~10.12e12 Return *,0Xa[$usn2..] As #usn8,#usn7 =~0.0 =~usn2 As _usn4 Skip 123456789[Count(*)] Limit false Is Not Null Is Not Null"), + octest:ct_string("With *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5 Is Null Union Match `3esn`=(({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[``?:``|:`3esn` *01234567]->(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})),((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) Merge ((`` )<-[?]->(_usn4 :@usn5)) On Create Set @usn6 =123.654 Ends With 0Xa Ends With .12e12,`` =.0e-0 Starts With $#usn7 Starts With _usn3 Remove [`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12].`2esn`?.@usn6!,(:#usn8)<-[`3esn`?:`2esn`|`7esn`*..]-(usn2 :`1esn`{@usn5:Count(*)[.0e0]})<-[_usn4?:`4esn`|:@usn5 *1000]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})._usn4,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null).`2esn`! Union Detach Delete Count(*)[9e-12..0Xa][$123456789..0.0]"), + octest:ct_string("Optional Match `3esn`=((#usn7 :usn2{@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-({`6esn`:07 Ends With @usn6 Ends With _usn3})),`3esn`=({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}) Union All Optional Match `1esn`=(((@usn5 :usn2)-[`4esn`?:_usn3|`2esn`]-(:#usn7:_usn3)<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) Union All Create #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]})-[`3esn`? *..0xabc{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`}) Create `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`}))"), + octest:ct_string("Detach Delete 1e1[3.9e-1][.9e-1],$@usn6 Is Not Null Is Not Null,true[9e-12...0e-0][`5esn`.._usn4]"), + octest:ct_string("Unwind usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12)[{_usn4:@usn6 In 3.9e-1 In 9e-12}][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]|10.12e12[12e12..0X7])] As `7esn` Delete {@usn5:$0 Starts With 010} In usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]),123.654 In $`5esn` In 9e-1 Union Optional Match `2esn`=(_usn3 :_usn3:_usn3{@usn6:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Delete @usn5[$``],$`5esn`[7..]"), + octest:ct_string("Remove `1esn`.#usn8 Union Match (`1esn` :_usn3:_usn3$0)-[`7esn`?:`5esn`]->(`1esn` :`6esn`:`3esn`)-[ *0x0..{`3esn`:$@usn6 Is Not Null Is Not Null}]-(usn1 :@usn6:_usn4),`6esn`=(:`1esn`)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`) Where `8esn` =~.1e1 =~.0 Match (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Merge usn2=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}) Union Return *,$12[.9e-1] As `6esn`,`6esn`[010...9e-12] As `5esn` Order By 123456789[\"d_str\"..] Descending,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending,12e-12[`7esn`..][5.9e-12..] Asc Create ((`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})<-[`8esn`?:`3esn`|:_usn3*..{@usn5:$0 Starts With 010}]-(`3esn` :@usn5)<-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(`1esn` )) Remove Filter(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]).``,{@usn5:6.0e0 Is Not Null}.usn1"), + octest:ct_string("Optional Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Optional Match ``=((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})-[{usn2:$`8esn`[#usn7][.9e1],`7esn`:@usn5[$``]}]->(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})) Where .9e-1 Is Null"), + octest:ct_string("Unwind Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null As #usn7"), + octest:ct_string("Match ((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})),``=((({`4esn`:$`2esn` Ends With $`8esn`})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})-[``]-(:_usn4{#usn8:.0e0[1e1..][01234567..],#usn7:1e-1[..2.9e1]}))) Where $123456789 =~12 =~7 Return 12 Contains usn2 Contains $usn2 As ``,Count ( * )[12e-12] As #usn7 Skip .0 Detach Delete .12e12 =~$#usn7,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] Union All Remove Extract(_usn3 In ``[$``..] Where 0xabc[7.0e-0..][12e12..]|123456789 =~6.0e0).``.`1esn`.@usn5!,`6esn`(Distinct).`2esn` Return Distinct [`` In 0.12[3.9e-1] Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`|Null[10.12e12..]] In {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] As `7esn`"), + octest:ct_string("Remove (usn2 :@usn6:_usn4{usn1:9e12 Contains $@usn6 Contains Count(*)})-[usn2:`4esn`|:@usn5 *01234567]->(:`5esn`{`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567})<-[`4esn`?:_usn3|`2esn`]-(`8esn` {``:$123456789[$_usn3..][$usn2..]}).`6esn`!,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1).`1esn`?.``.usn1,{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}._usn3!.`6esn` Remove ``:`3esn`"), + octest:ct_string("Match (((_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})<-[`4esn`?:_usn3|`2esn` *0..010]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`}))),`2esn`=(({_usn4:01234567[6.0e0][$usn2]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})) Unwind 5.9e-12 Ends With 1e1 Ends With false As _usn3 Remove ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(usn1 :usn1)<-[@usn5?:`8esn`|:`2esn` *0..010]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}).`5esn`!.usn2!.`1esn`! Union All Remove @usn5:@usn5,All(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1).`8esn`.`4esn`! With Distinct *,9.1e-1 =~.12 =~0e-0 As `1esn` Order By 9e-1 Starts With 123.654 Starts With .9e1 Descending,$`8esn`[$``..$`1esn`][9e-12..$7] Descending Skip \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"] Limit $`5esn` Is Not Null Where .9e1[#usn7..] With *,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"] Starts With ``(12.0[`8esn`],4.9e12 In 5.9e-12 In .9e0) Starts With Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]),$12 Contains $#usn8 Contains 01 Where $`4esn` =~0e0"), + octest:ct_string("Return Distinct *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Return Distinct *,$7 Contains _usn4 Contains $`1esn`,0e-0[$`2esn`][8.1e1] As @usn5 Unwind false[..12e-12][...9e1] As #usn8 Union All Remove #usn8(Distinct .0e0 Contains `4esn` Contains Null,_usn4 Is Not Null Is Not Null).`3esn`!.`1esn`,usn1($usn2[1e-1])._usn3?.`1esn`?.`8esn`?"), + octest:ct_string("Unwind .12e-12[999...12] As `2esn` Detach Delete Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})],$`1esn` =~0.0,8.1e1 Is Not Null Union Unwind `5esn` Contains 1.9e0 Contains 9e0 As #usn7 Create ``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]}))"), + octest:ct_string("Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) Union All Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] Ascending,1e-1[..$`6esn`] Ascending Skip (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Remove {usn2:`3esn` In 0X7,usn2:7 Is Null Is Null}.`4esn`.@usn6!,{@usn6:.9e-12[..$`7esn`][...9e-1]}.usn2 Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1"), + octest:ct_string("Detach Delete Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8),Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]) Ends With Extract(`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0|12e12[..$`8esn`][...0e-0]) Ends With _usn3(Distinct 5.9e-12[`4esn`..12e12][0x0..1.9e0],`6esn`[..$@usn6][..$`1esn`]) Detach Delete Filter(`2esn` In .9e-12[0e0...9e-1] Where .9e-1 Is Not Null Is Not Null)[Any(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1])..(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})][(`7esn` :#usn7:_usn3{`3esn`:00[0e-0...9e-1][1e-1..``]})<-[_usn3:_usn3|`2esn`{`7esn`:0X7[_usn4..1.9e0][Count ( * )..false],_usn4:.9e-12[9e1..8.1e1]}]-({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]})..Single(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..])],8.1e1 Is Null Is Null,`7esn`(7.0e-0[.._usn4][..0X7],$`5esn`[7..]) Contains [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]] Union Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null"), + octest:ct_string("Merge `2esn`=((:`3esn`{_usn3:10.12e12 In `3esn` In $usn2})<-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]->(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})) Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12|.1e-1).`1esn`?,All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]).`7esn`!,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).usn1? Union All Create #usn7=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Union All Merge ((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) On Create Set [_usn3 In ``[$``..] Where $_usn3[.1e1..][$`1esn`..]].`8esn`.`4esn`! =None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} Detach Delete _usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null Unwind 1.9e0 =~$`8esn` =~01234567 As usn2"), + octest:ct_string("Unwind `6esn` In 9e-12 As _usn4 Create usn1=(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})"), + octest:ct_string("Return Distinct *,0e0[`4esn`] As `6esn`,9.1e-1[.1e-1] Create _usn4=(`` :usn1)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`) Return Distinct *,All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1) =~_usn3(Distinct 5.9e-12[9e0..],$@usn5 Is Null),{_usn4:1.9e0 =~$`8esn` =~01234567}[All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Ends With [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|$999 Ends With .9e-12] Ends With [usn2 In .0e0[$`6esn`..] Where usn2 Ends With .0] Desc Skip $_usn3 Ends With Count(*) Ends With $`` Limit All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0)[..[@usn6 In 00 =~.9e-12 =~usn1 Where 0.0[$1000][3.9e-1]|$usn2 =~$`2esn` =~\"d_str\"]]"), + octest:ct_string("Create _usn3=(((:``:usn1{_usn3:00[$`6esn`]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :``:usn1{usn2:12.0[..123456789][..01]})<-[`7esn`:`8esn`|:`2esn`]-(:``:usn1{_usn3:00[$`6esn`]}))) With *,$`5esn`[true],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Skip $`1esn` =~0.0 Where 07[.0e0][3.9e-1] With Distinct All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,usn2[..7.0e-0] As `1esn` Order By $_usn3 Contains 1e1 Contains .12 Ascending,.0e0 Is Null Is Null Descending,.0e0 Starts With $@usn6 Starts With Null Descending Limit 's_str' Ends With 0.0 Ends With .12e12"), + octest:ct_string("With *,12.0[..123456789][..01] Limit $usn1 Starts With usn1 Starts With 1e-1 Union Optional Match `2esn`=(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where $usn1 Is Null"), + octest:ct_string("Unwind $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] As `4esn` Create @usn5=({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Union Unwind 0e0 Ends With `7esn` Ends With usn1 As #usn7 Return Distinct {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As ``,$`8esn`[12.0..][4.9e12..],.1e-1 Ends With @usn6 As @usn6 Order By false Starts With 3.9e-1 Asc,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Descending With *,#usn7[12e-12..][$`2esn`..] As @usn6,$`` Contains 00 Contains 123456789 As `3esn` Limit All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0)[Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"])..Single(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1])][{usn1:9e-1 Starts With 123.654 Starts With .9e1,#usn8:$_usn4 Is Not Null}..(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})]"), + octest:ct_string("Optional Match ((usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})) Where Null[12e-12..] Unwind `1esn`[9.1e-1] As #usn8 Union Match (:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567}) With Distinct *,Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) As #usn7,.12e-12 Ends With $`7esn` Where .9e-1 Ends With `8esn` Remove [`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|`1esn`[Count ( * )][5.9e-12]].@usn5,Filter(`8esn` In 01234567[..0.0][..false] Where 6.0e0 Is Not Null).usn1 Union All Optional Match `5esn`=(((`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`))),#usn8=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Optional Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Where .0e0[1e1..][01234567..]"), + octest:ct_string("Merge `1esn`=({`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]})-[`3esn`?:`1esn`]-(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) On Match Set (@usn6 :usn1{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(`7esn` :`2esn`:`8esn`).`4esn`! =01[..0Xa],#usn7 =$999[.1e1..0.0],`3esn`+=Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null On Match Set `6esn`+=[usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null]][(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})..] With *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5 Is Null Remove {@usn6:0X7 Starts With 1e1 Starts With $12}.#usn8?.usn1.@usn5!,Extract(usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|0e0 Ends With 1e1 Ends With 0Xa).``?,@usn5:`3esn` Union With Distinct *,Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn` Order By _usn3[`2esn`..10.12e12][9e1..true] Descending Limit `6esn`[0x0..@usn5][$1000...9e-12] Where $@usn6 Contains Count ( * ) Unwind {`5esn`:false,_usn3:.9e-12 Starts With .0e-0 Starts With usn2} Is Null As `3esn` Remove {`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1}.usn2!.`1esn`.usn2?,Filter(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8).@usn5?,Any(@usn6 In 00 =~.9e-12 =~usn1 Where `` Ends With .9e-1 Ends With 9e-12)._usn4!.`2esn`._usn4 Union Create _usn4=((`5esn` {`2esn`:`1esn` =~0 =~_usn4})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[usn2?{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3}]-(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})),((usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})) Return Distinct *,`7esn` Ends With `7esn` Ends With $`3esn` Order By `1esn`[11.12e-12..] Asc Limit All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1) =~_usn3(Distinct 5.9e-12[9e0..],$@usn5 Is Null)"), + octest:ct_string("Remove All(`` In $_usn3 Is Not Null Where $123456789 =~12 =~7).``! Merge usn1=((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})) Delete 9e12[.0e-0]"), + octest:ct_string("Merge (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))) On Match Set `4esn`+=.9e0 =~`6esn` =~2.9e1,`` =_usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null With 3.9e-1 Is Null As usn1 Unwind ``[..$#usn7] As @usn5 Union Create _usn3=(((:``:usn1{_usn3:00[$`6esn`]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :``:usn1{usn2:12.0[..123456789][..01]})<-[`7esn`:`8esn`|:`2esn`]-(:``:usn1{_usn3:00[$`6esn`]}))) With *,$`5esn`[true],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Skip $`1esn` =~0.0 Where 07[.0e0][3.9e-1] With Distinct All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,usn2[..7.0e-0] As `1esn` Order By $_usn3 Contains 1e1 Contains .12 Ascending,.0e0 Is Null Is Null Descending,.0e0 Starts With $@usn6 Starts With Null Descending Limit 's_str' Ends With 0.0 Ends With .12e12 Union With Distinct *,9.1e-1 =~.12 =~0e-0 As `1esn` Order By 9e-1 Starts With 123.654 Starts With .9e1 Descending,$`8esn`[$``..$`1esn`][9e-12..$7] Descending Skip \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"] Limit $`5esn` Is Not Null Where .9e1[#usn7..] With *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5 Is Null With Distinct *,All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Starts With 10.12e12 Starts With #usn7(false =~4.9e12),0e0[`4esn`] Where 1e1 Ends With Null Ends With `7esn`"), + octest:ct_string("Create ((usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]->(:usn1{usn1:Count(*)[0.12..2.9e1]})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})) Create usn1=({`5esn`:07 Starts With usn1 Starts With 010})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}),_usn3=({usn1:usn2 Ends With 10.12e12})"), + octest:ct_string("Merge `8esn`=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) On Create Set ``:_usn4 On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null Remove (:@usn6:_usn4$`6esn`)<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)<-[`7esn`?]-({usn2:#usn7[10.12e12..][\"d_str\"..]}).`6esn`!.`3esn`.`1esn`!,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0 Starts With 0Xa Starts With $0|#usn8 =~.9e-12 =~$usn1].`4esn`,{#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}.`7esn` Match ((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`2esn`=((`7esn` :usn1)<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3)) Union Detach Delete .9e-12[12e12][.0e0],'s_str' Is Null,$`2esn` Ends With $`8esn` Union Remove All(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1).usn1!.`7esn`.`2esn`!,Filter(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8).@usn5?,(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})._usn3.@usn6!.@usn5 Match _usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))) Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As `8esn`"), + octest:ct_string("Return Distinct $12[.9e-1] As `4esn`,.12e12 =~$#usn7,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) As `8esn` Order By 5.9e-12[2.9e1][9e0] Desc Skip 1e-1[...0e-0][...0] Union All Create `1esn`=((`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[?{_usn3:Null Starts With 9e1 Starts With ``}]->({`1esn`:0X0123456789ABCDEF Contains 8.1e1})-[_usn3:_usn4|`1esn`{`2esn`:123456789 In 9e-12 In false}]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]})),((@usn5 {_usn4:$usn1[$7..][$0..],#usn8:9e0[..1e1]})-[:usn2|:``]-(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})) Return Distinct Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Limit ()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] Merge `7esn`=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) On Create Set {@usn5:12e-12 Starts With .9e12 Starts With 0.12}.`1esn`? =`3esn`[$0..][.9e1..] Union All Merge (`8esn` {``:$123456789[$_usn3..][$usn2..]}) On Create Set None(usn1 In 7.0e-0[.._usn4][..0X7] Where 9.1e-1 Contains 0xabc).@usn6.#usn7!.@usn5 =01234567[..Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null)][..999] Unwind .1e1[1e-1..][1.9e0..] As _usn3 Create ({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})-[`4esn`?:`6esn`|#usn7]->($@usn6),(((@usn6 {`8esn`:999[..@usn5][..`1esn`]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]})))"), + octest:ct_string("Return Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]) Limit $#usn7 Starts With 10.12e12 Union Unwind #usn8[3.9e-1.._usn3] As usn2 Return Distinct (`2esn` :`6esn`:`3esn`)<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789)..Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1])][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]]..Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 9.1e-1 Is Null|9e1 Contains 4.9e12 Contains .9e0)],00 As `8esn`,_usn3 Ends With .12 Ends With `6esn` Order By Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2|0e-0[...9e12])[All(`2esn` In .9e-12[0e0...9e-1] Where .9e-1 Is Not Null Is Not Null)] Descending Limit `4esn` Starts With $_usn3 Starts With .9e-12 Union Unwind Count ( * )[0e-0..01] As `3esn` Unwind .12e-12 Starts With 's_str' Starts With 123.654 As `2esn` Unwind $usn1[$12..] As ``"), + octest:ct_string("Detach Delete 0x0[#usn8...1e-1]['s_str'..$`6esn`] Create ({`4esn`:7 Is Null Is Null})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}) Detach Delete $@usn5 =~.12e-12,1e1[Null..][.12..],(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Starts With `7esn`(Distinct $`5esn` Is Null Is Null,$`4esn` Ends With 0e-0) Starts With Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 5.9e-12 Ends With 1e1 Ends With false) Union All Unwind Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7)[{usn2:`8esn` Is Null}..[@usn6 In .9e12 Starts With #usn8 Starts With 00]][(:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null})..{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}] As `1esn` Union All Optional Match _usn3=((@usn6 {`8esn`:1.9e0 Is Null Is Null})) With {`6esn`:.1e-1[..12e12]} As @usn5,Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]) In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $`6esn`[$_usn4][01]) As _usn3,$12[$12..] As `4esn` Skip 07 Ends With 0X7 Ends With 's_str' With _usn4(0[true..$7]) =~Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`) =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0) As _usn3,Null Is Not Null Is Not Null"), + octest:ct_string("Create (@usn6 :_usn4) Remove Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..]).`1esn`.`8esn`?.`2esn`!,@usn5(Distinct 1e-1[..$@usn5][..0xabc]).`3esn`!,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12e12 Starts With 4.9e12 Starts With 0e0).@usn6!.`8esn`?"), + octest:ct_string("Detach Delete #usn7 Ends With Count ( * ) Ends With @usn6,`8esn` Is Null,`7esn` Contains $7 Contains 07 Unwind Count(*)[0e0..] As `7esn` Union All Remove All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0)._usn3? Unwind $@usn5[..1e-1] As _usn4 With 1000[Null..] As `1esn`,.1e1 Starts With $7 Order By Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Ascending,$`7esn` Contains 0X7 Asc,$_usn4 Is Not Null Ascending Limit .0e0[$`1esn`][.9e-12] Union Merge (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}) On Create Set Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`).`3esn`!.`5esn`!.`1esn` =(:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null),None(`7esn` In .12e12[Count(*)..] Where `4esn` Starts With $_usn3 Starts With .9e-12).@usn5._usn3!.@usn5 =Extract(`5esn` In 12[0xabc..][$0..] Where 9e-1[0X0123456789ABCDEF][0]|.9e1[..Count(*)][..7.0e-0]) Is Null Is Null On Match Set usn2 =8.1e1 Is Null,`1esn` =$_usn4 Contains .12e-12 Create (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))),`2esn`=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})))"), + octest:ct_string("Create (:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[`6esn`?:`4esn`|:@usn5{usn1:00,`1esn`:.0e0[1e1..][01234567..]}]->(`3esn` ),usn1=((:_usn3:_usn3{usn1:.9e1[12]}))"), + octest:ct_string("Remove {_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}.`1esn` Union All Delete .1e1 In 9e12 Match (`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null})"), + octest:ct_string("Delete $12 Is Null Is Null,3.9e-1 Contains 9.1e-1 Contains `8esn` Union All With 0X0123456789ABCDEF Contains 8.1e1 As `6esn`,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,.9e0 Is Not Null Is Not Null As `5esn` Skip .1e-1 Where .0e0[$`1esn`][.9e-12] Remove `5esn`:``:usn1,{#usn7:.9e1[Count(*)..$`3esn`]}.#usn8?.usn1?.`2esn`?,{`5esn`:.1e-1 Starts With 1000 Starts With $`1esn`,`5esn`:Count(*)}.``? Merge ((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`3esn`? =0.12[3.9e-1],_usn4 =Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],[`` In $_usn3 Is Not Null Where 12 =~$@usn5|$`2esn` In 0X7 In 3.9e-1].`8esn`.`5esn`? =12e-12[9e0..1.9e0] On Create Set `1esn` =.1e-1[..12][.._usn4],_usn4 =usn2[..7.0e-0],`5esn` =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1}"), + octest:ct_string("Merge #usn8=(((_usn4 :`2esn`:`8esn`)-[ *07..{#usn8:`1esn`[1000][Null]}]-(usn1 :`2esn`:`8esn`)<-[?:`4esn`|:@usn5]-(`4esn` :`3esn`))) Return Distinct *,Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn` Order By _usn3[`2esn`..10.12e12][9e1..true] Descending Limit `6esn`[0x0..@usn5][$1000...9e-12] Union All Unwind All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0)[..[@usn6 In 00 =~.9e-12 =~usn1 Where 0.0[$1000][3.9e-1]|$usn2 =~$`2esn` =~\"d_str\"]] As `6esn` Merge ({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) On Create Set #usn7 =Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Null Is Null,`4esn`+=$_usn4 =~$_usn4 =~2.9e1 Union Delete {#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0} Is Null Is Null,`3esn` In 0X7 Return *,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] As `7esn` Skip Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12) In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null|.12e12[$12..4.9e12][11.12e-12..9e12]) In {`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``} Match ``=((@usn6 :`5esn`{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *0x0..{`3esn`:12[0xabc..][$0..],@usn5:`6esn` Is Not Null Is Not Null}]->({#usn8:7.0e-0[3.9e-1..`1esn`],usn1:.0e0[..1e1][..$1000]})-[:`4esn`|:@usn5 *01234567$_usn4]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})),(((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})))"), + octest:ct_string("Return $`6esn`[..12e12][.._usn3] As `5esn`,($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]) As _usn4 Unwind .12[.0e-0..] As `3esn` Union All With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Order By 12.0[.._usn4][..0X7] Descending,`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Ascending Skip 's_str' Ends With 0.0 Ends With .12e12 With *,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2 Order By .1e-1 Contains 1e1 Contains $`6esn` Asc,(_usn4 {`3esn`:1.9e0 Ends With 0Xa Ends With $12,@usn5:.9e12 Is Not Null Is Not Null})<-[`2esn`{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-(`3esn` {`7esn`:9.1e-1 =~@usn5 =~Count ( * )})<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) In None(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]) In `7esn`(12 Ends With $7 Ends With $#usn8) Desc Skip \"d_str\" =~`5esn` =~.12e-12 Limit .9e12[..$usn1][..10.12e12] Where $`6esn`[$_usn4][01] Unwind .9e1 Contains Null As _usn3"), + octest:ct_string("Return Distinct $1000[$1000...9e0] As `2esn`,$_usn3[1e-1..],`5esn` Contains `6esn` As `4esn` Order By {`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"} Is Not Null Is Not Null Ascending,{`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] Descending,{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"} Is Not Null Is Not Null Asc Skip @usn6[usn1..][`1esn`..] Limit 01 Ends With \"d_str\""), + octest:ct_string("Match ((`4esn` )<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})),`1esn`=(:usn1{usn1:Count(*)[0.12..2.9e1]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}) Remove All(`5esn` In 12[0xabc..][$0..] Where .0e0[1e1..][01234567..]).#usn8!,Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]).`6esn`,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 's_str'[12][00]|$`8esn`[#usn7][.9e1]].#usn7?.`4esn`? Match (@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})) Union Remove {#usn7:11.12e-12 Contains 9e-12}.`4esn`!.`7esn`! Unwind 9e1 Is Not Null As #usn8 Return Count(*)[8.1e1..],Any(`` In $_usn3 Is Not Null Where 12e12[true..][$`2esn`..]) =~{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12} =~{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3} As `3esn` Skip 12 Contains $usn1 Contains 0 Union All Create @usn6=(((@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[#usn7? *00..123456789]->(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}))),`4esn`=(((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Merge (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})"), + octest:ct_string("Merge `1esn`=(`4esn` :`5esn`) On Match Set `8esn`+=[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1) Ends With Filter(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7]),usn2+=(:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] Union All Unwind 123456789 Ends With _usn4 As `8esn` Remove [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )].`5esn`.`7esn`? Union Return {`8esn`:$`` Is Null Is Null}[Extract(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..])..][Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)])..] Unwind $`6esn`[$`8esn`..][false..] As usn2"), + octest:ct_string("Detach Delete `3esn` Contains 01234567 Contains .9e-12,`1esn`[..0x0][..\"d_str\"] Union Merge ((:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})-[usn2?:@usn6|:_usn3]->({usn1:01[.9e-12..],@usn6:$`5esn` Ends With $#usn7 Ends With .0e-0})) On Match Set {@usn5:12e-12 Contains .9e-1 Contains 9e-1}.``! =usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]),@usn6 =0.0 Is Not Null Is Not Null,[`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0]._usn3?._usn3? =.1e1 Starts With .1e-1 On Match Set `8esn`+=Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\"),`1esn`+=4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12),(`` {_usn4:9e0[..1e1]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(@usn5 :@usn6:_usn4).#usn8.`1esn`.usn1! =00[0e-0...9e-1][1e-1..``] Unwind $`5esn` Contains `2esn` Contains 9e1 As `1esn` Union All Remove {`3esn`:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7],@usn6:01[..0.12]}._usn4!,_usn3:`8esn`:#usn7,None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`5esn` Starts With 0X7 Starts With 1e1).@usn5? Match `1esn`=(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})))"), + octest:ct_string("Detach Delete {#usn7:$usn2[1e-1]}[(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)..][(usn1 :`2esn`:`8esn`)<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]})..] Unwind Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] As `` Remove [`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]].`8esn`? Union All Unwind 5.9e-12[$`4esn`] As usn1 Create `5esn`=(((@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-(`6esn` :`8esn`:#usn7{`1esn`:.9e-1 Contains .0e0 Contains usn1})<-[`3esn`?:@usn5{@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7}]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]}))),usn2=(`2esn` :`6esn`:`3esn`)-[`5esn`:usn2|:``]->(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})"), + octest:ct_string("Delete .12e12[$0],$#usn8[$1000..] Match (((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) Match (`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Union Optional Match #usn7=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union All With Distinct *,(`6esn` $@usn6)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]}) =~All(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~{``:7.0e-0 Is Null Is Null,@usn5:9e-12[$0][$`4esn`]} As usn2 Where $_usn4 Is Not Null"), + octest:ct_string("Remove `7esn`:#usn7:_usn3 Create `5esn`=(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[:#usn8|:`4esn`{_usn3:'s_str' Is Null,#usn7:#usn7[..0X0123456789ABCDEF]}]->(`` {`2esn`:.1e-1[2.9e1..][12..]}),((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})))"), + octest:ct_string("Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Where $`6esn` Starts With `4esn` Union All Detach Delete None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),12e12[07..]"), + octest:ct_string("Remove Filter(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`]).`8esn`.@usn5! Union All Optional Match (`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]}),(#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`}) Where $`3esn` In 's_str' In $#usn7"), + octest:ct_string("Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),(({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})<-[`4esn`:_usn4|`1esn` *123456789..0x0{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})-[_usn3 *..7]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})) Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),(usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}) Return Distinct 9e-12 In 5.9e-12 As ``,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0x0 Contains $`1esn` Contains 0.0) In None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0) As `5esn` Order By 0e0 Ends With 0X7 Ends With .1e1 Desc,(#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Asc,0x0 =~$7 =~Null Desc Union All Detach Delete 00[0e-0...9e-1][1e-1..``],9e12[...12e12][..$`2esn`],7.0e-0 Contains Count ( * ) Contains 0Xa Union With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2 In usn1 In 1e-1) =~{#usn8:00[0e-0...9e-1][1e-1..``]} As #usn8,$@usn5[$#usn8..][_usn3..] As `8esn`,1.9e0 Starts With 's_str' Starts With 9.1e-1 As _usn4 Where 's_str' Is Null Delete {@usn6:\"d_str\" =~9e-12 =~`5esn`}[#usn8(Distinct 999 Starts With .9e12 Starts With 3.9e-1,true Contains 0x0)..[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010]][All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)..{`4esn`:0 Starts With 0Xa Starts With $0}] Unwind $12[.9e-1] As @usn5"), + octest:ct_string("With Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07),{@usn6:8.1e1[$`5esn`][0e0],`5esn`:$`8esn` Starts With `2esn`}[[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]] As ``,false[12e-12..][usn1..] Order By 12[0..usn2] Descending Skip Null[12e-12..] Limit $@usn5[true..][$usn1..] Union Create @usn6=((:_usn3:_usn3{usn1:.9e1[12]})) With Distinct *,$`` Is Not Null Is Not Null,12e12[..123456789][..false] Skip 12e-12 Ends With @usn5 Ends With $`2esn` Limit .9e-12[..$`7esn`][...9e-1] Union All Optional Match `2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),usn2=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Create (((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))),(`5esn` :`5esn`)"), + octest:ct_string("Optional Match (`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]}),(#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`}) Where $`3esn` In 's_str' In $#usn7 Union All Unwind `5esn` Contains 1.9e0 Contains 9e0 As `4esn`"), + octest:ct_string("Detach Delete .1e1[..0][..010] Detach Delete ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]),`2esn` Starts With 12 Starts With 10.12e12,.12e-12[07] Return 1.9e0 Ends With Count ( * ) Ends With .12 As `4esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12),9e1 Is Not Null As #usn8 Order By $`4esn` Ends With 0e-0 Ascending,.9e-1 Contains .0e0 Contains usn1 Asc Skip None(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8) Is Null Is Null Union Delete $@usn5[true..][$usn1..] Return Distinct $`` Ends With 6.0e0,$`6esn` In `2esn`,\"d_str\" Starts With `6esn` Starts With 1.9e0 As _usn3 Order By true Is Null Is Null Descending,(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] Descending,{usn1:`7esn` Is Not Null}[Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8)..{`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3}][Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 9.1e-1[.1e-1])..{usn2:1e1[3.9e-1][.9e-1]}] Descending Skip 010[11.12e-12..] Union Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where ``[..$#usn7]|2.9e1).`1esn`?,None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]).`3esn`?"), + octest:ct_string("With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Skip usn2 Starts With $_usn3 Where 10.12e12[12e12..0X7] Unwind Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) As usn2 Unwind Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) As #usn8 Union All Delete Extract(usn2 In .0e0[$`6esn`..]|$@usn6 Contains Count ( * ))[`2esn`(usn1[12e-12])..][(`8esn` :usn2)<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})..],8.1e1 Is Null Optional Match @usn5=((@usn6 :`6esn`:`3esn`)<-[`6esn`? *..0xabc{``:$_usn4[Null]}]->(:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Where .12e12[`7esn`][#usn8] Optional Match `7esn`=(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]}) Where #usn8[7..@usn5] Union All Create usn2=(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null}) Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Unwind 1e1 Is Not Null As `4esn`"), + octest:ct_string("Merge ((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) On Create Set #usn8 =usn2 Ends With 10.12e12 On Match Set {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}.@usn6 =07[.0e0][3.9e-1],`5esn`:`3esn` Return *,true Is Null Limit `6esn`[010...9e-12] With $0 =~01234567 As `2esn`,07[.0e0][3.9e-1] Skip Extract(`7esn` In .12e12[Count(*)..] Where true Starts With 2.9e1 Starts With 9e1|12[0xabc..][$0..]) Starts With Extract(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12|0.12[3.9e-1]) Starts With ``(12e12[true..][$`2esn`..]) Limit [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]] Where 5.9e-12[`4esn`..12e12][0x0..1.9e0] Union With Distinct 0Xa Ends With #usn8 Ends With usn2 As `6esn`,$7 Starts With Null Starts With `6esn` Order By 0xabc[$`4esn`..][`8esn`..] Desc,0 Is Not Null Descending Unwind $`2esn`[$1000..][$@usn5..] As `5esn` With Distinct *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Skip `` =~123456789 Limit Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Where 12 In 1000 In \"d_str\""), + octest:ct_string("Remove All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`2esn`[010..`5esn`][``..0.12]).@usn5?,(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})-[`6esn`:`6esn`|#usn7*]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5}).`3esn`?"), + octest:ct_string("Unwind $@usn6 Is Not Null Is Not Null As `3esn` Create ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})),_usn3=((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Merge `1esn`=((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null On Create Set #usn7+=(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] Union All Merge (`8esn` {`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) On Match Set (`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8,_usn3+=Null[..07] On Match Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] Union All Return 9e12[7.0e-0] As #usn7 Skip Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Limit $usn2[4.9e12..false][.0e-0..00]"), + octest:ct_string("Unwind 9e1 Is Not Null As #usn8 Unwind 01234567[..Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null)][..999] As usn2 With *,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] As usn1 Limit `3esn`[$0..][.9e1..] Union Match `7esn`=((`8esn` {@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})),({_usn3:$`5esn`[7..]})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})-[#usn7?:`2esn`|`7esn` *..7]-(`3esn` {`6esn`:$`8esn`[..1e1][..``],`8esn`:$usn2 In usn1 In 1e-1}) Detach Delete (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] Union Detach Delete 1000[_usn3..`8esn`] Optional Match usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})),_usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Where $_usn4 Starts With 0e-0 Starts With 1e-1"), + octest:ct_string("Merge ((`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010})) On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] With 11.12e-12 Is Null Is Null As `4esn`,#usn8 Starts With 11.12e-12 Starts With $`3esn` As `2esn` Skip 123.654 Ends With 0Xa Ends With .12e12 Union Optional Match (`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[_usn3:usn1|:#usn8 *07..]-({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}),`7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) Union All Return Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1]"), + octest:ct_string("Create (({`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]})-[#usn8:`2esn`|`7esn`{`5esn`:07 Starts With usn1 Starts With 010}]-(`5esn` :`4esn`:`7esn`)),`8esn`=((`` )<-[?]->(_usn4 :@usn5)) Remove [usn1 In 7.0e-0[.._usn4][..0X7] Where .9e12[$usn2..][7..]|$_usn3 In 123.654 In $`8esn`].`8esn`!,{`8esn`:1.9e0 =~$`8esn` =~01234567,usn1:.0e-0[3.9e-1][.12e12]}.`3esn`? Union Merge `3esn`=(@usn5 :`7esn`) Remove `6esn`(1e1 Is Not Null Is Not Null,$`1esn` Starts With Count(*) Starts With $`8esn`).`7esn`,{`3esn`:.0,`5esn`:Count ( * )[..`8esn`]}.``?.`6esn`.@usn5?,Any(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`).#usn7?.usn2._usn4? With *,None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]) Is Null Is Null,$`3esn` =~00 =~9.1e-1 Skip `2esn` Starts With 12 Starts With 10.12e12 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1"), + octest:ct_string("Delete usn2[Count ( * )..07],None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn`[..0x0][..\"d_str\"])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1])..Single(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])] Match (((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Where 5.9e-12 =~$@usn6 Detach Delete {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})"), + octest:ct_string("Create _usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))),@usn6=(@usn5 {_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) Union All Detach Delete _usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null Union All Merge ((usn1 )-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0}))"), + octest:ct_string("Create `7esn`=((`2esn` :usn2)-[usn2:`4esn`|:@usn5 *01234567]->(:`5esn`{`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567})<-[:#usn8|:`4esn`{usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})),@usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Merge `6esn`=((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) On Create Set `2esn`+=Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],#usn8 =.9e-12[0e0...9e-1] Union Merge ({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) On Create Set #usn7 =Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Null Is Null,`4esn`+=$_usn4 =~$_usn4 =~2.9e1 Merge `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Union Unwind 1.9e0 =~$`8esn` =~01234567 As usn2 Create ((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))"), + octest:ct_string("Unwind $`8esn`[.._usn4(Null[..07],123.654)] As _usn4 Remove (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[``? *07..{`8esn`:$usn2[0e0][$7],_usn3:.9e-12[0e0...9e-1]}]-(`1esn` :`5esn`)<-[? *0X0123456789ABCDEF..0{`1esn`:$`2esn` Ends With $`8esn`}]-(`4esn` {@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}).@usn6? Remove Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).`5esn`?,None(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).@usn5? Union Unwind $usn1[$12..] As `` Unwind All(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]) Starts With Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) As `3esn` Merge ``=((@usn6 :`5esn`)<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}))"), + octest:ct_string("Optional Match (#usn8 :#usn8)<-[`5esn`?:``|:`3esn` *..0xabc]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[{#usn8:.0e0[1e1..][01234567..],`6esn`:123.654 Ends With 0Xa Ends With .12e12}]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12}) Union All Delete All(`8esn` In 01234567[..0.0][..false] Where 07 Ends With @usn6 Ends With _usn3) In (:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})<-[`3esn`?:`1esn`]-(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[usn2:@usn6|:_usn3 *123456789..0x0$_usn3]->(:`8esn`:#usn7{``:$7 Starts With Null Starts With `6esn`,`4esn`:#usn8[..#usn7][..@usn6]}) In Null Merge (`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[_usn3:usn1|:#usn8 *07..]-({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}) On Match Set `6esn`:`6esn`:`3esn`,`8esn`:`7esn` On Match Set {#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}.`6esn`!.`3esn`! =5.9e-12[$`4esn`],_usn3:`2esn`:`8esn`,#usn7(0e0 Starts With $1000 Starts With `2esn`,Count ( * )[..`8esn`]).@usn5? =.0e0 =~5.9e-12 =~`7esn` Union Return *,0X0123456789ABCDEF Contains 8.1e1 As `6esn`,.1e1 =~`1esn` Order By All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])[..{#usn8:.12e12[Count(*)..]}][.._usn4(Distinct `2esn` Starts With 999,$`5esn` Starts With 0X7 Starts With 1e1)] Descending,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] Ascending,.9e1[12] Desc Limit 01234567 Ends With 2.9e1 Ends With 9.1e-1 Create `7esn`=((#usn7 )) With Distinct *,`8esn` Is Null As `6esn` Order By [usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc,0x0 =~$7 =~Null Desc,12e-12[9e0..1.9e0] Asc Where `` =~$`5esn`"), + octest:ct_string("Detach Delete $123456789[$_usn3..][$usn2..],12e12 Ends With usn1,.9e1[11.12e-12] Union All Return Distinct Null[`2esn`..] Order By Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null Descending Limit {_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Merge #usn8=(`6esn` :``:usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[_usn4:`6esn`|#usn7]-(`8esn` $12) On Match Set _usn4:#usn7:_usn3,Extract(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0|`6esn` In 9e-12)._usn4? =0Xa Ends With #usn8 Ends With usn2 Remove {usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}._usn4!"), + octest:ct_string("Delete ({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null},Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`])[0x0..[`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`]] Delete #usn8 In $#usn8 In \"d_str\",01[..01] Create `4esn`=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1}) Union Optional Match `3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})),`6esn`=((#usn7 )) Where 9.1e-1 In #usn8 With Distinct *,{`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null) Order By 4.9e12 Contains .12e12 Contains 0xabc Asc,$usn1 Is Not Null Desc Skip {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null) Where _usn4[9e0..$#usn8] Remove {usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7}.`3esn`!,(:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}).`3esn`?,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where usn2 Ends With 10.12e12).`3esn`!"), + octest:ct_string("With {@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2} Is Not Null Where `1esn`[11.12e-12..] Merge ((`5esn` :`2esn`:`8esn`)<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})) Union Detach Delete ({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null},Count(*) =~Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7),{@usn5:true Contains 0x0} In Extract(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$1000[..01234567][..0X0123456789ABCDEF]) Merge usn2=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Remove ({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})<-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(`4esn` :usn1{`1esn`:0X0123456789ABCDEF Contains 8.1e1}).`4esn` Union Delete usn2[Count ( * )..07],None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn`[..0x0][..\"d_str\"])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1])..Single(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])] Match (((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Where 5.9e-12 =~$@usn6 Detach Delete {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})"), + octest:ct_string("Unwind \"d_str\" =~9e-12 =~`5esn` As `8esn` Return *,_usn4['s_str'..] As `2esn`,Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Order By .0e0[1e1..][01234567..] Descending,5.9e-12[2.9e1][9e0] Desc Skip Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7) Detach Delete .1e-1[$`2esn`..][$`1esn`..] Union Remove _usn3(Distinct Null =~true =~.1e-1).`7esn`? Return 10.12e12 Starts With .9e12 As #usn7,_usn4['s_str'..] As `2esn`,false[12e-12..][usn1..] Order By 123456789[Count ( * )..] Desc,``(Distinct `4esn`[$1000..$``][$_usn4..$_usn4],.1e-1 Starts With 1000 Starts With $`1esn`) In [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|`4esn` Starts With $_usn3 Starts With .9e-12] In {`6esn`:``[$``..]} Desc,[usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc Skip .1e-1 Is Null Limit All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0)[Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"])..Single(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1])][{usn1:9e-1 Starts With 123.654 Starts With .9e1,#usn8:$_usn4 Is Not Null}..(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})] Union All Delete Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12),$usn2[4.9e12..false][.0e-0..00],usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})"), + octest:ct_string("Unwind .1e1[1e-1..][1.9e0..] As _usn3"), + octest:ct_string("Unwind [`5esn` In 12[0xabc..][$0..] Where $123456789 Is Not Null] Starts With Any(`7esn` In .12e12[Count(*)..] Where 's_str' Ends With 0.0 Ends With .12e12) As `2esn` Detach Delete Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null Union All Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1 Union With Distinct `5esn`[$`4esn`] As @usn6,.0e0 Is Null Is Null As _usn4,1.9e0 Starts With .9e0 Order By @usn5 Contains _usn3 Contains 00 Descending,$`6esn` Ends With 12 Ascending"), + octest:ct_string("With *,$#usn7[$_usn4..][.12e-12..] As `6esn`,5.9e-12 =~$@usn6 As `7esn` Limit usn1[12e-12] Merge ((`6esn` :`7esn`)-[`7esn`?:`5esn`]->(#usn8 )<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})) On Match Set #usn8 =_usn4['s_str'..],`7esn` =$usn1[$12..] On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 Union Remove Any(`` In $`5esn` Starts With 0X7 Starts With 1e1).usn2?,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5[$``]].`6esn`!,Single(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12).`7esn`! Union Match ((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1))),_usn4=((_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))"), + octest:ct_string("Detach Delete $`6esn` Starts With `4esn` Remove (#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *01234567]->(`5esn` :`2esn`:`8esn`).#usn7!.`3esn`!.@usn6!"), + octest:ct_string("Match (`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1}),({@usn5:$12 Contains $`7esn` Contains .0})<-[usn2 *..0xabc]->(:@usn5{`7esn`:7.0e-0[`6esn`..]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1}) Where $`6esn` Starts With `4esn` Match `8esn`=(`3esn` :#usn7:_usn3)<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(`2esn` :usn2)<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}),`4esn`=(((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})))"), + octest:ct_string("Remove `2esn`(Distinct 12 Is Null Is Null)._usn3! Create @usn6=((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`6esn`:`6esn`|#usn7*]->(`3esn` {_usn4:$`2esn` Starts With 0x0})-[#usn8 *010..{@usn5:6.0e0 Is Not Null}]->(@usn5 :`7esn`))"), + octest:ct_string("Unwind Extract(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``]|$_usn4[..usn2]) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) Starts With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null|`4esn` Is Not Null Is Not Null) As `4esn` Match (_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}),((`6esn` :usn1)) Where 9.1e-1 In #usn8 Remove `6esn`(1e1 Is Not Null Is Not Null,$`1esn` Starts With Count(*) Starts With $`8esn`).`7esn`,{`3esn`:.0,`5esn`:Count ( * )[..`8esn`]}.``?.`6esn`.@usn5?,Any(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`).#usn7?.usn2._usn4? Union Delete None(_usn3 In ``[$``..] Where .0e0 In 10.12e12 In $`5esn`) Is Null Is Null,@usn5 Is Null Is Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)],Null[...9e1] Delete {@usn5:$`2esn`[8.1e1]}[None(`7esn` In .12e12[Count(*)..] Where .9e1[12])..Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1)][`6esn`(Distinct 0e0 In $_usn4 In `2esn`)..{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]}] Union All Remove Single(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12).`6esn`,(:@usn5{`4esn`:.0e0[$`6esn`..]})-[? *0X0123456789ABCDEF..0]-({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`)._usn3._usn3!.`4esn`?,{@usn5:'s_str' Is Null,`3esn`:Count(*)[12..][0X0123456789ABCDEF..]}.`6esn` Remove Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|$_usn3 Is Not Null).`5esn`!,count(Distinct $`3esn` Starts With 0Xa).#usn7"), + octest:ct_string("Detach Delete .0e-0 =~12e-12,12e12[07..] Union All Unwind 5.9e-12 Ends With 1e1 Ends With false As _usn3 Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where ``[..$#usn7]|2.9e1).`1esn`?,None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]).`3esn`? Merge ``=((#usn8 {_usn3:$_usn4 Contains .12e-12})) Union Delete Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),All(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)[`3esn`(Distinct 0[true..$7],`3esn`[$0..][.9e1..])..] Merge (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) On Match Set Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12).`4esn`!.#usn8?.`1esn` =1.9e0 =~$`8esn` =~01234567,`1esn` =1000[$`6esn`..12.0]['s_str'..$`3esn`],@usn5 =9e0[$usn2][0] Merge ``=(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`` :@usn6:_usn4)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})"), + octest:ct_string("Detach Delete {`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)],Null Is Not Null Merge @usn6=(((@usn5 {``:.0e0[$`6esn`..]})-[?:usn2|:``]-(_usn4 :`4esn`:`7esn`{#usn7:0xabc Is Not Null,`4esn`:_usn3[`2esn`..10.12e12][9e1..true]})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(@usn5 :usn2))) On Match Set usn2 =$`8esn`[.9e-1][_usn3] On Match Set #usn7+=Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}],`8esn`(Distinct `2esn` Is Not Null Is Not Null,$``[4.9e12..2.9e1]).`6esn`.`1esn`! =.9e0 Is Not Null,usn1($@usn5[...9e-1][..$usn1],$`3esn` Ends With 010 Ends With $`7esn`).`3esn` =(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[? *07..{_usn4:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:$#usn8[...9e1]}]-({`1esn`:0X0123456789ABCDEF Contains 8.1e1})[Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`|$@usn6 =~$`2esn` =~9e1)..][[_usn4 In Count(*)[9e1..][12e-12..] Where $usn1 Starts With 12 Starts With 12e12|0e-0 Contains _usn4 Contains 1e-1]..] With Distinct *,#usn8 In $@usn6 As `8esn` Skip `1esn`[..0x0][..\"d_str\"] Union All Detach Delete _usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null"), + octest:ct_string("Merge ((#usn7 :usn2{@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-({`6esn`:07 Ends With @usn6 Ends With _usn3})) On Match Set Any(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..])._usn3?._usn3!.#usn7! =$`8esn` =~$0 =~`` On Create Set `6esn`+=$#usn7[..$`8esn`][..2.9e1],[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0X7[Count(*)][.9e0]|$`8esn`[$``..$`1esn`][9e-12..$7]].`7esn` =(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )[{usn2:7.0e-0 =~$12 =~5.9e-12}..][Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)..],`6esn` =Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null Union Create #usn7=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Union Match ``=((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),(((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})))"), + octest:ct_string("Create `3esn`=(@usn5 :`7esn`),(`8esn` {usn1:Count ( * )[..2.9e1],_usn3:07 Starts With usn1 Starts With 010}) Union Match (`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]}),(#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`}) Merge usn1=((`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})) On Match Set #usn7:usn2,({usn1:usn2 Ends With 10.12e12})<-[`8esn` *1000]->(#usn8 ).usn2! =$`` In `2esn` In 07,`5esn` =`8esn`[6.0e0..][$`1esn`..] Union Match `7esn`=((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)) Where $_usn4[Null] Create usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})),_usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Merge usn1=(`` {_usn4:9e0[..1e1]})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}) On Create Set `5esn`(Distinct $`2esn`[8.1e1],Count ( * ) Is Null Is Null).`7esn`!.`8esn`? =$``[7..]"), + octest:ct_string("Detach Delete `4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Ends With None(`` In $_usn3 Is Not Null Where .9e1[...12e12]),`5esn`[0X7..][12..] Remove None(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]).#usn8,{@usn5:$`1esn` Starts With Count(*) Starts With $`8esn`}._usn3! Optional Match ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})) Union Remove [`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1|`6esn`[..$@usn6][..$`1esn`]].`8esn`?,None(`8esn` In 01234567[..0.0][..false] Where 5.9e-12[.1e1][$#usn8])._usn4! Detach Delete 2.9e1[...9e-12][..0]"), + octest:ct_string("Unwind .9e-1[3.9e-1]['s_str'] As `7esn` Detach Delete $`2esn`[010..`5esn`][``..0.12] Return Distinct *,(`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As @usn6 Skip `7esn`[.1e1..][`8esn`..] Limit Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12)[Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12)..][`4esn`(Distinct)..] Union All Remove {`7esn`:.0[usn2.._usn4],`5esn`:9.1e-1 Is Null}.@usn6?,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Starts With 9e1 Starts With $`4esn`).`2esn`!,{_usn4:$12 Contains $`7esn` Contains .0}.#usn8!.`8esn` Create `6esn`=(((#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`3esn` {#usn8:`7esn` Is Null})-[@usn6?:@usn5]-(`4esn` :usn1{`1esn`:0X0123456789ABCDEF Contains 8.1e1}))),(($@usn6)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[#usn8?:#usn7|:`8esn` *..0X7]->(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999})) Union Remove (#usn8 :#usn8)-[`` *..0X7]->(usn2 :#usn8).#usn8,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`).#usn8?,[@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]]._usn3?.`4esn`?.@usn5? Return *,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) As `7esn`,$`3esn` Starts With 0Xa As @usn6 Order By true Starts With 2.9e1 Starts With 9e1 Asc,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending Skip 12 =~$@usn5"), + octest:ct_string("Optional Match `3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where @usn5[$_usn3..] Return Distinct $#usn7 =~8.1e1 As #usn7,`4esn`[$1000..$``][$_usn4..$_usn4] Skip $`2esn` In 0X7 In 3.9e-1 Union All Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Where 's_str' Is Null Union All Remove Single(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12).`6esn`"), + octest:ct_string("Match ``=(#usn8 :`3esn`)<-[`2esn`?:usn2|:`` *010..{`5esn`:$`4esn` Ends With 0e-0}]->(:`8esn`:#usn7{#usn8:_usn4 Ends With .0 Ends With 7,`6esn`:0X7 Starts With 1e1 Starts With $12})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-($`2esn`)"), + octest:ct_string("Return Distinct *,.0e0 Is Null Is Null As _usn4,[_usn4 In Count(*)[9e1..][12e-12..] Where $_usn3[1e-1..]][[`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0]][None(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)] As `6esn` Order By [usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|9e0 =~9e1 =~.12e12] Is Null Is Null Asc,_usn3(Distinct $_usn4 Is Not Null,9e1 Ends With 123456789)[{`8esn`:$`` Is Null Is Null}] Desc Skip All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Limit [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]} Union Merge (({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) On Match Set .9e-12.`3esn`?.`3esn`.`7esn`? =Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) Union All Optional Match (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Remove Single(usn1 In 7.0e-0[.._usn4][..0X7] Where .9e12[$usn2..][7..])._usn3.`3esn`?"), + octest:ct_string("Unwind $``[`5esn`..][`2esn`..] As `8esn` Merge `4esn`=((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) Union All Return Distinct $`8esn`[12.0..][4.9e12..] Limit 0x0 =~0x0 Union All With Distinct *,$0[$`7esn`..$`3esn`]['s_str'...0],usn1 Ends With 12 Order By Count ( * )[0..][010..] Desc Limit 12.0 Starts With 07 Starts With $`3esn` Where @usn6[usn1..][`1esn`..] Match `3esn`=(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}),usn2=((:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}))"), + octest:ct_string("With Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1] Detach Delete {#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}[{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}..]"), + octest:ct_string("Remove All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0)._usn3? Unwind $@usn5[..1e-1] As _usn4 With 1000[Null..] As `1esn`,.1e1 Starts With $7 Order By Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Ascending,$`7esn` Contains 0X7 Asc,$_usn4 Is Not Null Ascending Limit .0e0[$`1esn`][.9e-12] Union Return $@usn6 =~$`2esn` =~9e1 As `1esn` Order By 4.9e12 In 5.9e-12 In .9e0 Desc With *,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] As usn1 Limit `3esn`[$0..][.9e1..] Union All Return 1.9e0 Ends With Count ( * ) Ends With .12 As `4esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12),9e1 Is Not Null As #usn8 Order By $`4esn` Ends With 0e-0 Ascending,.9e-1 Contains .0e0 Contains usn1 Asc Skip None(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8) Is Null Is Null"), + octest:ct_string("With Distinct {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})] Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] Descending Detach Delete 0x0,$``[`6esn`][00],'s_str' Ends With $usn1 Unwind Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3) Starts With `2esn`(Distinct) Starts With (`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}) As `6esn` Union All Delete `7esn`[.1e1..][`8esn`..],9e12 Ends With 07,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..])[..{`4esn`:0 Starts With 0Xa Starts With $0}][..Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``)]"), + octest:ct_string("Return 6.0e0 In 12 As usn1 Limit $#usn7 Starts With 10.12e12 Match (((:#usn8{`8esn`:usn1[12e-12],@usn6:Count ( * ) In 999})<-[`8esn`? *0x0..]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})<-[@usn6?:`5esn`]->(`8esn` {`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}))) Where 0[$999..] Return 12e12 =~#usn7 =~.9e-1,.1e1 Starts With 9e0 Order By None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) In (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]}) In [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] Ascending,.9e0 Is Null Asc,.12[$`2esn`..usn2][.9e-1.._usn3] Ascending Limit 2.9e1 Starts With 12e-12 Starts With 0.0"), + octest:ct_string("Remove `2esn`(Distinct .9e-12 Ends With `1esn` Ends With 123.654).`7esn` Unwind .9e-12[_usn4..#usn8][9.1e-1..0.12] As #usn8 Union Optional Match @usn6=(((@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[#usn7? *00..123456789]->(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}))),`3esn`=((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Where .9e12 =~`5esn` =~07 Return ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]) Order By `2esn` Starts With 12 Starts With 10.12e12 Desc,0e0[..'s_str'] Descending Skip $`1esn` Starts With Count(*) Starts With $`8esn` Unwind 9e1 Is Not Null As #usn8"), + octest:ct_string("Create `3esn`=((@usn6 :`6esn`:`3esn`)<-[`1esn`? *0X0123456789ABCDEF..0{`4esn`:9e1 Ends With .9e0}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})),({usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) Unwind 5.9e-12[`1esn`][usn2] As #usn8"), + octest:ct_string("Unwind `1esn`[9.1e-1] As #usn8 Union All Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})) Merge `6esn`=(usn2 {_usn4:$999 Ends With .9e-12})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``}) On Create Set Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3|`4esn` Starts With .0e0 Starts With usn2).`3esn`?.`4esn`!.`8esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct),_usn4+=0X7[$999...12e12][12..`2esn`],`7esn` =6.0e0 In 12 On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} Optional Match (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),`1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) Where `1esn` Starts With 999 Starts With 3.9e-1 Union All With Distinct $_usn3 Contains usn2 Contains 0xabc Order By $`` =~$_usn3 Desc,$0 Contains .12e-12 Descending"), + octest:ct_string("Unwind $`` Ends With `8esn` Ends With 9e-12 As `3esn` Return Distinct $7 Is Null Is Null As usn1,07[\"d_str\"..]['s_str'..],All(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[..Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`])] As _usn3 Order By Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} Descending,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``]|$_usn4[..usn2]) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) Starts With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null|`4esn` Is Not Null Is Not Null) Descending,$`` Is Not Null Ascending Merge `1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) Union All Remove {`4esn`:01[..01]}.`8esn`?.`8esn`?.usn1?,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`2esn`[010..`5esn`][``..0.12]).`4esn`"), + octest:ct_string("With Distinct *,(`2esn` :`6esn`:`3esn`)<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789)..Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1])][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]]..Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 9.1e-1 Is Null|9e1 Contains 4.9e12 Contains .9e0)] Skip $#usn7[..$`8esn`][..2.9e1] Limit Extract(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..]|.9e12[..$usn1][..10.12e12]) Starts With Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..])"), + octest:ct_string("Remove `3esn`($`5esn`[7..],9e-1[0X0123456789ABCDEF][0]).usn2,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 11.12e-12 Is Null Is Null).`6esn`?,{#usn8:_usn4 Ends With .0 Ends With 7,`6esn`:0X7 Starts With 1e1 Starts With $12}.@usn5! Create @usn5=(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}),#usn8=({_usn3:$`8esn` Is Null}) Create `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Union Delete _usn3 Ends With 01 Ends With .1e-1,All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7])[..Extract(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..])],Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]) With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],.1e-1 Is Null,.9e12[$usn2..][7..] As `2esn` Limit _usn4 Is Null Is Null Where .12e-12 Ends With $`7esn` Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Union All Remove (`` :`3esn`{`5esn`:``[$``..]})-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}).`7esn`,(`8esn` {#usn8:1e1[Null..][.12..]})-[`2esn`?{@usn5:`6esn` Is Not Null Is Not Null,_usn4:9e12 Contains $@usn6 Contains Count(*)}]->({usn1:`6esn`[0x0..@usn5][$1000...9e-12]}).``?.``!.`8esn`!,{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}.@usn5? Detach Delete $0[9e1],Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] Delete 12e12 Starts With 4.9e12 Starts With 0e0,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]) Ends With (:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null}) Ends With [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]|0x0 Contains $`1esn` Contains 0.0],0 Starts With 0Xa Starts With $0"), + octest:ct_string("With Distinct \"d_str\" Starts With `6esn` Starts With 1.9e0 As #usn8,Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]) Ends With usn2(0.0[$1000][3.9e-1],0e0[.12..][3.9e-1..]) Ends With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Skip Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) Where 1e1 In .1e-1 In .0 Union All Merge usn1=((:_usn3:_usn3{usn1:.9e1[12]})) Create _usn3=(({_usn3:00[$`6esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`7esn` {usn2:12.0[..123456789][..01]})),((usn1 :#usn8))"), + octest:ct_string("Create `7esn`=(#usn8 :#usn8)<-[`5esn`?:``|:`3esn` *..0xabc]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[{#usn8:.0e0[1e1..][01234567..],`6esn`:123.654 Ends With 0Xa Ends With .12e12}]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12}),_usn4=((`5esn` {`2esn`:`1esn` =~0 =~_usn4})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[usn2?{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3}]-(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})) Remove Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..]).`1esn`.`8esn`?.`2esn`!,@usn5(Distinct 1e-1[..$@usn5][..0xabc]).`3esn`!,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12e12 Starts With 4.9e12 Starts With 0e0).@usn6!.`8esn`? With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12)[Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12)..][`4esn`(Distinct)..] As `5esn`,.0e0[8.1e1..0.12] Skip .0[...12e12][..`7esn`] Union Remove `8esn`:`3esn` With Distinct *,Count(*)[..Count(*)][..9e0] Order By 07 Starts With usn1 Starts With 010 Ascending,7.0e-0[..$`7esn`][..Null] Descending,$usn2[8.1e1...9e-1][.1e-1..11.12e-12] Desc Skip Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] Limit 999 Ends With $123456789 Ends With $_usn4 Where 10.12e12[Count(*)..] Return *,.9e0 Is Null As _usn4 Order By {`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-12 Is Not Null Is Not Null)..None(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)][[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']|12e12[..$`8esn`][...0e-0]]..`4esn`(_usn4 Is Not Null Is Not Null,_usn4['s_str'..])] Descending,.9e-12[0e0...9e-1] Asc"), + octest:ct_string("Detach Delete (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1) Ends With Filter(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7]) Optional Match ((#usn8 {_usn3:$usn2 In usn1 In 1e-1})),usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union Delete .0e0[..1e1][..$1000] Delete 1000 Is Not Null Is Not Null,'s_str' Ends With 0.0 Ends With .12e12"), + octest:ct_string("Create (((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))) Unwind 1.9e0 =~0x0 As @usn5 Union All Remove None(_usn3 In ``[$``..] Where 0xabc[7.0e-0..][12e12..]).`3esn`.usn2?.@usn5!,Filter(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])._usn3? Create (usn1 :`2esn`:`8esn`)-[`7esn`?:`5esn`]->(`1esn` :`6esn`:`3esn`) Return 0 Ends With 2.9e1 Ends With 1000,$`` In $usn2,None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) Contains [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0] As @usn6 Skip usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) Union All Create _usn4=((`4esn` {usn2:$`7esn`[..12.0][..0e0]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}))"), + octest:ct_string("Detach Delete {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null,$`4esn` =~0e0 Delete $12[$12..],usn2 Ends With 10.12e12,1.9e0[$12][``] Remove `3esn`:`7esn`,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}._usn3 Union Unwind Extract(usn2 In .0e0[$`6esn`..] Where 9.1e-1[Count(*)..][5.9e-12..]) =~#usn8(5.9e-12 Contains $`` Contains $`5esn`) As `7esn` Unwind $999[$usn1...0e0] As `3esn` Remove (_usn3 :_usn4)-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)._usn4?,(usn2 :`1esn`$7)<-[_usn3{`8esn`:0e0[..'s_str']}]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`1esn`{`7esn`:8.1e1 Ends With $0 Ends With 6.0e0})._usn4? Union Delete .9e-1 Ends With `8esn` Return Distinct *,_usn4['s_str'..] As `2esn`,Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7)"), + octest:ct_string("Detach Delete 7.0e-0 Contains Count ( * ) Contains 0Xa,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]],`2esn`[..9.1e-1][..0xabc] Merge #usn7=(`2esn` :``:usn1)-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) On Create Set @usn6+=01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..] Merge `8esn`=(`6esn` :``:usn1) On Create Set usn2 =[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]|12e12 Is Not Null][{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]}],`5esn`+=.9e1[..`5esn`] On Create Set `1esn` =@usn5[6.0e0][Count ( * )] Union All Create `7esn`=(`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Optional Match `3esn`=(@usn5 :`7esn`),((#usn8 {_usn3:$usn2 In usn1 In 1e-1})) Where usn2[..10.12e12][..$`7esn`] Create ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((`` :``:usn1)) Union All Unwind {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null As `5esn`"), + octest:ct_string("Unwind $12[.9e-1] As @usn5 With Distinct Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3) Starts With `2esn`(Distinct) Starts With (`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}),9e1 Contains 4.9e12 Contains 123456789 Order By 0e-0 Contains 11.12e-12 Contains $`4esn` Asc Limit Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] Where 0e0 Ends With 1e1 Ends With 0Xa Match `5esn`=(`5esn` :`1esn`),(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))) Where 9e-1 Starts With 123.654 Starts With .9e1"), + octest:ct_string("Create `8esn`=((`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})),`7esn`=({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) With Null =~9e12 As #usn7,.0[usn2.._usn4] As `8esn` Order By $`5esn`[true] Descending,`7esn` Contains $7 Contains 07 Asc,3.9e-1[..$7] Desc Where $@usn6 Contains Count ( * ) Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Union Match (((`2esn` :`6esn`:`3esn`{@usn5:Count(*)[.0e0]})-[usn1?:usn1|:#usn8*..]-(`7esn` {`3esn`:.9e-1 Is Null})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))),@usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}) Where Count(*) In .9e-12 In $usn1 Create (:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[`7esn`*..]->({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[`8esn`:`3esn`|:_usn3 *123456789..0x0{`8esn`:$`3esn` Ends With 010 Ends With $`7esn`,usn2:7.0e-0[$usn2..0.12][$``..0]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010}) Union Return Distinct $123456789 Starts With Count ( * ) As `1esn` Order By usn1 Ends With 12 Ascending,.0[01..`5esn`] Asc,00 Is Not Null Desc Skip 0e0[.12..][3.9e-1..] Limit Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null"), + octest:ct_string("Unwind Null Starts With 9e1 Starts With `` As `8esn` Detach Delete `4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Ends With None(`` In $_usn3 Is Not Null Where .9e1[...12e12]),`5esn`[0X7..][12..] Unwind _usn4['s_str'..] As `6esn`"), + octest:ct_string("Detach Delete Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Union With Distinct .1e-1[..12e12] Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null Desc Limit 's_str' In `7esn` In .9e-12 Return .1e1 =~`1esn`,Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],$#usn7 Is Not Null Order By All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Desc,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] Ascending,.9e0 In 9.1e-1 In $123456789 Desc"), + octest:ct_string("Merge `1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) On Create Set `6esn` =Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,_usn4+=8.1e1 Starts With .9e12 Starts With `7esn`,All(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null).usn1! =$`6esn`[.9e1..][`5esn`..] Merge (`2esn` :`6esn`:`3esn`)-[`5esn`:usn2|:``]->(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}) Create (usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]-(:_usn4{_usn3:010 Starts With 0.0 Starts With .0e0})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}) Union Detach Delete $`8esn` In .1e1 In 010 Union Merge #usn8=((usn2 {`4esn`:12e12 Is Not Null})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4})) On Match Set #usn7:usn2,({usn1:usn2 Ends With 10.12e12})<-[`8esn` *1000]->(#usn8 ).usn2! =$`` In `2esn` In 07,`5esn` =`8esn`[6.0e0..][$`1esn`..]"), + octest:ct_string("Return All(`` In 0.12[3.9e-1] Where `7esn`)[(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(`4esn` :_usn3:_usn3)<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999})][`8esn`(#usn7 Ends With $#usn7 Ends With #usn7,7.0e-0[`6esn`..])],01234567 Ends With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 0[true..$7]) Ends With {`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]} As #usn7,Count ( * )[..1.9e0][..`8esn`] Skip 010 Is Not Null Is Not Null Limit 123456789 Ends With _usn4"), + octest:ct_string("With @usn6[.9e12] As ``,01234567 Starts With `4esn` Starts With 10.12e12 Order By $`7esn` Is Null Is Null Descending,Any(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1) Asc,#usn8[usn1] Asc Where .9e1[...12e12] Union All Unwind .12e12[Count(*)..] As `5esn` Return Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,9e-1 Starts With 123.654 Starts With .9e1 As `6esn`,.9e0 Is Null Is Null Skip usn1(07 Ends With @usn6 Ends With _usn3,$`2esn` In 0X7 In 3.9e-1) Contains [`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|9e0 =~9e1 =~.12e12] Limit $7 Starts With Null Starts With `6esn` Remove 123.654.#usn7.`5esn`?,count(Distinct $`3esn` Starts With 0Xa).#usn7,`1esn`:`2esn`:`8esn`"), + octest:ct_string("Return Distinct *,#usn7[12e-12..][$`2esn`..] As @usn6,$`` Contains 00 Contains 123456789 As `3esn` Limit All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0)[Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"])..Single(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1])][{usn1:9e-1 Starts With 123.654 Starts With .9e1,#usn8:$_usn4 Is Not Null}..(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})] With Distinct Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null"), + octest:ct_string("Unwind .9e-1 Is Null As @usn6 With *,`3esn`[.12e-12..] As `7esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4 Return #usn8[7..@usn5],00 Is Null Is Null Order By 0Xa Starts With .0 Desc,01234567[$#usn7][.0] Desc Skip $`4esn`[..2.9e1][..07] Limit .9e-1[12.0] Union All Match `2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Where 0x0 Starts With $`5esn` Starts With 9e-12 Return Count ( * )[..1.9e0][..`8esn`] As `1esn`,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] As @usn6,01[1e-1] Order By Extract(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``]|$_usn4[..usn2]) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) Starts With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null|`4esn` Is Not Null Is Not Null) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} Descending Skip (:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})<-[``:`8esn`|:`2esn` *12..0Xa]-(usn2 :@usn5{`3esn`:$usn1 Is Null})[..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 8.1e1 Is Null)][..#usn7(Distinct usn2 Ends With .0)]"), + octest:ct_string("Remove {`1esn`:@usn5[$_usn3..]}.`5esn`!"), + octest:ct_string("Merge `3esn`=(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Create `1esn`=(((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[:_usn3|`2esn` *010..]-(`` :usn1)<-[@usn5?:@usn6|:_usn3 *07..{_usn3:$`3esn` Is Not Null Is Not Null,#usn8:usn1[0.12..1000]}]->(`3esn` {usn2:$`7esn`[..12.0][..0e0]}))),#usn7=(`4esn` {@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[@usn5?:`8esn`|:`2esn`]->(_usn4 ) With 8.1e1 Is Null Is Null,Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` Is Null Is Null) Is Not Null Is Not Null As _usn4 Order By (`6esn` $@usn6)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]}) =~All(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~{``:7.0e-0 Is Null Is Null,@usn5:9e-12[$0][$`4esn`]} Asc,999 =~0Xa =~9e0 Asc Skip All(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])[..(:_usn4{`4esn`:9e1 Contains 4.9e12 Contains .9e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})][..(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)<-[?{_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})] Where 9e1 Ends With .9e0 Union All Create `4esn`=((`6esn` :usn1)<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]})) Detach Delete .9e-12[12e12][.0e0],'s_str' Is Null,$`2esn` Ends With $`8esn`"), + octest:ct_string("Detach Delete 010[11.12e-12..] Create (({usn2:#usn7[10.12e12..][\"d_str\"..]})-[?:`8esn`|:`2esn` *..7]-(`4esn` :#usn8{#usn8:_usn4[7][8.1e1],#usn7:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})),(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}))) Union Remove {_usn3:true[9e-12...0e-0][`5esn`.._usn4]}.usn1.`6esn`?.`2esn`,[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010].`5esn`!.`1esn`?,`7esn`(Distinct $usn2[1e-1])._usn3!.@usn5 With Distinct *,`` Is Not Null Is Not Null As usn1 Order By (:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[`7esn`?]->(`5esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(#usn8 {_usn3:$_usn4 Contains .12e-12}) Ends With `4esn`($usn2 In usn1 In 1e-1,01[Count(*)..0e-0][7..$`2esn`]) Desc,7.0e-0 =~$123456789 =~`8esn` Descending Unwind false Is Not Null Is Not Null As _usn4 Union Match `3esn`=(({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[``?:``|:`3esn` *01234567]->(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})),((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) Merge ((`` )<-[?]->(_usn4 :@usn5)) On Create Set @usn6 =123.654 Ends With 0Xa Ends With .12e12,`` =.0e-0 Starts With $#usn7 Starts With _usn3 Remove [`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12].`2esn`?.@usn6!,(:#usn8)<-[`3esn`?:`2esn`|`7esn`*..]-(usn2 :`1esn`{@usn5:Count(*)[.0e0]})<-[_usn4?:`4esn`|:@usn5 *1000]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})._usn4,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null).`2esn`!"), + octest:ct_string("Create (((:_usn4{_usn3:010 Starts With 0.0 Starts With .0e0})-[_usn4?:``|:`3esn`]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(usn1 {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}))),`1esn`=({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(_usn3 :`6esn`:`3esn`) Union All Unwind (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] As `7esn`"), + octest:ct_string("Remove Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12 Contains 0e-0 Contains .0).`8esn`,All(`7esn` In .12e12[Count(*)..] Where 's_str' Ends With 0.0 Ends With .12e12).#usn8? Merge (({`8esn`:$`` Is Null Is Null})) On Match Set usn1 =$0[$`7esn`..$`3esn`]['s_str'...0],[@usn6 In 00 =~.9e-12 =~usn1 Where $123456789 Starts With Count ( * )].`1esn`? =usn2 Ends With .0,`8esn` =010[..@usn5][.._usn4] Return *,`3esn`[.12e-12..] As `7esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4 Union Merge `7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) On Match Set (`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8,_usn3+=Null[..07] Unwind 5.9e-12 =~$@usn6 As `2esn` Return 1.9e0 Starts With 's_str' Starts With 9.1e-1,8.1e1 Is Null,.1e1 Starts With .1e-1 Order By 1.9e0 In $0 Desc,7.0e-0 =~$123456789 =~`8esn` Asc,#usn7[10.12e12..][\"d_str\"..] Desc"), + octest:ct_string("Remove None(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]).``?,{`8esn`:usn1 Ends With 12}.`8esn`!.@usn5.usn2!,{`7esn`:.0[usn2.._usn4],`5esn`:9.1e-1 Is Null}.@usn6? Detach Delete Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Union Detach Delete .1e-1[$`2esn`..][$`1esn`..] Match ((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2})),@usn5=({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3}) Where $usn2 =~$`2esn` =~\"d_str\" With Distinct *,`2esn` Is Not Null Is Not Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Order By {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} Desc,{`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]] Ascending Where $``[4.9e12..2.9e1]"), + octest:ct_string("Merge ({_usn4:$`3esn` In 's_str' In $#usn7}) Create `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Union All Return Distinct *,0e0 Starts With $1000 Starts With `2esn` As #usn7 Skip .9e1[..Count(*)][..7.0e-0] Limit $_usn4 =~`7esn`"), + octest:ct_string("Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]|$_usn3 Is Not Null).usn2!.#usn7!.`8esn`! Union All Unwind .1e1 Starts With $`7esn` As usn1 Detach Delete $usn1[$7..][$0..] Delete 0Xa Ends With #usn8 Ends With usn2,#usn8[3.9e-1.._usn3],_usn4 In `3esn` In 7.0e-0"), + octest:ct_string("Delete 123.654,$_usn4 =~`7esn` Remove Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]).#usn8? Create `7esn`=(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]}) Union All Create `6esn`=(((#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`3esn` {#usn8:`7esn` Is Null})-[@usn6?:@usn5]-(`4esn` :usn1{`1esn`:0X0123456789ABCDEF Contains 8.1e1}))),(($@usn6)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[#usn8?:#usn7|:`8esn` *..0X7]->(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999})) Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0).`5esn`?,.9e-1.`6esn`?,Any(_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]).usn1.@usn6?.#usn8! Delete 's_str' Ends With $usn1"), + octest:ct_string("With *,7.0e-0[3.9e-1..`1esn`] As `8esn`,$`6esn` In `2esn` Limit $`1esn` Starts With Count(*) Starts With $`8esn` Where 1.9e0 =~$`8esn` =~01234567 Return $``[7..] As #usn8 Merge #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})) On Match Set All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 999 =~0Xa =~9e0).`1esn`?.`2esn`? =()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] On Create Set Any(`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]).usn1!.``?.``? =false =~4.9e12,usn1 =7.0e-0[3.9e-1..`1esn`]"), + octest:ct_string("Detach Delete 1.9e0 Ends With 0Xa Ends With $12,.9e-12[9e1..8.1e1] Optional Match _usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))),`2esn`=(usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2}) Where `4esn` Is Not Null Is Not Null Union All Create (((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})))"), + octest:ct_string("Remove Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0).usn2!.``!.`3esn`?,(#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0).#usn7?.usn2?,`6esn`(Distinct 5.9e-12 Contains $`` Contains $`5esn`,.1e1 Ends With `2esn` Ends With $`1esn`).#usn7.#usn8!.usn1 Union Return Distinct *,All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1) =~_usn3(Distinct 5.9e-12[9e0..],$@usn5 Is Null),{_usn4:1.9e0 =~$`8esn` =~01234567}[All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Ends With [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|$999 Ends With .9e-12] Ends With [usn2 In .0e0[$`6esn`..] Where usn2 Ends With .0] Desc Skip $_usn3 Ends With Count(*) Ends With $`` Limit All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0)[..[@usn6 In 00 =~.9e-12 =~usn1 Where 0.0[$1000][3.9e-1]|$usn2 =~$`2esn` =~\"d_str\"]] Match (:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567}) Match ``=((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),(((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})))"), + octest:ct_string("Merge (usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]}) On Match Set `6esn`(010[@usn5..123.654],0X0123456789ABCDEF Contains $`6esn` Contains $123456789).usn1 =Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],`6esn` =Null[..07],Single(`5esn` In 12[0xabc..][$0..] Where .1e1 Starts With $7).@usn6?.`8esn` ={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) On Match Set #usn8+=_usn4[9e0..$#usn8],`2esn`+=$`2esn` Contains false Contains 123456789,`6esn`+=0x0 Contains $`1esn` Contains 0.0 Union All Remove _usn4:`5esn` Remove @usn6:usn1,Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $@usn6 Contains Count ( * )).`4esn`? Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12|.1e-1).`1esn`?,All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]).`7esn`!,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).usn1?"), + octest:ct_string("With Distinct _usn3[`2esn`..][0x0..] As usn1 Order By 01234567 Starts With `4esn` Starts With 10.12e12 Ascending,0Xa In 0.12 In $#usn7 Descending,$999 Is Not Null Desc Skip $@usn5 Ends With $@usn6 Ends With \"d_str\" Limit (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Union All Return Distinct *,Null[12e-12..] As _usn4,$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Create #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]})-[`3esn`? *..0xabc{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`}) Remove #usn7:`4esn`:`7esn` Union All Unwind `1esn`[9.1e-1] As #usn8"), + octest:ct_string("Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Remove All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`4esn`?.#usn7!,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|$_usn3 Is Not Null).`5esn`! Union All Create ((:_usn3:_usn3{usn1:.9e1[12]})),@usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Remove 8.1e1.#usn8,None(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null).`5esn`!,{`5esn`:_usn3 Starts With `2esn`,usn1:4.9e12[..Null]}.`5esn`!.@usn5!.usn2 Create ({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}) Union All Return *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn`"), + octest:ct_string("Remove `7esn`:`3esn` Union All Unwind Filter(`` In $_usn3 Is Not Null Where 7 Is Null Is Null) =~{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} As `2esn` Union Unwind .0 Is Null Is Null As _usn4 Remove usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4!,@usn6($`3esn`,$`1esn`[`3esn`..]).``?,`7esn`($`3esn` Ends With 010 Ends With $`7esn`,01234567[6.0e0][$usn2])._usn3!.@usn5.`5esn`? Match (:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]})"), + octest:ct_string("Return *,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] As `7esn` Skip Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12) In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null|.12e12[$12..4.9e12][11.12e-12..9e12]) In {`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``} Detach Delete .1e-1[@usn6..] Unwind 2.9e1[...9e-12][..0] As usn2 Union All Remove `4esn`(12e12 In $`` In 6.0e0,.9e1[#usn7..]).`5esn`?,@usn6:@usn6:_usn4 Delete 's_str' Ends With $usn1 Merge `1esn`=(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))) On Create Set `8esn`+=Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),`8esn`+=0.0 Is Not Null Is Not Null On Create Set `2esn` =$999[$usn1...0e0]"), + octest:ct_string("Match `7esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Return *,.9e0 Is Null As _usn4 Order By {`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-12 Is Not Null Is Not Null)..None(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)][[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']|12e12[..$`8esn`][...0e-0]]..`4esn`(_usn4 Is Not Null Is Not Null,_usn4['s_str'..])] Descending,.9e-12[0e0...9e-1] Asc Optional Match `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),((_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))"), + octest:ct_string("Remove _usn4:`5esn` Remove @usn6:usn1,Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $@usn6 Contains Count ( * )).`4esn`? Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12|.1e-1).`1esn`?,All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]).`7esn`!,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).usn1? Union Create ``=((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})),_usn3=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Remove {usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`}.`1esn`!.usn1!,(`2esn` :``:usn1)<-[`6esn`? *..0xabc{``:$_usn4[Null]}]->(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]}).#usn7?.`3esn` Unwind {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} As usn1 Union All Optional Match `8esn`=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Detach Delete (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)] Unwind 123.654 Starts With Count ( * ) As `5esn`"), + octest:ct_string("With Distinct $`2esn` Contains 123.654,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] As usn2,.9e-12[01][Count(*)] Order By (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] Ascending Skip $`3esn` Ends With 010 Ends With $`7esn`"), + octest:ct_string("Return *,.0e0 Is Null Is Null As _usn4,[_usn4 In Count(*)[9e1..][12e-12..] Where $_usn3[1e-1..]][[`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0]][None(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)] As `6esn` Skip 1000[..0e0][..$`6esn`] Limit usn1[..10.12e12][..7] Detach Delete {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} =~Filter(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]),2.9e1[0..$@usn5][`7esn`..$`1esn`],All(usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null])[``($_usn3[1e-1..],.12e12[Count(*)..])][None(_usn4 In Count(*)[9e1..][12e-12..] Where 123456789 Ends With _usn4)] Remove `3esn`($`5esn`[7..],9e-1[0X0123456789ABCDEF][0]).usn2,`6esn`(Distinct $_usn3 In 123.654 In $`8esn`,$@usn5[$#usn8..][_usn3..]).usn1?.`4esn`?.`8esn`?,`7esn`(Distinct $`3esn` =~4.9e12 =~$7,0xabc[$`4esn`..][`8esn`..]).`8esn`!.``?.#usn8! Union All Remove `3esn`($`5esn`[7..],9e-1[0X0123456789ABCDEF][0]).usn2,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 11.12e-12 Is Null Is Null).`6esn`?,{#usn8:_usn4 Ends With .0 Ends With 7,`6esn`:0X7 Starts With 1e1 Starts With $12}.@usn5! Create @usn5=(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}),#usn8=({_usn3:$`8esn` Is Null}) Create `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}))"), + octest:ct_string("With Distinct *,123.654,9e-1 Starts With 123.654 Starts With .9e1 As `6esn` Order By $`8esn`[.._usn4(Null[..07],123.654)] Desc Skip 123456789[\"d_str\"..] Where $`2esn` Contains false Contains 123456789 Match `3esn`=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) Where $usn1 Starts With 12 Starts With 12e12 Union Merge ((`6esn` :`7esn`)-[`7esn`?:`5esn`]->(#usn8 )<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})) On Match Set #usn8 =_usn4['s_str'..],`7esn` =$usn1[$12..] On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 Return Distinct $usn1 Is Not Null Is Not Null As `5esn`,#usn7 =~0.0 =~usn2 As _usn4 Skip _usn4 In `3esn` In 7.0e-0 Return Distinct *,true Is Null Is Null As _usn3 Order By 12e12 Is Not Null Desc,0.0[$1000][3.9e-1] Ascending Skip {`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]} =~[usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|.9e1[..`5esn`]] Limit .0e0 =~5.9e-12 =~`7esn` Union All Create `6esn`=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Create (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),`1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) Unwind {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null As ``"), + octest:ct_string("Unwind (:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )[{usn2:7.0e-0 =~$12 =~5.9e-12}..][Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)..] As `3esn` Union Match `5esn`=((`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]})-[:`6esn`|#usn7{usn1:$`2esn` Contains $1000,`7esn`:`7esn`[.1e1..][`8esn`..]}]-(#usn8 {`2esn`:usn2 Ends With .0})) Where 999 Starts With .9e12 Starts With 3.9e-1 Create (_usn4 :`7esn`{@usn6:.12e-12[999...12]}),_usn4=(({_usn3:$`5esn`[7..]})) Union All Return Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1]"), + octest:ct_string("Optional Match `5esn`=(((:@usn5{usn2:$usn1[$12..]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)<-[`8esn`?:`7esn`|@usn6 *..7]->(`5esn` {`2esn`:`1esn` =~0 =~_usn4}))),`3esn`=(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))) Union With Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],.0e0 In 10.12e12 In $`5esn` As #usn8,4.9e12[..Null] As `7esn` Skip $`1esn`[.9e0][$_usn3] Limit [`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] In Any(`7esn` In .12e12[Count(*)..] Where 0Xa[9e0]) In [usn2 In .0e0[$`6esn`..] Where .12e12[`7esn`][#usn8]|7 Is Null Is Null] Where Count(*)[.0e0] Detach Delete (`8esn` {`3esn`:#usn8[`2esn`]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null,Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null),9e-1 Starts With 123.654 Starts With .9e1"), + octest:ct_string("Detach Delete 12 Contains _usn3,$usn2[.12e12],$@usn5[$#usn8..][_usn3..] Remove All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`).`3esn`?._usn4!._usn4,Filter(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])._usn4? With (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7),Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),12.0 =~$@usn5 =~8.1e1 Order By Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] Ascending Limit $@usn6 Contains Count ( * )"), + octest:ct_string("Delete .1e-1[2.9e1..][12..],12e-12[..$7][..$0] Union Merge ((#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[`3esn`?:`5esn`]->(`2esn` )) On Match Set `7esn`+=$`` In $7 In 9e-1,usn1+=$12 Starts With 1e-1 Starts With $@usn5,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).`2esn`?.#usn8! =Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null Union Delete [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1) Ends With Filter(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7]),Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null,`3esn` Starts With 's_str' With Distinct *,Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As `5esn`,0xabc =~7.0e-0 =~4.9e12 Order By (#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Desc Where @usn6[.9e12..0e0]"), + octest:ct_string("Unwind [usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|`3esn` Ends With 010 Ends With 9.1e-1][(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})-[`7esn`?:`5esn`]->(#usn8 )..None(_usn4 In Count(*)[9e1..][12e-12..] Where 7 Contains $#usn7)] As `8esn` Return $`4esn` Contains $12 Contains .9e-1,.1e-1[@usn6..] As `4esn`,`2esn` =~usn1 As `6esn` Skip 0xabc[7.0e-0..][12e12..] Limit .12e12 =~$#usn7 Union All Detach Delete (`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})-[`6esn`? *123456789..0x0]->({`6esn`:$usn1 Starts With usn1 Starts With 1e-1,#usn8:$#usn7 Starts With 10.12e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}) Is Null,_usn4 Is Null Is Null Optional Match #usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})))"), + octest:ct_string("Delete `3esn` Ends With 010 Ends With 9.1e-1 Detach Delete 999[...12e12][..0] Delete .12e12[Count(*)..],123.654[...9e12][..#usn8],Null =~true =~.1e-1 Union Create `5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)),``=(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`` :@usn6:_usn4)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}) Union Merge _usn4=((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) Merge _usn4=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[@usn6?:`5esn`]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]})"), + octest:ct_string("Create @usn5=(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}),(((_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`1esn`{`7esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]}))) Merge usn1=(`5esn` :`1esn`)"), + octest:ct_string("Match ((_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})),#usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) With 1e-1 Starts With usn2 Starts With 12e-12 As _usn4 Order By 's_str'[0Xa..12e-12][.9e1..0xabc] Descending,{#usn7:01 Ends With \"d_str\",_usn4:`3esn` In 0X7}[All(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12])..Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]|999[..@usn5][..`1esn`])][Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1)..Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)] Descending Skip Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Limit 12e12 Is Null Is Null Where 9.1e-1 Is Null With Distinct *,0Xa Ends With #usn8 Ends With usn2 As `6esn` Union Merge _usn4=((`5esn` {`2esn`:`1esn` =~0 =~_usn4})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[usn2?{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3}]-(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))"), + octest:ct_string("Return Distinct *,9e1 Contains 4.9e12 Contains 123456789 As _usn4,01[..0Xa] Skip Count ( * )[12e12][$_usn4] Limit 999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] Create `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Create `7esn`=(`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Union With $`` In $7 In 9e-1,$@usn5[$#usn8..][_usn3..] As `8esn`,0xabc[7.0e-0..][12e12..] Limit Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 07[.0e0][3.9e-1]) Contains Extract(`` In $_usn3 Is Not Null) Return *,#usn8 In $#usn8 In \"d_str\",`` Is Not Null Is Not Null Order By `3esn`[`4esn`..Null][$usn1..`5esn`] Desc,`5esn` Contains `6esn` Asc,9e-12 In 5.9e-12 Asc Limit .1e1 Starts With 9e0 Union All Delete Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]),.9e1[Count(*)..$`3esn`] Return `5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]],Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null As usn2 Order By $@usn5[`8esn`..$#usn7] Asc Skip {`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])]"), + octest:ct_string("Optional Match ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})) Optional Match (:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}),((#usn8 :`3esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(:`6esn`:`3esn`{_usn3:Count ( * )[7]})) Where 010[9e0..9e1][$_usn4..$12] Unwind Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) As `5esn`"), + octest:ct_string("Merge ``=((#usn8 {_usn3:$_usn4 Contains .12e-12})) With 1000 In 123.654 In $`8esn`,[_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null,_usn4(0[true..$7]) =~Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`) =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0) As _usn3 Order By $_usn3 Contains 1e1 Contains .12 Asc,9e12 Asc,0e0[`3esn`..][.9e-1..] Descending Merge `8esn`=(`3esn` {`2esn`:01[1e-1]}) On Match Set [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12]].@usn6 =$`8esn`[.9e-1][_usn3] On Create Set usn2 =8.1e1 Is Null,`1esn` =$_usn4 Contains .12e-12 Union All Return Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] As `7esn`,12e12 Starts With `6esn` Starts With true As #usn8,$_usn4[1e-1..8.1e1][`1esn`..1.9e0] As `` Optional Match @usn6=(((@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[#usn7? *00..123456789]->(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}))),`4esn`=(((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Where 01[Count(*)..0e-0][7..$`2esn`] Union All Create ((:usn2{@usn6:`3esn` Ends With `6esn`,`1esn`:$`2esn` Starts With 0x0})<-[`4esn`]->(#usn7 :_usn3:_usn3)),`4esn`=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1}) Optional Match ``=((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})),(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}) Where 0[true..$7] Remove Extract(_usn3 In ``[$``..] Where 01234567 Ends With 2.9e1 Ends With 9.1e-1|$`3esn`).`6esn`.`1esn`!"), + octest:ct_string("Match `2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),usn2=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where 12 Contains usn2 Contains $usn2 Union Unwind 0Xa Contains $999 Contains 0Xa As _usn4 With All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Where .9e1 Contains Null Union All Unwind (:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] As `3esn`"), + octest:ct_string("Optional Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Where .0e0[1e1..][01234567..] Match (((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Union All Unwind 0x0 =~$7 =~Null As #usn7 Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`}))"), + octest:ct_string("Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),(usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1})"), + octest:ct_string("Remove usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4!,@usn6($`3esn`,$`1esn`[`3esn`..]).``?,`7esn`($`3esn` Ends With 010 Ends With $`7esn`,01234567[6.0e0][$usn2])._usn3!.@usn5.`5esn`? Unwind Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null As @usn5"), + octest:ct_string("With $`4esn` Contains $12 Contains .9e-1,.1e-1[@usn6..] As `4esn`,`2esn` =~usn1 As `6esn` Skip 0xabc[7.0e-0..][12e12..] Limit .12e12 =~$#usn7 Where Count ( * )[`7esn`..] Remove Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 01234567[6.0e0][$usn2]).`3esn`!.usn1! Return Distinct *,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null As usn2,1.9e0[$12][``] As `5esn`"), + octest:ct_string("Create #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Unwind Filter(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) Starts With All(`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]) Starts With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`) As `` Remove {`4esn`:$123456789[$_usn3..][$usn2..]}.usn1"), + octest:ct_string("Create #usn7=(`2esn` :``:usn1)-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}),#usn7=(`8esn` {``:$123456789[$_usn3..][$usn2..]}) Match `8esn`=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``]|`4esn` Starts With $_usn3 Starts With .9e-12].@usn5!._usn4?.`1esn`? Union All Unwind .12e12 =~$#usn7 As `7esn` Unwind `2esn`(Distinct) Starts With Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]) Starts With (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}) As _usn4 Create ((:_usn3:_usn3{usn1:.9e1[12]})),@usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Union Merge ((#usn8 :`3esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(:`6esn`:`3esn`{_usn3:Count ( * )[7]})) On Create Set `7esn` =`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)],@usn6(Distinct true Starts With 2.9e1 Starts With 9e1).@usn5.`2esn` =07[usn1..]"), + octest:ct_string("Delete Extract(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|Count(*) Is Not Null Is Not Null)[(_usn4 {#usn7:$`5esn` Is Null Is Null})-[_usn3:usn1|:#usn8 *07..]->(`4esn` :#usn8{#usn8:_usn4[7][8.1e1],#usn7:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})][Filter(`5esn` In 12[0xabc..][$0..] Where .12e-12[$@usn6..5.9e-12])],123.654 Merge (`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[_usn3:usn1|:#usn8 *07..]-({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}) On Match Set `6esn`:`6esn`:`3esn`,`8esn`:`7esn` On Match Set {#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}.`6esn`!.`3esn`! =5.9e-12[$`4esn`],_usn3:`2esn`:`8esn`,#usn7(0e0 Starts With $1000 Starts With `2esn`,Count ( * )[..`8esn`]).@usn5? =.0e0 =~5.9e-12 =~`7esn` With Distinct 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] Ascending,1e-1[..$`6esn`] Ascending Skip (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Where #usn7 Ends With $#usn7 Ends With #usn7 Union All Remove `5esn`(123456789 =~$`1esn` =~#usn7,$0[$`7esn`..$`3esn`]['s_str'...0]).#usn7?"), + octest:ct_string("Create ((`` :usn1)-[ *0..010]->(_usn4 :`5esn`)),(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) Union All Create (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Union All Remove None(_usn3 In ``[$``..] Where 0xabc[7.0e-0..][12e12..]).`3esn`.usn2?.@usn5!,Filter(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])._usn3? Create (usn1 :`2esn`:`8esn`)-[`7esn`?:`5esn`]->(`1esn` :`6esn`:`3esn`) Return 0 Ends With 2.9e1 Ends With 1000,$`` In $usn2,None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) Contains [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0] As @usn6 Skip usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})"), + octest:ct_string("Detach Delete 0Xa[$usn2..],$@usn5[...9e-1][..$usn1],12e12[..123456789][..false] Remove Filter(`7esn` In .12e12[Count(*)..] Where @usn5[$_usn3..]).usn2?,[`5esn` In 12[0xabc..][$0..] Where .12e12[$12..4.9e12][11.12e-12..9e12]|Count(*)[9e-12..0Xa][$123456789..0.0]].@usn5,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where #usn8[7..@usn5]).usn2? Union All Merge (_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ) Remove {#usn8:0xabc[7.0e-0..][12e12..],_usn3:#usn8 Starts With 11.12e-12 Starts With $`3esn`}.`4esn`!,{`3esn`:$@usn6 Is Not Null Is Not Null,@usn5:0X7[Count(*)][.9e0]}.`5esn`!.`3esn`!,All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]).@usn5!._usn4!.#usn8? Unwind false[12e-12..][usn1..] As `6esn` Union Create ((`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})<-[`8esn`?:`3esn`|:_usn3*..{@usn5:$0 Starts With 010}]-(`3esn` :@usn5)<-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(`1esn` )),(({`3esn`:.0e-0 Starts With $#usn7 Starts With _usn3,usn2:`6esn` In 9e-12})-[ *0..010]->(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})-[`5esn`:`2esn`|`7esn` *..0X7]-(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12}))"), + octest:ct_string("Delete {`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Union All Create @usn5=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Unwind 1.9e0 =~0x0 As @usn5 Create @usn5=(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}),#usn8=({_usn3:$`8esn` Is Null})"), + octest:ct_string("Create #usn7=((`4esn` {_usn3:@usn6 In 3.9e-1 In 9e-12})<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4)) Optional Match #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),`8esn`=(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})))"), + octest:ct_string("Return *,.12e-12 In 9e12 In 9e-12 As `5esn`,1e-1 Starts With usn2 Starts With 12e-12 As `` Order By 0[true..$7] Descending Skip (_usn4 :`2esn`:`8esn`)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})<-[`2esn`?:@usn5]-(`7esn` :usn1$`6esn`) =~(#usn8 {`3esn`:123456789 Contains .1e-1 Contains .12e12,`1esn`:$`3esn` =~4.9e12 =~$7})-[#usn7? *00..123456789]->(`8esn` :@usn5)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Union Optional Match (`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[_usn3:usn1|:#usn8 *07..]-({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}),`7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) Union All Delete Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]),.9e1[Count(*)..$`3esn`] Return `5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]],Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null As usn2 Order By $@usn5[`8esn`..$#usn7] Asc Skip {`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])]"), + octest:ct_string("Return Distinct ``[..$#usn7],$`6esn`[$`8esn`..][false..] As _usn3 Order By (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})[Extract(`` In $_usn3 Is Not Null Where _usn4[7][8.1e1])..None(usn1 In 7.0e-0[.._usn4][..0X7] Where .9e-1 =~.9e-1)] Desc Limit $0 In Count ( * ) In .1e1 Delete Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12),$usn2[4.9e12..false][.0e-0..00],usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) With *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Where Null[`2esn`..] Union All Merge ((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`3esn`? =0.12[3.9e-1],_usn4 =Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],[`` In $_usn3 Is Not Null Where 12 =~$@usn5|$`2esn` In 0X7 In 3.9e-1].`8esn`.`5esn`? =12e-12[9e0..1.9e0] On Create Set `1esn` =.1e-1[..12][.._usn4],_usn4 =usn2[..7.0e-0],`5esn` =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1} Unwind `2esn` Starts With 12 Starts With 10.12e12 As `5esn` Optional Match (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[:usn1|:#usn8]-(:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`}) Where 123456789 Contains .1e-1 Contains .12e12 Union Merge ((_usn4 )-[usn2?:@usn6|:_usn3]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`4esn`?:_usn3|`2esn`]-(`8esn` {``:$123456789[$_usn3..][$usn2..]})) On Create Set None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null).``.`1esn` ={@usn6:8.1e1[$`5esn`][0e0],`5esn`:$`8esn` Starts With `2esn`}[[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]],_usn3 =5.9e-12[9e0..]"), + octest:ct_string("Merge `7esn`=(@usn5 :usn1{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(@usn5 {#usn8:_usn3 Ends With 01 Ends With .1e-1}) With 12 Contains usn2 Contains $usn2 As ``,Count ( * )[12e-12] As #usn7 Skip .0 Union All Optional Match usn1=(@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),#usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Union Optional Match `2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Delete $@usn5 Is Null Is Null Unwind $`` Contains 00 Contains 123456789 As `4esn`"), + octest:ct_string("Optional Match `7esn`=({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}),`2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Delete 0X7 Starts With 1e1 Starts With $12,$#usn7 Is Not Null Is Not Null,{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null"), + octest:ct_string("Optional Match usn1=((`8esn` :_usn3:_usn3)<-[_usn4? *..7{#usn7:Count ( * )[7]}]->(`6esn` :`7esn`)<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)) Where .9e-12[_usn4..#usn8][9.1e-1..0.12] Remove None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 01 Ends With \"d_str\").@usn6?,`2esn`:_usn3:_usn3,{`7esn`:.1e1 Starts With $`7esn`}.`6esn`! Union Merge usn1=((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})) Remove {usn1:usn2[..7.0e-0]}.`2esn`.`2esn`?.usn1,(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6?,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e12 Is Not Null Is Not Null).#usn8? Union Remove Filter(usn2 In .0e0[$`6esn`..] Where $123456789 Is Not Null)._usn4.`1esn`!.`1esn`!,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`).`5esn`!.`7esn`,_usn3:#usn8 Unwind (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] As `2esn`"), + octest:ct_string("Return Distinct *,0 Starts With 0Xa Starts With $0 Skip Null Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null) Remove None(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]).#usn8,{@usn5:$`1esn` Starts With Count(*) Starts With $`8esn`}._usn3! Optional Match (`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Union All Detach Delete 123.654 In $`5esn` In 9e-1,999[..@usn5][..`1esn`],12.0[`8esn`] Delete {usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Delete 0X7[Count(*)][.9e0],`1esn` In 12e-12 In 1e-1,010 Union All Remove {@usn6:0X7 Starts With 1e1 Starts With $12}.#usn8?.usn1.@usn5!,Extract(usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|0e0 Ends With 1e1 Ends With 0Xa).``?,@usn5:`3esn`"), + octest:ct_string("Match (:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}) Delete (`8esn` :_usn3:_usn3{`6esn`:9e0[..1e1],@usn6:0x0 =~$7 =~Null})<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`8esn` *1000]->(usn1 :_usn4) In Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where ``[$``..]) In {usn2:.9e-1 Is Not Null Is Not Null},1e1 Starts With `8esn` Starts With .9e0 Match (((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) Union Remove {usn1:usn2[..7.0e-0]}.`2esn`.`2esn`?.usn1 With *,$12 Contains $#usn8 Contains 01 As usn1 Order By 0X7[`4esn`..][`3esn`..] Ascending,$#usn7 In .12e-12 Ascending,$`6esn` In `2esn` Ascending Where $0 =~01234567 Return *,`6esn`[010...9e-12] As `5esn`"), + octest:ct_string("Unwind $usn1 Is Null As `2esn` Unwind 0.0[$1000][3.9e-1] As #usn8 With 6.0e0 Is Null Is Null As @usn6 Limit Count ( * ) Starts With 10.12e12 Starts With `` Where `3esn`[3.9e-1..$`5esn`] Union All Remove None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`8esn`?.`3esn`?.@usn6?,Extract(`5esn` In 12[0xabc..][$0..] Where `7esn` Ends With 9e12).`8esn` Optional Match `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Where 0e0 Starts With $1000 Starts With `2esn` Match @usn6=(((`3esn` :`4esn`:`7esn`)<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(usn1 :`2esn`:`8esn`))) Union All Return Distinct Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,9e-1 Starts With 123.654 Starts With .9e1 As `6esn`,.9e0 Is Null Is Null Skip usn1(07 Ends With @usn6 Ends With _usn3,$`2esn` In 0X7 In 3.9e-1) Contains [`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|9e0 =~9e1 =~.12e12] Limit $7 Starts With Null Starts With `6esn`"), + octest:ct_string("Optional Match _usn4=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[@usn6?:`5esn`]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) Where Count(*)[.0e0..][#usn7..] Create @usn5=((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})-[`6esn`? *..0xabc{``:$_usn4[Null]}]->({usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`6esn` {_usn3:$_usn4 Contains .12e-12})) Union All With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Limit #usn7[10.12e12..][\"d_str\"..] Where 9e12[...12e12][..$`2esn`] Union Remove _usn3(Distinct Null =~true =~.1e-1).`7esn`? Return 10.12e12 Starts With .9e12 As #usn7,_usn4['s_str'..] As `2esn`,false[12e-12..][usn1..] Order By 123456789[Count ( * )..] Desc,``(Distinct `4esn`[$1000..$``][$_usn4..$_usn4],.1e-1 Starts With 1000 Starts With $`1esn`) In [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|`4esn` Starts With $_usn3 Starts With .9e-12] In {`6esn`:``[$``..]} Desc,[usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc Skip .1e-1 Is Null Limit All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0)[Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"])..Single(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1])][{usn1:9e-1 Starts With 123.654 Starts With .9e1,#usn8:$_usn4 Is Not Null}..(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})]"), + octest:ct_string("Match #usn8=((_usn4 {`3esn`:1.9e0 Ends With 0Xa Ends With $12,@usn5:.9e12 Is Not Null Is Not Null})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})) Delete $0[9e1],9e1 Contains 4.9e12 Contains .9e0 Merge ((`3esn` {#usn8:`7esn` Is Null})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})) On Create Set {`1esn`:$`1esn`[.9e0][$_usn3]}.`8esn`? =`1esn`[Count ( * )][5.9e-12],`8esn`+=123.654 Ends With Count(*) Union All Optional Match `3esn`=((@usn6 :`6esn`:`3esn`)<-[`1esn`? *0X0123456789ABCDEF..0{`4esn`:9e1 Ends With .9e0}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})),(((`3esn` {_usn4:$`2esn` Starts With 0x0})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})-[{usn1:$#usn8[...9e1]}]->({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null}))) Return *,#usn7 =~0.0 =~usn2 As `1esn` Order By Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]) Desc,$0[..0x0][..01234567] Ascending,`3esn`(Distinct 12 Ends With $7 Ends With $#usn8,$`` =~$_usn3) Contains _usn3(Distinct #usn8[..#usn7][..@usn6]) Contains Filter(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]) Asc"), + octest:ct_string("Return \"d_str\" Starts With `6esn` Starts With 1.9e0 As #usn8,Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]) Ends With usn2(0.0[$1000][3.9e-1],0e0[.12..][3.9e-1..]) Ends With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Skip $_usn4 =~$_usn4 =~2.9e1 With 0e0[`4esn`] As `6esn`,$_usn3 In $`7esn` In $`3esn` As `` Limit Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Where @usn5[...9e12] Remove All(`2esn` In .9e-12[0e0...9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4)._usn3!.`1esn`? Union All Unwind 11.12e-12 Is Null As usn1 Return *,_usn4(Distinct 1e-1 =~0.0 =~9.1e-1) =~None(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~(`2esn` {usn2:7.0e-0 Starts With $7 Starts With true})-[`2esn`:`5esn`{usn2:Count(*)[12..][0X0123456789ABCDEF..]}]-({_usn4:$`3esn` In 's_str' In $#usn7})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12}) As ``,`3esn` Ends With true Limit {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})"), + octest:ct_string("Create (:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Unwind 12e12 =~#usn7 =~.9e-1 As #usn8 Remove {#usn7:11.12e-12 Contains 9e-12}.`4esn`!.`7esn`!"), + octest:ct_string("Create ((:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})<-[_usn4:`6esn`|#usn7]-(`8esn` $12)) Union All Return Distinct *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Order By .9e-12[12e12][.0e0] Asc,0.0[4.9e12..][00..] Ascending,$`1esn` Starts With Count(*) Starts With $`8esn` Ascending Skip {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Count(*)[9e-12..0Xa][$123456789..0.0])..Any(`2esn` In .9e-12[0e0...9e-1] Where `3esn` Contains 01234567 Contains .9e-12)][All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e0 In 9.1e-1 In $123456789)..Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)] Unwind Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) As `6esn` Match `5esn`=(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}),((`6esn` :_usn4)<-[`7esn`*..]->(`` :@usn6:_usn4)-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Union All Remove (`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``!,usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4!"), + octest:ct_string("Remove None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 01 Ends With \"d_str\").@usn6?,`2esn`:_usn3:_usn3,{`7esn`:.1e1 Starts With $`7esn`}.`6esn`! Merge `5esn`=((`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]})-[:`6esn`|#usn7{usn1:$`2esn` Contains $1000,`7esn`:`7esn`[.1e1..][`8esn`..]}]-(#usn8 {`2esn`:usn2 Ends With .0})) On Match Set [_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8].`5esn`! ={_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12),#usn8 =(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] On Match Set {@usn5:12e-12 Contains .9e-1 Contains 9e-1}.``! =usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]),@usn6 =0.0 Is Not Null Is Not Null,[`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0]._usn3?._usn3? =.1e1 Starts With .1e-1 Unwind All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..] As ``"), + octest:ct_string("With Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)[{_usn3:$0 Starts With 010}] Order By 12e12 Is Not Null Desc,0.0[$1000][3.9e-1] Ascending Skip 's_str'[1e-1] Limit 1e1 In .1e-1 In .0 Where $@usn5 In .9e1 In $``"), + octest:ct_string("Return 00[$`6esn`] As `6esn`,Count ( * )[12e-12] As #usn7,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] Order By .9e1[Count(*)..$`3esn`] Asc Unwind true Starts With 2.9e1 Starts With 9e1 As _usn4"), + octest:ct_string("Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),`5esn`=(`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Where .9e-1 =~.9e-1 With Distinct _usn4 In `3esn` In 7.0e-0 As #usn7 Order By $`` Ends With 6.0e0 Descending,$1000[..01234567][..0X0123456789ABCDEF] Ascending Limit .1e-1[.9e12..usn2][`4esn`..$_usn3] Where $_usn4 Contains 123456789 Union Delete .1e-1[..12][.._usn4],[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]} Union Unwind $`` In $@usn6 In 3.9e-1 As _usn3"), + octest:ct_string("Merge `3esn`=((`7esn` :usn1)-[? *0X0123456789ABCDEF..0]-(:`8esn`:#usn7)<-[?:@usn6|:_usn3 *07..]-({_usn4:01234567[6.0e0][$usn2]})) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Union Return *,`2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,Null =~9e12 As #usn7 Order By .0e0[..12.0][...1e-1] Descending,5.9e-12 =~$@usn6 Asc"), + octest:ct_string("Unwind {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) As `5esn` Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),(usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}) Return Distinct ({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)[{``:.1e-1 Ends With $`8esn` Ends With .9e0,`7esn`:.9e-12 Is Not Null Is Not Null}][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])],Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) Union Optional Match `2esn`=((@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]}))"), + octest:ct_string("Create ((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Create `8esn`=((`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})),`7esn`=({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) Union With Distinct *,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Skip $_usn4[..usn2] Limit $`8esn` In 9e-12 In 3.9e-1 Detach Delete ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]),`2esn` Starts With 12 Starts With 10.12e12,.12e-12[07] Union All Remove {#usn7:.0e0[1e1..][01234567..],@usn5:`2esn` Is Not Null Is Not Null}.#usn8?.`7esn`?,`1esn`:``:usn1,$12.`8esn`!.usn2!._usn4"), + octest:ct_string("Unwind Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()] As `8esn` Delete \"d_str\"[12e12..][4.9e12..] Match `3esn`=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) Where $usn1 Starts With 12 Starts With 12e12 Union All Unwind #usn8[`2esn`] As _usn3 Merge (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}) On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1]"), + octest:ct_string("Merge (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) On Create Set Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])._usn3 =_usn4[7][8.1e1],#usn7+=Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()],`1esn`:#usn7:_usn3 Unwind 123456789[Count ( * )..] As `6esn` Union All Remove (usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2})-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12}).@usn5,count(Distinct $`6esn` In $`3esn` In 9e1,.9e1[12]).`4esn` Delete 1000[$#usn7][$``],$`5esn` Contains `2esn` Contains 9e1 Return $`7esn` Contains 0X7 As usn2,$`8esn` Starts With `2esn`"), + octest:ct_string("Remove All(`2esn` In .9e-12[0e0...9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4)._usn3!.`1esn`? Union All Delete .9e1 In 9e-1 In `4esn`,010[..@usn5][.._usn4] Match (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))),`2esn`=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))) Detach Delete Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null)[[`2esn` In .12e-12[$@usn6..5.9e-12] Where 00]][Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12])]"), + octest:ct_string("Match `3esn`=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) Where $usn1 Starts With 12 Starts With 12e12 Unwind $#usn8[...9e1] As `7esn` Optional Match `5esn`=(({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})-[:``|:`3esn` *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})),``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Where .9e-1 Contains .0e0 Contains usn1 Union All Unwind 9e-1 =~6.0e0 =~`` As _usn4 Merge `8esn`=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2})) On Match Set ``+=0.12['s_str'] With All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Union All Return 00[$`6esn`] As `6esn` Order By 10.12e12[Count(*)..] Descending,01[Count(*)..0e-0][7..$`2esn`] Desc,Count ( * ) Ends With `6esn` Ends With .12e12 Ascending Limit `3esn` In 0X7 With Distinct *,true Is Null Is Null As _usn3,All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn` Skip All(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Starts With Filter(_usn3 In ``[$``..] Where .0e0[1e1..][01234567..]) Starts With `3esn`(Distinct) Limit Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Where 123456789 Ends With _usn4"), + octest:ct_string("Delete #usn8(Distinct false[$1000..$@usn6][7..12],123456789 In 9e-12 In false) Starts With `4esn`(Distinct 0e0 Is Null Is Null),.0 Optional Match (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))),(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Where .9e1[Count(*)..$`3esn`] Union All Merge usn1=(:#usn7:_usn3{#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) On Match Set `7esn`+=$`` In $7 In 9e-1,usn1+=$12 Starts With 1e-1 Starts With $@usn5,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).`2esn`?.#usn8! =Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null"), + octest:ct_string("Create ((`3esn` {#usn8:`7esn` Is Null})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})),#usn7=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Optional Match `2esn`=(`` :usn2),((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})) Create ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?]->(:@usn5{usn2:$usn1[$12..]})) Union Optional Match usn1=((#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})<-[#usn8?{`3esn`:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7],@usn6:01[..0.12]}]-(`3esn` :_usn3:_usn3)),(((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}))) Union Merge ((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set @usn6+=123456789[Count ( * )..],`8esn`+=Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * ))[{`4esn`:12e-12 Starts With .9e12 Starts With 0.12}..(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})],#usn7+=12e-12 Starts With .9e12 Starts With 0.12 Merge `5esn`=((({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))) On Match Set Extract(`` In $_usn3 Is Not Null Where $_usn3 In 123.654 In $`8esn`|$`8esn`[$usn2..]).`6esn`!.``! =_usn4 In `3esn` In 7.0e-0 On Create Set {`1esn`:$`1esn`[.9e0][$_usn3]}.`8esn`? =`1esn`[Count ( * )][5.9e-12],`8esn`+=123.654 Ends With Count(*) Detach Delete 9e12[.0e-0],12.0[$1000..][123456789..],Extract(`` In 0.12[3.9e-1]|0X7 Starts With 1e1 Starts With $12)[`7esn`(9.1e-1 Contains 0xabc)..][Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3])..]"), + octest:ct_string("Remove count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0]).#usn8?.#usn8.`` Delete 10.12e12[..1.9e0][..Null] Remove [`2esn` In .9e-12[0e0...9e-1] Where $usn1 =~$999 =~$7].@usn5.``!.`6esn`!"), + octest:ct_string("Delete 0.0[0x0..0.12]['s_str'..false]"), + octest:ct_string("Unwind 00 Is Not Null Is Not Null As `2esn` Return Distinct $123456789[#usn8][.9e-12],All(`` In 0.12[3.9e-1] Where `7esn`)[(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(`4esn` :_usn3:_usn3)<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999})][`8esn`(#usn7 Ends With $#usn7 Ends With #usn7,7.0e-0[`6esn`..])] As `2esn`,.9e12[$usn2..][7..] As `2esn` Order By #usn8[..#usn7][..@usn6] Ascending,{#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}[{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}..] Ascending,.9e-1[12.0] Desc Skip Extract(`` In 0.12[3.9e-1]|0X7 Starts With 1e1 Starts With $12)[`7esn`(9.1e-1 Contains 0xabc)..][Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3])..] Limit false[$1000..$@usn6][7..12] Optional Match (_usn4 :``:usn1) Union All Merge (usn2 :@usn5{`3esn`:$usn1 Is Null})-[_usn3:`2esn`|`7esn`*..{#usn8:`1esn` =~0 =~_usn4,`2esn`:0e-0 In $1000 In .9e1}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}) On Create Set @usn5 ={``:`1esn` In 12e-12 In 1e-1,usn2:_usn3[`2esn`..10.12e12][9e1..true]}[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )]..][Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`])..],`6esn` =usn2['s_str'...9e-1][$7..Count ( * )] On Create Set None(`8esn` In 01234567[..0.0][..false] Where $_usn3 Contains 1e1 Contains .12).``.`8esn`? =8.1e1[$`5esn`][0e0] Return Distinct @usn6[.9e12] As ``,01234567 Starts With `4esn` Starts With 10.12e12 Order By $`7esn` Is Null Is Null Descending,Any(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1) Asc,#usn8[usn1] Asc Remove {_usn3:true[9e-12...0e-0][`5esn`.._usn4]}.usn1.`6esn`?.`2esn`,[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010].`5esn`!.`1esn`?,`7esn`(Distinct $usn2[1e-1])._usn3!.@usn5 Union Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) Where _usn3 Starts With `2esn`"), + octest:ct_string("Match ({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) Union All Merge ((usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]->(:usn1{usn1:Count(*)[0.12..2.9e1]})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})) On Match Set `6esn`:`6esn`:`3esn`,`8esn`:`7esn` On Match Set [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12]].@usn6 =$`8esn`[.9e-1][_usn3] Remove Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`8esn` Starts With `2esn`)._usn3?.#usn8 Union All Create `2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))),#usn7=(({`5esn`:8.1e1 Ends With $0 Ends With 6.0e0,@usn5:9e0[..1e1]})-[`5esn`?:`3esn`|:_usn3{`3esn`:1.9e0 Is Null Is Null,``:$usn2 Ends With `8esn` Ends With _usn3}]-(:``:usn1{_usn3:$#usn7[$_usn4..][.12e-12..],`1esn`:false})<-[`2esn`:`5esn`{usn2:Count(*)[12..][0X0123456789ABCDEF..]}]->(`1esn` {`5esn`:0X7[_usn4..1.9e0][Count ( * )..false],@usn5:123456789 Ends With _usn4}))"), + octest:ct_string("With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],.1e-1 Is Null,.9e12[$usn2..][7..] As `2esn` Limit _usn4 Is Null Is Null Where .12e-12 Ends With $`7esn` Union Create ((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1))),_usn4=((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) With Distinct *,0Xa Ends With #usn8 Ends With usn2 As `6esn` Delete #usn8(Distinct false[$1000..$@usn6][7..12],123456789 In 9e-12 In false) Starts With `4esn`(Distinct 0e0 Is Null Is Null),.0"), + octest:ct_string("Create _usn4=({usn1:usn2 Ends With 10.12e12}),`3esn`=(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))) Union All With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Order By 12.0[.._usn4][..0X7] Descending,`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Ascending Skip 's_str' Ends With 0.0 Ends With .12e12 With *,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2 Order By .1e-1 Contains 1e1 Contains $`6esn` Asc,(_usn4 {`3esn`:1.9e0 Ends With 0Xa Ends With $12,@usn5:.9e12 Is Not Null Is Not Null})<-[`2esn`{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-(`3esn` {`7esn`:9.1e-1 =~@usn5 =~Count ( * )})<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) In None(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]) In `7esn`(12 Ends With $7 Ends With $#usn8) Desc Skip \"d_str\" =~`5esn` =~.12e-12 Limit .9e12[..$usn1][..10.12e12] Where $`6esn`[$_usn4][01] Unwind .9e1 Contains Null As _usn3 Union Unwind Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) As _usn4 Remove ({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})<-[`3esn`?:`5esn`]->(`2esn` ).``!,$12.`8esn`!.usn2!._usn4,None(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]).`3esn`?.@usn6!._usn3! With Distinct *,$7 Contains _usn4 Contains $`1esn`,0e-0[$`2esn`][8.1e1] As @usn5 Order By 123456789[\"d_str\"..] Asc,9.1e-1[$`4esn`..][$`4esn`..] Ascending"), + octest:ct_string("Remove (`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}).#usn7? Merge ((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Match `7esn`=((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})),usn1=((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})) Where 1.9e0 Ends With Count ( * ) Ends With .12 Union Match ((_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})),#usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) With 1e-1 Starts With usn2 Starts With 12e-12 As _usn4 Order By 's_str'[0Xa..12e-12][.9e1..0xabc] Descending,{#usn7:01 Ends With \"d_str\",_usn4:`3esn` In 0X7}[All(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12])..Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]|999[..@usn5][..`1esn`])][Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1)..Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)] Descending Skip Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Limit 12e12 Is Null Is Null Where 9.1e-1 Is Null With Distinct *,0Xa Ends With #usn8 Ends With usn2 As `6esn` Union Merge ((`5esn` :`2esn`:`8esn`)<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})) On Match Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Remove (`` :@usn6:_usn4{`4esn`:00 Is Not Null Is Not Null})-[`1esn`:usn1|:#usn8]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}).`6esn`!.@usn5?._usn4?,@usn5:_usn4,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]).`2esn`!.`8esn`!._usn3!"), + octest:ct_string("Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set All(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null).usn1! =.12e12[`7esn`][#usn8],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `2esn` Starts With $`7esn` Starts With _usn4).`1esn`?.#usn8?.@usn6! =All(`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])[None(`` In $_usn3 Is Not Null)..][All(`8esn` In 01234567[..0.0][..false] Where .12e-12[$@usn6..5.9e-12])..] Union Optional Match @usn6=(((@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[#usn7? *00..123456789]->(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}))),`3esn`=((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Where .9e12 =~`5esn` =~07 Return ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]) Order By `2esn` Starts With 12 Starts With 10.12e12 Desc,0e0[..'s_str'] Descending Skip $`1esn` Starts With Count(*) Starts With $`8esn` Unwind 9e1 Is Not Null As #usn8"), + octest:ct_string("Return Distinct {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null),010 As ``,`1esn`[..0x0][..\"d_str\"] With *,{`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] As `2esn` Order By Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) Ascending Limit $_usn4[1e-1..8.1e1][`1esn`..1.9e0] Union All Merge (((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))),(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}) Where 01234567[6.0e0][$usn2]"), + octest:ct_string("Unwind $`` In $7 In 9e-1 As @usn5 Union All Unwind .9e0 Is Null Is Null As `5esn` Union Remove Any(`8esn` In 01234567[..0.0][..false] Where 12e-12 Contains .9e-1 Contains 9e-1).#usn7,{_usn3:$`8esn` Is Null}.usn2._usn4? Unwind $1000[.._usn3][..#usn7] As `5esn`"), + octest:ct_string("Delete {`3esn`:`1esn`[9.1e-1]} Ends With {`2esn`:7.0e-0[3.9e-1..`1esn`],`7esn`:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]} Ends With None(`5esn` In 12[0xabc..][$0..] Where 1e1 Starts With `8esn` Starts With .9e0),_usn3[$_usn3][usn1] Remove {_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null}._usn4!.`5esn`._usn3"), + octest:ct_string("Unwind $usn2[4.9e12..false][.0e-0..00] As `5esn` Merge _usn4=((`` :usn1)<-[``?:_usn3|`2esn` *0X0123456789ABCDEF..0{`5esn`:`4esn`[0.0..][.1e-1..]}]->({`7esn`:0[$`1esn`..`8esn`]})) On Create Set #usn7+=(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] On Match Set (@usn6 :usn1{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(`7esn` :`2esn`:`8esn`).`4esn`! =01[..0Xa],#usn7 =$999[.1e1..0.0],`3esn`+=Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null"), + octest:ct_string("Merge (`5esn` :`5esn`) On Create Set _usn3 =5.9e-12 Contains `3esn` Contains Null Unwind Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3) Starts With `2esn`(Distinct) Starts With (`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}) As `6esn` Create `5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})),(`1esn` :``:usn1{_usn4:.1e1 Is Null Is Null})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}) Union Create (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[{#usn8:.0e0[1e1..][01234567..],`6esn`:123.654 Ends With 0Xa Ends With .12e12}]-(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})"), + octest:ct_string("Return Distinct Null[`2esn`..] Order By Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null Descending Limit {_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Merge #usn8=(`6esn` :``:usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[_usn4:`6esn`|#usn7]-(`8esn` $12) On Match Set _usn4:#usn7:_usn3,Extract(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0|`6esn` In 9e-12)._usn4? =0Xa Ends With #usn8 Ends With usn2 Remove {usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}._usn4! Union Return *,#usn8 In $#usn8 In \"d_str\",`` Is Not Null Is Not Null Order By `3esn`[`4esn`..Null][$usn1..`5esn`] Desc,`5esn` Contains `6esn` Asc,9e-12 In 5.9e-12 Asc Limit .1e1 Starts With 9e0 Unwind `4esn`(Distinct `1esn`[..0x0][..\"d_str\"],false[..12e-12][...9e1]) Is Null Is Null As `3esn` Merge #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})) On Match Set All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 999 =~0Xa =~9e0).`1esn`?.`2esn`? =()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] On Create Set Any(`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]).usn1!.``?.``? =false =~4.9e12,usn1 =7.0e-0[3.9e-1..`1esn`] Union All Detach Delete Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null)[[`2esn` In .12e-12[$@usn6..5.9e-12] Where 00]][Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12])] Delete Null Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null),None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4),$usn1 Starts With 00 With Distinct *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Order By .9e-12[12e12][.0e0] Asc,0.0[4.9e12..][00..] Ascending,$`1esn` Starts With Count(*) Starts With $`8esn` Ascending Skip {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Count(*)[9e-12..0Xa][$123456789..0.0])..Any(`2esn` In .9e-12[0e0...9e-1] Where `3esn` Contains 01234567 Contains .9e-12)][All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e0 In 9.1e-1 In $123456789)..Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)] Where .0 Is Null Is Null"), + octest:ct_string("Unwind {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null As `5esn` Union Create (`1esn` :`5esn`)-[:#usn8|:`4esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}]-(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}),_usn4=(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}) With Distinct *,.0e-0[0e0..00][.9e1..12] Order By 4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Ascending Skip 0x0 Starts With $`5esn` Starts With 9e-12 Detach Delete #usn7 Ends With Count ( * ) Ends With @usn6,Extract(usn2 In .0e0[$`6esn`..] Where 010|0e-0 Contains _usn4 Contains 1e-1)[{#usn7:_usn4 Ends With .0 Ends With 7,#usn8:`` Ends With .9e-1 Ends With 9e-12}],`5esn` Contains 1.9e0 Contains 9e0 Union With *,{`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As #usn7,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Limit [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]][{`2esn`:$`8esn` In 9e-12 In 3.9e-1}..{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}][Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..])..Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Merge (((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))) On Create Set `7esn` =$`7esn` Is Null Is Null,Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1]|12 Contains usn2 Contains $usn2).usn2? =`1esn` Ends With 7.0e-0 Ends With $usn1,None(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12)._usn4 =.1e-1[@usn6..]"), + octest:ct_string("Create (:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}) Delete 12.0[$1000..][123456789..] With Distinct 11.12e-12 =~{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]} =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|0[..$@usn5]),$123456789 Is Not Null,1000 Starts With 11.12e-12 Starts With 01234567 Skip 12 In 1000 In \"d_str\" Limit All(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])[..(:_usn4{`4esn`:9e1 Contains 4.9e12 Contains .9e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})][..(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)<-[?{_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})] Where 12.0 Contains $_usn4 Contains $usn2 Union Unwind 123456789[Count(*)] As usn1"), + octest:ct_string("Optional Match (`` :`3esn`)-[@usn6:#usn7|:`8esn` *0Xa..7]-(:`2esn`:`8esn`{`6esn`:7.0e-0 Is Null Is Null,`6esn`:999[0.12..8.1e1]})<-[`8esn` *1000]->(#usn8 ),`1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) Where 0Xa In 0.12 In $#usn7 Remove {#usn8:_usn4 Ends With .0 Ends With 7,`6esn`:0X7 Starts With 1e1 Starts With $12}.@usn5!,Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`).`6esn` Return *,`3esn` Contains 01234567 Contains .9e-12 Skip Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]) In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )] In `8esn`(Distinct $_usn3 Contains 1e1 Contains .12) Limit $1000 Union Merge ((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) On Create Set #usn7+=$#usn7 Starts With #usn7,_usn3 =`5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]],`8esn` =07 Ends With @usn6 Ends With _usn3 On Match Set #usn7+=10.12e12[Count(*)..],#usn8 =@usn6[.9e12..0e0] Optional Match @usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),`3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})) Union All Detach Delete {#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}[{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}..] Merge #usn7=((:`4esn`:`7esn`{`7esn`:9e-12 In usn2,usn2:0x0[`5esn`][$`5esn`]})) On Create Set _usn4+=\"d_str\"[$123456789..][0X7..],[`8esn` In 12.0 Contains $_usn4 Contains $usn2].`1esn`? =None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567) Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1) Starts With (:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Create Set _usn3:#usn7:_usn3 Optional Match usn1=(:`3esn`{_usn4:7.0e-0 =~$12 =~5.9e-12}) Where $12 Contains $`7esn` Contains .0"), + octest:ct_string("Create `3esn`=(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`),(((:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]})-[`8esn` *..7{usn2:12.0 Contains $_usn4 Contains $usn2}]-(`8esn` :`7esn`{`6esn`:_usn4 Is Not Null Is Not Null})))"), + octest:ct_string("Return Distinct *,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"] Starts With ``(12.0[`8esn`],4.9e12 In 5.9e-12 In .9e0) Starts With Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]),$12 Contains $#usn8 Contains 01 Unwind 9e12[.0e0..] As `5esn` Match ``=((@usn6 :`5esn`{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *0x0..{`3esn`:12[0xabc..][$0..],@usn5:`6esn` Is Not Null Is Not Null}]->({#usn8:7.0e-0[3.9e-1..`1esn`],usn1:.0e0[..1e1][..$1000]})-[:`4esn`|:@usn5 *01234567$_usn4]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})),(((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))) Union Merge _usn4=((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Match Set Extract(`` In $_usn3 Is Not Null Where $_usn3 In 123.654 In $`8esn`|$`8esn`[$usn2..]).`6esn`!.``! =_usn4 In `3esn` In 7.0e-0"), + octest:ct_string("Remove `6esn`($12 Contains $#usn8 Contains 01).`3esn`?.@usn6?,Single(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1).#usn8!,{@usn5:$`5esn` Is Null Is Null,#usn8:$@usn5[..1e-1]}.`5esn`!.usn1 Create `5esn`=(`5esn` :`1esn`),(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))) Merge `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})) Union Return *,`3esn` Contains 01234567 Contains .9e-12 Skip Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]) In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )] In `8esn`(Distinct $_usn3 Contains 1e1 Contains .12) Limit $1000 Unwind $`6esn` In `2esn` As _usn4"), + octest:ct_string("Return *,`8esn` Is Null As `1esn` Union All Merge `6esn`=((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) On Create Set `2esn`+=Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],#usn8 =.9e-12[0e0...9e-1] Union Merge (`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[_usn3:usn1|:#usn8 *07..]-({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}) On Create Set `2esn` =$999[$usn1...0e0] On Match Set All(`` In $_usn3 Is Not Null Where $`` =~$_usn3).`3esn`? =$`8esn`[$usn2..] Return Distinct 7.0e-0 Is Null Is Null,0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7] As `5esn`,usn1(Distinct true Starts With 2.9e1 Starts With 9e1)[Extract(usn2 In .0e0[$`6esn`..] Where 9.1e-1[Count(*)..][5.9e-12..]|.0e0[$`1esn`][.9e-12])..][Extract(`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6|$_usn4 Contains 123456789)..] Skip (`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :``:usn1{usn2:12.0[..123456789][..01]}) Contains {`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12} Contains {`7esn`:`3esn` Starts With _usn4} Limit {@usn5:.0 Is Null Is Null}[Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0|01 Ends With \"d_str\")][[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|0X0123456789ABCDEF[1.9e0]]] Delete ``(0X0123456789ABCDEF Contains 8.1e1,Count ( * )[..123456789][...0e0])[..All(usn2 In .0e0[$`6esn`..] Where .0e0 In 10.12e12 In $`5esn`)][..(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})],All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)],`2esn` Starts With $`7esn` Starts With _usn4"), + octest:ct_string("With _usn4 In `3esn` In 7.0e-0,`7esn` Is Not Null Is Not Null,`8esn` As usn2 Order By [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null Ascending,$usn1[$usn1..] Descending,9e-12 In 0X0123456789ABCDEF In $999 Descending Remove ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(usn1 :usn1)<-[@usn5?:`8esn`|:`2esn` *0..010]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}).`5esn`!.usn2!.`1esn`! Match (`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Union All With {usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])],@usn5 Ends With 's_str' Ends With 01 As `7esn` Limit 1000[_usn3..`8esn`] Remove [`` In 0.12[3.9e-1] Where 07 =~7.0e-0 =~`8esn`].`8esn`"), + octest:ct_string("Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Unwind {@usn6:\"d_str\" =~9e-12 =~`5esn`}[#usn8(Distinct 999 Starts With .9e12 Starts With 3.9e-1,true Contains 0x0)..[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010]][All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)..{`4esn`:0 Starts With 0Xa Starts With $0}] As `8esn` Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Where $`6esn` Starts With `4esn`"), + octest:ct_string("Unwind Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] As `` Union Match `3esn`=((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})),_usn4=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[@usn6?:`5esn`]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) Union All Unwind .9e12 =~`5esn` =~07 As `5esn` Remove Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2|0e-0[...9e12]).@usn5?,All(`` In 0.12[3.9e-1]).#usn8!.@usn5!.`2esn`!,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7).``!.`7esn`?.`6esn`! Optional Match `5esn`=((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]})),@usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))) Where $@usn5 In .9e1 In $``"), + octest:ct_string("Unwind $123456789 Starts With Count ( * ) As `8esn`"), + octest:ct_string("Return Distinct `2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,1e1 In .1e-1 In .0 Order By Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) Asc Skip 00 =~.9e-12 =~usn1 Limit 12e12 Ends With usn1 Union With Distinct $`` In $@usn6 In 3.9e-1 As usn1 Order By (:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] Desc,[`2esn` In .12e-12[$@usn6..5.9e-12] Where $`6esn` Starts With `4esn`|@usn6 In 's_str'] Ends With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Asc,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]) Descending Skip Null[..123456789][..`8esn`] Where $`8esn`[$``..$`1esn`][9e-12..$7] With Distinct *,Count(*)[..Count(*)][..9e0] Order By 07 Starts With usn1 Starts With 010 Ascending,7.0e-0[..$`7esn`][..Null] Descending,$usn2[8.1e1...9e-1][.1e-1..11.12e-12] Desc Skip Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] Limit 999 Ends With $123456789 Ends With $_usn4 Where 10.12e12[Count(*)..] Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By $7 In .9e1 In $`` Desc,$`6esn` Starts With `4esn` Descending,8.1e1 Starts With .9e12 Starts With `7esn` Desc Skip 12.0 Is Null Is Null Union Delete .9e12 Starts With .9e12 Starts With `7esn`,$#usn7 Is Not Null Detach Delete .0e-0[3.9e-1][.12e12] Merge ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})) On Create Set @usn5+=_usn4 Ends With .0 Ends With 7,None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0e-0 Contains _usn4 Contains 1e-1).`6esn`! =Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) On Create Set [_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8].`5esn`! ={_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12),#usn8 =(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..]"), + octest:ct_string("Optional Match `7esn`=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}),((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Where .0e0 Is Null Is Null Union Delete Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),usn2 =~`7esn` =~11.12e-12,1.9e0[$12][``]"), + octest:ct_string("Unwind 0e0 In 1e1 In 8.1e1 As #usn8 Optional Match `3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where .12e-12[$@usn6..5.9e-12]"), + octest:ct_string("Unwind @usn5 Ends With 's_str' Ends With 01 As `7esn` With .9e0 Is Null Is Null As #usn7,$12[`1esn`][1e1] As @usn6,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2 Order By 9e-1 =~6.0e0 =~`` Descending,999[0.12..8.1e1] Ascending Limit (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null Where .9e1[...12e12] With 1e-1 =~0.0 =~9.1e-1 As usn1,Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null,Count(*) In .9e-12 In $usn1 As _usn4 Order By $`7esn`[..12.0][..0e0] Asc,.9e0[$7][1e1] Descending,8.1e1[usn2..$1000][$7..0x0] Descending Skip Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] Limit `1esn`[11.12e-12..] Where $`2esn` Contains false Contains 123456789 Union Delete [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..],.12e12 Starts With 0xabc Starts With 12.0,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..]|$`5esn` Starts With 0X7 Starts With 1e1) Is Null Is Null Create (usn1 :`2esn`:`8esn`)-[`7esn`?:`5esn`]->(`1esn` :`6esn`:`3esn`)"), + octest:ct_string("Optional Match `7esn`=((`7esn` {`3esn`:.9e-1 Is Null})<-[`2esn`? *..7]->(#usn8 {_usn3:$_usn4 Contains .12e-12})) Merge (usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2}) Delete $usn1[$7..][$0..]"), + octest:ct_string("Return *,$12[.9e-1] As `6esn`,`6esn`[010...9e-12] As `5esn` Order By 123456789[\"d_str\"..] Descending,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending,12e-12[`7esn`..][5.9e-12..] Asc Create ((`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})<-[`8esn`?:`3esn`|:_usn3*..{@usn5:$0 Starts With 010}]-(`3esn` :@usn5)<-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(`1esn` )) Remove Filter(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]).``,{@usn5:6.0e0 Is Not Null}.usn1"), + octest:ct_string("Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Optional Match `7esn`=((#usn7 )) Where 0.12[07..3.9e-1] Unwind 0X0123456789ABCDEF Contains $`6esn` Contains $123456789 As usn2 Union Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Optional Match `7esn`=((#usn7 )) Where 0.12[07..3.9e-1] Unwind 0X0123456789ABCDEF Contains $`6esn` Contains $123456789 As usn2 Union All Delete All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)],#usn7[10.12e12..][\"d_str\"..],(#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Unwind 123456789 Contains .1e-1 Contains .12e12 As `6esn`"), + octest:ct_string("Create #usn8=(usn1 :_usn3:_usn3) Remove `3esn`($`5esn`[7..],9e-1[0X0123456789ABCDEF][0]).usn2,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 11.12e-12 Is Null Is Null).`6esn`?,{#usn8:_usn4 Ends With .0 Ends With 7,`6esn`:0X7 Starts With 1e1 Starts With $12}.@usn5! Union Unwind {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null As `` Remove (`8esn` {`3esn`:#usn8[`2esn`]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1).`1esn`!.`5esn`?.@usn5! Union All Remove Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]).`2esn`,All(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]).`3esn`._usn3!,Single(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]).`3esn`.`7esn` Delete 123.654 Ends With 0Xa Ends With .12e12,0X7[$7..] With $_usn3 In 123.654 In $`8esn` As `2esn`,@usn5[$_usn3..],.1e-1 Contains 1e1 Contains $`6esn` As `5esn` Order By $usn1 Contains `7esn` Contains .9e12 Ascending,8.1e1 Ends With $0 Ends With 6.0e0 Descending,9e12[...12e12][..$`2esn`] Descending Limit `3esn`[`4esn`..Null][$usn1..`5esn`]"), + octest:ct_string("Create `8esn`=(({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),usn1=((@usn5 :usn1{usn1:.9e1[12]})) Delete Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null)[#usn7(`4esn`[0.0..][.1e-1..])..@usn6(_usn4 Is Not Null Is Not Null)],[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12]][None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null)..[`5esn` In 12[0xabc..][$0..] Where .12e12[$12..4.9e12][11.12e-12..9e12]]] Remove .12e-12.`2esn`"), + octest:ct_string("Remove {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}.usn2!,{``:7.0e-0 Is Null Is Null,@usn5:9e-12[$0][$`4esn`]}.`1esn`?.`3esn` With _usn3[`2esn`..][0x0..] As usn1 Order By 01234567 Starts With `4esn` Starts With 10.12e12 Ascending,0Xa In 0.12 In $#usn7 Descending,$999 Is Not Null Desc Skip $@usn5 Ends With $@usn6 Ends With \"d_str\" Limit (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Where 11.12e-12 =~$`4esn` =~.12e12 Return Distinct *,9e0[.0e-0] As _usn4 Skip 0X7[`4esn`..][`3esn`..] Union All Optional Match ((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})),(((`2esn` :`6esn`:`3esn`{@usn5:Count(*)[.0e0]})-[usn1?:usn1|:#usn8*..]-(`7esn` {`3esn`:.9e-1 Is Null})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))) Where 0x0 =~$7 =~Null Merge `1esn`=(((`8esn` {@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})-[`3esn`?:`2esn`|`7esn`*..]-(:_usn4)<-[``?:#usn8|:`4esn`]-(:usn1{@usn5:Count(*)}))) On Create Set All(_usn4 In Count(*)[9e1..][12e-12..] Where #usn8[7..@usn5]).`2esn`?.#usn7!.#usn7 =_usn4 Ends With .0 Ends With 7 On Match Set _usn3+=`1esn` =~0 =~_usn4,`3esn` =`5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]] Remove {_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}.`1esn`"), + octest:ct_string("Create _usn3=(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Unwind 0x0[01234567..'s_str'] As `` Create ((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Union Unwind .0 Is Null Is Null As _usn4 Remove usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4!,@usn6($`3esn`,$`1esn`[`3esn`..]).``?,`7esn`($`3esn` Ends With 010 Ends With $`7esn`,01234567[6.0e0][$usn2])._usn3!.@usn5.`5esn`? Match (:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}) Union Remove Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12).`5esn`? Merge usn2=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}) Merge _usn4=(({_usn3:$`5esn`[7..]}))"), + octest:ct_string("Detach Delete 9e-12 In usn2 Unwind [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) As usn1 Return Distinct Null[.12e-12] As #usn7 Order By {`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] Descending,[_usn4 In Count(*)[9e1..][12e-12..] Where $_usn3[1e-1..]][[`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0]][None(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)] Ascending,(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[`7esn`?]->(`5esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(#usn8 {_usn3:$_usn4 Contains .12e-12}) Ends With `4esn`($usn2 In usn1 In 1e-1,01[Count(*)..0e-0][7..$`2esn`]) Desc Skip 12e12 Is Not Null Limit 0x0 =~$7 =~Null Union All Create #usn8=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]}))"), + octest:ct_string("Detach Delete 0e0 Ends With 0X7 Ends With .1e1,0[true..$7],[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null Create @usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),`5esn`=(((:@usn5{usn2:$usn1[$12..]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)<-[`8esn`?:`7esn`|@usn6 *..7]->(`5esn` {`2esn`:`1esn` =~0 =~_usn4}))) Unwind Filter(`` In $_usn3 Is Not Null Where 7 Is Null Is Null) =~{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} As `2esn` Union All Return Distinct *,`7esn` Ends With `7esn` Ends With $`3esn` Order By `1esn`[11.12e-12..] Asc Limit All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1) =~_usn3(Distinct 5.9e-12[9e0..],$@usn5 Is Null)"), + octest:ct_string("Match #usn7=(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[?{#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0}]-({`6esn`:07 Ends With @usn6 Ends With _usn3}) Where $`5esn`[true] Create ({`5esn`:07 Starts With usn1 Starts With 010})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}),({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) Union All Create @usn5=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Unwind 1.9e0 =~0x0 As @usn5 Create @usn5=(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}),#usn8=({_usn3:$`8esn` Is Null})"), + octest:ct_string("Unwind @usn5 In $1000 In 07 As #usn7 Union All Merge (_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ) On Create Set `2esn`+=Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],#usn8 =.9e-12[0e0...9e-1] On Create Set ``+=.1e1[..0][..010],`1esn` ={`8esn`:$`` Is Null Is Null}[Extract(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..])..][Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)])..],`4esn` =#usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null"), + octest:ct_string("Merge `8esn`=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2})) On Create Set `3esn` =.9e-12[9e1..8.1e1],Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]).#usn7.@usn6._usn3! =$`8esn`[.9e-1][_usn3] On Create Set [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]].`8esn`.@usn6? =07[..@usn6][..$`4esn`],Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]).`3esn` =Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07),usn1:`8esn`:#usn7 Merge #usn7=((:`4esn`:`7esn`{`7esn`:9e-12 In usn2,usn2:0x0[`5esn`][$`5esn`]})) On Create Set `2esn` =(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)],`3esn` =9e1 Contains 4.9e12 Contains 123456789 On Create Set `6esn` =.1e1 =~10.12e12 Union All Create (`1esn` :`6esn`:`3esn`) Detach Delete 0Xa Starts With .0,$`1esn`[.9e0][$_usn3],$`2esn`[8.1e1] Remove [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]].usn2,Extract(usn2 In .0e0[$`6esn`..] Where $123456789 =~12 =~7).`4esn`.`2esn`!.@usn6!"), + octest:ct_string("Delete .1e-1 Ends With $_usn3,.0e0[8.1e1..0.12]"), + octest:ct_string("Return Distinct $usn1 Is Not Null Is Not Null As `5esn`,#usn7 =~0.0 =~usn2 As _usn4 Skip _usn4 In `3esn` In 7.0e-0"), + octest:ct_string("With Distinct $`` In $@usn6 In 3.9e-1 As usn1 Order By (:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] Desc,[`2esn` In .12e-12[$@usn6..5.9e-12] Where $`6esn` Starts With `4esn`|@usn6 In 's_str'] Ends With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Asc,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]) Descending Skip Null[..123456789][..`8esn`] Where $`8esn`[$``..$`1esn`][9e-12..$7] With Distinct *,Count(*)[..Count(*)][..9e0] Order By 07 Starts With usn1 Starts With 010 Ascending,7.0e-0[..$`7esn`][..Null] Descending,$usn2[8.1e1...9e-1][.1e-1..11.12e-12] Desc Skip Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] Limit 999 Ends With $123456789 Ends With $_usn4 Where 10.12e12[Count(*)..] Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By $7 In .9e1 In $`` Desc,$`6esn` Starts With `4esn` Descending,8.1e1 Starts With .9e12 Starts With `7esn` Desc Skip 12.0 Is Null Is Null Union Optional Match (({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) Union Optional Match `2esn`=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))),((`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010})) Where `` Contains 12.0"), + octest:ct_string("With Distinct $``[7..] As #usn8 Order By All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Desc,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] Ascending,.9e0 In 9.1e-1 In $123456789 Desc Where $`1esn`[`3esn`..] With Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]) As #usn7,Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]) As usn2 Where #usn7[..0X0123456789ABCDEF] Union All With Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]) As #usn7,$@usn5[..1e-1] As @usn5 Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,12e12[..2.9e1][...12e12] Asc Skip $_usn4 Is Not Null Where `4esn`[$1000..$``][$_usn4..$_usn4]"), + octest:ct_string("Unwind $`` =~$_usn3 As @usn5 Union All Unwind .9e1 Contains `8esn` As `1esn` Union All Create ((usn1 :usn2{``:$`` Is Not Null})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})),((`7esn` {usn2:12.0[..123456789][..01]})-[_usn3{#usn7:Count(*)}]->(`2esn` :_usn3:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``}))"), + octest:ct_string("Return Distinct 0[..$@usn5] As `` Skip $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Limit 1e1 Is Not Null Is Not Null"), + octest:ct_string("With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2 In usn1 In 1e-1) =~{#usn8:00[0e-0...9e-1][1e-1..``]} As #usn8,$@usn5[$#usn8..][_usn3..] As `8esn`,1.9e0 Starts With 's_str' Starts With 9.1e-1 As _usn4 Where 's_str' Is Null Delete {@usn6:\"d_str\" =~9e-12 =~`5esn`}[#usn8(Distinct 999 Starts With .9e12 Starts With 3.9e-1,true Contains 0x0)..[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010]][All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)..{`4esn`:0 Starts With 0Xa Starts With $0}] Unwind $12[.9e-1] As @usn5 Union All Optional Match `2esn`=(((usn2 {_usn4:$999 Ends With .9e-12})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]}))),(((`5esn` :`2esn`:`8esn`)-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(`3esn` {_usn4:$`2esn` Starts With 0x0}))) Where _usn4 Ends With .0 Ends With 7 Remove Any(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`).`2esn`?.`6esn`,All(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count ( * ) Ends With `6esn` Ends With .12e12).@usn5.#usn7!.@usn6! Unwind All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) As `1esn`"), + octest:ct_string("With Distinct *,false[$1000..$@usn6][7..12],.0e0[8.1e1..0.12] Where $`3esn` Is Not Null Is Not Null Union All Unwind 12[0..usn2] As `7esn` Union Optional Match @usn5=((@usn6 :`6esn`:`3esn`)<-[`6esn`? *..0xabc{``:$_usn4[Null]}]->(:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Where .12e12[`7esn`][#usn8] Match @usn6=(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]}),`8esn`=(`` {_usn4:9e0[..1e1]}) Delete None(_usn3 In ``[$``..] Where .0e0 In 10.12e12 In $`5esn`) Is Null Is Null,@usn5 Is Null Is Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})"), + octest:ct_string("Detach Delete 9e12[.0e-0],12.0[$1000..][123456789..],Extract(`` In 0.12[3.9e-1]|0X7 Starts With 1e1 Starts With $12)[`7esn`(9.1e-1 Contains 0xabc)..][Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3])..] Remove All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]).@usn5!._usn4!.#usn8? Union All Remove @usn5().@usn5,5.9e-12.``!.`6esn`!,Extract(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]).usn1"), + octest:ct_string("Create `6esn`=(((#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`3esn` {#usn8:`7esn` Is Null})-[@usn6?:@usn5]-(`4esn` :usn1{`1esn`:0X0123456789ABCDEF Contains 8.1e1}))),(($@usn6)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[#usn8?:#usn7|:`8esn` *..0X7]->(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999})) Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0).`5esn`?,.9e-1.`6esn`?,Any(_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]).usn1.@usn6?.#usn8! Delete 's_str' Ends With $usn1 Union Create ``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Remove Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1).`1esn`?.``.usn1,Single(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1])._usn3.`2esn`,_usn3(.12[.0e-0..],1000[Null..]).#usn7 Delete .9e12 Is Not Null Is Not Null Union All Match `7esn`=((`8esn` {@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})),({usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))"), + octest:ct_string("Remove All(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null).`3esn`!.`4esn`? Remove None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).``.`3esn`? Union Remove count().`1esn`!._usn4?.`7esn`!,None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12).@usn5!.`2esn`!,[`5esn` In 12[0xabc..][$0..] Where $usn2[0e0][$7]|Count ( * )[`7esn`..]].``._usn4!.`5esn`"), + octest:ct_string("Merge (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))) On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 Union All With Distinct *,Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null,$`7esn` Contains 0X7 As usn2 Order By Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Limit All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..])[`8esn`()] Where #usn7[10.12e12..][\"d_str\"..] Return $`7esn` Contains 0X7 As usn2,$`8esn` Starts With `2esn` Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})),((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3))"), + octest:ct_string("Unwind 0e0 Ends With `7esn` Ends With usn1 As #usn7 Return Distinct {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As ``,$`8esn`[12.0..][4.9e12..],.1e-1 Ends With @usn6 As @usn6 Order By false Starts With 3.9e-1 Asc,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Descending With *,#usn7[12e-12..][$`2esn`..] As @usn6,$`` Contains 00 Contains 123456789 As `3esn` Limit All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0)[Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"])..Single(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1])][{usn1:9e-1 Starts With 123.654 Starts With .9e1,#usn8:$_usn4 Is Not Null}..(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})]"), + octest:ct_string("Unwind usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]) As usn2 Return Distinct {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null),010 As ``,`1esn`[..0x0][..\"d_str\"] Optional Match (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Where 999[0.12..8.1e1] Union With *,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"] Starts With ``(12.0[`8esn`],4.9e12 In 5.9e-12 In .9e0) Starts With Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]),$12 Contains $#usn8 Contains 01 Where $`4esn` =~0e0 Optional Match (((:@usn5)-[#usn8 *0..010{_usn4:Count(*)[.0e0..][#usn7..]}]->(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[?:``|:`3esn`{#usn8:.9e1[Count(*)..$`3esn`]}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}))),_usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`)"), + octest:ct_string("Unwind $`2esn`[$1000][2.9e1] As usn2"), + octest:ct_string("With .0e0 Is Null Is Null As _usn4,`6esn`(usn1 Is Not Null,123456789 =~6.0e0)[Single(_usn3 In ``[$``..] Where Null[..07])..][{_usn3:010[9e0..9e1][$_usn4..$12],`3esn`:7.0e-0[$usn2..0.12][$``..0]}..] As usn1,#usn8 In $@usn6 Order By 8.1e1 Ends With $0 Ends With 6.0e0 Descending,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null Ascending,Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\") Ascending Skip $`2esn` In 0X7 In 3.9e-1 Limit 0x0[`5esn`][$`5esn`] Create ((#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})) Union Remove `8esn`:`4esn`:`7esn`,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1])._usn4?.`8esn`,(`6esn` :`2esn`:`8esn`{`6esn`:.1e-1[..12e12]})<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}).@usn5? Create usn1=({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}),#usn8=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Optional Match ((#usn8 {_usn3:$usn2 In usn1 In 1e-1})),usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union Create (({@usn6:0Xa[9e0]})) Merge (((`` :`5esn`)-[?:@usn6|:_usn3 *999..]->(:`5esn`{`1esn`:.1e1 Starts With `1esn` Starts With 6.0e0})-[_usn3:_usn4|`1esn`{`2esn`:123456789 In 9e-12 In false}]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}))) On Match Set `8esn`:#usn8,Filter(`` In $_usn3 Is Not Null Where 7 Is Null Is Null).#usn7! ={`5esn`:false,_usn3:.9e-12 Starts With .0e-0 Starts With usn2} Is Null On Match Set (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]->(:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}).`3esn`!.#usn7._usn3! =`5esn`[$`4esn`] With Distinct 5.9e-12[.1e1][$#usn8] As `5esn`,`4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Ends With None(`` In $_usn3 Is Not Null Where .9e1[...12e12]) As _usn4,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) Limit 1e1 Ends With Null Ends With `7esn` Where $0 Contains .12e-12"), + octest:ct_string("Merge ((:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]})) With Distinct *,$12 Contains $#usn8 Contains 01 As usn1 Order By 0X7[`4esn`..][`3esn`..] Ascending,$#usn7 In .12e-12 Ascending,$`6esn` In `2esn` Ascending Create (`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),((`6esn` :_usn4)<-[`7esn`*..]->(`` :@usn6:_usn4)-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Union All Return Distinct 10.12e12[12e12..0X7] As #usn8,.9e-12[01][Count(*)] As _usn3 Union All Remove Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]).`2esn`,All(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]).`3esn`._usn3!,Single(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]).`3esn`.`7esn` Delete 123.654 Ends With 0Xa Ends With .12e12,0X7[$7..] With $_usn3 In 123.654 In $`8esn` As `2esn`,@usn5[$_usn3..],.1e-1 Contains 1e1 Contains $`6esn` As `5esn` Order By $usn1 Contains `7esn` Contains .9e12 Ascending,8.1e1 Ends With $0 Ends With 6.0e0 Descending,9e12[...12e12][..$`2esn`] Descending Limit `3esn`[`4esn`..Null][$usn1..`5esn`]"), + octest:ct_string("With Distinct *,Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) As #usn7,.12e-12 Ends With $`7esn` Where .9e-1 Ends With `8esn` Optional Match ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),@usn5=((:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(`4esn` :`2esn`:`8esn`)-[`8esn`:`4esn`|:@usn5{#usn7:Count(*)}]-({`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Union All With *,(:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})<-[``:`8esn`|:`2esn` *12..0Xa]-(usn2 :@usn5{`3esn`:$usn1 Is Null})[..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 8.1e1 Is Null)][..#usn7(Distinct usn2 Ends With .0)],Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]) Skip Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) Where 1000[$`6esn`..12.0]['s_str'..$`3esn`] Create `7esn`=((`2esn` :usn2)-[usn2:`4esn`|:@usn5 *01234567]->(:`5esn`{`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567})<-[:#usn8|:`4esn`{usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})),@usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) Where _usn3 Starts With `2esn` Union Remove [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where true Contains 0x0|$@usn6 Is Not Null Is Not Null].`8esn`,`2esn`:`3esn`,[`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1|`6esn`[..$@usn6][..$`1esn`]].`8esn`? With Distinct *,[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},07 =~_usn4 =~.9e12 As `` Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending Where .9e-1[12.0] Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) On Match Set `5esn` =$`2esn` Starts With #usn7 Starts With 12e12,#usn7(07[.0e0][3.9e-1]).`3esn` =$``[`6esn`][00] On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1"), + octest:ct_string("Optional Match @usn5=($`8esn`)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[``?:@usn5]->(_usn3 :#usn8),(((_usn3 :_usn3:_usn3)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})-[#usn7? *00..123456789]->(usn1 :@usn6:_usn4))) Where 0[$999..] Unwind $`1esn`[.9e0][$_usn3] As `4esn`"), + octest:ct_string("Unwind true[`6esn`..10.12e12] As `7esn` With [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Order By Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Desc Limit .0e0 Is Null Is Null Where 7.0e-0 Is Null Is Null Unwind 9e12 Is Null Is Null As `8esn` Union All Detach Delete 123.654 In $`5esn` In 9e-1,999[..@usn5][..`1esn`],12.0[`8esn`] Delete {usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Delete 0X7[Count(*)][.9e0],`1esn` In 12e-12 In 1e-1,010 Union All Remove {`3esn`:$`` Is Null Is Null}.`1esn`!.`2esn`.`7esn`?"), + octest:ct_string("With $`2esn`[$1000..][$@usn5..],`7esn` Ends With `7esn` Ends With $`3esn` Limit $0 =~01234567 Where 9e1 Ends With .9e0 Merge `2esn`=((`5esn` :`4esn`:`7esn`)) On Create Set Any(`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]).usn1!.``?.``? =false =~4.9e12,usn1 =7.0e-0[3.9e-1..`1esn`] Union All With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null)[[`2esn` In .12e-12[$@usn6..5.9e-12] Where 00]][Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12])] Limit [usn1 In 7.0e-0[.._usn4][..0X7]|7.0e-0 Is Null Is Null] =~#usn7 =~`4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Union All With Distinct *,(`2esn` {usn2:7.0e-0 Starts With $7 Starts With true})-[{usn2:$`8esn`[#usn7][.9e1],`7esn`:@usn5[$``]}]->(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}) Is Not Null Is Not Null,{`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null) As `8esn` Skip .0 Where 8.1e1 Is Null Is Null"), + octest:ct_string("Merge `7esn`=(`7esn` :usn1)-[`6esn`? *0Xa..7{`4esn`:$`2esn` Ends With $`8esn`}]->({usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]-(`1esn` :``:usn1{_usn4:.1e1 Is Null Is Null}) On Match Set `6esn`+=$`2esn` Starts With .12e-12 Starts With .0e-0,_usn4+='s_str' Ends With $usn1,#usn8:_usn4 On Match Set Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 999 Starts With .9e12 Starts With 3.9e-1).`6esn`.@usn6!._usn4? =`4esn`[0.0..][.1e-1..],Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).@usn5! =9e1 Contains 4.9e12 Contains .9e0,`1esn`+=00[0e-0...9e-1][1e-1..``] Union Return *,Extract(`5esn` In 12[0xabc..][$0..] Where 9e-1[0X0123456789ABCDEF][0]|.9e1[..Count(*)][..7.0e-0]) Is Null Is Null As _usn3 Order By {`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] Ascending Limit 123.654 In $`5esn` In 9e-1 Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Where 0X7[$999...12e12][12..`2esn`] With All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Where .9e1 Contains Null Union All Detach Delete `` =~$`5esn`,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12)[{_usn4:@usn6 In 3.9e-1 In 9e-12}][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]|10.12e12[12e12..0X7])],`` Ends With .9e-1 Ends With 9e-12"), + octest:ct_string("Merge ((@usn6 {#usn8:12 Contains usn2 Contains $usn2})) On Match Set `3esn`+=123456789 Ends With _usn4,`7esn` =`1esn` Ends With 7.0e-0 Ends With $usn1,usn1 =Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null On Create Set `5esn` =(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[`7esn`?]->(`5esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(#usn8 {_usn3:$_usn4 Contains .12e-12}) Ends With `4esn`($usn2 In usn1 In 1e-1,01[Count(*)..0e-0][7..$`2esn`]) Return *,123456789 =~6.0e0 As usn1,Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) As #usn7 Limit 999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] With Distinct 2.9e1 As usn2,.1e-1[$`2esn`..][$`1esn`..] Order By `2esn` Starts With $`7esn` Starts With _usn4 Ascending,0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7] Asc,.12e12[$0] Asc Skip All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..])[`8esn`()] Where 8.1e1 Contains 0e-0 Contains $_usn3"), + octest:ct_string("Remove @usn6:usn1,Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $@usn6 Contains Count ( * )).`4esn`? Create `1esn`=(((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[:_usn3|`2esn` *010..]-(`` :usn1)<-[@usn5?:@usn6|:_usn3 *07..{_usn3:$`3esn` Is Not Null Is Not Null,#usn8:usn1[0.12..1000]}]->(`3esn` {usn2:$`7esn`[..12.0][..0e0]}))),#usn7=(`4esn` {@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[@usn5?:`8esn`|:`2esn`]->(_usn4 ) Union Delete Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7)[{usn2:`8esn` Is Null}..[@usn6 In .9e12 Starts With #usn8 Starts With 00]][(:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null})..{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}],999 Ends With $123456789 Ends With $_usn4 Create (`1esn` :`6esn`:`3esn`) Remove (`` :`3esn`{`5esn`:``[$``..]})-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}).`7esn`,[`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$`` Is Not Null].`8esn`._usn3?,(`` :usn2)-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}).usn1! Union With *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Where Null[`2esn`..] Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) Unwind 07[\"d_str\"..]['s_str'..] As usn1"), + octest:ct_string("Create #usn7=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Union All Create `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),_usn4=((`6esn` :#usn7:_usn3)<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Unwind .1e1[.0e0..] As `` Union Remove {`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}.``,`7esn`:_usn4,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0).`6esn`? With Distinct *,$7 Contains _usn4 Contains $`1esn`,9e-12 In 5.9e-12 As `` Skip 3.9e-1 Contains 9.1e-1 Contains `8esn` Limit Count ( * )[7] Where 11.12e-12 In $`1esn` In 9e12"), + octest:ct_string("Optional Match `1esn`=(#usn8 :#usn7:_usn3) Create `2esn`=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))),((`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010})) Union All Detach Delete 123456789 Contains .1e-1 Contains .12e12 With *,{_usn4:$1000 Contains 01234567 Contains 0X7} Is Null Is Null As `1esn`,`5esn`[$`4esn`] Order By Count ( * )[..`8esn`] Asc,3.9e-1[..$7] Desc Limit #usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Where 1000[..0e0][..$`6esn`] Merge ((usn2 )-[#usn8?:usn1|:#usn8 *0X0123456789ABCDEF..0]->(`` :`8esn`:#usn7)<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})) On Match Set usn1+=Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1])"), + octest:ct_string("Delete (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)],0.12 Is Not Null Is Not Null Detach Delete (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Starts With `7esn`(Distinct $`5esn` Is Null Is Null,$`4esn` Ends With 0e-0) Starts With Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 5.9e-12 Ends With 1e1 Ends With false),`3esn` Contains $`8esn` Contains 0e0,4.9e12 Contains .12e12 Contains 0xabc Union All Optional Match `3esn`=(@usn5 :`7esn`),((#usn8 {_usn3:$usn2 In usn1 In 1e-1})) Where usn2[..10.12e12][..$`7esn`]"), + octest:ct_string("Delete ()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)],.9e-1 Is Null,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 123456789 Ends With _usn4) =~{usn2:$``[`6esn`][00],#usn7:.12e12[$12..4.9e12][11.12e-12..9e12]} =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`5esn` Is Null Is Null)"), + octest:ct_string("Remove `8esn`:`1esn` Detach Delete ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]),`2esn` Starts With 12 Starts With 10.12e12,.12e-12[07] Union Unwind .0[01234567][$#usn8] As `2esn` Merge `6esn`=(({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Create Set All(usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]).`2esn`? =0Xa[$usn2..],`3esn`:usn1,`1esn` =$``[`6esn`][00]"), + octest:ct_string("With Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) As `1esn`,0[..$@usn5] As `` Order By Extract(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]|$`5esn` Ends With 9e-1 Ends With $#usn8)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\")..[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0X7[Count(*)][.9e0]|$`8esn`[$``..$`1esn`][9e-12..$7]]][{usn1:`6esn` Is Not Null}..``(.9e-1 =~.9e-1,$_usn4 Starts With 0e-0 Starts With 1e-1)] Descending,12.0[..123456789][..01] Ascending,(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[`7esn`?]->(`5esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(#usn8 {_usn3:$_usn4 Contains .12e-12}) Ends With `4esn`($usn2 In usn1 In 1e-1,01[Count(*)..0e-0][7..$`2esn`]) Desc Limit Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null Where 5.9e-12 Contains $`` Contains $`5esn` Create (@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})) Union All Merge (#usn8 {`2esn`:usn2 Ends With .0})<-[#usn8? *0x0..]-(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})-[:`6esn`|#usn7{usn1:$`2esn` Contains $1000,`7esn`:`7esn`[.1e1..][`8esn`..]}]-(#usn8 {`2esn`:usn2 Ends With .0}) On Match Set `` =_usn3(Distinct $_usn4 Is Not Null,9e1 Ends With 123456789)[{`8esn`:$`` Is Null Is Null}] On Create Set usn1+=$`3esn` In 's_str' In $#usn7 Return Distinct All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7)"), + octest:ct_string("Optional Match ({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}) Where .0[usn2.._usn4] Delete 1.9e0 =~0x0,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]),{_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12) Remove {@usn6:\"d_str\" =~9e-12 =~`5esn`}.@usn5?,None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).@usn6!._usn3?._usn4!,None(_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]).usn1.``?.usn2 Union Remove Filter(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..])._usn4!,All(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]).`6esn`!.usn1!,Filter(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12).`6esn` Delete 1e1[3.9e-1][.9e-1] Create `5esn`=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}),#usn8=((`3esn` {#usn8:`7esn` Is Null})-[_usn4 *999..]->(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]}))"), + octest:ct_string("Match (((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999}))),(`` :``:usn1{usn2:12.0[..123456789][..01]}) Merge ((@usn6 :usn1{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})) Detach Delete None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4) Union All Unwind .9e12 Starts With .9e12 Starts With `7esn` As _usn4 Merge ((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) On Create Set (`6esn` :usn1)<-[usn1{`2esn`:usn2 Ends With .0}]->(_usn3 :_usn3:_usn3)-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})._usn3? =Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}],@usn5 =.9e1[...12e12] Merge (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) On Match Set Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12).`4esn`!.#usn8?.`1esn` =1.9e0 =~$`8esn` =~01234567,`1esn` =1000[$`6esn`..12.0]['s_str'..$`3esn`],@usn5 =9e0[$usn2][0]"), + octest:ct_string("Return Distinct 8.1e1 Is Null Is Null,5.9e-12[$`4esn`] Order By `6esn` Is Not Null Ascending,`6esn` Is Not Null Desc,(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})[{`5esn`:8.1e1 Ends With $0 Ends With 6.0e0,@usn5:9e0[..1e1]}..None(`` In $_usn3 Is Not Null Where $@usn6 =~$`2esn` =~9e1)] Descending Skip Null In 0Xa In .9e-1 Unwind $usn1 Is Not Null Is Not Null As `5esn` Delete true Is Null Is Null Union All Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})),((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) With [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..] Where $1000 Contains 01234567 Contains 0X7 Create ((usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]->(:usn1{usn1:Count(*)[0.12..2.9e1]})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})),(:usn1{``:.9e1[..`5esn`]})"), + octest:ct_string("Optional Match (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Where 999[0.12..8.1e1] Union All Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7]).`5esn`,@usn6:``:usn1,{`4esn`:.0e0[$`6esn`..]}.#usn8._usn3 Unwind true Is Null As #usn8 Union Unwind 0X7 As `3esn` Merge ((#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set `8esn`+=Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\"),`1esn`+=4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12),(`` {_usn4:9e0[..1e1]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(@usn5 :@usn6:_usn4).#usn8.`1esn`.usn1! =00[0e-0...9e-1][1e-1..``] On Create Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] With Distinct [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1|.9e1[12]] Is Null Is Null As #usn8 Order By $usn1 Contains `7esn` Contains .9e12 Ascending Skip $usn1 Is Not Null Is Not Null Limit {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})] Where 010"), + octest:ct_string("Create #usn8=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})),`3esn`=(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set usn1+=9e0[..1e1] On Match Set usn1+=Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],@usn6+={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) Union All Merge usn1=(:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}) On Create Set None(`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0).`8esn`? =[`5esn` In 12[0xabc..][$0..] Where $123456789 Is Not Null] Starts With Any(`7esn` In .12e12[Count(*)..] Where 's_str' Ends With 0.0 Ends With .12e12),``+={`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])] On Create Set #usn7:`4esn`:`7esn`,{`7esn`:$`5esn`[7..],`5esn`:`5esn` Contains `6esn`}.#usn8?.usn2.@usn5! =usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]],@usn6 =\"d_str\" =~9e-12 =~`5esn` Merge usn1=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})) On Match Set `4esn` =$`` =~$_usn3,`7esn` =\"d_str\" Ends With `5esn` Ends With 7 Union Remove (:`7esn`{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[#usn8?:`4esn`|:@usn5]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})._usn3!,Any(`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0).usn1"), + octest:ct_string("Create `3esn`=((:`2esn`:`8esn`)<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}))) Optional Match (@usn5 {_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2)-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]-(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12}),((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})) Where 12.0 Contains $_usn4 Contains $usn2"), + octest:ct_string("Return Distinct (`8esn` {`3esn`:#usn8[`2esn`]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null As @usn5 Order By 123456789[Count ( * )..] Asc,01[..0.12] Asc Skip .0e0[$@usn5..$`8esn`][0X7..$usn1] Limit 8.1e1[usn2..$1000][$7..0x0] With Distinct `2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,1e1 In .1e-1 In .0 Order By Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) Asc Skip 00 =~.9e-12 =~usn1 Limit 12e12 Ends With usn1 Where 12[123456789][5.9e-12] With Distinct *,Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) In {`5esn`:$`` =~$_usn3,`4esn`:`7esn`} In `3esn` Order By [usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|`3esn` Ends With 010 Ends With 9.1e-1][(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})-[`7esn`?:`5esn`]->(#usn8 )..None(_usn4 In Count(*)[9e1..][12e-12..] Where 7 Contains $#usn7)] Ascending Limit 0xabc[$`4esn`..][`8esn`..] Union Return `7esn` Ends With `7esn` Ends With $`3esn`,12e-12[`7esn`..][5.9e-12..] Order By 01[..0.12] Ascending Skip (`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] Detach Delete .1e-1 Ends With @usn6,Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Null Is Null,$`2esn` Contains false Contains 123456789 Return $_usn3 In 123.654 In $`8esn` As `2esn`,@usn5[$_usn3..],.1e-1 Contains 1e1 Contains $`6esn` As `5esn` Order By $usn1 Contains `7esn` Contains .9e12 Ascending,8.1e1 Ends With $0 Ends With 6.0e0 Descending,9e12[...12e12][..$`2esn`] Descending Limit `3esn`[`4esn`..Null][$usn1..`5esn`] Union Optional Match ({`4esn`:$@usn5[$#usn8..][_usn3..]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})"), + octest:ct_string("Optional Match usn2=(`4esn` :`6esn`:`3esn`) Where 999 =~0Xa =~9e0 Return *,Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07) Order By usn2[Count ( * )..07] Descending Limit .12e12 Ends With #usn7 Ends With 2.9e1 Optional Match `3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Union All Merge usn2=({``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[_usn3:_usn4|`1esn`{`2esn`:123456789 In 9e-12 In false}]-(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]}) On Match Set Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12).`4esn`!.#usn8?.`1esn` =1.9e0 =~$`8esn` =~01234567,`1esn` =1000[$`6esn`..12.0]['s_str'..$`3esn`],@usn5 =9e0[$usn2][0] Create (`1esn` :`6esn`:`3esn`) Union All Delete {`8esn`:$`` Is Null Is Null}[Extract(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..])..][Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)])..],$`6esn`[..12e12][.._usn3],$_usn4 Starts With 0e-0 Starts With 1e-1 With `2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,1e1 In .1e-1 In .0 Order By 1000 Contains Null Contains 9e1 Desc,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null Descending,$`7esn`[..12.0][..0e0] Asc Limit 11.12e-12 Is Null Where 's_str' Ends With 0.0 Ends With .12e12 Match `5esn`=((`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]})-[:`6esn`|#usn7{usn1:$`2esn` Contains $1000,`7esn`:`7esn`[.1e1..][`8esn`..]}]-(#usn8 {`2esn`:usn2 Ends With .0})) Where 999 Starts With .9e12 Starts With 3.9e-1"), + octest:ct_string("Delete 00 Is Not Null Merge @usn5=(#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})-[`1esn`*..{usn2:$1000[.._usn3][..#usn7]}]-(:`3esn`{_usn4:7.0e-0 =~$12 =~5.9e-12}) Match @usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))),(({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)) Union Remove Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12).`5esn`?,(`7esn` :@usn5{usn2:$`8esn`[#usn7][.9e1],`7esn`:@usn5[$``]})<-[:`1esn`{`8esn`:0xabc[7.0e-0..][12e12..]}]->(:`6esn`:`3esn`{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12}).`6esn`!,Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]).usn1!._usn3?._usn3? Create `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}))"), + octest:ct_string("Merge `8esn`=((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) On Match Set _usn3+=$usn2[12.0..],`7esn`+=false[..12e-12][...9e1]"), + octest:ct_string("Remove All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where true In $0 In @usn5).`4esn`.`4esn`?.`3esn`,Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where #usn7[10.12e12..][\"d_str\"..]).@usn6.`7esn`!,Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567).`4esn`!.`8esn`!.`4esn` Optional Match `4esn`=(((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})<-[`8esn`?:usn2|:``]->(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})-[`3esn`?:`5esn` *07..{#usn7:9e-1 =~6.0e0 =~``}]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))),((@usn6 )<-[`2esn`{`4esn`:.0e0[$`6esn`..]}]->({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})-[`6esn`:#usn7|:`8esn` *01234567]-(`5esn` :`2esn`:`8esn`)) Where 0xabc Is Not Null Create `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Union All Delete \"d_str\" Contains 4.9e12 Contains 7.0e-0,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])]"), + octest:ct_string("Return Distinct [`` In 0.12[3.9e-1] Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`|Null[10.12e12..]] In {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] As `7esn` Order By 00 Ascending Skip 12.0 Contains $_usn4 Contains $usn2 Limit .9e1 Starts With `4esn` Detach Delete 01[Count(*)..0e-0][7..$`2esn`],@usn6[usn1..][`1esn`..]"), + octest:ct_string("Return Distinct *,@usn5 In $1000 In 07 Union Merge (`2esn` :`6esn`:`3esn`)-[`5esn`:usn2|:``]->(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}) Union Unwind 0e0 In 1e1 In 8.1e1 As #usn8 Optional Match `3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where .12e-12[$@usn6..5.9e-12]"), + octest:ct_string("With 1000[Null..] As `1esn`,`8esn`[..7.0e-0][..0xabc] As _usn3 Skip 0e-0 Contains 11.12e-12 Contains $`4esn` Where Null[10.12e12..] Union All With Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1] Detach Delete {#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}[{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}..]"), + octest:ct_string("Unwind `3esn` Ends With true As @usn6"), + octest:ct_string("With Distinct .1e-1[$`2esn`..][$`1esn`..] Order By `7esn` Ends With 9e-1 Ends With usn1 Ascending,5.9e-12[`4esn`..12e12][0x0..1.9e0] Ascending,$#usn7 In .12e-12 Ascending Skip Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Limit Count ( * ) In 999 Where 010 Create `8esn`=(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}))),usn1=(`` {_usn4:9e0[..1e1]})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}) Union Create usn1=(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}),`5esn`=(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Unwind None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} As `7esn`"), + octest:ct_string("With *,`` Is Not Null Is Not Null As usn1 Limit Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Where $1000[..01234567][..0X0123456789ABCDEF] Unwind 1.9e0 =~0x0 As @usn5 Union Return `1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `4esn` Unwind $usn1[$12..] As `7esn` Merge ((:`2esn`:`8esn`{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3}))"), + octest:ct_string("Unwind 11.12e-12 Is Null As usn1 Return *,_usn4(Distinct 1e-1 =~0.0 =~9.1e-1) =~None(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~(`2esn` {usn2:7.0e-0 Starts With $7 Starts With true})-[`2esn`:`5esn`{usn2:Count(*)[12..][0X0123456789ABCDEF..]}]-({_usn4:$`3esn` In 's_str' In $#usn7})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12}) As ``,`3esn` Ends With true Limit {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) Union With Distinct *,123.654,9e-1 Starts With 123.654 Starts With .9e1 As `6esn` Order By $`8esn`[.._usn4(Null[..07],123.654)] Desc Skip 123456789[\"d_str\"..] Where $`2esn` Contains false Contains 123456789 Match `3esn`=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) Where $usn1 Starts With 12 Starts With 12e12 Union Remove [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|.9e1[..`5esn`]]._usn3!.`6esn`?.`3esn`?,(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )._usn4!.usn2.#usn7! Optional Match `7esn`=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}),((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Where .0e0 Is Null Is Null Create @usn5=({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})"), + octest:ct_string("Merge @usn5=(({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})-[:``|:`3esn` *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})) On Match Set #usn7 ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0} =~Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]),`8esn` =`5esn`(Distinct 123456789 Ends With 8.1e1,01234567[6.0e0][$usn2])[{@usn5:usn1 Is Not Null,usn2:0xabc[7.0e-0..][12e12..]}..][(_usn3 :_usn3:_usn3)<-[`6esn`?:``|:`3esn`]-(:@usn6:_usn4$`6esn`)<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})..] On Create Set [usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]].`4esn`?.usn2?.usn2! =[@usn6 In .9e12 Starts With #usn8 Starts With 00|9e12 Contains $@usn6 Contains Count(*)][(`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]})][Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null)],Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654).`4esn`? =Count ( * )[0e-0..01],#usn7+={usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])] Union Unwind $usn1 Is Not Null Is Not Null As `2esn`"), + octest:ct_string("Optional Match usn1=(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}),@usn5=({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}) Where 7.0e-0[3.9e-1..`1esn`] Union All With Distinct [@usn6 In .9e12 Starts With #usn8 Starts With 00|9e12 Contains $@usn6 Contains Count(*)][(`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]})][Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null)] As @usn5,12 =~9e0 =~$#usn8 Skip 5.9e-12[`1esn`][usn2]"), + octest:ct_string("Create ``=((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})),#usn8=((`3esn` {#usn8:`7esn` Is Null})-[_usn4 *999..]->(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]})) Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where $usn1 =~$999 =~$7|$_usn3 Is Not Null Is Not Null).`4esn`!.#usn8,Filter(`` In 0.12[3.9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4).usn1 Union All Remove {`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null}.@usn5?.#usn8!.`8esn`?,_usn4:_usn4,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]|Count(*) Starts With $_usn4).`8esn`! Unwind {usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) As usn2"), + octest:ct_string("Create usn1=({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}),#usn8=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Unwind `7esn` Ends With _usn4 As _usn3"), + octest:ct_string("Unwind 1e1 Ends With Null Ends With `7esn` As `3esn`"), + octest:ct_string("Merge `8esn`=(`6esn` :``:usn1) On Create Set usn2 =[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]|12e12 Is Not Null][{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]}],`5esn`+=.9e1[..`5esn`] On Create Set `1esn` =@usn5[6.0e0][Count ( * )] Match `2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),usn2=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where 12 Contains usn2 Contains $usn2 Union All Return *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Return *,$0[$`7esn`..$`3esn`]['s_str'...0],usn1 Ends With 12 Order By $#usn7 Starts With #usn7 Descending,9e12[.0e-0] Descending,01[..01] Descending Limit (usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})-[`4esn`?:`6esn`|#usn7]->(`1esn` )[[`2esn` In .12e-12[$@usn6..5.9e-12]|$#usn7 Starts With 10.12e12]..] Create (`1esn` :`5esn`)-[:#usn8|:`4esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}]-(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}),_usn4=(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}) Union Delete Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),All(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)[`3esn`(Distinct 0[true..$7],`3esn`[$0..][.9e1..])..] Merge (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) On Match Set Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12).`4esn`!.#usn8?.`1esn` =1.9e0 =~$`8esn` =~01234567,`1esn` =1000[$`6esn`..12.0]['s_str'..$`3esn`],@usn5 =9e0[$usn2][0] Merge ``=(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`` :@usn6:_usn4)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})"), + octest:ct_string("Match (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[:usn1|:#usn8]-(:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`}),`2esn`=((_usn4 {#usn7:$`5esn` Is Null Is Null})-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})) Union Remove Filter(usn2 In .0e0[$`6esn`..] Where $123456789 Is Not Null)._usn4.`1esn`!.`1esn`!,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`).`5esn`!.`7esn`,_usn3:#usn8 Unwind (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] As `2esn`"), + octest:ct_string("Merge `1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) On Match Set #usn7 =[usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|9e0 =~9e1 =~.12e12] Is Null Is Null,`8esn`+=123.654 Is Not Null Is Not Null,`3esn`+=_usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null Delete `3esn`[.12e-12..]"), + octest:ct_string("Detach Delete (:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]),Count(*) Starts With $_usn4 Merge `2esn`=((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Union All Return Distinct *,Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn` Order By _usn3[`2esn`..10.12e12][9e1..true] Descending Limit `6esn`[0x0..@usn5][$1000...9e-12] With 8.1e1 Is Null Is Null,Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` Is Null Is Null) Is Not Null Is Not Null As _usn4 Order By (`6esn` $@usn6)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]}) =~All(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~{``:7.0e-0 Is Null Is Null,@usn5:9e-12[$0][$`4esn`]} Asc,999 =~0Xa =~9e0 Asc Skip All(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])[..(:_usn4{`4esn`:9e1 Contains 4.9e12 Contains .9e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})][..(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)<-[?{_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})] Where 9e1 Ends With .9e0 Match `6esn`=({_usn3:$`5esn`[7..]})<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}),((_usn4 )-[usn2?:@usn6|:_usn3]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`4esn`?:_usn3|`2esn`]-(`8esn` {``:$123456789[$_usn3..][$usn2..]})) Where $@usn5[usn1..][$`8esn`..] Union All With {`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]],_usn4[.0e-0][010],Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]] As `3esn` Order By .1e-1[..12][.._usn4] Descending Return [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..] Create (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999})"), + octest:ct_string("Unwind .0 Is Null Is Null As _usn4 Remove usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4!,@usn6($`3esn`,$`1esn`[`3esn`..]).``?,`7esn`($`3esn` Ends With 010 Ends With $`7esn`,01234567[6.0e0][$usn2])._usn3!.@usn5.`5esn`? Match (:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]})"), + octest:ct_string("With Distinct *,$7 Contains _usn4 Contains $`1esn`,9e-12 In 5.9e-12 As `` Skip 3.9e-1 Contains 9.1e-1 Contains `8esn` Limit Count ( * )[7] Where 11.12e-12 In $`1esn` In 9e12 Detach Delete 9e12[1e1...9e-12] Detach Delete 5.9e-12 Ends With 1e1 Ends With false Union Create #usn7=((`4esn` {_usn3:@usn6 In 3.9e-1 In 9e-12})<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4)) Optional Match #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),`8esn`=(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})))"), + octest:ct_string("With Distinct None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]) Is Null Is Null,Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()] As #usn7 Skip Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..])"), + octest:ct_string("Match ((:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[? *12..0Xa]-(`2esn` :#usn7:_usn3)<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})) Remove [#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1].`6esn`._usn4?._usn4!,{`3esn`:#usn8[..#usn7][..@usn6]}.#usn8? Union All Unwind Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) As `5esn` Optional Match (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}),`1esn`=(((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[:_usn3|`2esn` *010..]-(`` :usn1)<-[@usn5?:@usn6|:_usn3 *07..{_usn3:$`3esn` Is Not Null Is Not Null,#usn8:usn1[0.12..1000]}]->(`3esn` {usn2:$`7esn`[..12.0][..0e0]}))) Where .0e0[$`1esn`][.9e-12] Union With Distinct *,Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As `5esn`,0xabc =~7.0e-0 =~4.9e12 Order By (#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Desc Where @usn6[.9e12..0e0] Unwind $_usn3 Is Not Null As `5esn`"), + octest:ct_string("Delete \"d_str\" Contains 4.9e12 Contains 7.0e-0,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])]"), + octest:ct_string("Unwind #usn8[7..@usn5] As `` With 9e12[7.0e-0] As #usn7 Order By $_usn4 Contains .12e-12 Descending Where #usn7[..0X0123456789ABCDEF] Merge (((`5esn` :#usn8)<-[`4esn`?:_usn3|`2esn` *0..010]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]}))) On Create Set Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12|.1e-1).`1esn`? =0.12 Is Not Null Is Not Null,(`2esn` :``:usn1)-[?:``|:`3esn` *12..0Xa]-(@usn6 :`7esn`{`6esn`:``[$``..]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:@usn5)._usn4! =1000 Contains Null Contains 9e1 On Match Set `6esn`(010[@usn5..123.654],0X0123456789ABCDEF Contains $`6esn` Contains $123456789).usn1 =Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],`6esn` =Null[..07],Single(`5esn` In 12[0xabc..][$0..] Where .1e1 Starts With $7).@usn6?.`8esn` ={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) Union Remove count(.12e12[$0]).`4esn`!,`2esn`(Distinct 9e-12 In 0X0123456789ABCDEF In $999).`1esn`!,[_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12|@usn5[...9e12]]._usn3"), + octest:ct_string("With Distinct *,2.9e1 As usn2 Skip Extract(usn2 In .0e0[$`6esn`..]|$@usn6 Contains Count ( * ))[`2esn`(usn1[12e-12])..][(`8esn` :usn2)<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})..] Where 999 =~0Xa =~9e0 Create (#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`) Merge `8esn`=(`3esn` :#usn7:_usn3)<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(`2esn` :usn2)<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}) Union Match `6esn`=({_usn3:$`5esn`[7..]})<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}),((_usn4 )-[usn2?:@usn6|:_usn3]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`4esn`?:_usn3|`2esn`]-(`8esn` {``:$123456789[$_usn3..][$usn2..]})) Where $@usn5[usn1..][$`8esn`..] Delete {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) Optional Match `2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),usn2=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where 0e0[.12..][3.9e-1..] Union Remove Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12 Contains 0e-0 Contains .0).`8esn`,All(`7esn` In .12e12[Count(*)..] Where 's_str' Ends With 0.0 Ends With .12e12).#usn8? Merge (({`8esn`:$`` Is Null Is Null})) On Match Set usn1 =$0[$`7esn`..$`3esn`]['s_str'...0],[@usn6 In 00 =~.9e-12 =~usn1 Where $123456789 Starts With Count ( * )].`1esn`? =usn2 Ends With .0,`8esn` =010[..@usn5][.._usn4] Return *,`3esn`[.12e-12..] As `7esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4"), + octest:ct_string("Return Distinct Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As #usn7 Order By $_usn4 Contains .12e-12 Desc Skip Extract(`8esn` In 01234567[..0.0][..false] Where .9e12 =~`5esn` =~07|07[.0e0][3.9e-1]) Is Not Null Is Not Null Limit `7esn` Is Null Delete 0Xa Ends With #usn8 Ends With usn2 Union All Detach Delete None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) Contains [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0],{usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) Union Create `4esn`=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6),`3esn`=((`6esn` {`4esn`:$@usn5[$#usn8..][_usn3..]})<-[`8esn`?:`7esn`|@usn6 *..7]->(`5esn` {`2esn`:`1esn` =~0 =~_usn4}))"), + octest:ct_string("Detach Delete Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null Union With Distinct 0e0 Is Null Is Null,None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[..Filter(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0)][..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] Order By .9e-12[0e0...9e-1] Ascending,.1e1 Starts With .1e-1 Asc Skip 0.12 Ends With $123456789 Ends With `7esn` Where 07 In $usn1 In 12 Remove {usn1:usn2[..7.0e-0]}.`2esn`.`2esn`?.usn1,(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6?,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e12 Is Not Null Is Not Null).#usn8? Return Distinct *,0e0[`4esn`] As `6esn`,9.1e-1[.1e-1]"), + octest:ct_string("Unwind Single(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]) In All(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1]) In (`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}) As `8esn` Unwind None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] As `3esn` Union Remove Filter(`7esn` In .12e12[Count(*)..] Where @usn5[$_usn3..]).usn2?,[`5esn` In 12[0xabc..][$0..] Where .12e12[$12..4.9e12][11.12e-12..9e12]|Count(*)[9e-12..0Xa][$123456789..0.0]].@usn5,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where #usn8[7..@usn5]).usn2? Merge `8esn`=((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) On Match Set _usn3+=$usn2[12.0..],`7esn`+=false[..12e-12][...9e1] Remove Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).`5esn`!.`3esn`.usn2!,Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])._usn3!.`7esn`.`4esn`!,Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]).@usn5.usn2 Union Return $`4esn` Contains $12 Contains .9e-1,.1e-1[@usn6..] As `4esn`,`2esn` =~usn1 As `6esn` Skip 0xabc[7.0e-0..][12e12..] Limit .12e12 =~$#usn7 Remove {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}.`7esn`,(`5esn` :`2esn`:`8esn`)-[`6esn`:`6esn`|#usn7*]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})._usn4 Remove `2esn`(Distinct 12 Is Null Is Null)._usn3!"), + octest:ct_string("Create @usn5=((#usn8 :usn1)<-[`2esn`?:usn2|:`` *010..{`5esn`:$`4esn` Ends With 0e-0}]->(:usn1{`3esn`:$0 =~01234567,@usn5:7 Is Null Is Null})-[@usn5?:usn1|:#usn8 *01234567{`1esn`:7.0e-0[3.9e-1..`1esn`]}]-({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) With 11.12e-12 Is Null Is Null As `4esn`,#usn8 Starts With 11.12e-12 Starts With $`3esn` As `2esn` Skip 123.654 Ends With 0Xa Ends With .12e12 Union All Unwind All(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]) Starts With Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) As `3esn` Return *,_usn4['s_str'..] As `2esn`,Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Order By .0e0[1e1..][01234567..] Descending,5.9e-12[2.9e1][9e0] Desc Skip Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7)"), + octest:ct_string("Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]|$`2esn` Starts With .12e12 Starts With 3.9e-1]._usn3?._usn3!.`6esn`,[`2esn` In .9e-12[0e0...9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4].`6esn`?,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$123456789[$_usn3..][$usn2..]).`7esn` Create ((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Create `6esn`=((#usn7 :_usn3:_usn3)<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null})"), + octest:ct_string("Return #usn8[`2esn`] As `5esn`,Count ( * ) Ends With $`4esn` Ends With 123456789 As #usn8 Order By {`4esn`:5.9e-12[9e0..]} =~None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12) Desc,Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]) Desc Skip $`1esn`[.9e0][$_usn3] Limit 0.12[3.9e-1] Remove Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 01[..0Xa]).`1esn`!.`1esn`!"), + octest:ct_string("Remove _usn3(`2esn` =~usn1)._usn3 Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Return [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..]"), + octest:ct_string("Optional Match `4esn`=(#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]}) Return _usn3[`2esn`..][0x0..] As usn1 Order By 123456789[\"d_str\"..] Descending,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending,12e-12[`7esn`..][5.9e-12..] Asc Limit All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..])[`8esn`()] Detach Delete 12e12[11.12e-12],false Starts With 3.9e-1 Union All Remove All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0)._usn3? Unwind $@usn5[..1e-1] As _usn4 With 1000[Null..] As `1esn`,.1e1 Starts With $7 Order By Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Ascending,$`7esn` Contains 0X7 Asc,$_usn4 Is Not Null Ascending Limit .0e0[$`1esn`][.9e-12]"), + octest:ct_string("Delete Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null)[#usn7(`4esn`[0.0..][.1e-1..])..@usn6(_usn4 Is Not Null Is Not Null)],[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12]][None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null)..[`5esn` In 12[0xabc..][$0..] Where .12e12[$12..4.9e12][11.12e-12..9e12]]] Union All Unwind $`2esn` Contains false Contains 123456789 As `8esn` Detach Delete .1e-1[@usn6..] Union All With Distinct *,$#usn7 Is Not Null As `7esn`,2.9e1 As usn2 Skip Extract(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..]|.9e12[..$usn1][..10.12e12]) Starts With Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]) Limit $#usn7 Starts With 10.12e12 Create usn2=(#usn7 :_usn3:_usn3)<-[#usn8?:`4esn`|:@usn5]-(#usn8 :_usn3:_usn3) Merge ((:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null})-[:_usn4|`1esn` *00..123456789]-(`2esn` :`1esn`)-[@usn6:#usn7|:`8esn` *0Xa..7]-(`8esn` {@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) On Create Set Filter(`` In $_usn3 Is Not Null Where 7 Is Null Is Null).#usn7! ={`5esn`:false,_usn3:.9e-12 Starts With .0e-0 Starts With usn2} Is Null On Match Set `4esn`+=1000[Null..],{`4esn`:0e0 Is Null Is Null,`8esn`:1.9e0 Is Null Is Null}.`6esn`? =$`2esn` In 0 In 0Xa,`3esn` =_usn4['s_str'..]"), + octest:ct_string("Unwind $@usn6 =~$`2esn` =~9e1 As usn1 Union All Remove {usn2:`3esn` In 0X7,usn2:7 Is Null Is Null}.`4esn`.@usn6!,{@usn6:.9e-12[..$`7esn`][...9e-1]}.usn2 With Distinct *,$usn2[1e-1],8.1e1[usn2..$1000][$7..0x0] As _usn3 Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) Asc,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1) Ends With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) Ascending Skip .0 Is Null Is Null Where 7.0e-0[0X7..$`2esn`][`4esn`..`7esn`] Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set _usn3 =12e-12[.0..],_usn4+=.0e0[..12.0][...1e-1],usn1 =({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null} Union All Return 1.9e0 Starts With 's_str' Starts With 9.1e-1,8.1e1 Is Null,.1e1 Starts With .1e-1 Order By 1.9e0 In $0 Desc,7.0e-0 =~$123456789 =~`8esn` Asc,#usn7[10.12e12..][\"d_str\"..] Desc Create `2esn`=((`5esn` :`1esn`))"), + octest:ct_string("With Distinct *,8.1e1 Ends With .1e-1,$#usn7 =~8.1e1 As #usn7 Order By false =~4.9e12 Asc Skip 0x0 =~0x0 Limit $_usn4[1e-1..8.1e1][`1esn`..1.9e0] Where 5.9e-12[.1e1][$#usn8] Union All Delete $0[9e1],01 Contains 12.0,0.12[.12e-12] Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Union All Remove Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0).`6esn`?.`2esn`!,{``:@usn6 In 3.9e-1 In 9e-12,`3esn`:$`` Is Not Null Is Not Null}.@usn5?.`3esn`!.`2esn`,Filter(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).``.`8esn` Remove Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where ``[..$#usn7]).usn1?,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})-[`8esn`:`3esn`|:_usn3*..{`2esn`:.9e-1 Ends With `8esn`,``:0[..$@usn5]}]-(`5esn` :`7esn`{`7esn`:$_usn3[.1e1..][$`1esn`..],`5esn`:.12e-12 =~9e12 =~1e-1}).`4esn`!.#usn8"), + octest:ct_string("Merge `5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Merge (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) On Match Set Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12).`4esn`!.#usn8?.`1esn` =1.9e0 =~$`8esn` =~01234567,`1esn` =1000[$`6esn`..12.0]['s_str'..$`3esn`],@usn5 =9e0[$usn2][0] With @usn6[.9e12] As ``,01234567 Starts With `4esn` Starts With 10.12e12 Order By $`7esn` Is Null Is Null Descending,Any(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1) Asc,#usn8[usn1] Asc Where .9e1[...12e12] Union Create usn1=(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})"), + octest:ct_string("Return Distinct *,Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,`3esn` Contains 01234567 Contains .9e-12 Order By 12 =~$@usn5 Desc,0Xa In 0.12 In $#usn7 Descending With Distinct [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null,Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,1.9e0 Starts With .9e0 Skip Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4])[..{_usn3:.1e-1 Ends With $`8esn` Ends With .9e0}] Limit Null Is Not Null Is Not Null Optional Match ((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})),`4esn`=(((`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})-[``]-(`7esn` :``:usn1{`1esn`:0e0 Starts With $1000 Starts With `2esn`,@usn6:@usn6 In 3.9e-1 In 9e-12})-[@usn5*{`7esn`:`3esn` Starts With _usn4}]->(#usn8 :_usn4{_usn3:.0 Is Null Is Null})))"), + octest:ct_string("Unwind {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null) As #usn8 Optional Match `7esn`=(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}),(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Where 01234567[...0e-0][..12] Remove `6esn`:`2esn`:`8esn`,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]).@usn6!.usn2?.`4esn`!,(`2esn` :`1esn`)<-[?:#usn8|:`4esn` *1000]-({_usn3:$0 Starts With 010})<-[``?:@usn5]-(`2esn` :usn2).`3esn`.@usn5? Union All Merge (`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1}) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7]"), + octest:ct_string("Detach Delete ()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 ) Contains Any(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]) Contains All(@usn6 In 00 =~.9e-12 =~usn1),Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .12[.0e-0..]|$`8esn`[$usn2..]) Is Null Is Null,usn1[..10.12e12][..7] Return count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0])[_usn3(8.1e1[usn2..$1000][$7..0x0],false[..12e-12][...9e1])..] As @usn6,.0e-0[0e0..00][.9e1..12] As `1esn`,Count ( * ) Starts With 10.12e12 Starts With `` As `5esn` Union All Detach Delete $`8esn`[$``..$`1esn`][9e-12..$7],Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]),.9e-1 Ends With `8esn` Delete `1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)],_usn4 In `3esn` In 7.0e-0,'s_str' =~.9e1 =~3.9e-1 Merge ((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2))"), + octest:ct_string("Create (#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`) Match `3esn`=(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))),_usn4=((`6esn` :#usn7:_usn3)<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Optional Match `7esn`=((`7esn` {`3esn`:.9e-1 Is Null})<-[`2esn`? *..7]->(#usn8 {_usn3:$_usn4 Contains .12e-12})) Union Merge @usn5=(({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})-[:``|:`3esn` *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})) On Match Set #usn7 ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0} =~Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]),`8esn` =`5esn`(Distinct 123456789 Ends With 8.1e1,01234567[6.0e0][$usn2])[{@usn5:usn1 Is Not Null,usn2:0xabc[7.0e-0..][12e12..]}..][(_usn3 :_usn3:_usn3)<-[`6esn`?:``|:`3esn`]-(:@usn6:_usn4$`6esn`)<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})..] On Create Set [usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]].`4esn`?.usn2?.usn2! =[@usn6 In .9e12 Starts With #usn8 Starts With 00|9e12 Contains $@usn6 Contains Count(*)][(`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]})][Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null)],Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654).`4esn`? =Count ( * )[0e-0..01],#usn7+={usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])]"), + octest:ct_string("Unwind Count ( * )[0e-0..01] As `3esn` Unwind .12e-12 Starts With 's_str' Starts With 123.654 As `2esn` Unwind $usn1[$12..] As `` Union All Optional Match _usn3=(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Where .9e-12[1000..$`3esn`] With Distinct *,`8esn` Is Null As `6esn` Order By [usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc,0x0 =~$7 =~Null Desc,12e-12[9e0..1.9e0] Asc Where `` =~$`5esn` Create ((`6esn` :usn1)) Union With *,_usn3[`2esn`..][0x0..] As usn1,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,usn1() In Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) In (`7esn` :usn1)-[usn2:`4esn`|:@usn5 *01234567]->(_usn4 )-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]}) Desc,``[..$#usn7] Asc Limit 07 Ends With @usn6 Ends With _usn3 Where $7 Contains 0e-0 Contains .0e-0"), + octest:ct_string("Detach Delete (`3esn` :#usn7:_usn3)<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) Ends With [_usn3 In ``[$``..] Where @usn5 Ends With 0],Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1])[[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null|`3esn`[3.9e-1..$`5esn`]]..][All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `8esn` Is Null)..],$1000 Contains 01234567 Contains 0X7 Merge `1esn`=((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) On Create Set `6esn`+=$#usn7[..$`8esn`][..2.9e1],[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0X7[Count(*)][.9e0]|$`8esn`[$``..$`1esn`][9e-12..$7]].`7esn` =(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )[{usn2:7.0e-0 =~$12 =~5.9e-12}..][Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)..],`6esn` =Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null Union All Return Distinct *,.9e0 Is Null As _usn4 Skip 's_str' Ends With $usn1 Limit 123456789 Ends With 8.1e1 Remove (`1esn` )-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :``:usn1{usn2:12.0[..123456789][..01]})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}).@usn6!,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .12[$`2esn`..usn2][.9e-1.._usn3]).`3esn`,[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]|$@usn5 In .9e1 In $``].@usn6"), + octest:ct_string("Unwind $7 Is Null Is Null As `` Detach Delete 's_str' =~.9e1 =~3.9e-1 Unwind 010 Starts With 0.0 Starts With .0e0 As `3esn` Union All Remove None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])._usn4._usn4,Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where usn1[..10.12e12][..7]).``? Union All Merge `4esn`=((@usn5 :usn1{usn1:.9e1[12]})) On Match Set _usn3 =12e-12[.0..],_usn4+=.0e0[..12.0][...1e-1],usn1 =({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null} On Match Set `8esn`+=Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\"),`1esn`+=4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12),(`` {_usn4:9e0[..1e1]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(@usn5 :@usn6:_usn4).#usn8.`1esn`.usn1! =00[0e-0...9e-1][1e-1..``]"), + octest:ct_string("Unwind Count(*) In .9e-12 In $usn1 As `5esn` Detach Delete .12e12 =~$#usn7,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] With *,Null[...9e1] As `2esn` Order By 10.12e12 =~12e-12 =~0X0123456789ABCDEF Descending,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) Asc,8.1e1 Starts With .9e12 Starts With `7esn` Desc Union Optional Match _usn4=(:_usn4),`3esn`=(({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[``?:``|:`3esn` *01234567]->(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})) Where $12[01] Detach Delete All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Delete ``(Distinct #usn7 =~`5esn` =~``)[Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..])..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)],4.9e12[1e1..'s_str'][Count(*)..0X7] Union All Merge (((_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})<-[`4esn`?:_usn3|`2esn` *0..010]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`}))) On Create Set `6esn` =.1e1 =~10.12e12 Remove _usn3:#usn8,`5esn`(Distinct $`8esn` =~.9e12 =~010,$#usn8[$1000..]).`3esn`?,Extract(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`]|$`3esn`[..`1esn`][..$`7esn`]).@usn6!"), + octest:ct_string("With Distinct *,0X0123456789ABCDEF Contains 8.1e1 As @usn5 Order By (#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})[Any(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)..][Single(_usn3 In ``[$``..] Where Null[`2esn`..])..] Asc Limit _usn3[`2esn`..10.12e12][9e1..true] Remove Extract(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]).`1esn`?.`6esn`.`3esn`?,({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})<-[`3esn`?:`5esn`]->(`2esn` ).``!,Filter(@usn6 In 00 =~.9e-12 =~usn1 Where 0x0 Contains $`1esn` Contains 0.0).`1esn` Union All Match (usn1 :usn2),usn2=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Where @usn6[.9e12..0e0] Unwind 0e0 Ends With 0X7 Ends With .1e1 As _usn4 Union Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Unwind {@usn6:\"d_str\" =~9e-12 =~`5esn`}[#usn8(Distinct 999 Starts With .9e12 Starts With 3.9e-1,true Contains 0x0)..[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010]][All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)..{`4esn`:0 Starts With 0Xa Starts With $0}] As `8esn` Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Where $`6esn` Starts With `4esn`"), + octest:ct_string("Remove (_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`}).usn2?.usn2?,Filter(`8esn` In 01234567[..0.0][..false] Where .12e-12[$@usn6..5.9e-12])._usn3 Remove {`7esn`:.9e-12 Is Not Null Is Not Null}.``?,{``:999 =~0Xa =~9e0}.#usn8,{usn1:$`` Is Not Null,`5esn`:0X7 Starts With 1e1 Starts With $12}.usn2!"), + octest:ct_string("Return Distinct *,_usn3[`2esn`..10.12e12][9e1..true] Detach Delete 0X7[$7..],$usn1 Contains `7esn` Contains .9e12,(:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Remove {`3esn`:`7esn` Is Not Null}.`7esn`?"), + octest:ct_string("Detach Delete .0e0 Ends With `8esn`,$`2esn` Ends With 2.9e1 Ends With $usn1,[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null][..`1esn`(Distinct `5esn` Contains `6esn`,`3esn` Contains $`8esn` Contains 0e0)][..Single(`5esn` In 12[0xabc..][$0..] Where 1000[_usn3..`8esn`])] Optional Match ((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Union Remove #usn8:`2esn`:`8esn` Optional Match usn1=(@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),#usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Union Match ((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) Where $`2esn` Starts With 0x0 Optional Match ((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) Where 07[\"d_str\"..]['s_str'..] Create `3esn`=(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`),(((:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]})-[`8esn` *..7{usn2:12.0 Contains $_usn4 Contains $usn2}]-(`8esn` :`7esn`{`6esn`:_usn4 Is Not Null Is Not Null})))"), + octest:ct_string("With Distinct *,$0[$`7esn`..$`3esn`]['s_str'...0],usn1 Ends With 12 Order By Count ( * )[0..][010..] Desc Limit 12.0 Starts With 07 Starts With $`3esn` Where @usn6[usn1..][`1esn`..] Match `3esn`=(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}),usn2=((:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]})) Union All With 010 Starts With 0.0 Starts With .0e0 As _usn4 Order By 123456789 =~$`1esn` =~#usn7 Ascending,.1e1 =~010 =~0.12 Descending Skip Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..])[..Extract(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]|$`6esn` Starts With `4esn`)] Limit Extract(`5esn` In 12[0xabc..][$0..] Where 9e-1[0X0123456789ABCDEF][0]|.9e1[..Count(*)][..7.0e-0]) Is Null Is Null Where `6esn`[010...9e-12] With Distinct *,Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As `5esn`,0xabc =~7.0e-0 =~4.9e12 Order By (#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Desc Where @usn6[.9e12..0e0] Unwind .0e-0 =~$`7esn` =~$0 As `` Union Delete usn1(Distinct true Starts With 2.9e1 Starts With 9e1)[Extract(usn2 In .0e0[$`6esn`..] Where 9.1e-1[Count(*)..][5.9e-12..]|.0e0[$`1esn`][.9e-12])..][Extract(`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6|$_usn4 Contains 123456789)..]"), + octest:ct_string("Create `6esn`=((#usn7 :_usn3:_usn3)<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Merge (`4esn` :`6esn`:`3esn`) On Create Set {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]}.#usn8?.`4esn`?.@usn6? =.9e12[$usn2..][7..],[_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]].`8esn`.@usn6? =0X7 =~$123456789 =~$`` On Match Set `2esn`+=3.9e-1[.9e-12],`5esn` =.0,`3esn`+=$_usn4 Is Not Null Unwind {`1esn`:07 Ends With @usn6 Ends With _usn3} =~Any(`7esn` In .12e12[Count(*)..] Where 01 Ends With \"d_str\") As `` Union All Merge ((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) On Create Set All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where true In $0 In @usn5).`7esn`.#usn8?.@usn5! =usn2 Starts With $_usn3 Unwind `4esn`(Distinct 01[..0.12],$`8esn` Is Null) Contains All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]) As `1esn` Delete None(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Is Not Null Union Return Distinct $_usn3 In 123.654 In $`8esn` As `2esn`,@usn5[$_usn3..],.1e-1 Contains 1e1 Contains $`6esn` As `5esn` Order By $usn1 Contains `7esn` Contains .9e12 Ascending,8.1e1 Ends With $0 Ends With 6.0e0 Descending,9e12[...12e12][..$`2esn`] Descending Limit `3esn`[`4esn`..Null][$usn1..`5esn`] Detach Delete $#usn7 Starts With 10.12e12"), + octest:ct_string("Merge `2esn`=((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Create @usn5=((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})-[`6esn`? *..0xabc{``:$_usn4[Null]}]->({usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`6esn` {_usn3:$_usn4 Contains .12e-12})) Unwind 0Xa Contains $999 Contains 0Xa As _usn4"), + octest:ct_string("Delete 11.12e-12 In $`1esn` In 9e12 Unwind 123.654 Is Not Null Is Not Null As `6esn` Merge ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`5esn` *01234567]->(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) On Create Set None(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).`5esn`?.`3esn`! =[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]},`8esn` =Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]],None(`` In $_usn3 Is Not Null Where 7.0e-0 =~$123456789 =~`8esn`).`3esn` =Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1]) On Match Set `8esn` =[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]).#usn7!.usn1?.usn1? =$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 9e0 =~9e1 =~.12e12|$@usn5 =~.12e-12).`2esn`?.`1esn`! =0e-0[...9e12] Union Create ((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)),`7esn`=({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})"), + octest:ct_string("With Distinct *,`2esn` Is Not Null Is Not Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Order By {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} Desc,{`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]] Ascending Where $``[4.9e12..2.9e1] Merge ((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}))) On Match Set {`1esn`:9e-12[$0][$`4esn`]}._usn3! =12e-12[..$7][..$0],All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`4esn`?.#usn7! =Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]]"), + octest:ct_string("With ``[..$#usn7],$`6esn`[$`8esn`..][false..] As _usn3 Union Unwind [usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..]|12e-12[9e0..1.9e0]][{`7esn`:$0 Starts With 010,_usn4:$`8esn`[$``..$`1esn`][9e-12..$7]}..Extract(`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|$_usn4[Null])][#usn7(Distinct 's_str'[0Xa..12e-12][.9e1..0xabc])..Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9e12[$#usn8..9e-1][$999..$`4esn`]|999 Starts With .9e12 Starts With 3.9e-1)] As `1esn`"), + octest:ct_string("With Distinct usn1(Distinct true Starts With 2.9e1 Starts With 9e1)[Extract(usn2 In .0e0[$`6esn`..] Where 9.1e-1[Count(*)..][5.9e-12..]|.0e0[$`1esn`][.9e-12])..][Extract(`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6|$_usn4 Contains 123456789)..] Order By 0xabc[7.0e-0..][12e12..] Ascending Limit 7.0e-0 Is Null Is Null Match usn1=({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}),(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}) Unwind 11.12e-12[010..11.12e-12] As `3esn`"), + octest:ct_string("Detach Delete 0X7[$7..],$usn1 Contains `7esn` Contains .9e12,(:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Union Create #usn7=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}))"), + octest:ct_string("Optional Match ((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})),(((`2esn` :`6esn`:`3esn`{@usn5:Count(*)[.0e0]})-[usn1?:usn1|:#usn8*..]-(`7esn` {`3esn`:.9e-1 Is Null})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))) Where 0x0 =~$7 =~Null Merge `1esn`=(((`8esn` {@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})-[`3esn`?:`2esn`|`7esn`*..]-(:_usn4)<-[``?:#usn8|:`4esn`]-(:usn1{@usn5:Count(*)}))) On Create Set All(_usn4 In Count(*)[9e1..][12e-12..] Where #usn8[7..@usn5]).`2esn`?.#usn7!.#usn7 =_usn4 Ends With .0 Ends With 7 On Match Set _usn3+=`1esn` =~0 =~_usn4,`3esn` =`5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]] Remove {_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}.`1esn` Union Remove @usn5:`5esn`,{`2esn`:.0,`5esn`:$`3esn` =~4.9e12 =~$7}.usn2.`4esn`? Optional Match `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Where 0e0 Starts With $1000 Starts With `2esn` Union Unwind Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])] As _usn4"), + octest:ct_string("Match ((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`2esn`=((`7esn` :usn1)<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3)) Where $`8esn` =~.9e12 =~010 Return Distinct 07[.0e0][3.9e-1] As #usn8,0X7 As _usn4 Skip $12 Is Null Is Null Remove Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|$_usn3 Is Not Null).`5esn`!,count(Distinct $`3esn` Starts With 0Xa).#usn7"), + octest:ct_string("Create `1esn`=(#usn8 :#usn7:_usn3) Union All Merge (@usn6 :_usn4) On Create Set ``+=2.9e1 Starts With 12e-12 Starts With 0.0 With Distinct Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) As _usn4,1000 In 123.654 In $`8esn`,usn1 Is Not Null As `8esn` Limit Count(*)[0.12..2.9e1] Where .9e1[11.12e-12] Match (((`3esn` :@usn6:_usn4)<-[_usn4?:#usn8|:`4esn` *123456789..0x0]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12})-[?:_usn3|`2esn`]->(`1esn` :`7esn`))) Where $@usn5[..1e-1] Union Optional Match `2esn`=((@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]}))"), + octest:ct_string("With *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Limit `8esn`[6.0e0..][$`1esn`..] Match `2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Where .0e0 =~5.9e-12 =~`7esn` Detach Delete 9e12[1e1...9e-12]"), + octest:ct_string("Detach Delete 00[0e-0...9e-1][1e-1..``],9e12[...12e12][..$`2esn`],7.0e-0 Contains Count ( * ) Contains 0Xa"), + octest:ct_string("With Count ( * )[..1.9e0][..`8esn`] As `1esn`,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] As @usn6,01[1e-1] Order By Count(*) Is Not Null Desc Skip Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) Limit `5esn`(Distinct 123456789 Ends With 8.1e1,01234567[6.0e0][$usn2])[{@usn5:usn1 Is Not Null,usn2:0xabc[7.0e-0..][12e12..]}..][(_usn3 :_usn3:_usn3)<-[`6esn`?:``|:`3esn`]-(:@usn6:_usn4$`6esn`)<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})..] Return Distinct $``[7..] As #usn8 Order By 1000[_usn3..`8esn`] Desc,9e-1 Starts With 123.654 Starts With .9e1 Descending,`` =~123456789 Descending Skip (usn1 :`2esn`:`8esn`)<-[?{_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)[All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)..][[`8esn` In 01234567[..0.0][..false] Where 6.0e0 Is Not Null|$usn2 In usn1 In 1e-1]..] Limit 's_str' In `7esn` In .9e-12 Union With Distinct $123456789 Is Null Is Null As #usn8,@usn6[..$`3esn`][..4.9e12] As #usn8,1.9e0[$12][``] As `5esn` Order By `1esn` Ends With 7.0e-0 Ends With $usn1 Desc Limit $`2esn` Ends With $`8esn` Match usn2=((:@usn5)-[@usn5:_usn3|`2esn`{`1esn`:5.9e-12[$`4esn`],usn1:9.1e-1[Count(*)..][5.9e-12..]}]->(usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})),(({#usn7:0X7[Count(*)][.9e0],`2esn`:0x0[`5esn`][$`5esn`]})-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})) Unwind {#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}[{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}..] As usn2 Union All Remove `3esn`:`7esn`,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}._usn3"), + octest:ct_string("Unwind ``(Distinct `4esn`[$1000..$``][$_usn4..$_usn4],.1e-1 Starts With 1000 Starts With $`1esn`) In [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|`4esn` Starts With $_usn3 Starts With .9e-12] In {`6esn`:``[$``..]} As `6esn` Create usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})),_usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Union All Unwind $`2esn`[$usn1..] As `3esn`"), + octest:ct_string("Delete [usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},`7esn` Contains $7 Contains 07 Remove Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]).#usn7! Unwind `1esn`[9.1e-1] As `5esn`"), + octest:ct_string("Unwind 7 Starts With 0X7 As _usn3 With Distinct All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7])[..Extract(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..])],Count(*) Is Not Null Is Not Null As `4esn`,9e12 Ends With 07 Order By $`2esn`[$1000][2.9e1] Desc,9e1 Ends With .9e0 Descending,@usn5 Is Null Is Null Desc Merge ``=((@usn6 :`5esn`)<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})) Union All Optional Match (#usn8 {_usn3:$_usn4 Contains .12e-12}) Return Distinct *,`4esn`(Distinct 01[..0.12],$`8esn` Is Null) Contains All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]),Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} As `3esn` Limit Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null Merge `1esn`=(`3esn` :_usn3:_usn3)-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]}) On Match Set `8esn` =.9e1[Count(*)..$`3esn`] On Create Set usn1+=$`3esn` In 's_str' In $#usn7 Union All With Distinct Null =~9e12 As #usn7,.0[usn2.._usn4] As `8esn` Order By [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]][{`2esn`:$`8esn` In 9e-12 In 3.9e-1}..{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}][Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..])..Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Descending,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]) Descending,5.9e-12 Contains $`` Contains $`5esn` Descending Skip .9e0[.1e-1][Count(*)] Where 9e1 Is Not Null Merge #usn7=(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[?{#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0}]-({`6esn`:07 Ends With @usn6 Ends With _usn3}) On Match Set `4esn`+=$`2esn`[$1000][2.9e1],{usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}._usn3 =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1} On Match Set {@usn5:12e-12 Starts With .9e12 Starts With 0.12}.`1esn`? =`3esn`[$0..][.9e1..]"), + octest:ct_string("Unwind Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null As `7esn` Return Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]),$`6esn`[$`8esn`..][false..] As _usn3,$`6esn`[..12e12][.._usn3] As `5esn` Order By $@usn6 =~$`2esn` =~9e1 Desc,$`2esn`[$usn1..] Desc,@usn6[01][.9e0] Ascending Skip All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Limit `1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Merge `3esn`=((`1esn` :_usn3:_usn3$0)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})) On Match Set #usn7:usn2,({usn1:usn2 Ends With 10.12e12})<-[`8esn` *1000]->(#usn8 ).usn2! =$`` In `2esn` In 07,`5esn` =`8esn`[6.0e0..][$`1esn`..] Union Delete $usn2[1e-1]"), + octest:ct_string("Detach Delete $#usn7 Starts With 10.12e12,Null =~true =~.1e-1,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where $_usn4[..usn2]|`1esn` Starts With 999 Starts With 3.9e-1) =~(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}) =~Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]) Delete (`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})-[`6esn`? *123456789..0x0]->({`6esn`:$usn1 Starts With usn1 Starts With 1e-1,#usn8:$#usn7 Starts With 10.12e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}) Is Null,Filter(`2esn` In .9e-12[0e0...9e-1] Where .9e-1 Is Not Null Is Not Null)[Any(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1])..(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})][(`7esn` :#usn7:_usn3{`3esn`:00[0e-0...9e-1][1e-1..``]})<-[_usn3:_usn3|`2esn`{`7esn`:0X7[_usn4..1.9e0][Count ( * )..false],_usn4:.9e-12[9e1..8.1e1]}]-({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]})..Single(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..])] Union With Distinct {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})] Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] Descending Detach Delete 0x0,$``[`6esn`][00],'s_str' Ends With $usn1 Unwind Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3) Starts With `2esn`(Distinct) Starts With (`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}) As `6esn`"), + octest:ct_string("Delete `7esn`[.1e1..][`8esn`..],9e12 Ends With 07,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..])[..{`4esn`:0 Starts With 0Xa Starts With $0}][..Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``)]"), + octest:ct_string("Create usn2=(`4esn` :`6esn`:`3esn`) Create `8esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Unwind usn2['s_str'...9e-1][$7..Count ( * )] As `1esn` Union All Create (_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[@usn6?:`5esn`]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) Union All Merge `8esn`=(`4esn` :`5esn`) On Match Set `3esn`+=$#usn7 Is Not Null Is Not Null,{#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}.usn2! ={`1esn`:01234567 Ends With 2.9e1 Ends With 9.1e-1}[(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})-[:#usn8|:`4esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}]-(:#usn8{_usn4:$999 Ends With .9e-12})<-[:@usn6|:_usn3{`5esn`:$@usn6 =~$`2esn` =~9e1}]->({`7esn`:.9e1[Count(*)..$`3esn`]})..] On Match Set _usn4:#usn7:_usn3,Extract(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0|`6esn` In 9e-12)._usn4? =0Xa Ends With #usn8 Ends With usn2 Remove count().`1esn`!._usn4?.`7esn`!,None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12).@usn5!.`2esn`!,[`5esn` In 12[0xabc..][$0..] Where $usn2[0e0][$7]|Count ( * )[`7esn`..]].``._usn4!.`5esn`"), + octest:ct_string("Merge ((:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})-[usn2?:@usn6|:_usn3]->({usn1:01[.9e-12..],@usn6:$`5esn` Ends With $#usn7 Ends With .0e-0})) On Create Set @usn5:usn2,None(`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]).`5esn`? =#usn7 Is Null,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where .9e1[#usn7..]).`8esn` =$`8esn` In 9e-12 In 3.9e-1 On Create Set @usn5 =0.12 Is Not Null Is Not Null,`3esn`+=11.12e-12 Is Null,`` =Count ( * )[..2.9e1] Union All Unwind 123456789[Count(*)] As _usn4 Merge (`` :#usn8{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}) Detach Delete `2esn` =~.1e-1 =~$usn1,$12[`1esn`..],07[.0e0][3.9e-1] Union All Return Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],`2esn` Is Not Null Is Not Null Skip $123456789 Starts With Count ( * ) Limit Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..] Merge `1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null"), + octest:ct_string("With Distinct .12e-12 In 9e12 In 9e-12,$#usn8[...9e1] Order By $``[`4esn`..][0.0..] Asc,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Skip Extract(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]|1000[..0e0][..$`6esn`])[{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}][Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 8.1e1 Ends With $0 Ends With 6.0e0)] Unwind 123456789[Count(*)] As usn1 Create ((#usn7 :_usn4{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})),_usn3=((usn2 {`4esn`:12e12 Is Not Null})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4})) Union All Unwind 0e-0 Contains _usn4 Contains 1e-1 As _usn3 Union All With Distinct *,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As `5esn`,0X0123456789ABCDEF Contains 8.1e1 Skip false Is Not Null Is Not Null Where 999[...12e12][..0] Return Distinct (#usn8 :#usn8)-[`` *..0X7]->(usn2 :#usn8)-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(@usn6 )[All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .12[$`2esn`..usn2][.9e-1.._usn3])],0.12[.12e-12] As `6esn` Order By true Starts With 2.9e1 Starts With 9e1 Desc Limit (#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})[Any(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)..][Single(_usn3 In ``[$``..] Where Null[`2esn`..])..] Merge ((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}))"), + octest:ct_string("Return Distinct *,$`` Is Not Null Is Not Null As `5esn`,7.0e-0 Is Null Is Null As `4esn` Order By 123456789[Count ( * )..] Desc,``(Distinct `4esn`[$1000..$``][$_usn4..$_usn4],.1e-1 Starts With 1000 Starts With $`1esn`) In [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|`4esn` Starts With $_usn3 Starts With .9e-12] In {`6esn`:``[$``..]} Desc,[usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc Union All Detach Delete {`3esn`:`1esn`[9.1e-1]} Ends With {`2esn`:7.0e-0[3.9e-1..`1esn`],`7esn`:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]} Ends With None(`5esn` In 12[0xabc..][$0..] Where 1e1 Starts With `8esn` Starts With .9e0)"), + octest:ct_string("Merge @usn5=(({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) On Create Set {@usn6:$_usn3 Is Not Null Is Not Null}.usn2! =.9e-12[0e0...9e-1],usn2 =12e12[07..]"), + octest:ct_string("Detach Delete 3.9e-1[..$`4esn`][..\"d_str\"],$`` In $usn2 Remove `5esn`().`7esn`.`7esn`.usn2,{`5esn`:$#usn8[$1000..],#usn7:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]}.`4esn` Union All Unwind Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Detach Delete (`2esn` :_usn3:_usn3)<-[:_usn3|`2esn` *..0X7{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[_usn3:_usn4|`1esn`{`2esn`:123456789 In 9e-12 In false}]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) =~Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 0e-0 Contains _usn4 Contains 1e-1) =~[usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]],.12e-12 Ends With $`7esn`,`3esn` Union Create ((:`7esn`)),((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2)) Remove All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`).`3esn`?._usn4!._usn4,Filter(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])._usn4? Create `2esn`=((:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]}))"), + octest:ct_string("Delete `6esn`[..01][..`8esn`],$12[`1esn`..] Detach Delete 1.9e0 Ends With 0Xa Ends With $12,.9e-12[9e1..8.1e1] Return Distinct *,5.9e-12 =~$@usn6 As `7esn` Skip .9e1[All(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)..][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])..] Union All Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set `6esn` =.1e1 =~10.12e12 On Match Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] Create (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}) Unwind _usn4['s_str'..] As `6esn`"), + octest:ct_string("Create (`6esn` :`8esn`:#usn7{`4esn`:00 Is Not Null Is Not Null,`4esn`:7 =~$`5esn`}) With None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]) Is Null Is Null,Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()] As #usn7 Skip Null[10.12e12..] Limit @usn6[usn1..][`1esn`..] With Distinct 9e12 Starts With `4esn` Starts With .9e-1 As @usn6 Order By {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} Ascending,01 Ends With \"d_str\" Asc,1000 Is Null Is Null Ascending Limit 0e0 Starts With $1000 Starts With `2esn` Union Remove Single(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1).`2esn`?,`1esn`:_usn4,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where usn1 Is Not Null).#usn8? Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where $`1esn` Starts With Count(*) Starts With $`8esn` Return Distinct Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] Order By 01[..0.12] Asc,6.0e0 Ends With .12e-12 Ends With 999 Ascending,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `2esn` Starts With $`7esn` Starts With _usn4|`1esn`[1000][Null]) Contains Single(`8esn` In 01234567[..0.0][..false] Where Count(*)[9e1..][12e-12..]) Desc Skip (`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})-[`6esn`? *123456789..0x0]->({`6esn`:$usn1 Starts With usn1 Starts With 1e-1,#usn8:$#usn7 Starts With 10.12e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}) Is Null Union Return $`4esn` In 123456789 In `5esn` As @usn5,`8esn`[..7.0e-0][..0xabc] As _usn3 Skip 00[0e-0...9e-1][1e-1..``] Limit 00[0e-0...9e-1][1e-1..``]"), + octest:ct_string("Return *,Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0)[(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..][Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..])..] As `5esn`,usn2 =~$`7esn` =~$`8esn` Skip $``[4.9e12..2.9e1] Remove Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0xabc In 10.12e12)._usn3?.@usn5!,{``:00[$`6esn`]}.`8esn`!,usn2:`8esn`:#usn7 Unwind Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) As _usn4 Union Detach Delete $``[4.9e12..2.9e1],@usn6[.9e12..0e0]"), + octest:ct_string("Remove [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null].usn2?,Any(`8esn` In 01234567[..0.0][..false] Where $@usn5[$#usn8..][_usn3..]).`8esn`!,(:usn1{usn1:Count(*)[0.12..2.9e1]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]}).#usn8 Detach Delete `` =~$`5esn`,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12)[{_usn4:@usn6 In 3.9e-1 In 9e-12}][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]|10.12e12[12e12..0X7])],`` Ends With .9e-1 Ends With 9e-12 Union Return Distinct 10.12e12[..10.12e12][..`6esn`] As `1esn`,Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]] As `3esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0x0 Contains $`1esn` Contains 0.0) In None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0) As `5esn` Skip `6esn`[..$``][..4.9e12] Limit _usn4 Is Null Is Null Merge (usn2 :@usn5{`3esn`:$usn1 Is Null})-[_usn3:`2esn`|`7esn`*..{#usn8:`1esn` =~0 =~_usn4,`2esn`:0e-0 In $1000 In .9e1}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}) On Match Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Optional Match (((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999}))),(`` :``:usn1{usn2:12.0[..123456789][..01]}) Where 12e-12[9e0..1.9e0]"), + octest:ct_string("Remove Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null).`2esn`? Merge usn1=({`5esn`:07 Starts With usn1 Starts With 010})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null}"), + octest:ct_string("Unwind 12e-12[`7esn`..][5.9e-12..] As `8esn`"), + octest:ct_string("Delete Extract(usn2 In .0e0[$`6esn`..] Where 010|0e-0 Contains _usn4 Contains 1e-1)[{#usn7:_usn4 Ends With .0 Ends With 7,#usn8:`` Ends With .9e-1 Ends With 9e-12}],0e0 Starts With $1000 Starts With `2esn` Match (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),`1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) Union All Return .0e-0 Starts With $#usn7 Starts With _usn3 As #usn8 Order By $usn2[12.0..] Desc Skip 7.0e-0 Is Null Is Null Delete 01[7][`1esn`],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|$@usn5 In .9e1 In $``) Contains (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null}),07[$`1esn`..$999] Create ((`3esn` {#usn8:`7esn` Is Null})<-[{`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}]-(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Union Unwind $usn1[$12..] As `` Unwind All(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]) Starts With Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) As `3esn` Merge ``=((@usn6 :`5esn`)<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}))"), + octest:ct_string("With 1.9e0 Starts With 's_str' Starts With 9.1e-1,8.1e1 Is Null,.1e1 Starts With .1e-1 Order By 0xabc[7.0e-0..][12e12..] Ascending Skip `5esn`[$`4esn`] Limit Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null Merge ((_usn4 )-[usn2?:@usn6|:_usn3]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`4esn`?:_usn3|`2esn`]-(`8esn` {``:$123456789[$_usn3..][$usn2..]})) On Create Set None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null).``.`1esn` ={@usn6:8.1e1[$`5esn`][0e0],`5esn`:$`8esn` Starts With `2esn`}[[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]],_usn3 =5.9e-12[9e0..] Union Return Distinct 0[..$@usn5] As `` Skip $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Limit 1e1 Is Not Null Is Not Null Union Optional Match `3esn`=(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})),`5esn`=(((_usn3 )-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3}))) Where $_usn3 In 123.654 In $`8esn`"), + octest:ct_string("Return Distinct usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]) As usn1 Order By .9e-12 Starts With .0e-0 Starts With usn2 Ascending Skip `4esn`[..$#usn7][..0X7]"), + octest:ct_string("Unwind Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] As `7esn` Remove Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where $usn2[.12e12]).usn1?.``!._usn4?,(`7esn` :_usn4)<-[`2esn`?:usn2|:`` *0Xa..7]->({`8esn`:$`` Is Null Is Null})._usn3!._usn4._usn3?,`7esn`(07 =~7.0e-0 =~`8esn`).``.usn2? Union All Remove {`4esn`:`8esn` =~.1e1 =~.0,`4esn`:Count(*) Starts With $_usn4}.@usn5?,count(Distinct 9.1e-1 =~@usn5 =~Count ( * )).`2esn`,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7).#usn7!"), + octest:ct_string("Merge ((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Remove @usn5(Distinct Null =~true =~.1e-1,12e12[..123456789][..false])._usn4!,All(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]).`4esn`? Merge (@usn6 :_usn4)"), + octest:ct_string("Create `8esn`=(`3esn` :#usn7:_usn3)<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(`2esn` :usn2)<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}),`4esn`=(((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Union Remove Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]).`2esn`!._usn4! Unwind 12[0xabc..][$0..] As @usn5 Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null"), + octest:ct_string("Return Distinct *,true Is Null Is Null As _usn3 Order By 12e12 Is Not Null Desc,0.0[$1000][3.9e-1] Ascending Skip {`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]} =~[usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|.9e1[..`5esn`]] Limit .0e0 =~5.9e-12 =~`7esn` Return Distinct *,Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),3.9e-1[.0e0..][07..] Order By 2.9e1 Starts With 12e-12 Starts With 0.0 Asc,.0e0 Starts With $@usn6 Starts With Null Descending Remove (`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``!,usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4! Union All Merge `1esn`=(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))) On Create Set `8esn`+=Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),`8esn`+=0.0 Is Not Null Is Not Null On Create Set `2esn` =$999[$usn1...0e0] Remove Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1).``"), + octest:ct_string("Remove {_usn4:$#usn7 Is Not Null Is Not Null,`3esn`:9.1e-1 In #usn8}._usn4?,Any(`8esn` In 01234567[..0.0][..false] Where 6.0e0 Is Not Null).@usn5,`6esn`($0 Starts With 010)._usn3! Unwind 10.12e12 In `3esn` In $usn2 As #usn7 Merge ((#usn8 :#usn8)) On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] On Match Set `2esn`+=9e-12 In usn2,`7esn`($usn1 Is Not Null).`1esn`! =@usn5 Ends With 's_str' Ends With 01,None(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).@usn5! =$`2esn`[8.1e1] Union Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Unwind {@usn6:\"d_str\" =~9e-12 =~`5esn`}[#usn8(Distinct 999 Starts With .9e12 Starts With 3.9e-1,true Contains 0x0)..[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010]][All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)..{`4esn`:0 Starts With 0Xa Starts With $0}] As `8esn` Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Where $`6esn` Starts With `4esn` Union All Detach Delete ({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`3esn`?:`1esn`]-(:`8esn`:#usn7{@usn5:$12 Contains $`7esn` Contains .0})<-[@usn6?:@usn5]->(:usn1{usn1:Count(*)[0.12..2.9e1]}) Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2|9e0[..1e1]) Ends With {`1esn`:7.0e-0[3.9e-1..`1esn`]},{#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]),$#usn7 In .12e-12 Remove Any(@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null).#usn8?"), + octest:ct_string("Detach Delete 7 Contains $#usn7 Remove Single(`5esn` In 12[0xabc..][$0..] Where 1000[$`6esn`..12.0]['s_str'..$`3esn`])._usn4?,(_usn4 :@usn5)<-[@usn5?:@usn5 *..01]-(`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}).`5esn`._usn3.#usn7? Union All Unwind {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) As `5esn` Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),(usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}) Return Distinct ({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)[{``:.1e-1 Ends With $`8esn` Ends With .9e0,`7esn`:.9e-12 Is Not Null Is Not Null}][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])],Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1)"), + octest:ct_string("Merge #usn8=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) On Create Set `2esn` =(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)],`3esn` =9e1 Contains 4.9e12 Contains 123456789 Detach Delete 0x0,$``[`6esn`][00],'s_str' Ends With $usn1 Union All Merge _usn4=(((`2esn` {`7esn`:Count(*)[.0e0..][#usn7..]})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)-[:#usn8|:`4esn` *12..0Xa]->(`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]}))) Remove [usn2 In $_usn3 =~$usn1 =~_usn4 Where 0xabc In 10.12e12|9e-1 Starts With 123.654 Starts With .9e1].`2esn`?.`5esn`"), + octest:ct_string("Unwind Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)[{_usn3:$0 Starts With 010}] As _usn4 Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12|.1e-1).`1esn`?,All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]).`7esn`!,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).usn1? Union All Return *,$999 Order By _usn3[`2esn`..10.12e12][9e1..true] Descending Skip $`2esn` Ends With $`8esn` Limit All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],.1e-1 Is Null,.9e12[$usn2..][7..] As `2esn` Limit _usn4 Is Null Is Null Where .12e-12 Ends With $`7esn` Merge ``=(({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})) On Create Set usn2:usn2,usn1+=0xabc[$`4esn`..][`8esn`..],#usn7+=Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12])[..None(_usn3 In ``[$``..] Where Null[`2esn`..])][..{`3esn`:.0e-0 Starts With $#usn7 Starts With _usn3,usn2:`6esn` In 9e-12}] On Match Set #usn7 =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct)"), + octest:ct_string("Return Distinct *,0X0123456789ABCDEF Contains 8.1e1 As @usn6 Order By .1e1 =~010 =~0.12 Asc,(:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null) Ascending Skip 9e1 Ends With .9e0 Limit $12[01] Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set `6esn` =.1e1 =~10.12e12 On Match Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] Union Merge ((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) On Create Set (`6esn` :usn1)<-[usn1{`2esn`:usn2 Ends With .0}]->(_usn3 :_usn3:_usn3)-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})._usn3? =Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}],@usn5 =.9e1[...12e12] Unwind All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] As #usn8 Merge (#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) On Create Set Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])._usn3 =_usn4[7][8.1e1],#usn7+=Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()],`1esn`:#usn7:_usn3"), + octest:ct_string("Unwind $`3esn` Is Not Null As `4esn` With Distinct 0x0 Starts With $`5esn` Starts With 9e-12,$`6esn` Ends With 12 Order By Count ( * )[0..][010..] Desc Skip .9e-1[12.0]"), + octest:ct_string("Delete `` =~$`5esn`,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]|12e12 Is Not Null][{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]}],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|$@usn5 In .9e1 In $``) Contains (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null}) Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Create Set (`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8,_usn3+=Null[..07] On Match Set `2esn`+=3.9e-1[.9e-12],`5esn` =.0,`3esn`+=$_usn4 Is Not Null Union Return Count(*)[8.1e1..],Any(`` In $_usn3 Is Not Null Where 12e12[true..][$`2esn`..]) =~{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12} =~{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3} As `3esn` Order By 9e-1[0X0123456789ABCDEF][0] Ascending,`5esn` Contains `6esn` Asc,9e12 Is Null Is Null Ascending Limit (#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})[Any(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)..][Single(_usn3 In ``[$``..] Where Null[`2esn`..])..] With Distinct *,All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Starts With 10.12e12 Starts With #usn7(false =~4.9e12),0e0[`4esn`] Where 1e1 Ends With Null Ends With `7esn` Detach Delete Filter(`2esn` In .9e-12[0e0...9e-1] Where .9e-1 Is Not Null Is Not Null)[Any(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1])..(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})][(`7esn` :#usn7:_usn3{`3esn`:00[0e-0...9e-1][1e-1..``]})<-[_usn3:_usn3|`2esn`{`7esn`:0X7[_usn4..1.9e0][Count ( * )..false],_usn4:.9e-12[9e1..8.1e1]}]-({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:@usn5{usn2:5.9e-12[$`4esn`]})..Single(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..])],8.1e1 Is Null Is Null,`7esn`(7.0e-0[.._usn4][..0X7],$`5esn`[7..]) Contains [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]"), + octest:ct_string("Remove Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]).usn2.@usn5!"), + octest:ct_string("Create usn2=(((`7esn` :``:usn1)<-[:`4esn`|:@usn5]-(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[?]->(_usn4 :@usn5))),((:`7esn`)) Return *,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null As `6esn`,01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..] Skip [_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789|0e-0 Contains _usn4 Contains 1e-1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567) Limit @usn5[``..][12e-12..] Union All With Distinct *,$0[$`7esn`..$`3esn`]['s_str'...0],usn1 Ends With 12 Order By Count ( * )[0..][010..] Desc Limit 12.0 Starts With 07 Starts With $`3esn` Where @usn6[usn1..][`1esn`..] Match `3esn`=(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}),usn2=((:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]})) Union Match _usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))) With *,`8esn`[..7.0e-0][..0xabc] As `3esn` Order By Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Ascending,Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] Ascending Skip $@usn5[usn1..][$`8esn`..] Where `7esn` Is Not Null With Distinct $`` Ends With 6.0e0,$`6esn` In `2esn`,\"d_str\" Starts With `6esn` Starts With 1.9e0 As _usn3 Order By true Is Null Is Null Descending,(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] Descending,{usn1:`7esn` Is Not Null}[Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8)..{`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3}][Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 9.1e-1[.1e-1])..{usn2:1e1[3.9e-1][.9e-1]}] Descending Skip 010[11.12e-12..]"), + octest:ct_string("With Distinct *,9.1e-1 =~@usn5 =~Count ( * ) As _usn4 Order By 1000[$`6esn`..12.0]['s_str'..$`3esn`] Ascending Limit {#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0} Is Null Is Null Remove All(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8).@usn6,`3esn`:`8esn`:#usn7,_usn3(Distinct @usn6 In 3.9e-1 In 9e-12,true Starts With 2.9e1 Starts With 9e1).`7esn` Union All With .1e1[9e-1][$usn1] As `6esn`,{_usn3:07 =~_usn4 =~.9e12}[All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 8.1e1 Is Null Is Null)..] As #usn8,10.12e12[0Xa..999][1000..Count(*)] As usn2 Order By `4esn`[0.0..][.1e-1..] Desc,$_usn3 Contains 1e1 Contains .12 Ascending Limit 1e-1 =~0.0 =~9.1e-1 Where $12[01] With *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip usn2 Starts With $_usn3 Where \"d_str\"[12e12..][4.9e12..]"), + octest:ct_string("Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``]|`4esn` Starts With $_usn3 Starts With .9e-12].@usn5!._usn4?.`1esn`?,All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where true In $0 In @usn5).`3esn` Union Remove Single(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1).`2esn`?,`1esn`:_usn4,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where usn1 Is Not Null).#usn8? Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where $`1esn` Starts With Count(*) Starts With $`8esn` Return Distinct Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] Order By 01[..0.12] Asc,6.0e0 Ends With .12e-12 Ends With 999 Ascending,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `2esn` Starts With $`7esn` Starts With _usn4|`1esn`[1000][Null]) Contains Single(`8esn` In 01234567[..0.0][..false] Where Count(*)[9e1..][12e-12..]) Desc Skip (`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})-[`6esn`? *123456789..0x0]->({`6esn`:$usn1 Starts With usn1 Starts With 1e-1,#usn8:$#usn7 Starts With 10.12e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}) Is Null"), + octest:ct_string("Merge (`8esn` :_usn3:_usn3)-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})-[ *..01]->(#usn8 :#usn7:_usn3) Union Return Distinct *,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]) As usn2 Limit [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]} With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Limit #usn7[10.12e12..][\"d_str\"..] Where 9e12[...12e12][..$`2esn`] Union All With Distinct *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Remove Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $@usn5 =~.12e-12).`4esn`?,Single(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]).`8esn`?"), + octest:ct_string("Return `1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `4esn` Unwind $usn1[$12..] As `7esn` Merge ((:`2esn`:`8esn`{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})) Union Merge `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})) On Match Set `8esn`+=Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\"),`1esn`+=4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12),(`` {_usn4:9e0[..1e1]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(@usn5 :@usn6:_usn4).#usn8.`1esn`.usn1! =00[0e-0...9e-1][1e-1..``] With Distinct *,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As `5esn`,0X0123456789ABCDEF Contains 8.1e1 Skip false Is Not Null Is Not Null Where 999[...12e12][..0]"), + octest:ct_string("With `8esn` As usn2 Order By Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"]|`7esn`[3.9e-1..][$@usn5..])[..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] Desc,.0e0 Is Null Is Null Descending,$`4esn` =~0e0 Ascending Unwind $usn1 Is Null As `2esn` Return Distinct Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12)[Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12)..][`4esn`(Distinct)..],Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] As `7esn`,None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[..Filter(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0)][..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] As #usn8 Order By {`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])] Asc,`6esn`[`6esn`..] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip `6esn` Is Not Null Union Remove (:_usn4{``:$_usn3[1e-1..]})-[@usn5?:`8esn`|:`2esn`]-(`2esn` :_usn3:_usn3).#usn7.`1esn`"), + octest:ct_string("Optional Match ({`4esn`:$@usn5[$#usn8..][_usn3..]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})"), + octest:ct_string("Delete {_usn4:1.9e0 =~$`8esn` =~01234567}[All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)],Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Unwind {@usn5:.0 Is Null Is Null}[Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0|01 Ends With \"d_str\")][[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|0X0123456789ABCDEF[1.9e0]]] As _usn3 Merge usn1=(`5esn` :`1esn`) Union All Create @usn6=((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`6esn`:`6esn`|#usn7*]->(`3esn` {_usn4:$`2esn` Starts With 0x0})-[#usn8 *010..{@usn5:6.0e0 Is Not Null}]->(@usn5 :`7esn`)) With Distinct 11.12e-12 =~{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]} =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|0[..$@usn5]),$123456789 Is Not Null,1000 Starts With 11.12e-12 Starts With 01234567 Skip 12 In 1000 In \"d_str\" Limit All(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])[..(:_usn4{`4esn`:9e1 Contains 4.9e12 Contains .9e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})][..(:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)<-[?{_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})] Where 12.0 Contains $_usn4 Contains $usn2 Merge (((`4esn` {_usn3:@usn6 In 3.9e-1 In 9e-12})<-[`6esn`? *123456789..0x0]-(`7esn` :`8esn`:#usn7{`4esn`:`8esn` =~.1e1 =~.0})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`6esn` {_usn3:$_usn4 Contains .12e-12}))) On Match Set `4esn`+=$`2esn`[$1000][2.9e1],{usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}._usn3 =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1} On Create Set ``+=$`8esn` In .1e1 In 010,Single(`8esn` In 01234567[..0.0][..false] Where .9e12 =~`5esn` =~07).@usn5! =9e-1 Starts With 123.654 Starts With .9e1 Union Remove [#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1].`6esn`._usn4?._usn4!,{`3esn`:#usn8[..#usn7][..@usn6]}.#usn8? Create ((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),(((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]})))"), + octest:ct_string("Unwind (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] As `2esn` Remove {`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}.`7esn`!.@usn5 Union Merge usn1=((_usn4 :`5esn`)-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})) On Match Set Any(`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]).usn1!.``?.``? =false =~4.9e12,usn1 =7.0e-0[3.9e-1..`1esn`] On Match Set usn2:`4esn`:`7esn` Union All Return *,.9e1 Starts With `4esn` Limit 0e0 Ends With 0X7 Ends With .1e1"), + octest:ct_string("Match usn2=((:@usn5)-[@usn5:_usn3|`2esn`{`1esn`:5.9e-12[$`4esn`],usn1:9.1e-1[Count(*)..][5.9e-12..]}]->(usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})),(({#usn7:0X7[Count(*)][.9e0],`2esn`:0x0[`5esn`][$`5esn`]})-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})) Unwind $999[$usn1...0e0] As `3esn` Unwind `6esn` In 9e-12 As _usn4 Union All Match ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})),_usn3=((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Where $usn2 =~$`2esn` =~\"d_str\" Optional Match #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}),`1esn`=(:usn1{usn1:Count(*)[0.12..2.9e1]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})"), + octest:ct_string("Detach Delete (`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})-[`6esn`? *123456789..0x0]->({`6esn`:$usn1 Starts With usn1 Starts With 1e-1,#usn8:$#usn7 Starts With 10.12e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}) Is Null,_usn4 Is Null Is Null Optional Match #usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Union Remove {#usn8:``[$``..],`1esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}.#usn8.#usn8?,`4esn`:`6esn`:`3esn`,`7esn`(9.1e-1 Contains 0xabc).`7esn`"), + octest:ct_string("Detach Delete None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4) Union Merge @usn6=(((`` :`5esn`)-[:`4esn`|:@usn5 *01234567$_usn4]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})-[`1esn`?:`1esn` *07..]-(_usn3 :_usn4))) Match ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})),_usn3=((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Where $usn2 =~$`2esn` =~\"d_str\" Unwind Count(*)[12..][0X0123456789ABCDEF..] As #usn7 Union Create @usn6=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]}))"), + octest:ct_string("Optional Match usn1=(`5esn` :`1esn`),`4esn`=((@usn5 :usn1{usn1:.9e1[12]})) Unwind usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]] As #usn8 Merge @usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}) On Create Set Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0).``? =.9e1[11.12e-12] On Match Set `7esn` =Filter(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) Starts With All(`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]) Starts With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`)"), + octest:ct_string("Merge ((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) On Create Set (`6esn` :usn1)<-[usn1{`2esn`:usn2 Ends With .0}]->(_usn3 :_usn3:_usn3)-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})._usn3? =Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}],@usn5 =.9e1[...12e12] Unwind All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] As #usn8 Merge (#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) On Create Set Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])._usn3 =_usn4[7][8.1e1],#usn7+=Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()],`1esn`:#usn7:_usn3 Union Unwind Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)[..None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null)][..[@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`]]] As `3esn` Optional Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),`5esn`=(`8esn` $12)<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}) Where $`` =~$_usn3"), + octest:ct_string("Return Distinct *,1000[Null..] As `1esn`,.9e1[#usn7..] As `7esn` Limit Count ( * ) In 999 Unwind 01234567[..Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null)][..999] As usn2"), + octest:ct_string("Detach Delete Count(*)[0.12..2.9e1] Unwind @usn5 In $1000 In 07 As #usn7 Return [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..] Union All Merge @usn5=((:`7esn`{usn1:123.654 Ends With 0Xa Ends With .12e12})-[ *0..010]->(_usn4 :`5esn`)) On Match Set ``+=0.12[07..3.9e-1] On Create Set @usn6(9.1e-1[$`4esn`..][$`4esn`..]).@usn5?.#usn8!.`2esn` =usn1[12e-12],`4esn` =$`6esn`[..12e12][.._usn3] Create @usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})"), + octest:ct_string("Match (:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Remove {usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}.`8esn`! Union Return Distinct *,$`3esn` Is Null Is Null,`3esn` Starts With _usn4 As @usn5 Skip $`5esn` In `5esn` Limit $0 Contains .12e-12 Union All Unwind _usn4 Ends With .0 Ends With 7 As `7esn`"), + octest:ct_string("Match ``=((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),(((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}))) Union All Delete ``(Distinct #usn7 =~`5esn` =~``)[Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..])..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)],4.9e12[1e1..'s_str'][Count(*)..0X7] Unwind .0e0 Is Null Is Null As #usn8 Detach Delete 7.0e-0 Is Null Is Null Union Unwind `4esn`(Distinct 01[..0.12],$`8esn` Is Null) Contains All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]) As `1esn` Return Distinct *,Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,`3esn` Contains 01234567 Contains .9e-12 Order By 12 =~$@usn5 Desc,0Xa In 0.12 In $#usn7 Descending Create ``=((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})),_usn3=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`)))"), + octest:ct_string("Return 0.0[..Null][..9e-12] As `1esn`,$0 =~01234567 As `2esn` Order By All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Asc,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Skip (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null) Remove _usn3:`1esn`,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']).`2esn`!"), + octest:ct_string("Remove (:@usn5{`4esn`:.0e0[$`6esn`..]})-[? *0X0123456789ABCDEF..0]-({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`).#usn7! Create (@usn6 :_usn4) Union Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null"), + octest:ct_string("Delete (`8esn` :_usn3:_usn3{`6esn`:9e0[..1e1],@usn6:0x0 =~$7 =~Null})<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`8esn` *1000]->(usn1 :_usn4) In Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where ``[$``..]) In {usn2:.9e-1 Is Not Null Is Not Null},1e1 Starts With `8esn` Starts With .9e0 Return Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) =~Filter(`8esn` In 01234567[..0.0][..false] Where .9e12 =~`5esn` =~07) =~Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0|12[0xabc..][$0..]) As `3esn`,1000[..0e0][..$`6esn`],`7esn` Ends With `7esn` Ends With $`3esn` As #usn8 Order By {`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) Descending,All(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Starts With Filter(_usn3 In ``[$``..] Where .0e0[1e1..][01234567..]) Starts With `3esn`(Distinct) Descending Skip 1e1 Ends With Null Ends With `7esn` Limit {`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]]"), + octest:ct_string("Unwind 0e0 Ends With `7esn` Ends With usn1 As _usn3 Unwind 5.9e-12[9e0..] As @usn5"), + octest:ct_string("Optional Match `3esn`=(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))),(((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})-[`2esn`?:#usn8|:`4esn`]-(:@usn6:_usn4{`2esn`:$usn1[$7..][$0..]}))) Where $`4esn` In 123456789 In `5esn` Delete All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])[..{#usn8:.12e12[Count(*)..]}][.._usn4(Distinct `2esn` Starts With 999,$`5esn` Starts With 0X7 Starts With 1e1)],Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1]),07 Ends With 0X7 Ends With 's_str' Create #usn7=((`4esn` {_usn3:@usn6 In 3.9e-1 In 9e-12})<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4)) Union All Remove All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0)._usn3? Unwind $@usn5[..1e-1] As _usn4 With 1000[Null..] As `1esn`,.1e1 Starts With $7 Order By Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Ascending,$`7esn` Contains 0X7 Asc,$_usn4 Is Not Null Ascending Limit .0e0[$`1esn`][.9e-12]"), + octest:ct_string("Delete `1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)],_usn4 In `3esn` In 7.0e-0,'s_str' =~.9e1 =~3.9e-1 Union All Delete Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 07[.0e0][3.9e-1]) Contains Extract(`` In $_usn3 Is Not Null),Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Merge (((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999}))) Optional Match #usn7=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),`7esn`=((#usn7 )) Union All With Distinct None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn`[..0x0][..\"d_str\"])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1])..Single(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])] As `4esn`,Null Is Not Null Is Not Null Order By {`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1} In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) Descending,$`6esn` In `2esn` Ascending,usn2 Starts With usn1 Descending Skip 12e-12[.0..] With Distinct *,.9e-12[9e1..6.0e0][`1esn`..9e0] As @usn6,$`6esn` In $`3esn` In 9e1 Order By 5.9e-12 Ends With 1e1 Ends With false Descending,$`2esn` Starts With .12e12 Starts With 3.9e-1 Ascending,`6esn`[`6esn`..] Descending Skip $_usn4 =~$_usn4 =~2.9e1 Where .9e0 Is Null Is Null Remove Any(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).`2esn`!,({``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-(:`3esn`{_usn4:Count(*) =~`5esn` =~$usn2,`7esn`:$123456789[$_usn3..][$usn2..]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`).@usn6.@usn5?"), + octest:ct_string("Remove Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Starts With 9e1 Starts With $`4esn`).`7esn`?,[usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..]|$_usn4 Is Not Null]._usn3! Merge `3esn`=({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}) On Match Set `6esn`+=[usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null]][(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})..] On Match Set `7esn` =Filter(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) Starts With All(`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]) Starts With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`)"), + octest:ct_string("Remove [`5esn` In 12[0xabc..][$0..] Where _usn3 Ends With 01 Ends With .1e-1].@usn5!.`3esn`,@usn6($`` Is Not Null Is Not Null,.9e0 In 9.1e-1 In $123456789).`8esn`,All(`` In $_usn3 Is Not Null Where 4.9e12 Contains .12e12 Contains 0xabc).`6esn`? Return Distinct 9e-12 In 5.9e-12 As ``,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0x0 Contains $`1esn` Contains 0.0) In None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0) As `5esn` Order By 0e0 Ends With 0X7 Ends With .1e1 Desc,(#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Asc,0x0 =~$7 =~Null Desc"), + octest:ct_string("Unwind .9e12 Is Not Null Is Not Null As usn2 With *,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e1[..Count(*)][..7.0e-0]) =~[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 01[Count(*)..0e-0][7..$`2esn`]] =~Single(usn2 In .0e0[$`6esn`..] Where 01[1e-1]),usn1 Ends With 12 As `` Limit `7esn` Ends With `7esn` Ends With $`3esn` Union Unwind 0e-0 Starts With 9e-12 Starts With false As `6esn` Merge ((usn1 )-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0}))"), + octest:ct_string("Create ((:@usn5{`7esn`:7.0e-0[`6esn`..]})<-[`7esn`?:``|:`3esn`{@usn5:0x0[`5esn`][$`5esn`]}]->(`3esn` :_usn3:_usn3)<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})),((_usn3 :#usn8)-[_usn4?:``|:`3esn`]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1})) Create @usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}) Union Delete $`1esn` Starts With .12,8.1e1 Contains 0e-0 Contains $_usn3,12e12 Is Not Null Union Merge usn1=({`5esn`:07 Starts With usn1 Starts With 010})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) Remove [`2esn` In .9e-12[0e0...9e-1]|$1000[$1000...9e0]].`1esn`._usn3!,{@usn5:`2esn` =~usn1,#usn8:$`` Is Not Null Is Not Null}.@usn5!,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0 Starts With 0Xa Starts With $0].`7esn`! Unwind $0[..0x0][..01234567] As `7esn`"), + octest:ct_string("Delete {#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0} Is Null Is Null,`3esn` In 0X7 Return *,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] As `7esn` Skip Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12) In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null|.12e12[$12..4.9e12][11.12e-12..9e12]) In {`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``} Match ``=((@usn6 :`5esn`{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *0x0..{`3esn`:12[0xabc..][$0..],@usn5:`6esn` Is Not Null Is Not Null}]->({#usn8:7.0e-0[3.9e-1..`1esn`],usn1:.0e0[..1e1][..$1000]})-[:`4esn`|:@usn5 *01234567$_usn4]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})),(((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})))"), + octest:ct_string("With 123.654 Is Not Null Is Not Null As `7esn`,({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]})[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where $`8esn`[$``..$`1esn`][9e-12..$7])] Skip `2esn` =~usn1 Detach Delete (`3esn` :#usn7:_usn3)<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) Ends With [_usn3 In ``[$``..] Where @usn5 Ends With 0],Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1])[[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null|`3esn`[3.9e-1..$`5esn`]]..][All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `8esn` Is Null)..],$1000 Contains 01234567 Contains 0X7"), + octest:ct_string("Match (((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) Unwind 0X7 Starts With 1e1 Starts With $12 As #usn8 Remove (#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *01234567]->(`5esn` :`2esn`:`8esn`).#usn7!.`3esn`!.@usn6! Union All Unwind [usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]|'s_str' Is Null] Is Null As _usn4 Union Merge usn1=(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ) Merge ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})) On Create Set @usn5+=_usn4 Ends With .0 Ends With 7,None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0e-0 Contains _usn4 Contains 1e-1).`6esn`! =Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) On Create Set [_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8].`5esn`! ={_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12),#usn8 =(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] Match @usn6=(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]}),`8esn`=(`` {_usn4:9e0[..1e1]})"), + octest:ct_string("Delete 's_str' In `7esn` In .9e-12 Union All Merge `5esn`=(((`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`))) On Create Set @usn6(9.1e-1[$`4esn`..][$`4esn`..]).@usn5?.#usn8!.`2esn` =usn1[12e-12],`4esn` =$`6esn`[..12e12][.._usn3] On Match Set #usn8 =8.1e1[$`5esn`][0e0],@usn5 ={`3esn`:`1esn`[9.1e-1]} Ends With {`2esn`:7.0e-0[3.9e-1..`1esn`],`7esn`:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]} Ends With None(`5esn` In 12[0xabc..][$0..] Where 1e1 Starts With `8esn` Starts With .9e0),None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1).`8esn`!.`2esn`!.``? =$1000 Union Delete {_usn4:1.9e0 =~$`8esn` =~01234567}[All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)],Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Unwind {@usn5:.0 Is Null Is Null}[Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0|01 Ends With \"d_str\")][[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|0X0123456789ABCDEF[1.9e0]]] As _usn3 Merge usn1=(`5esn` :`1esn`)"), + octest:ct_string("Match (:#usn8{`7esn`:0[$`1esn`..`8esn`]})-[`4esn`?:`6esn`|#usn7]->(`1esn` ),((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})) Match _usn3=((@usn5 :usn1)-[? *123456789..0x0{`8esn`:`2esn` Is Not Null Is Not Null}]->(`` :usn1)),({_usn4:$`3esn` In 's_str' In $#usn7})"), + octest:ct_string("Return Distinct {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As ``,$`8esn`[12.0..][4.9e12..],.1e-1 Ends With @usn6 As @usn6 Order By false Starts With 3.9e-1 Asc,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Descending Delete `2esn`[..9.1e-1][..0xabc],`6esn`[`5esn`..][0.12..],0.0[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])..] Unwind $`6esn`[$`8esn`..][false..] As `6esn` Union All With 123456789 =~$`1esn` =~#usn7 As `5esn`,Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12e12 Starts With 4.9e12 Starts With 0e0)[Extract(`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0|12e12[..$`8esn`][...0e-0])] As `5esn`,{#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})] Limit $12 Contains $`3esn` Where .1e-1 Starts With 1000 Starts With $`1esn` Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1)._usn3!,Any(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).#usn8? Remove None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])._usn4._usn4,Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where usn1[..10.12e12][..7]).``? Union All Remove (`` :@usn6:_usn4{`4esn`:00 Is Not Null Is Not Null})-[`1esn`:usn1|:#usn8]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}).`6esn`!.@usn5?._usn4?,@usn5:_usn4,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]).`2esn`!.`8esn`!._usn3!"), + octest:ct_string("Merge `2esn`=((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) Create #usn7=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Merge _usn4=(((`2esn` {`7esn`:Count(*)[.0e0..][#usn7..]})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)-[:#usn8|:`4esn` *12..0Xa]->(`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]}))) On Match Set _usn4 =$`6esn` In .9e12 In $#usn7,@usn5 =12 Contains _usn3,None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null).`8esn`? =11.12e-12 Contains 9e-12 On Match Set `2esn` =$`3esn`[010..][9e-1..],[`8esn` In 01234567[..0.0][..false] Where 5.9e-12[.1e1][$#usn8]|12 Contains usn2 Contains $usn2].#usn7 =01234567[..0.0][..false],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789).usn1!.``! =010 Starts With 0.0 Starts With .0e0 Union All Optional Match @usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),`3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})) Create `3esn`=(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`),(((:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]})-[`8esn` *..7{usn2:12.0 Contains $_usn4 Contains $usn2}]-(`8esn` :`7esn`{`6esn`:_usn4 Is Not Null Is Not Null}))) Delete .9e-1 =~.9e-1 Union With Distinct *,$7 Contains _usn4 Contains $`1esn`,0e-0[$`2esn`][8.1e1] As @usn5 Order By 123456789[\"d_str\"..] Asc,9.1e-1[$`4esn`..][$`4esn`..] Ascending"), + octest:ct_string("Remove _usn3:#usn8,`5esn`(Distinct $`8esn` =~.9e12 =~010,$#usn8[$1000..]).`3esn`?,Extract(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`]|$`3esn`[..`1esn`][..$`7esn`]).@usn6!"), + octest:ct_string("Return *,false[$1000..$@usn6][7..12],.0e0[8.1e1..0.12] Union Remove [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where true Contains 0x0|$@usn6 Is Not Null Is Not Null].`8esn`,`2esn`:`3esn`,[`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1|`6esn`[..$@usn6][..$`1esn`]].`8esn`? With Distinct *,[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},07 =~_usn4 =~.9e12 As `` Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending Where .9e-1[12.0] Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) On Match Set `5esn` =$`2esn` Starts With #usn7 Starts With 12e12,#usn7(07[.0e0][3.9e-1]).`3esn` =$``[`6esn`][00] On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1 Union Create usn2=(((`7esn` :``:usn1)<-[:`4esn`|:@usn5]-(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[?]->(_usn4 :@usn5))),((:`7esn`)) Return *,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null As `6esn`,01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..] Skip [_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789|0e-0 Contains _usn4 Contains 1e-1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567) Limit @usn5[``..][12e-12..]"), + octest:ct_string("Merge (:_usn3:_usn3{`5esn`:`2esn` Is Not Null Is Not Null,`7esn`:2.9e1})<-[`7esn`*..]-(`7esn` :usn1) Return Distinct `2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,1e1 In .1e-1 In .0 Order By Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) Asc Skip 00 =~.9e-12 =~usn1 Limit 12e12 Ends With usn1"), + octest:ct_string("Remove @usn5:`7esn`,{_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12}.usn2!.`1esn`?.#usn7"), + octest:ct_string("Match `6esn`=(usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}),(({_usn4:01234567[6.0e0][$usn2]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})) Union All Remove ({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})<-[`3esn`?:`5esn`]->(`2esn` ).``!,$12.`8esn`!.usn2!._usn4,None(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]).`3esn`?.@usn6!._usn3!"), + octest:ct_string("Optional Match ((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})),`4esn`=(((`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})-[``]-(`7esn` :``:usn1{`1esn`:0e0 Starts With $1000 Starts With `2esn`,@usn6:@usn6 In 3.9e-1 In 9e-12})-[@usn5*{`7esn`:`3esn` Starts With _usn4}]->(#usn8 :_usn4{_usn3:.0 Is Null Is Null}))) Optional Match (((`5esn` :#usn7:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(usn2 {@usn5:$usn2 Ends With `8esn` Ends With _usn3,@usn6:`7esn` Is Not Null}))) Detach Delete 9e1 Ends With 123456789,usn1 Ends With .9e-12,9e-12[$0][$`4esn`]"), + octest:ct_string("Remove @usn5(Distinct Null =~true =~.1e-1,12e12[..123456789][..false])._usn4!,All(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]).`4esn`? Optional Match `5esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}),``=((`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]})-[?:@usn6|:_usn3 *999..]->(`1esn` :`1esn`{`5esn`:$`4esn`[..2.9e1][..07]})<-[`5esn`?:#usn7|:`8esn` *010..]->(:@usn5{usn2:$usn1[$12..]})) Where true Starts With 2.9e1 Starts With 9e1 With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) Starts With count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) Where $`3esn`[..`1esn`][..$`7esn`] Union Unwind Extract(_usn4 In Count(*)[9e1..][12e-12..] Where $_usn4[..usn2]|`1esn` Starts With 999 Starts With 3.9e-1) =~(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}) =~Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]) As _usn3 With $usn2 In usn1 In 1e-1 Skip .9e12 In 12e12 Limit Null[10.12e12..] Where 9e12[...12e12][..$`2esn`] Merge ((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) On Create Set #usn7+=$#usn7 Starts With #usn7,_usn3 =`5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]],`8esn` =07 Ends With @usn6 Ends With _usn3 On Match Set #usn7+=10.12e12[Count(*)..],#usn8 =@usn6[.9e12..0e0] Union Create ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6) Match ((:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[? *12..0Xa]-(`2esn` :#usn7:_usn3)<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})),((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`5esn`]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)) Unwind 10.12e12 In `3esn` In $usn2 As #usn7"), + octest:ct_string("Optional Match #usn7=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),`7esn`=((#usn7 )) Return *,`1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null],#usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(`5esn` In 12[0xabc..][$0..] Where .0e0[1e1..][01234567..]) As `2esn` Limit (:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})<-[``:`8esn`|:`2esn` *12..0Xa]-(usn2 :@usn5{`3esn`:$usn1 Is Null})[..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 8.1e1 Is Null)][..#usn7(Distinct usn2 Ends With .0)] Union Merge @usn5=(({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) On Create Set {@usn6:$_usn3 Is Not Null Is Not Null}.usn2! =.9e-12[0e0...9e-1],usn2 =12e12[07..]"), + octest:ct_string("Remove All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0).@usn6 Union Return Count(*)[8.1e1..],Any(`` In $_usn3 Is Not Null Where 12e12[true..][$`2esn`..]) =~{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12} =~{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3} As `3esn` Skip 12 Contains $usn1 Contains 0 Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),(({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})<-[`4esn`:_usn4|`1esn` *123456789..0x0{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})-[_usn3 *..7]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})) Merge ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?]->(:@usn5{usn2:$usn1[$12..]})) On Match Set _usn3+=$`2esn` Starts With #usn7 Starts With 12e12,[`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1]._usn3!.`5esn`!._usn4 =$`1esn` Starts With Count(*) Starts With $`8esn`,`5esn`+=0X7 =~$123456789 =~$`` Union All Delete 0.0[0x0..0.12]['s_str'..false]"), + octest:ct_string("Return Distinct All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Order By `6esn`[0x0..@usn5][$1000...9e-12] Desc,Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null Descending,Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Asc Limit 11.12e-12[010..11.12e-12] Optional Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Where `4esn` Starts With $_usn3 Starts With .9e-12 Union All Remove (`` :@usn6:_usn4{`4esn`:00 Is Not Null Is Not Null})-[`1esn`:usn1|:#usn8]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}).`6esn`!.@usn5?._usn4?,@usn5:_usn4,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]).`2esn`!.`8esn`!._usn3! Union All Create (`1esn` :``:usn1{usn1:123.654 Ends With 0Xa Ends With .12e12})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})"), + octest:ct_string("Remove (:`7esn`{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[#usn8?:`4esn`|:@usn5]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})._usn3!,Any(`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0).usn1"), + octest:ct_string("Match `1esn`=(((@usn5 :usn2)-[`4esn`?:_usn3|`2esn`]-(:#usn7:_usn3)<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}))) Create `3esn`=((:`2esn`:`8esn`)<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}))) Delete Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null)[#usn7(`4esn`[0.0..][.1e-1..])..@usn6(_usn4 Is Not Null Is Not Null)],[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12]][None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null)..[`5esn` In 12[0xabc..][$0..] Where .12e12[$12..4.9e12][11.12e-12..9e12]]] Union Remove None(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999).`3esn`?.#usn7?.`1esn`,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']).`2esn`!,{`2esn`:$`8esn` In 9e-12 In 3.9e-1}.`6esn`? Remove All(`8esn` In 01234567[..0.0][..false] Where $@usn5[$#usn8..][_usn3..]).`8esn`!.`6esn`! Create _usn3=((usn2 {`4esn`:12e12 Is Not Null})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}))"), + octest:ct_string("Create usn1=(:`3esn`{_usn4:7.0e-0 =~$12 =~5.9e-12}) Return #usn7[10.12e12..][\"d_str\"..] As `1esn`,9e-1 Contains $@usn5 Contains Count(*),`` Is Not Null Is Not Null As usn1 Order By @usn6 In 3.9e-1 In 9e-12 Asc,1.9e0[$12][``] Desc,12e12 =~#usn7 =~.9e-1 Asc Limit 0X7 =~$123456789 =~$`` Union All Return #usn8[7..@usn5],00 Is Null Is Null Order By 0Xa Starts With .0 Desc,01234567[$#usn7][.0] Desc Skip $`4esn`[..2.9e1][..07] Limit .9e-1[12.0] Delete $_usn4 Starts With 0e-0 Starts With 1e-1,.1e-1[@usn6..]"), + octest:ct_string("Unwind 9.1e-1[1e-1..]['s_str'..] As _usn3 Unwind .1e1[.0e0..] As ``"), + octest:ct_string("Unwind 9e-1 Starts With 123.654 Starts With .9e1 As `6esn` Create ``=((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),(((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}))) Union All Detach Delete Extract(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]|1000[..0e0][..$`6esn`])[{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}][Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 8.1e1 Ends With $0 Ends With 6.0e0)],.9e1[All(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)..][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])..] Union Optional Match `1esn`=(((@usn5 :usn2)-[`4esn`?:_usn3|`2esn`]-(:#usn7:_usn3)<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}))),`1esn`=({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(_usn3 :`6esn`:`3esn`)"), + octest:ct_string("Create ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),`1esn`=(((`5esn` :#usn7:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(usn2 {@usn5:$usn2 Ends With `8esn` Ends With _usn3,@usn6:`7esn` Is Not Null}))) Union Unwind `2esn`(Distinct) Starts With Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]) Starts With (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}) As _usn4 With (:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] Where `7esn` Is Null Return *,`` Is Not Null Is Not Null As _usn4 Skip 123456789 =~2.9e1 =~@usn5 Limit (usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]}) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1) Ends With (@usn5 :`7esn`)<-[:`1esn`]->(:`1esn`{`8esn`:.1e1 Is Null Is Null}) Union All Return Distinct $0 =~01234567 As ``,Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])[All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654])][None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])] As usn2 Order By .0e-0 =~$`7esn` =~$0 Descending,01234567 Ends With 2.9e1 Ends With 9.1e-1 Asc,0x0 Contains $`1esn` Contains 0.0 Ascending Skip $`` In $@usn6 In 3.9e-1 Return .1e1 =~`1esn`,Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],$#usn7 Is Not Null Order By All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Desc,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] Ascending,.9e0 In 9.1e-1 In $123456789 Desc"), + octest:ct_string("Create (:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}),_usn3=((@usn5 :usn1)-[? *123456789..0x0{`8esn`:`2esn` Is Not Null Is Not Null}]->(`` :usn1)) Return Distinct (`2esn` :`6esn`:`3esn`)<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789)..Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1])][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]]..Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 9.1e-1 Is Null|9e1 Contains 4.9e12 Contains .9e0)],00 As `8esn`,_usn3 Ends With .12 Ends With `6esn` Limit Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}]"), + octest:ct_string("Detach Delete (`1esn` :``:usn1{_usn4:.1e1 Is Null Is Null})<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]})[Single(`` In $_usn3 Is Not Null Where 12 =~$@usn5)..],01 Contains 12.0 With Distinct 010[11.12e-12..],Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) As `2esn`,.9e1[#usn7..] Where \"d_str\" =~9e-12 =~`5esn` Unwind 0[..$@usn5] As @usn5"), + octest:ct_string("Return Distinct *,$#usn7 Is Not Null Is Not Null As `1esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4 Order By 9e12 Ends With 07 Ascending,\"d_str\" =~9e-12 =~`5esn` Desc,Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999)[Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])][[_usn3 In ``[$``..] Where @usn5 Ends With 0]] Descending Skip `` =~$`5esn`"), + octest:ct_string("Return *,$_usn3 Contains usn2 Contains 0xabc,(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`)<-[usn2 *1000{usn1:Null Starts With $`4esn` Starts With $#usn7}]->(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})[{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}][{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}] As @usn5 Order By `7esn` Starts With 11.12e-12 Starts With `7esn` Descending,.0 Is Null Is Null Ascending Create #usn8=(((_usn4 :`7esn`{@usn6:.12e-12[999...12]})-[#usn7? *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null}))),(((`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0)))"), + octest:ct_string("Detach Delete $7 Is Null Is Null Unwind 00 Is Not Null As `1esn` Merge ((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})) On Match Set usn1:`2esn`:`8esn`,`1esn` =$`` Is Not Null,_usn4 =0.0[..Null][..9e-12] On Match Set `2esn`+=.1e1 Is Not Null Is Not Null,`5esn`+=Count ( * )[..1.9e0][..`8esn`] Union All Remove All(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count ( * ) Ends With `6esn` Ends With .12e12).`7esn`?"), + octest:ct_string("Unwind 0[..$@usn5] As @usn5 Union Create `3esn`=((:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]-(`8esn` $12)<-[#usn8? *12..0Xa]-(:#usn8$#usn8)),((usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1})-[usn1:`7esn`|@usn6 *..0xabc]->(@usn5 :usn2)<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}))"), + octest:ct_string("Merge (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[@usn5?:usn1|:#usn8 *01234567{`1esn`:7.0e-0[3.9e-1..`1esn`]}]-(`4esn` :`3esn`)<-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2}) On Match Set _usn4+=10.12e12 Starts With $_usn3 Starts With 1000 Remove [`2esn` In .12e-12[$@usn6..5.9e-12] Where 1000[..0e0][..$`6esn`]|Count(*)[12..][0X0123456789ABCDEF..]].@usn6!,`8esn`:_usn3:_usn3 Union All Detach Delete None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),`2esn`(Distinct) Starts With Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]) Starts With (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})"), + octest:ct_string("Merge _usn3=((:`7esn`)) On Create Set `` =Filter(`7esn` In .12e12[Count(*)..] Where \"d_str\" =~9e-12 =~`5esn`)[(`4esn` )<-[`7esn` *999..{usn2:12e12 =~#usn7 =~.9e-1,`6esn`:5.9e-12 =~$@usn6}]-(#usn8 :_usn4{`1esn`:$`5esn`[7..],#usn7:Count ( * )[..`8esn`]})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})..None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`5esn` Starts With 0X7 Starts With 1e1)],[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|.9e12 Starts With #usn8 Starts With 00].``! =9e1 Contains 4.9e12 Contains 123456789,`5esn`+=$usn2[0e0][$7] On Create Set [_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8].`5esn`! ={_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12),#usn8 =(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] Union Detach Delete $1000 Ends With 3.9e-1,Count ( * )[7],1.9e0 In $0 Union Optional Match (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where 123.654 Starts With 2.9e1 Remove All(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1).usn1!.`7esn`.`2esn`!,Filter(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8).@usn5?,(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})._usn3.@usn6!.@usn5"), + octest:ct_string("Return Distinct *,5.9e-12[`1esn`][usn2],9e12[1e1..010] Skip 9e12[1e1...9e-12] Limit $`1esn`[`3esn`..] Unwind 5.9e-12[$`4esn`] As usn1 Merge usn1=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})) On Match Set `4esn` =$`` =~$_usn3,`7esn` =\"d_str\" Ends With `5esn` Ends With 7 Union All Return Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null As `6esn`,`` Contains 12.0 As usn1,.1e-1 Ends With $_usn3 As @usn6 Order By $@usn6 =~$`2esn` =~9e1 Ascending,0Xa[9e0] Desc Limit .0e0[$`1esn`][.9e-12] Delete $usn1[$7..][$0..] Union Remove Filter(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])._usn4?,Single(@usn6 In 00 =~.9e-12 =~usn1 Where 0x0 Contains $`1esn` Contains 0.0).`4esn`,@usn5:`4esn`:`7esn` Detach Delete false Is Not Null Is Not Null,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]),0e0[`3esn`..][.9e-1..]"), + octest:ct_string("Unwind {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} As `2esn` Remove None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`8esn`?.`3esn`?.@usn6?,Extract(`5esn` In 12[0xabc..][$0..] Where `7esn` Ends With 9e12).`8esn` Remove All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9e12[$#usn8..9e-1][$999..$`4esn`]).``?.`8esn`!,{`8esn`:9e-1 Starts With 123.654 Starts With .9e1}._usn3!._usn3?.#usn8,(`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``! Union All Match ((`` :``:usn1)),`8esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where 999[..@usn5][..`1esn`]"), + octest:ct_string("Optional Match _usn4=(({_usn3:$`5esn`[7..]})),`5esn`=(:``:usn1{_usn3:00[$`6esn`]})-[?:_usn3|`2esn`]->(`1esn` :`7esn`) Where $@usn6 =~$`2esn` =~9e1 Optional Match ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})) With 0X0123456789ABCDEF Contains 8.1e1 As `6esn`,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,.9e0 Is Not Null Is Not Null As `5esn` Skip .1e-1 Where .0e0[$`1esn`][.9e-12] Union All Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set `6esn` =.1e1 =~10.12e12 On Match Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] Create (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}) Unwind _usn4['s_str'..] As `6esn`"), + octest:ct_string("Unwind `7esn` Ends With _usn4 As _usn3 Return Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] As `5esn` Order By 0 Starts With 0Xa Starts With $0 Ascending,$`2esn`[$usn1..] Asc,Count(*) Starts With $_usn4 Descending Limit All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..] Union Merge @usn6=(@usn5 {_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) On Create Set `2esn`+=Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],#usn8 =.9e-12[0e0...9e-1] On Match Set `6esn` ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])],All(`5esn` In 12[0xabc..][$0..] Where _usn3 Ends With 01 Ends With .1e-1).`6esn`? =12.0[..Count(*)][..5.9e-12] Unwind {#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`}[{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}..] As _usn3"), + octest:ct_string("Return Distinct (`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null}) Is Null As _usn3,All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12),0.12 =~2.9e1 =~12e-12 Order By 12 Contains _usn3 Descending Union Remove Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0[..$@usn5]).@usn6?,`1esn`:_usn3:_usn3"), + octest:ct_string("Merge ({_usn4:$`3esn` In 's_str' In $#usn7}) On Match Set Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 999 Starts With .9e12 Starts With 3.9e-1).`6esn`.@usn6!._usn4? =`4esn`[0.0..][.1e-1..],Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).@usn5! =9e1 Contains 4.9e12 Contains .9e0,`1esn`+=00[0e-0...9e-1][1e-1..``] On Match Set Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1)._usn4 =$7 Contains _usn4 Contains $`1esn` Remove All(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).``!,{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null}.usn2? Optional Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),(({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})<-[`4esn`:_usn4|`1esn` *123456789..0x0{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})-[_usn3 *..7]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})) Union Remove Filter(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])._usn4?,Single(@usn6 In 00 =~.9e-12 =~usn1 Where 0x0 Contains $`1esn` Contains 0.0).`4esn`,@usn5:`4esn`:`7esn` Detach Delete false Is Not Null Is Not Null,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]),0e0[`3esn`..][.9e-1..] Union All Detach Delete .0e0[$`6esn`..],Count ( * )[..2.9e1],Count(*)[0.12..2.9e1]"), + octest:ct_string("Create `3esn`=((:`2esn`:`8esn`)<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})) Return Distinct *,Null[...9e1] As `2esn` Order By $12[01] Ascending,$#usn7 In .12e-12 Descending,$`8esn`[$``..$`1esn`][9e-12..$7] Descending Skip 01234567[6.0e0][$usn2]"), + octest:ct_string("Return 07[.0e0][3.9e-1] As #usn8,0X7 As _usn4 Order By #usn8 In $@usn6 Ascending Union All Merge `4esn`=(`6esn` :usn1) On Create Set `8esn` =010[..@usn5][.._usn4],[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null].usn1?.``? ={`1esn`:07 Ends With @usn6 Ends With _usn3} =~Any(`7esn` In .12e12[Count(*)..] Where 01 Ends With \"d_str\") On Create Set `5esn`(Distinct $`2esn`[8.1e1],Count ( * ) Is Null Is Null).`7esn`!.`8esn`? =$``[7..] Return Distinct *,Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07) Order By usn2[Count ( * )..07] Descending Limit .12e12 Ends With #usn7 Ends With 2.9e1 Unwind $usn1[$12..] As ``"), + octest:ct_string("Unwind 0.12 =~2.9e1 =~12e-12 As @usn5 Union Remove Any(@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null).#usn8? Merge usn1=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})) On Match Set `4esn` =$`` =~$_usn3,`7esn` =\"d_str\" Ends With `5esn` Ends With 7 Create @usn6=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Union All Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]|Count(*) Starts With $_usn4).`8esn`! Remove (`8esn` {#usn8:1e1[Null..][.12..]})-[?:_usn3|`2esn`]->({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`8esn` *1000]->(#usn8 ).`5esn`!,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0).`6esn`?.`2esn`!,{@usn6:$123456789 Contains 1000 Contains 11.12e-12,usn1:0X7[`4esn`..][`3esn`..]}.@usn5! Merge (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}) On Create Set Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`).`3esn`!.`5esn`!.`1esn` =(:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null),None(`7esn` In .12e12[Count(*)..] Where `4esn` Starts With $_usn3 Starts With .9e-12).@usn5._usn3!.@usn5 =Extract(`5esn` In 12[0xabc..][$0..] Where 9e-1[0X0123456789ABCDEF][0]|.9e1[..Count(*)][..7.0e-0]) Is Null Is Null On Match Set usn2 =8.1e1 Is Null,`1esn` =$_usn4 Contains .12e-12"), + octest:ct_string("Remove {`8esn`:Null[..07]}._usn4?.`8esn`?,{`4esn`:$123456789[$_usn3..][$usn2..]}.usn1,[`8esn` In 01234567[..0.0][..false] Where 01[..0Xa]].``.@usn5?.`2esn`! Remove Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7]).#usn8?.`3esn`?.@usn5"), + octest:ct_string("Return *,[`` In 0.12[3.9e-1] Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`|Null[10.12e12..]] In {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] Skip 0.0 Contains .9e0 Contains $`8esn` Limit 7 =~$`5esn` With `3esn`[3.9e-1..$`5esn`] As usn2,0X0123456789ABCDEF Is Not Null Is Not Null As `2esn`,11.12e-12 =~5.9e-12 =~.9e1 As `3esn` Limit {`2esn`:`7esn` Is Not Null,@usn5:#usn8[usn1]} Starts With (`7esn` :`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[_usn4 *999..]->({``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}) Match usn1=({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}),(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}) Union All Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Unwind .9e-1 Ends With `8esn` As usn1 Union All Delete 's_str' In `7esn` In .9e-12"), + octest:ct_string("Optional Match (:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[`6esn`?:`4esn`|:@usn5{usn1:00,`1esn`:.0e0[1e1..][01234567..]}]->(`3esn` ) Remove `3esn`:`7esn`,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}._usn3 Create _usn4=(`` :usn1)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`) Union Return Distinct Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],(`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As `6esn`,$123456789 Is Not Null Order By $usn1 Contains `7esn` Contains .9e12 Ascending Limit `6esn` In 9e-12 Merge ((`7esn` {usn2:12.0[..123456789][..01]})-[_usn3{#usn7:Count(*)}]->(`2esn` :_usn3:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})) On Create Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)]"), + octest:ct_string("Return Distinct *,_usn3[`2esn`..10.12e12][9e1..true] As `1esn`,1.9e0[$12][``] As `5esn` Skip .0e0[$`1esn`][.9e-12]"), + octest:ct_string("Return `6esn`(usn1 Is Not Null,123456789 =~6.0e0)[Single(_usn3 In ``[$``..] Where Null[..07])..][{_usn3:010[9e0..9e1][$_usn4..$12],`3esn`:7.0e-0[$usn2..0.12][$``..0]}..] As #usn7 Skip .0[01..`5esn`] Limit Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]) Union With Distinct *,[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},07 =~_usn4 =~.9e12 As `` Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending Where .9e-1[12.0] Union All Create ((:usn2{@usn6:`3esn` Ends With `6esn`,`1esn`:$`2esn` Starts With 0x0})<-[`4esn`]->(#usn7 :_usn3:_usn3)),`4esn`=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1}) Optional Match ``=((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})),(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}) Where 0[true..$7] Remove Extract(_usn3 In ``[$``..] Where 01234567 Ends With 2.9e1 Ends With 9.1e-1|$`3esn`).`6esn`.`1esn`!"), + octest:ct_string("Remove count(Distinct 12e12 Starts With 4.9e12 Starts With 0e0,1e-1[..$@usn5][..0xabc]).`7esn`,{@usn5:$0 Starts With 010}.`3esn`!.``!,Any(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 In 123.654 In $`8esn`).`5esn`? Unwind 7.0e-0[3.9e-1..`1esn`] As _usn3 Union Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Unwind {@usn6:\"d_str\" =~9e-12 =~`5esn`}[#usn8(Distinct 999 Starts With .9e12 Starts With 3.9e-1,true Contains 0x0)..[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null|07 Starts With usn1 Starts With 010]][All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)..{`4esn`:0 Starts With 0Xa Starts With $0}] As `8esn` Match `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}),#usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Where $`6esn` Starts With `4esn`"), + octest:ct_string("Remove `3esn`:`7esn`,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}._usn3 Union Remove [`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]].`6esn`,All(`` In $_usn3 Is Not Null Where $123456789 =~12 =~7).``!"), + octest:ct_string("Return Distinct Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn` Order By (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] Ascending,12 Contains $usn1 Contains 0 Ascending Skip Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null)[[`2esn` In .12e-12[$@usn6..5.9e-12] Where 00]][Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12])] Limit .9e0 Is Null Is Null Union All Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where `1esn`[9.1e-1]|$`8esn` Starts With `2esn`).``!.`5esn`.``! Union Remove (:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}).`3esn`?,Extract(usn2 In .0e0[$`6esn`..] Where usn2 Ends With .0)._usn4?.@usn5._usn3,{usn2:.9e-1 Is Not Null Is Not Null}.@usn6! Remove Any(`` In $`5esn` Starts With 0X7 Starts With 1e1).usn2?,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5[$``]].`6esn`!,Single(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12).`7esn`! Delete [usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},`7esn` Contains $7 Contains 07"), + octest:ct_string("Delete $`3esn` Is Not Null Is Not Null,@usn5 Ends With 0,9e0[$usn2][0] Return #usn8[7..@usn5],00 Is Null Is Null Order By 0Xa Starts With .0 Desc,01234567[$#usn7][.0] Desc Skip $`4esn`[..2.9e1][..07] Limit .9e-1[12.0] Optional Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Where `5esn` Contains `6esn` Union Optional Match @usn6=((`` :usn1)-[ *0..010]->(_usn4 :`5esn`)),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})) Where 1e1 Is Not Null Is Not Null Detach Delete .12e12[$12..4.9e12][11.12e-12..9e12],$_usn4 =~$_usn4 =~2.9e1 With *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Where Null[`2esn`..] Union Unwind 0.12[07..3.9e-1] As _usn3 Return *,`` Is Not Null Is Not Null As _usn4 Order By [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null Ascending Limit 999[0.12..8.1e1]"), + octest:ct_string("Remove ({``:@usn5[$_usn3..],`5esn`:`` Contains 12.0})<-[``?:#usn8|:`4esn`]-(:usn1{@usn5:Count(*)}).usn2?.`3esn` Union Return $_usn3 In 123.654 In $`8esn` As `2esn`,@usn5[$_usn3..],.1e-1 Contains 1e1 Contains $`6esn` As `5esn` Order By $usn1 Contains `7esn` Contains .9e12 Ascending,8.1e1 Ends With $0 Ends With 6.0e0 Descending,9e12[...12e12][..$`2esn`] Descending Limit `3esn`[`4esn`..Null][$usn1..`5esn`] Match (`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1}),({@usn5:$12 Contains $`7esn` Contains .0})<-[usn2 *..0xabc]->(:@usn5{`7esn`:7.0e-0[`6esn`..]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1}) Where $`6esn` Starts With `4esn` Create (:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567}),`4esn`=((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) Union All Merge (({`8esn`:$`` Is Null Is Null})) On Match Set usn1 =$0[$`7esn`..$`3esn`]['s_str'...0],[@usn6 In 00 =~.9e-12 =~usn1 Where $123456789 Starts With Count ( * )].`1esn`? =usn2 Ends With .0,`8esn` =010[..@usn5][.._usn4]"), + octest:ct_string("Create ((:_usn3:_usn3{usn1:.9e1[12]})),@usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Remove 8.1e1.#usn8,None(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null).`5esn`!,{`5esn`:_usn3 Starts With `2esn`,usn1:4.9e12[..Null]}.`5esn`!.@usn5!.usn2 Create ({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}) Union All Merge `4esn`=((@usn5 :usn1{usn1:.9e1[12]})) On Match Set _usn3 =12e-12[.0..],_usn4+=.0e0[..12.0][...1e-1],usn1 =({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null} On Match Set `8esn`+=Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\"),`1esn`+=4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12),(`` {_usn4:9e0[..1e1]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(@usn5 :@usn6:_usn4).#usn8.`1esn`.usn1! =00[0e-0...9e-1][1e-1..``]"), + octest:ct_string("Remove #usn7:`8esn`:#usn7,usn1($@usn5[...9e-1][..$usn1],$`3esn` Ends With 010 Ends With $`7esn`).`3esn`,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0).`8esn`?.#usn8? Remove None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where .9e1[...12e12]).@usn5,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01[.9e-12..]].#usn7!.#usn7!.usn1!"), + octest:ct_string("Remove Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..]).`1esn`.`8esn`?.`2esn`!,@usn5(Distinct 1e-1[..$@usn5][..0xabc]).`3esn`!,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12e12 Starts With 4.9e12 Starts With 0e0).@usn6!.`8esn`? Remove {#usn7:11.12e-12 Contains 9e-12}.#usn8,(_usn4 :@usn5)<-[@usn5?:@usn5 *..01]-(`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}).`5esn`._usn3.#usn7? With Distinct count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0])[_usn3(8.1e1[usn2..$1000][$7..0x0],false[..12e-12][...9e1])..] As @usn6,.0e-0[0e0..00][.9e1..12] As `1esn`,Count ( * ) Starts With 10.12e12 Starts With `` As `5esn` Union All Merge (_usn4 :``:usn1) On Create Set All(`8esn` In 01234567[..0.0][..false] Where 12e-12 Contains .9e-1 Contains 9e-1).usn1.`8esn`!.@usn5 =.9e1[12],Single(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1])._usn3.`2esn` =.9e1[12],{usn2:false Starts With 3.9e-1}.#usn8?.``.`8esn`? =$0[9e1] Union Optional Match ((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})),`5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Where .9e-12 Is Not Null Is Not Null"), + octest:ct_string("Return 0x0 Starts With $`5esn` Starts With 9e-12,$`6esn` Ends With 12 Order By Count ( * )[0..][010..] Desc Skip .9e-1[12.0] Union Merge `7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) On Match Set (`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8,_usn3+=Null[..07] Unwind 5.9e-12 =~$@usn6 As `2esn` Return 1.9e0 Starts With 's_str' Starts With 9.1e-1,8.1e1 Is Null,.1e1 Starts With .1e-1 Order By 1.9e0 In $0 Desc,7.0e-0 =~$123456789 =~`8esn` Asc,#usn7[10.12e12..][\"d_str\"..] Desc Union All Remove All(`2esn` In .9e-12[0e0...9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4)._usn3!.`1esn`?"), + octest:ct_string("Create `2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),``=((({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})<-[@usn6:#usn7|:`8esn` *0Xa..7]->(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})<-[@usn6:#usn7|:`8esn` *0Xa..7]->(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`}))) Unwind $999 In 0.0 As `1esn` Create (((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})))"), + octest:ct_string("Remove Single(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]).`3esn`.`7esn`,_usn3:`1esn`,Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1).`4esn`! Merge @usn5=(({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) On Create Set {@usn6:$_usn3 Is Not Null Is Not Null}.usn2! =.9e-12[0e0...9e-1],usn2 =12e12[07..] Union With Distinct 9e12 Starts With `4esn` Starts With .9e-1 As @usn6 Order By {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} Ascending,01 Ends With \"d_str\" Asc,1000 Is Null Is Null Ascending Limit 0e0 Starts With $1000 Starts With `2esn` With Distinct .9e0 Is Null Is Null As #usn7,All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Where 5.9e-12[$`4esn`] Union Create (:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}),(({#usn8:1e1[Null..][.12..]})<-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]->(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))"), + octest:ct_string("With Distinct {usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0xabc In 10.12e12)..][0X7..],.9e1 Starts With `4esn` As `5esn` Order By [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) Descending,0e0[.12..][3.9e-1..] Asc Limit [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12] Ends With (usn1 {`6esn`:$`5esn`[true],usn2:1e1 Is Not Null Is Not Null})-[?:`4esn`|:@usn5 *..0xabc]-(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(usn2 {_usn4:$999 Ends With .9e-12}) Where 0e0[..'s_str']"), + octest:ct_string("Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As `8esn` Match `7esn`=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))),@usn5=(({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})-[:``|:`3esn` *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})) Detach Delete 12e12 Starts With 9e1 Starts With $`4esn`,.9e1[#usn7..] Union Remove {usn1:usn2[..7.0e-0]}.`2esn`.`2esn`?.usn1 With *,$12 Contains $#usn8 Contains 01 As usn1 Order By 0X7[`4esn`..][`3esn`..] Ascending,$#usn7 In .12e-12 Ascending,$`6esn` In `2esn` Ascending Where $0 =~01234567 Return *,`6esn`[010...9e-12] As `5esn` Union All Return .9e1[#usn7..] Order By 00 Ascending Unwind 123.654 =~1e-1 =~.9e-1 As `8esn` Remove All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]).@usn5!._usn4!.#usn8?"), + octest:ct_string("Merge ((:`7esn`{`5esn`:0e0 Is Null Is Null})) On Match Set `1esn`+=0e-0 Starts With 9e-12 Starts With false On Create Set @usn6 =123.654 Ends With 0Xa Ends With .12e12,`` =.0e-0 Starts With $#usn7 Starts With _usn3 Merge @usn6=(@usn5 {_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) On Create Set `2esn`+=Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],#usn8 =.9e-12[0e0...9e-1] On Match Set `6esn` ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])],All(`5esn` In 12[0xabc..][$0..] Where _usn3 Ends With 01 Ends With .1e-1).`6esn`? =12.0[..Count(*)][..5.9e-12] Unwind 5.9e-12 Ends With 1e1 Ends With false As _usn3"), + octest:ct_string("Unwind [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null As `3esn` Return $`4esn` In 123456789 In `5esn` As @usn5,`8esn`[..7.0e-0][..0xabc] As _usn3 Skip 00[0e-0...9e-1][1e-1..``] Limit 00[0e-0...9e-1][1e-1..``]"), + octest:ct_string("Unwind 0[$999..] As `3esn` Union Return Distinct *,{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1} In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) As _usn4,$#usn7 Is Not Null As `7esn` Order By 9e-1 Starts With 123.654 Starts With .9e1 Asc Skip {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Count(*)[9e-12..0Xa][$123456789..0.0])..Any(`2esn` In .9e-12[0e0...9e-1] Where `3esn` Contains 01234567 Contains .9e-12)][All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e0 In 9.1e-1 In $123456789)..Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)] Remove (usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2})-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12}).@usn5,count(Distinct $`6esn` In $`3esn` In 9e1,.9e1[12]).`4esn` Optional Match `3esn`=((#usn7 :usn2{@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-({`6esn`:07 Ends With @usn6 Ends With _usn3})),`3esn`=({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}) Where $`1esn`[`3esn`..] Union Optional Match @usn5=((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})-[`6esn`? *..0xabc{``:$_usn4[Null]}]->({usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`6esn` {_usn3:$_usn4 Contains .12e-12})) Unwind All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] As #usn8 Unwind 0x0[01234567..'s_str'] As ``"), + octest:ct_string("Create @usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))) Remove Any(_usn4 In Count(*)[9e1..][12e-12..] Where .9e1[#usn7..]).`8esn`,Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``|$7 Contains 0e-0 Contains .0e-0).`3esn`?"), + octest:ct_string("Create usn1=({`5esn`:07 Starts With usn1 Starts With 010})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}),_usn3=({usn1:usn2 Ends With 10.12e12}) Unwind All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..] As `` Union All Create `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Optional Match `8esn`=(`6esn` :``:usn1),((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})))"), + octest:ct_string("Unwind Filter(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``])[Any(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)..][(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})..] As @usn5 Remove (`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1})<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}).@usn6.#usn8?,[_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]].`1esn` Unwind Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()] As `8esn`"), + octest:ct_string("Detach Delete 0Xa Starts With .0,$`1esn`[.9e0][$_usn3],$`2esn`[8.1e1]"), + octest:ct_string("Create @usn5=({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Detach Delete {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null,$`4esn` =~0e0 Delete 10.12e12[0Xa..999][1000..Count(*)],2.9e1 Union Detach Delete `8esn`[..7.0e-0][..0xabc],{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)],[_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null With Distinct 0x0 Starts With $`5esn` Starts With 9e-12 Order By Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7) Descending Skip [@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null][..`1esn`(Distinct `5esn` Contains `6esn`,`3esn` Contains $`8esn` Contains 0e0)][..Single(`5esn` In 12[0xabc..][$0..] Where 1000[_usn3..`8esn`])] Limit false[..12e-12][...9e1] Where 00 Is Not Null Is Not Null"), + octest:ct_string("Unwind 0e-0 In $1000 In .9e1 As _usn4 Remove (`8esn` {`3esn`:#usn8[`2esn`]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1).`1esn`!.`5esn`?.@usn5! Union Merge ((_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) On Create Set _usn3:#usn7:_usn3 Union Remove Filter(`5esn` In 12[0xabc..][$0..] Where `7esn`).`5esn`?.#usn7,Filter(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]).`4esn`.`5esn`?.`3esn`?"), + octest:ct_string("Return ``[..$#usn7],$`6esn`[$`8esn`..][false..] As _usn3 Create `7esn`=(((`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})-[``]-(`7esn` :``:usn1{`1esn`:0e0 Starts With $1000 Starts With `2esn`,@usn6:@usn6 In 3.9e-1 In 9e-12})-[@usn5*{`7esn`:`3esn` Starts With _usn4}]->(#usn8 :_usn4{_usn3:.0 Is Null Is Null}))),#usn8=(`6esn` :#usn7:_usn3)"), + octest:ct_string("Return *,.0e-0[0e0..00][.9e1..12] Order By (:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[`7esn`?]->(`5esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(#usn8 {_usn3:$_usn4 Contains .12e-12}) Ends With `4esn`($usn2 In usn1 In 1e-1,01[Count(*)..0e-0][7..$`2esn`]) Ascending Union All Delete Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null),.0e-0 =~$`7esn` =~$0"), + octest:ct_string("Return 123.654 Starts With Count ( * ) As `4esn`,(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})-[usn1?:usn1|:#usn8*..]-(`7esn` {`3esn`:.9e-1 Is Null})[..Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 's_str'[12][00])][..usn2($#usn8[...9e1])],Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..] As `8esn` Order By .9e0 Is Null Is Null Asc Skip @usn6[.9e12] Limit `4esn` Starts With $_usn3 Starts With .9e-12 Create ((usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1})),((`2esn` {``:.0e0[$`6esn`..]})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(`6esn` :`3esn`)<-[`7esn`?:`3esn`|:_usn3 *..0xabc]->(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null})) Union All Create ((usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1})),((`2esn` {``:.0e0[$`6esn`..]})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(`6esn` :`3esn`)<-[`7esn`?:`3esn`|:_usn3 *..0xabc]->(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null}))"), + octest:ct_string("Remove Any(`` In $`5esn` Starts With 0X7 Starts With 1e1).usn2?,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5[$``]].`6esn`!,Single(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12).`7esn`!"), + octest:ct_string("With .12e12[`7esn`][#usn8],0e-0 In $1000 In .9e1 As _usn3,@usn5[6.0e0][Count ( * )] As `1esn` Order By #usn8 =~.9e-12 =~$usn1 Asc,Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Asc,Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Descending Skip [_usn4 In Count(*)[9e1..][12e-12..] Where 01[Count(*)..0e-0][7..$`2esn`]|`` Contains 12.0] In None(`2esn` In .12e-12[$@usn6..5.9e-12] Where `1esn`[9.1e-1]) Return Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] As `7esn`,12e12 Starts With `6esn` Starts With true As #usn8,$_usn4[1e-1..8.1e1][`1esn`..1.9e0] As `` With $`6esn`[..12e12][.._usn3] As `5esn`,($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]) As _usn4 Where $#usn7 In .12e-12"), + octest:ct_string("Delete {usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0xabc In 10.12e12)..][0X7..],010[..@usn5][.._usn4]"), + octest:ct_string("With *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Skip 0Xa Ends With #usn8 Ends With usn2 Merge (((_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})<-[`4esn`?:_usn3|`2esn` *0..010]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`}))) Remove (`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``!,usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4! Union All Merge `1esn`=((@usn6 :usn2)<-[`7esn`?:`3esn`|:_usn3 *..0xabc]->(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0})) On Create Set [@usn6 In .9e12 Starts With #usn8 Starts With 00|#usn7[..0X0123456789ABCDEF]]._usn4?.`4esn` ={usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])],Single(`5esn` In 12[0xabc..][$0..] Where $123456789 Is Not Null).usn2? =Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0[..$@usn5]|`1esn`[9.1e-1]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where Count(*) Ends With `3esn` Ends With `7esn`] =~Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null),`3esn`+=$`5esn` Is Not Null Is Not Null On Match Set None(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).@usn5! =$`2esn`[8.1e1] Remove {_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}.`1esn` Union All Optional Match (:usn1{``:.9e1[..`5esn`]})"), + octest:ct_string("Delete usn2 Starts With usn1,1000 In 123.654 In $`8esn`,{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}[@usn6(Distinct 12e12 Ends With $`3esn` Ends With 11.12e-12)..count(Distinct 07 Ends With @usn6 Ends With _usn3,$@usn5[..1e-1])][({@usn5:#usn7[`5esn`..`2esn`][$`4esn`...1e1],`6esn`:Count(*) =~`5esn` =~$usn2})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})..Extract(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..]|123.654 Starts With 2.9e1)] Union All Unwind `7esn` Is Not Null As #usn7 Merge `7esn`=({_usn3:$`8esn` Is Null}) On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 On Create Set [@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]].`3esn`?.`6esn`! =Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..])[(usn1 )<-[`8esn`?:usn2|:``]->(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})..0Xa],`2esn`+=$`2esn` Contains false Contains 123456789,`3esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)] Optional Match (usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}),`3esn`=((@usn6 :`6esn`:`3esn`)<-[`1esn`? *0X0123456789ABCDEF..0{`4esn`:9e1 Ends With .9e0}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})) Where 1e-1 =~0.0 =~9.1e-1"), + octest:ct_string("Remove (@usn5 :usn2)<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}).usn1? Merge `5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Union Merge (({_usn3:$`5esn`[7..]})) Return Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null As `6esn`,`` Contains 12.0 As usn1,.1e-1 Ends With $_usn3 As @usn6 Order By $@usn6 =~$`2esn` =~9e1 Ascending,0Xa[9e0] Desc Limit .0e0[$`1esn`][.9e-12] Union Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set usn1+=9e0[..1e1] On Match Set usn1+=Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],@usn6+={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null})"), + octest:ct_string("Return Distinct ({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)[{``:.1e-1 Ends With $`8esn` Ends With .9e0,`7esn`:.9e-12 Is Not Null Is Not Null}][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])],Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) Skip Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) =~Filter(`8esn` In 01234567[..0.0][..false] Where .9e12 =~`5esn` =~07) =~Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0|12[0xabc..][$0..]) Detach Delete ``(@usn6[..$`3esn`][..4.9e12],0x0 Contains $`1esn` Contains 0.0)[{`6esn`:999[...12e12][..0]}][[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)]|.9e1[Count(*)..$`3esn`]]],Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) In {`5esn`:$`` =~$_usn3,`4esn`:`7esn`} In `3esn`,Null In 0Xa In .9e-1 Union Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),(({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})<-[`4esn`:_usn4|`1esn` *123456789..0x0{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})-[_usn3 *..7]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})) Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),(usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}) Return Distinct 9e-12 In 5.9e-12 As ``,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0x0 Contains $`1esn` Contains 0.0) In None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0) As `5esn` Order By 0e0 Ends With 0X7 Ends With .1e1 Desc,(#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Asc,0x0 =~$7 =~Null Desc Union All With .0e0 Is Null Is Null As _usn4,`6esn`(usn1 Is Not Null,123456789 =~6.0e0)[Single(_usn3 In ``[$``..] Where Null[..07])..][{_usn3:010[9e0..9e1][$_usn4..$12],`3esn`:7.0e-0[$usn2..0.12][$``..0]}..] As usn1,#usn8 In $@usn6 Order By 8.1e1 Ends With $0 Ends With 6.0e0 Descending,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null Ascending,Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\") Ascending Skip $`2esn` In 0X7 In 3.9e-1 Limit 0x0[`5esn`][$`5esn`] Create ((#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))"), + octest:ct_string("Optional Match ((({`8esn`:$`` Is Null Is Null})<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`3esn`?:`1esn`]-(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}))),`3esn`=((:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]-(`8esn` $12)<-[#usn8? *12..0Xa]-(:#usn8$#usn8))"), + octest:ct_string("Match (#usn8 :#usn8)<-[`5esn`?:``|:`3esn` *..0xabc]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[{#usn8:.0e0[1e1..][01234567..],`6esn`:123.654 Ends With 0Xa Ends With .12e12}]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12}) Where Count(*) In .9e-12 In $usn1 Return 9e12 Starts With `4esn` Starts With .9e-1 As @usn6 Order By {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} Ascending,01 Ends With \"d_str\" Asc,1000 Is Null Is Null Ascending Limit 0e0 Starts With $1000 Starts With `2esn`"), + octest:ct_string("Create (($@usn6)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[#usn8?:#usn7|:`8esn` *..0X7]->(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999})),usn2=((@usn6 :`5esn`{@usn5:$`4esn` Ends With 0e-0})<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(:_usn4{``:$_usn3[1e-1..]})<-[``?:@usn5]->(_usn3 :#usn8)) Create `3esn`=(`` :`3esn`) Create (`` :`3esn`)-[@usn6:#usn7|:`8esn` *0Xa..7]-(:`2esn`:`8esn`{`6esn`:7.0e-0 Is Null Is Null,`6esn`:999[0.12..8.1e1]})<-[`8esn` *1000]->(#usn8 ),`1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) Union With 12e12 =~#usn7 =~.9e-1,All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null As @usn6 Order By 12e12 Starts With 9e1 Starts With $`4esn` Desc,$`5esn`[true] Descending Skip {usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])] Limit {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null Where $#usn7[$_usn4..][.12e-12..] Union Create (({`5esn`:8.1e1 Ends With $0 Ends With 6.0e0,@usn5:9e0[..1e1]})-[`5esn`?:`3esn`|:_usn3{`3esn`:1.9e0 Is Null Is Null,``:$usn2 Ends With `8esn` Ends With _usn3}]-(:``:usn1{_usn3:$#usn7[$_usn4..][.12e-12..],`1esn`:false})<-[`2esn`:`5esn`{usn2:Count(*)[12..][0X0123456789ABCDEF..]}]->(`1esn` {`5esn`:0X7[_usn4..1.9e0][Count ( * )..false],@usn5:123456789 Ends With _usn4})),`1esn`=(:`3esn`{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1})"), + octest:ct_string("Match `4esn`=({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}) Unwind None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} As `7esn` With Distinct *,'s_str'[1e-1] As usn1,_usn3[`2esn`..10.12e12][9e1..true] As `1esn` Order By $`8esn`[$``..$`1esn`][9e-12..$7] Descending,$`` In $usn2 Desc,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Ascending"), + octest:ct_string("Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set usn1+=9e0[..1e1] On Match Set usn1+=Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],@usn6+={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) Union All Optional Match ``=((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})),`3esn`=((`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})) Union All Match (`1esn` {#usn8:.12e12[Count(*)..]})<-[{`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}]-(:@usn5) Where $`` Is Null Is Null"), + octest:ct_string("Unwind `5esn` Contains 1.9e0 Contains 9e0 As #usn7 Create ``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Union Merge (`` {_usn4:9e0[..1e1]})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}) Return Distinct *,5.9e-12[$`4esn`] Order By 123456789 Ends With $@usn6 Ends With 0.12 Descending Skip 00[$`6esn`] Limit .1e1 Is Null Is Null Remove Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1).`` Union Unwind $#usn8[...9e1] As `7esn` Merge `5esn`=(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[:#usn8|:`4esn`{_usn3:'s_str' Is Null,#usn7:#usn7[..0X0123456789ABCDEF]}]->(`` {`2esn`:.1e-1[2.9e1..][12..]})"), + octest:ct_string("Merge (`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1}) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7]"), + octest:ct_string("With *,$_usn3 Contains usn2 Contains 0xabc,(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`)<-[usn2 *1000{usn1:Null Starts With $`4esn` Starts With $#usn7}]->(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})[{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}][{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}] As @usn5 Order By .9e12 Starts With .9e12 Starts With `7esn` Ascending,Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0)[(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..][Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..])..] Desc Where 12e-12[.0..] Union Remove Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7).``?,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null).@usn5?,[`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|`1esn`[Count ( * )][5.9e-12]].@usn5 Union Merge _usn3=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Optional Match `2esn`=((@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]})) Where @usn5[...9e12] Unwind (`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As `7esn`"), + octest:ct_string("With 0X0123456789ABCDEF Is Not Null Is Not Null As `2esn`,$`` Is Not Null Is Not Null Order By .0[01234567][$#usn8] Descending,`3esn` In 0X7 Desc Limit 0Xa Ends With #usn8 Ends With usn2"), + octest:ct_string("Merge _usn4=(((`2esn` {`7esn`:Count(*)[.0e0..][#usn7..]})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)-[:#usn8|:`4esn` *12..0Xa]->(`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]}))) Remove [usn2 In $_usn3 =~$usn1 =~_usn4 Where 0xabc In 10.12e12|9e-1 Starts With 123.654 Starts With .9e1].`2esn`?.`5esn` Union All Unwind $@usn5[usn1..3.9e-1] As `8esn` Merge ``=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}) Remove {`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null}.@usn5?.#usn8!.`8esn`?,_usn4:_usn4,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]|Count(*) Starts With $_usn4).`8esn`!"), + octest:ct_string("Merge (`` :#usn8{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}) Create ``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}),((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Return Distinct Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,07 =~_usn4 =~.9e12 As `` Order By 5.9e-12[9e0..] Ascending,#usn8[`2esn`] Desc,`7esn` Ends With 9e-1 Ends With usn1 Ascending Skip $#usn7 Starts With #usn7 Limit $123456789[$_usn3..][$usn2..]"), + octest:ct_string("Merge _usn4=(((`2esn` {`7esn`:Count(*)[.0e0..][#usn7..]})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)-[:#usn8|:`4esn` *12..0Xa]->(`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]}))) On Match Set _usn4 =$`6esn` In .9e12 In $#usn7,@usn5 =12 Contains _usn3,None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null).`8esn`? =11.12e-12 Contains 9e-12 On Match Set `2esn` =$`3esn`[010..][9e-1..],[`8esn` In 01234567[..0.0][..false] Where 5.9e-12[.1e1][$#usn8]|12 Contains usn2 Contains $usn2].#usn7 =01234567[..0.0][..false],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789).usn1!.``! =010 Starts With 0.0 Starts With .0e0 Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As `8esn`"), + octest:ct_string("With *,07 =~7.0e-0 =~`8esn` Order By 9e12[...12e12][..$`2esn`] Ascending Limit Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) Where @usn5 Ends With 's_str' Ends With 01 Return 00[$`6esn`] As `6esn`,Count ( * )[12e-12] As #usn7,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] Order By .9e1[Count(*)..$`3esn`] Asc With *,7.0e-0 Contains Count ( * ) Contains 0Xa As `7esn` Order By [_usn4 In Count(*)[9e1..][12e-12..] Where $_usn3[1e-1..]][[`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0]][None(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)] Ascending,9e0[$usn2][0] Ascending Skip 3.9e-1[010..][9e1..] Limit (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null Where $_usn4[Null] Union All With Distinct ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]) Skip 9e1 Contains 4.9e12 Contains 123456789 With *,12.0[..123456789][..01] Limit $usn1 Starts With usn1 Starts With 1e-1 Merge `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})"), + octest:ct_string("Unwind 0[..$@usn5] As `5esn` Detach Delete $`1esn`[.9e0][$_usn3],0e0[`4esn`] Unwind Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] As usn2 Union Optional Match usn1=((#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})<-[#usn8?{`3esn`:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7],@usn6:01[..0.12]}]-(`3esn` :_usn3:_usn3)),(((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})))"), + octest:ct_string("Create @usn6=(@usn5 {_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) Return *,Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As `5esn`,0xabc =~7.0e-0 =~4.9e12 Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1)._usn3!,Any(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).#usn8?"), + octest:ct_string("Match @usn5=((@usn6 :`6esn`:`3esn`)<-[`6esn`? *..0xabc{``:$_usn4[Null]}]->(:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((:#usn8{`8esn`:usn1[12e-12],@usn6:Count ( * ) In 999})<-[?]->(:@usn5{usn2:$usn1[$12..]})-[ *..01]->(#usn8 :#usn7:_usn3)) Optional Match (((`5esn` :`2esn`:`8esn`)-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(`3esn` {_usn4:$`2esn` Starts With 0x0}))),``=((`6esn` :`3esn`)) Union All Remove #usn7:`5esn`,All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`).usn1!,Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Starts With 0Xa).usn1! Merge ((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2)) Union Create ((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})),#usn8=(#usn7 :usn2)<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}) Optional Match (_usn4 :`7esn`{@usn6:.12e-12[999...12]}) Where Null Starts With 9e1 Starts With ``"), + octest:ct_string("Remove None(usn1 In 7.0e-0[.._usn4][..0X7] Where $12 Contains $`7esn` Contains .0).``!,All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0)._usn3? Return Distinct *,7.0e-0[3.9e-1..`1esn`],Count(*) Ends With `3esn` Ends With `7esn` Order By Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"]|`7esn`[3.9e-1..][$@usn5..])[..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] Asc,true Contains 0x0 Ascending,.9e-12[12e12][.0e0] Asc Skip .0[01234567][$#usn8] Limit .9e0[$7][1e1] Union Unwind 123.654 Starts With Count ( * ) As `5esn`"), + octest:ct_string("With Distinct *,_usn3[`2esn`..][0x0..] As usn1,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,usn1() In Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) In (`7esn` :usn1)-[usn2:`4esn`|:@usn5 *01234567]->(_usn4 )-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]}) Desc,``[..$#usn7] Asc Limit 07 Ends With @usn6 Ends With _usn3 Create ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6) With Distinct (#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Is Not Null As _usn4,.9e12[$usn2..][7..] As `2esn` Skip All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Union Create `8esn`=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Union Return *,Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567)..],Single(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1)[Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-12 Is Not Null Is Not Null)][Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`])] Limit (`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :``:usn1{usn2:12.0[..123456789][..01]}) Contains {`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12} Contains {`7esn`:`3esn` Starts With _usn4} Detach Delete {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})]"), + octest:ct_string("Merge ({usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) On Match Set `5esn`(Distinct $`` Is Null Is Null,#usn8[usn1]).usn2! =$`8esn` In 9e-12 In 3.9e-1 Unwind `2esn`(Distinct) Starts With Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]) Starts With (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}) As _usn4"), + octest:ct_string("Detach Delete _usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null,'s_str' Ends With 0.0 Ends With .12e12,$`4esn` =~0e0 Union Match (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[:usn1|:#usn8]-(:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`}),`2esn`=((_usn4 {#usn7:$`5esn` Is Null Is Null})-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})) Union All Unwind ``(0X0123456789ABCDEF Contains 8.1e1,Count ( * )[..123456789][...0e0])[..All(usn2 In .0e0[$`6esn`..] Where .0e0 In 10.12e12 In $`5esn`)][..(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})] As #usn8"), + octest:ct_string("With *,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e1[..Count(*)][..7.0e-0]) =~[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 01[Count(*)..0e-0][7..$`2esn`]] =~Single(usn2 In .0e0[$`6esn`..] Where 01[1e-1]),usn1 Ends With 12 As `` Limit `7esn` Ends With `7esn` Ends With $`3esn` Unwind Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) As `5esn` Union All Return Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]) Limit $#usn7 Starts With 10.12e12"), + octest:ct_string("Remove Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1).`1esn`?.``.usn1,Single(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1])._usn3.`2esn`,_usn3(.12[.0e-0..],1000[Null..]).#usn7 Delete {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) Union Detach Delete $1000 Ends With 3.9e-1,Count ( * )[7],1.9e0 In $0"), + octest:ct_string("Merge @usn6=((:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[?:`6esn`|#usn7{_usn4:8.1e1 Is Null,#usn7:$_usn3 =~$usn1 =~_usn4}]-({`5esn`:07 Starts With usn1 Starts With 010})<-[`7esn`:`8esn`|:`2esn`]-(:``:usn1{_usn3:00[$`6esn`]})) On Create Set `3esn`+='s_str'[1e-1],`4esn` =.9e-12 Is Not Null Is Not Null,`8esn`+=(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7) Union All Merge (`6esn` :`8esn`:#usn7{`4esn`:00 Is Not Null Is Not Null,`4esn`:7 =~$`5esn`}) On Match Set `8esn`+=0x0 Starts With 01234567 On Match Set #usn8 =[`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7),`8esn`+=$999 =~`6esn`,@usn5 =Extract(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..]|.9e12[..$usn1][..10.12e12]) Starts With Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..])"), + octest:ct_string("Return 0x0 As @usn6,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] As usn2 Order By $`3esn` Ends With 010 Ends With $`7esn` Asc,.1e1[$usn2..9e1][9e-1...9e-1] Desc,3.9e-1[..$7] Descending Skip .12e12 Is Null Is Null Limit $``[`4esn`..][0.0..] Union Create ((`` :usn1)-[ *0..010]->(_usn4 :`5esn`)),(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) Union All Unwind [`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]|.1e-1 Ends With $`8esn` Ends With .9e0] Starts With {#usn7:1e-1[..2.9e1],`1esn`:.9e1[#usn7..]} As `6esn` Create usn1=((`8esn` :_usn3:_usn3)<-[_usn4? *..7{#usn7:Count ( * )[7]}]->(`6esn` :`7esn`)<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)),`3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})"), + octest:ct_string("Delete $usn2 Contains $`4esn` Contains true,11.12e-12 Contains 9e-12 Detach Delete .12e12 Ends With #usn7 Ends With 2.9e1,Extract(`7esn` In .12e12[Count(*)..] Where true Starts With 2.9e1 Starts With 9e1|12[0xabc..][$0..]) Starts With Extract(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12|0.12[3.9e-1]) Starts With ``(12e12[true..][$`2esn`..]),Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * ))[{`4esn`:12e-12 Starts With .9e12 Starts With 0.12}..(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})] Create #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}),`8esn`=(`` :`7esn`{`3esn`:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7],@usn6:01[..0.12]}) Union Merge #usn8=(`6esn` :``:usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[_usn4:`6esn`|#usn7]-(`8esn` $12) On Match Set _usn4:#usn7:_usn3,Extract(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0|`6esn` In 9e-12)._usn4? =0Xa Ends With #usn8 Ends With usn2"), + octest:ct_string("Delete {`5esn`:123456789 =~$`1esn` =~#usn7,#usn7:usn2 =~$`7esn` =~$`8esn`} Is Not Null,{#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[..`8esn`(010[@usn5..123.654],8.1e1[usn2..$1000][$7..0x0])][..{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1}],Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .12[.0e-0..]|$`8esn`[$usn2..]) Is Null Is Null"), + octest:ct_string("Return $0[..0x0][..01234567] As #usn7,\"d_str\" Starts With `6esn` Starts With 1.9e0 As _usn3 Order By 01[7][`1esn`] Asc,Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,#usn7[12e-12..][$`2esn`..] Asc Skip $7 =~0 =~.1e-1 Remove None(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).``?.@usn5?,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).`2esn`"), + octest:ct_string("Unwind 1.9e0 Starts With .9e0 As #usn7 Union Merge (((`2esn` :usn2)-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})-[usn2? *010..{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}))) On Create Set @usn5 =All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2 In usn1 In 1e-1) =~{#usn8:00[0e-0...9e-1][1e-1..``]},[usn1 In 7.0e-0[.._usn4][..0X7] Where 5.9e-12 Contains `3esn` Contains Null].@usn6 =$`5esn` Contains `2esn` Contains 9e1 On Match Set All(`` In $_usn3 Is Not Null Where $`` =~$_usn3).`3esn`? =$`8esn`[$usn2..] Return 0x0 As @usn6,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7)[usn1(12e12 Is Not Null)] As usn2 Order By $`3esn` Ends With 010 Ends With $`7esn` Asc,.1e1[$usn2..9e1][9e-1...9e-1] Desc,3.9e-1[..$7] Descending Skip .12e12 Is Null Is Null Limit $``[`4esn`..][0.0..] Delete {`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}),Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1])"), + octest:ct_string("Match (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))),(`8esn` {`3esn`:#usn8[`2esn`]}) Union All With Distinct Null =~9e12 As #usn7,.0[usn2.._usn4] As `8esn` Order By [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]][{`2esn`:$`8esn` In 9e-12 In 3.9e-1}..{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}][Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..])..Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Descending,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]) Descending,5.9e-12 Contains $`` Contains $`5esn` Descending Skip .9e0[.1e-1][Count(*)] Where 9e1 Is Not Null Merge #usn7=(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[?{#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0}]-({`6esn`:07 Ends With @usn6 Ends With _usn3}) On Match Set `4esn`+=$`2esn`[$1000][2.9e1],{usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}._usn3 =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1} On Match Set {@usn5:12e-12 Starts With .9e12 Starts With 0.12}.`1esn`? =`3esn`[$0..][.9e1..] Union All Unwind `1esn`[9.1e-1] As #usn8"), + octest:ct_string("Merge usn2=(`4esn` :`6esn`:`3esn`) On Match Set usn2 =$`8esn`[.9e-1][_usn3] Create `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Remove {@usn6:$0 Starts With 010}.@usn6?,[`8esn` In 01234567[..0.0][..false] Where 6.0e0 Is Not Null|`1esn` Starts With 999 Starts With 3.9e-1].@usn5!,[`2esn` In .12e-12[$@usn6..5.9e-12] Where $`6esn` Starts With `4esn`|$`5esn` Is Null Is Null]._usn3 Union All Unwind .12e12[Count(*)..] As `5esn` Return Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,9e-1 Starts With 123.654 Starts With .9e1 As `6esn`,.9e0 Is Null Is Null Skip usn1(07 Ends With @usn6 Ends With _usn3,$`2esn` In 0X7 In 3.9e-1) Contains [`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|9e0 =~9e1 =~.12e12] Limit $7 Starts With Null Starts With `6esn` Remove 123.654.#usn7.`5esn`?,count(Distinct $`3esn` Starts With 0Xa).#usn7,`1esn`:`2esn`:`8esn`"), + octest:ct_string("With Distinct {`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]],_usn4[.0e-0][010],Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]] As `3esn` Limit 12.0[$1000..][123456789..] With 3.9e-1[0.12..] Order By 123456789 =~6.0e0 Ascending,Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Ascending,1.9e0 Starts With 's_str' Starts With 9.1e-1 Descending Where $123456789 Starts With Count ( * )"), + octest:ct_string("With *,0e0[`4esn`] As `6esn`,9.1e-1[.1e-1] Limit $0[..0x0][..01234567] Where $#usn7[$_usn4..][.12e-12..] Delete usn2[Count ( * )..07],None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn`[..0x0][..\"d_str\"])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1])..Single(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])] Union All Remove All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`4esn`?.#usn7!,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|$_usn3 Is Not Null).`5esn`! Create usn2=(`1esn` :`6esn`:`3esn`)-[#usn7?:`2esn`|`7esn` *..7]-(`3esn` {`6esn`:$`8esn`[..1e1][..``],`8esn`:$usn2 In usn1 In 1e-1}) Detach Delete 010 Is Not Null Is Not Null,None(`8esn` In 01234567[..0.0][..false] Where `7esn`) Is Not Null Is Not Null,07[.0e0][3.9e-1]"), + octest:ct_string("With Distinct {`6esn`:.1e-1[..12e12]} As @usn5,Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]) In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $`6esn`[$_usn4][01]) As _usn3,$12[$12..] As `4esn` Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null Desc,Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Asc,10.12e12 =~12e-12 =~0X0123456789ABCDEF Ascending Skip $`6esn` Starts With `4esn` Merge `3esn`=({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})<-[?{_usn3:00[$`6esn`]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}) On Match Set {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}.@usn6 =07[.0e0][3.9e-1],`5esn`:`3esn` Union All Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set _usn3 =12e-12[.0..],_usn4+=.0e0[..12.0][...1e-1],usn1 =({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null} Remove {_usn3:@usn6 In 3.9e-1 In 9e-12}.`3esn`!,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`8esn` Is Null|.0[usn2.._usn4]).usn2!,(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]}).#usn7! Remove `7esn`:#usn8,`8esn`:`6esn`:`3esn`,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0X7[Count(*)][.9e0]|$`8esn`[$``..$`1esn`][9e-12..$7]].usn2?.usn2? Union All Remove All(`2esn` In .9e-12[0e0...9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4)._usn3!.`1esn`?"), + octest:ct_string("Detach Delete ({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`3esn`?:`1esn`]-(:`8esn`:#usn7{@usn5:$12 Contains $`7esn` Contains .0})<-[@usn6?:@usn5]->(:usn1{usn1:Count(*)[0.12..2.9e1]}) Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2|9e0[..1e1]) Ends With {`1esn`:7.0e-0[3.9e-1..`1esn`]},$`2esn`[$1000][2.9e1],$usn1 Is Not Null Is Not Null With _usn4(0[true..$7]) =~Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`) =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0) As _usn3,Null Is Not Null Is Not Null Unwind Count ( * )[0e-0..01] As `3esn`"), + octest:ct_string("Optional Match ((#usn7 :_usn4{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})) Where 0[true..$7] Optional Match ((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})),`5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Union All With Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `5esn`,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null) Starts With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * )) Starts With (_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) As usn1 Order By 0e0[.12..][3.9e-1..] Descending,Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Asc Limit {#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]) Where true Starts With 2.9e1 Starts With 9e1"), + octest:ct_string("Detach Delete [@usn6 In .9e12 Starts With #usn8 Starts With 00|9e12 Contains $@usn6 Contains Count(*)][(`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]})][Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 1000 Is Null Is Null)] Merge (usn2 :@usn5{`3esn`:$usn1 Is Null})-[_usn3:`2esn`|`7esn`*..{#usn8:`1esn` =~0 =~_usn4,`2esn`:0e-0 In $1000 In .9e1}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}) On Match Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Return Distinct *,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"] Starts With ``(12.0[`8esn`],4.9e12 In 5.9e-12 In .9e0) Starts With Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]),$12 Contains $#usn8 Contains 01 Union Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12|.1e-1).`1esn`?,All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]).`7esn`!,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).usn1? Union All Create `5esn`=(((:@usn5{usn2:$usn1[$12..]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)<-[`8esn`?:`7esn`|@usn6 *..7]->(`5esn` {`2esn`:`1esn` =~0 =~_usn4}))),`3esn`=(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))) Merge `7esn`=({_usn3:$`8esn` Is Null}) On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 On Create Set [@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]].`3esn`?.`6esn`! =Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..])[(usn1 )<-[`8esn`?:usn2|:``]->(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})..0Xa],`2esn`+=$`2esn` Contains false Contains 123456789,`3esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)]"), + octest:ct_string("With *,All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,`1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `1esn` Limit {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[..`8esn`(010[@usn5..123.654],8.1e1[usn2..$1000][$7..0x0])][..{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1}] Where 12e12 Is Not Null"), + octest:ct_string("Unwind Filter(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) Starts With All(`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]) Starts With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`) As `` Merge ``=(((_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`7esn`:`8esn`|:`2esn`]->({`4esn`:$`2esn` Ends With $`8esn`})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0))) On Match Set `1esn`+=Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Starts With `1esn`(Distinct @usn6[.9e12..0e0],999 =~0Xa =~9e0) Starts With usn1($@usn5[...9e-1][..$usn1],$`3esn` Ends With 010 Ends With $`7esn`),`7esn` =10.12e12 Ends With _usn3 Ends With `4esn`,@usn6+=Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] Union Return Distinct 8.1e1 Is Null Is Null,5.9e-12[$`4esn`] Order By `6esn` Is Not Null Ascending,`6esn` Is Not Null Desc,(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})[{`5esn`:8.1e1 Ends With $0 Ends With 6.0e0,@usn5:9e0[..1e1]}..None(`` In $_usn3 Is Not Null Where $@usn6 =~$`2esn` =~9e1)] Descending Skip Null In 0Xa In .9e-1 Unwind $usn1 Is Not Null Is Not Null As `5esn` Delete true Is Null Is Null Union Remove Any(`` In $`5esn` Starts With 0X7 Starts With 1e1).#usn7!,Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\").#usn7!,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`8esn` Is Null|`2esn` Starts With $`7esn` Starts With _usn4].usn2?.@usn5!"), + octest:ct_string("Remove `6esn`:``:usn1 With Distinct usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) In {`2esn`:$`2esn` Contains $1000} In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $@usn6 Contains Count ( * )|11.12e-12 Contains 9e-12],`1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null],.1e-1 Is Null As #usn8 Order By 9e-1 Starts With 123.654 Starts With .9e1 Descending,$`8esn`[$``..$`1esn`][9e-12..$7] Descending Limit None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) Contains [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0] Return {`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``} In All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) In {`6esn`:999[...12e12][..0]} As `6esn` Order By Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7) Contains {`1esn`:$`1esn`[.9e0][$_usn3]} Contains None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]) Ascending,{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Asc,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) Asc Limit Count(*) Union All Detach Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..],.1e-1 Contains 1e1 Contains $`6esn` With *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By .12e-12 =~9e12 =~1e-1 Desc,11.12e-12 =~$`4esn` =~.12e12 Descending Limit [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null Where `2esn` =~usn1 Union All Return *,$7 Contains _usn4 Contains $`1esn`,0e-0[$`2esn`][8.1e1] As @usn5 With `3esn`[3.9e-1..$`5esn`] As usn2,0X0123456789ABCDEF Is Not Null Is Not Null As `2esn`,11.12e-12 =~5.9e-12 =~.9e1 As `3esn` Limit {`2esn`:`7esn` Is Not Null,@usn5:#usn8[usn1]} Starts With (`7esn` :`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[_usn4 *999..]->({``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}) With Distinct `5esn`[$`4esn`] As @usn6,.0e0 Is Null Is Null As _usn4,1.9e0 Starts With .9e0 Order By @usn5 Contains _usn3 Contains 00 Descending,$`6esn` Ends With 12 Ascending"), + octest:ct_string("Merge `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) On Create Set None(`8esn` In 01234567[..0.0][..false] Where Count(*)[9e1..][12e-12..]).usn1 =.0e0[$`6esn`..] Return *,`` Is Not Null Is Not Null As _usn4 Order By [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null Ascending Limit 999[0.12..8.1e1] Union Return $@usn6 =~$`2esn` =~9e1 As `1esn` Limit .1e-1 Is Null Remove Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `2esn` Starts With $`7esn` Starts With _usn4).``?,Extract(`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|$_usn4[Null]).`7esn` Create usn2=((:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]})),(((:usn1{@usn5:Count(*)})<-[`6esn`?:``|:`3esn`]-(:@usn6:_usn4$`6esn`)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`2esn`:`8esn`)))"), + octest:ct_string("Unwind 0xabc['s_str'][$``] As `2esn` Unwind Null =~true =~.1e-1 As _usn4 Unwind 07[\"d_str\"..]['s_str'..] As usn1 Union All Return Distinct *,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]},$`6esn` Ends With 12 Limit [`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] In Any(`7esn` In .12e12[Count(*)..] Where 0Xa[9e0]) In [usn2 In .0e0[$`6esn`..] Where .12e12[`7esn`][#usn8]|7 Is Null Is Null] With Distinct .9e0 Is Null Is Null As #usn7,All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Where 5.9e-12[$`4esn`] With count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) =~Filter(_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789) =~[`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]|.9e12 Starts With #usn8 Starts With 00],Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]) Ends With usn2(0.0[$1000][3.9e-1],0e0[.12..][3.9e-1..]) Ends With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Order By ({`1esn`:0X0123456789ABCDEF Contains 8.1e1})-[`` *..0X7]->(usn2 :#usn8)[{_usn3:Null[..07]}..Filter(_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789)] Asc Skip 12e12 Ends With usn1 Limit `1esn`[11.12e-12..] Union Merge @usn5=((#usn8 :usn1)<-[`2esn`?:usn2|:`` *010..{`5esn`:$`4esn` Ends With 0e-0}]->(:usn1{`3esn`:$0 =~01234567,@usn5:7 Is Null Is Null})-[@usn5?:usn1|:#usn8 *01234567{`1esn`:7.0e-0[3.9e-1..`1esn`]}]-({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) On Match Set `7esn`:@usn5 On Match Set usn2+=(:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])],usn2+=Count(*)[9e-12..0Xa][$123456789..0.0],#usn7+=7.0e-0 Contains Count ( * ) Contains 0Xa Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Where Count(*) Delete Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7)[{usn2:`8esn` Is Null}..[@usn6 In .9e12 Starts With #usn8 Starts With 00]][(:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null})..{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}],999 Ends With $123456789 Ends With $_usn4"), + octest:ct_string("Unwind 0X0123456789ABCDEF[1.9e0] As `5esn` Merge #usn7=((:#usn8{usn1:.9e12 =~`5esn` =~07})-[{usn1:$#usn8[...9e1]}]->({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})<-[`6esn`:`6esn`|#usn7*]->(`3esn` {_usn4:$`2esn` Starts With 0x0})) With Distinct .1e1[9e-1][$usn1] As `6esn`,{_usn3:07 =~_usn4 =~.9e12}[All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 8.1e1 Is Null Is Null)..] As #usn8,10.12e12[0Xa..999][1000..Count(*)] As usn2 Order By `4esn`[0.0..][.1e-1..] Desc,$_usn3 Contains 1e1 Contains .12 Ascending Limit 1e-1 =~0.0 =~9.1e-1 Where 0[$`1esn`..][9e12..] Union Optional Match _usn3=((:`7esn`{`5esn`:0e0 Is Null Is Null})-[usn2?:@usn6|:_usn3]->({usn1:01[.9e-12..],@usn6:$`5esn` Ends With $#usn7 Ends With .0e-0})<-[?:`8esn`|:`2esn` *..7]-(:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})),#usn7=((`7esn` {`7esn`:010[@usn5..123.654]})) Where .9e0 Starts With @usn6"), + octest:ct_string("Match @usn6=(:`1esn`)-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)<-[? *999..]->(_usn3 {`6esn`:8.1e1 Is Null}) Remove {`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567}._usn3!,Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]).@usn6? Union Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`}))"), + octest:ct_string("Return Distinct *,Null[12e-12..] As _usn4,$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Create #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]})-[`3esn`? *..0xabc{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`}) Remove #usn7:`4esn`:`7esn` Union Detach Delete 7 Contains $#usn7 Remove Single(`5esn` In 12[0xabc..][$0..] Where 1000[$`6esn`..12.0]['s_str'..$`3esn`])._usn4?,(_usn4 :@usn5)<-[@usn5?:@usn5 *..01]-(`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}).`5esn`._usn3.#usn7? Union Unwind None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] As `3esn` Unwind \"d_str\"[12e12..][4.9e12..] As `2esn`"), + octest:ct_string("With Distinct *,.0e-0[0e0..00][.9e1..12] Order By 4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Ascending Skip 0x0 Starts With $`5esn` Starts With 9e-12 With Distinct *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Delete .1e-1[..12][.._usn4] Union All With 9e12 Starts With `4esn` Starts With .9e-1 As @usn6 Order By {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} Ascending,01 Ends With \"d_str\" Asc,1000 Is Null Is Null Ascending Limit 0e0 Starts With $1000 Starts With `2esn` Create `2esn`=((`5esn` :`1esn`)) With Distinct All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Order By `6esn`[0x0..@usn5][$1000...9e-12] Desc,Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null Descending,Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Asc Limit 11.12e-12[010..11.12e-12]"), + octest:ct_string("Match ((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) Return Count(*)[8.1e1..],Any(`` In $_usn3 Is Not Null Where 12e12[true..][$`2esn`..]) =~{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12} =~{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3} As `3esn` Skip 12 Contains $usn1 Contains 0 Merge `8esn`=((`4esn` )<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})) On Match Set Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`1esn` =.1e1 Ends With `2esn` Ends With $`1esn`,All(usn1 In 7.0e-0[.._usn4][..0X7] Where 12.0[..Count(*)][..5.9e-12]).`3esn`!.`4esn`!.``! =Count(*)[8.1e1..],{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}.usn1!.@usn6? =$`3esn` In 's_str' In $#usn7 Union Return 0Xa Ends With #usn8 Ends With usn2 As `6esn`,$7 Starts With Null Starts With `6esn` Skip $999 Ends With .9e-12 Return Distinct @usn6[.9e12] As ``,01234567 Starts With `4esn` Starts With 10.12e12 Order By $`7esn` Is Null Is Null Descending,Any(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1) Asc,#usn8[usn1] Asc Optional Match (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),`1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) Where `1esn` Starts With 999 Starts With 3.9e-1 Union All Unwind None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} As `7esn`"), + octest:ct_string("Merge ((usn1 )-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})) On Create Set `8esn`+=Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),`8esn`+=0.0 Is Not Null Is Not Null On Match Set {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]}.#usn8?.`4esn`?.@usn6? =.9e12[$usn2..][7..],[_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]].`8esn`.@usn6? =0X7 =~$123456789 =~$`` Create @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Union All Match (((`3esn` :@usn6:_usn4)<-[_usn4?:#usn8|:`4esn` *123456789..0x0]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12})-[?:_usn3|`2esn`]->(`1esn` :`7esn`))) Where $@usn5[..1e-1] Unwind 's_str' =~.9e1 =~3.9e-1 As usn2"), + octest:ct_string("Create _usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))) Union All Remove Single(_usn3 In ``[$``..] Where Null[..07]).`5esn`?.`6esn`!,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0).`7esn`?._usn4"), + octest:ct_string("With Distinct #usn7[`5esn`..`2esn`][$`4esn`...1e1] As _usn4,8.1e1 Is Not Null,$_usn3 Is Not Null Order By $`6esn`[.9e1..][`5esn`..] Ascending,#usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Desc,Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Ascending Where 0xabc[$`4esn`..][`8esn`..] Detach Delete {#usn7:$usn2[1e-1]}[(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)..][(usn1 :`2esn`:`8esn`)<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]})..] Return 1.9e0 Ends With Count ( * ) Ends With .12 As `4esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12),9e1 Is Not Null As #usn8 Order By $`4esn` Ends With 0e-0 Ascending,.9e-1 Contains .0e0 Contains usn1 Asc Skip None(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8) Is Null Is Null Union All Create `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Optional Match `8esn`=(`6esn` :``:usn1),((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}))) Union All With Distinct Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn` Order By (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] Ascending,12 Contains $usn1 Contains 0 Ascending Skip Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null)[[`2esn` In .12e-12[$@usn6..5.9e-12] Where 00]][Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12[123456789][5.9e-12])] Limit .9e0 Is Null Is Null Where $1000 Contains 01234567 Contains 0X7"), + octest:ct_string("Remove [`8esn` In 12.0 Contains $_usn4 Contains $usn2|#usn8 Starts With 11.12e-12 Starts With $`3esn`].`6esn`.`6esn`!.`5esn` Merge ({`5esn`:07 Starts With usn1 Starts With 010})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}) Remove {`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]}.#usn7!,{usn2:12.0[..123456789][..01]}.#usn8! Union Create (($@usn6)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})<-[#usn8?:#usn7|:`8esn` *..0X7]->(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999})),usn2=((@usn6 :`5esn`{@usn5:$`4esn` Ends With 0e-0})<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(:_usn4{``:$_usn3[1e-1..]})<-[``?:@usn5]->(_usn3 :#usn8)) Create `3esn`=(`` :`3esn`) Create (`` :`3esn`)-[@usn6:#usn7|:`8esn` *0Xa..7]-(:`2esn`:`8esn`{`6esn`:7.0e-0 Is Null Is Null,`6esn`:999[0.12..8.1e1]})<-[`8esn` *1000]->(#usn8 ),`1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) Union Create (:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[`6esn`?:`4esn`|:@usn5{usn1:00,`1esn`:.0e0[1e1..][01234567..]}]->(`3esn` ),usn1=((:_usn3:_usn3{usn1:.9e1[12]}))"), + octest:ct_string("Match ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})),(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}) Where .0e0 Is Null Is Null Return Distinct *,[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12} Order By $@usn5 Ends With $@usn6 Ends With \"d_str\" Ascending,$`6esn` In `2esn` Asc,#usn8[`2esn`] Desc Skip `3esn` Ends With `6esn` Limit .1e1 Starts With $`7esn` Union All Delete `` =~123456789,`3esn`[`4esn`..Null][$usn1..`5esn`] Delete $12 Contains $`3esn`"), + octest:ct_string("Detach Delete [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]|12e12 Is Not Null][{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]}],$`6esn` Is Null Is Null,(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null}) Is Null Return `5esn`[$`4esn`] As @usn6,count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) =~Filter(_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789) =~[`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]|.9e12 Starts With #usn8 Starts With 00],[_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] As usn2 Limit All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6)"), + octest:ct_string("Merge ((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set @usn6+=123456789[Count ( * )..],`8esn`+=Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * ))[{`4esn`:12e-12 Starts With .9e12 Starts With 0.12}..(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})],#usn7+=12e-12 Starts With .9e12 Starts With 0.12 Merge `5esn`=((({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))) On Match Set Extract(`` In $_usn3 Is Not Null Where $_usn3 In 123.654 In $`8esn`|$`8esn`[$usn2..]).`6esn`!.``! =_usn4 In `3esn` In 7.0e-0 On Create Set {`1esn`:$`1esn`[.9e0][$_usn3]}.`8esn`? =`1esn`[Count ( * )][5.9e-12],`8esn`+=123.654 Ends With Count(*) Detach Delete 9e12[.0e-0],12.0[$1000..][123456789..],Extract(`` In 0.12[3.9e-1]|0X7 Starts With 1e1 Starts With $12)[`7esn`(9.1e-1 Contains 0xabc)..][Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3])..] Union Delete 12e12 Starts With 4.9e12 Starts With 0e0,Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)],`6esn`[..01][..`8esn`] Detach Delete 00 =~.9e-12 =~usn1,(`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})],Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Unwind Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `6esn` Union Create `1esn`=((`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1)-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})),((`4esn` )<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}))"), + octest:ct_string("Detach Delete (:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]),(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]})[Extract(`` In $_usn3 Is Not Null Where .0e-0 =~12e-12)..[`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6]],123456789 Ends With _usn4 Unwind `2esn` Starts With 12 Starts With 10.12e12 As @usn6 Create (`1esn` :`6esn`:`3esn`) Union With Distinct *,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e1[..Count(*)][..7.0e-0]) =~[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 01[Count(*)..0e-0][7..$`2esn`]] =~Single(usn2 In .0e0[$`6esn`..] Where 01[1e-1]),usn1 Ends With 12 As `` Limit `7esn` Ends With `7esn` Ends With $`3esn` Where @usn6[01][.9e0] With Distinct 01[1e-1] As `8esn`,5.9e-12 =~$@usn6 As `7esn`,$123456789 Is Null Is Null As #usn8 Skip Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Union All Remove Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]).#usn8?"), + octest:ct_string("Detach Delete $`3esn` Is Null Is Null With *,1000 Is Not Null Is Not Null As #usn7,.1e-1 Ends With @usn6 As @usn6 Skip 9.1e-1 =~@usn5 =~Count ( * ) Limit _usn4 In `3esn` In 7.0e-0 Where 1.9e0 Is Null Is Null Optional Match `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),_usn4=((`6esn` :#usn7:_usn3)<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union All Remove [`2esn` In .12e-12[$@usn6..5.9e-12] Where 1000[..0e0][..$`6esn`]|Count(*)[12..][0X0123456789ABCDEF..]].@usn6!,`8esn`:_usn3:_usn3 Return *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip usn2 Starts With $_usn3 Merge ``=(usn2 :@usn6:_usn4{usn1:9e12 Contains $@usn6 Contains Count(*)})<-[`1esn`?:`6esn`|#usn7 *0x0..{`5esn`:`8esn` =~.1e1 =~.0}]->(#usn7 {`5esn`:.12e12[$0]})<-[`8esn`? *0x0..]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``}) On Create Set (`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8,_usn3+=Null[..07] Union All Merge (`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1}) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7]"), + octest:ct_string("Create (@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})) Remove {usn2:`3esn` In 0X7,usn2:7 Is Null Is Null}.`4esn`.@usn6!,{@usn6:.9e-12[..$`7esn`][...9e-1]}.usn2 Union Remove None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]).`1esn`?.`5esn`!,{`7esn`:$`5esn`[7..],`5esn`:`5esn` Contains `6esn`}.#usn8?.usn2.@usn5!,Any(`5esn` In 12[0xabc..][$0..] Where .9e1 Contains Null).`8esn`? Remove [_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1|8.1e1 Ends With $0 Ends With 6.0e0].`5esn`?._usn3.@usn6 With *,$#usn7[$_usn4..][.12e-12..] As `6esn`,5.9e-12 =~$@usn6 As `7esn` Limit usn1[12e-12] Union Remove (`` :`3esn`{`5esn`:``[$``..]})-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}).`7esn`,[`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$`` Is Not Null].`8esn`._usn3?,(`` :usn2)-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}).usn1! Delete None(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Is Not Null"), + octest:ct_string("Create usn2=(#usn7 :_usn3:_usn3)<-[#usn8?:`4esn`|:@usn5]-(#usn8 :_usn3:_usn3) Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set `6esn` =.1e1 =~10.12e12 On Match Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] Unwind Count ( * )[12e-12] As @usn6"), + octest:ct_string("Unwind .1e1 Starts With $`7esn` As `` Union With Distinct *,(`2esn` :`6esn`:`3esn`)<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789)..Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1])][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]]..Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 9.1e-1 Is Null|9e1 Contains 4.9e12 Contains .9e0)] Skip $#usn7[..$`8esn`][..2.9e1] Limit Extract(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..]|.9e12[..$usn1][..10.12e12]) Starts With Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..])"), + octest:ct_string("Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})),((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) With [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..] Where $1000 Contains 01234567 Contains 0X7 Create ((usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]->(:usn1{usn1:Count(*)[0.12..2.9e1]})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})),(:usn1{``:.9e1[..`5esn`]}) Union Remove {`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567}._usn3!,Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]).@usn6? Merge ({_usn4:$`3esn` In 's_str' In $#usn7}) On Create Set #usn7:`4esn`:`7esn`,{`7esn`:$`5esn`[7..],`5esn`:`5esn` Contains `6esn`}.#usn8?.usn2.@usn5! =usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]],@usn6 =\"d_str\" =~9e-12 =~`5esn` Remove Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 01[Count(*)..0e-0][7..$`2esn`]).`4esn`?,{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`}.`1esn`!.usn1!"), + octest:ct_string("Unwind None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] As `3esn` Unwind \"d_str\"[12e12..][4.9e12..] As `2esn` Union All Optional Match usn1=(`5esn` :`1esn`),`4esn`=((@usn5 :usn1{usn1:.9e1[12]})) Unwind usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]] As #usn8 Merge @usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}) On Create Set Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0).``? =.9e1[11.12e-12] On Match Set `7esn` =Filter(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) Starts With All(`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]) Starts With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`)"), + octest:ct_string("Delete .1e1 In 9e12 Match (`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Union Match `5esn`=(`5esn` :`1esn`),(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))) Where 9e-1 Starts With 123.654 Starts With .9e1 Union All Remove {@usn6:0X7 Starts With 1e1 Starts With $12}.#usn8?.usn1.@usn5!,Extract(usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|0e0 Ends With 1e1 Ends With 0Xa).``?,@usn5:`3esn`"), + octest:ct_string("Unwind $999 Ends With .9e-12 As usn2 Remove count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0]).#usn8?.#usn8.`` Merge _usn4=(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0}) On Match Set `8esn` =01[.9e-12..],usn2 =.9e-1 =~.9e-1,`2esn`+=$999 On Create Set `6esn`(Distinct .9e-1[3.9e-1]['s_str'],9e0 =~9e1 =~.12e12).@usn5?.`1esn` =123456789 Ends With $@usn6 Ends With 0.12 Union All Detach Delete (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1) Ends With Filter(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7]) Optional Match ((#usn8 {_usn3:$usn2 In usn1 In 1e-1})),usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union All Unwind 0xabc In 10.12e12 As usn2 Return *,$_usn3 Contains usn2 Contains 0xabc,(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`)<-[usn2 *1000{usn1:Null Starts With $`4esn` Starts With $#usn7}]->(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})[{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}][{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}] As @usn5 Skip `7esn` Ends With _usn4 Remove {`4esn`:01[..01]}.`8esn`?.`8esn`?.usn1?,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`2esn`[010..`5esn`][``..0.12]).`4esn`"), + octest:ct_string("Return $`2esn`[$1000..][$@usn5..],`7esn` Ends With `7esn` Ends With $`3esn` Limit $0 =~01234567 Remove #usn7:`3esn`,Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]).usn2!.@usn6!.`1esn`?,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1].`6esn`._usn4?._usn4! Detach Delete 01[$`4esn`..$_usn4][0e-0..$@usn6],Extract(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|Count(*) Is Not Null Is Not Null)[(_usn4 {#usn7:$`5esn` Is Null Is Null})-[_usn3:usn1|:#usn8 *07..]->(`4esn` :#usn8{#usn8:_usn4[7][8.1e1],#usn7:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})][Filter(`5esn` In 12[0xabc..][$0..] Where .12e-12[$@usn6..5.9e-12])],.9e-1 =~.9e-1"), + octest:ct_string("With Distinct *,Count(*)[..Count(*)][..9e0] Order By 07 Starts With usn1 Starts With 010 Ascending,7.0e-0[..$`7esn`][..Null] Descending,$usn2[8.1e1...9e-1][.1e-1..11.12e-12] Desc Skip Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] Limit 999 Ends With $123456789 Ends With $_usn4 Where 10.12e12[Count(*)..] Unwind $`6esn`[$`8esn`..][false..] As `6esn` Detach Delete ``[$``..],`7esn`[3.9e-1..][$@usn5..] Union All With Distinct $#usn7 =~8.1e1 As #usn7,7[9.1e-1..][$_usn3..],Filter(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..])[(@usn6 :#usn8)-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]})<-[:@usn6|:_usn3{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`` :`3esn`)][Single(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])] Order By (`5esn` :`2esn`:`8esn`)-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]}) Is Null Is Null Asc,``(@usn6[..$`3esn`][..4.9e12],0x0 Contains $`1esn` Contains 0.0)[{`6esn`:999[...12e12][..0]}][[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)]|.9e1[Count(*)..$`3esn`]]] Asc,'s_str'[12][00] Ascending Skip (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Starts With `7esn`(Distinct $`5esn` Is Null Is Null,$`4esn` Ends With 0e-0) Starts With Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 5.9e-12 Ends With 1e1 Ends With false) Match `5esn`=(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}),((`6esn` :_usn4)<-[`7esn`*..]->(`` :@usn6:_usn4)-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Union All Unwind 0e0[`4esn`] As _usn4 Unwind 12e-12[`7esn`..][5.9e-12..] As `8esn`"), + octest:ct_string("With *,1000 Is Not Null Is Not Null As #usn7,.1e-1 Ends With @usn6 As @usn6 Skip 9.1e-1 =~@usn5 =~Count ( * ) Limit _usn4 In `3esn` In 7.0e-0 Where 1.9e0 Is Null Is Null With Distinct *,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Skip $_usn4[..usn2] Limit $`8esn` In 9e-12 In 3.9e-1 Union All Create `7esn`=(`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Optional Match `3esn`=(@usn5 :`7esn`),((#usn8 {_usn3:$usn2 In usn1 In 1e-1})) Where usn2[..10.12e12][..$`7esn`] Create ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((`` :``:usn1)) Union All Return {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})] Order By $_usn3 Contains 1e1 Contains .12 Asc,9e12 Asc,0e0[`3esn`..][.9e-1..] Descending"), + octest:ct_string("Create ((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Delete .1e-1[$`2esn`..][$`1esn`..] Unwind `8esn`[Null...12e12][0..11.12e-12] As usn2 Union All With Distinct *,Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]) Ends With Extract(`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0|12e12[..$`8esn`][...0e-0]) Ends With _usn3(Distinct 5.9e-12[`4esn`..12e12][0x0..1.9e0],`6esn`[..$@usn6][..$`1esn`]) As `3esn` Where `6esn`[010...9e-12]"), + octest:ct_string("With Distinct 010[11.12e-12..],Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) As `2esn`,.9e1[#usn7..] Where $12[`1esn`..] Return Distinct *,9e1 Contains 4.9e12 Contains 123456789 Skip 00 Is Not Null Limit $`8esn`[12.0..][4.9e12..] Detach Delete _usn4 Ends With .0 Ends With 7,All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7])[..Extract(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..])]"), + octest:ct_string("Merge `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}) Remove `3esn`($`5esn`[7..],9e-1[0X0123456789ABCDEF][0]).usn2,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 11.12e-12 Is Null Is Null).`6esn`?,{#usn8:_usn4 Ends With .0 Ends With 7,`6esn`:0X7 Starts With 1e1 Starts With $12}.@usn5! Union Remove Single(_usn3 In ``[$``..] Where 11.12e-12 In $`1esn` In 9e12).#usn8?,Single(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12).`6esn`,None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12])._usn3?.`3esn`.`3esn`? Optional Match (((`5esn` :usn1{_usn4:8.1e1 Is Null,#usn7:$_usn3 =~$usn1 =~_usn4})<-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(:_usn4{#usn7:.0e0[1e1..][01234567..],@usn5:`2esn` Is Not Null Is Not Null})-[#usn7?:`2esn`|`7esn` *..7]-(`3esn` {`6esn`:$`8esn`[..1e1][..``],`8esn`:$usn2 In usn1 In 1e-1}))) Delete #usn7 =~`5esn` =~``,$#usn7 Starts With 10.12e12"), + octest:ct_string("Remove 9e-12._usn4 With (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7),Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),12.0 =~$@usn5 =~8.1e1 Order By Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] Ascending Limit $@usn6 Contains Count ( * ) Union All Remove Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7).#usn7!,(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12}).``!.`` Detach Delete {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} =~Filter(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]),2.9e1[0..$@usn5][`7esn`..$`1esn`],All(usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null])[``($_usn3[1e-1..],.12e12[Count(*)..])][None(_usn4 In Count(*)[9e1..][12e-12..] Where 123456789 Ends With _usn4)]"), + octest:ct_string("Unwind Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) As `5esn` Remove Single(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1).`2esn`?,`1esn`:_usn4,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where usn1 Is Not Null).#usn8? Return Distinct *,$`6esn`[$_usn4][01] As `1esn`,`4esn`(Distinct `1esn`[..0x0][..\"d_str\"],false[..12e-12][...9e1]) Is Null Is Null As #usn8 Order By {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} Desc,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where `2esn` Is Not Null Is Not Null|.1e1[.0e0..]) Ascending,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .12[.0e-0..]|$`8esn`[$usn2..]) Is Null Is Null Descending Union All Merge @usn5=((:`7esn`{usn1:123.654 Ends With 0Xa Ends With .12e12})-[ *0..010]->(_usn4 :`5esn`)) On Match Set ``+=0.12[07..3.9e-1] On Create Set @usn6(9.1e-1[$`4esn`..][$`4esn`..]).@usn5?.#usn8!.`2esn` =usn1[12e-12],`4esn` =$`6esn`[..12e12][.._usn3] Create @usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}) Union All Optional Match usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})),_usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Where $_usn4 Starts With 0e-0 Starts With 1e-1 Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where $`1esn` Starts With Count(*) Starts With $`8esn` Remove (:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null}).`8esn`?,Extract(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null).usn2"), + octest:ct_string("Delete $`5esn`[true] Create `2esn`=(((usn1 {`6esn`:$`5esn`[true],usn2:1e1 Is Not Null Is Not Null})-[:`4esn`|:@usn5 *01234567$_usn4]->(`7esn` {usn2:12.0[..123456789][..01]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}))),`1esn`=(((`8esn` {@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})-[`3esn`?:`2esn`|`7esn`*..]-(:_usn4)<-[``?:#usn8|:`4esn`]-(:usn1{@usn5:Count(*)})))"), + octest:ct_string("Return $`4esn` Contains $12 Contains .9e-1,.1e-1[@usn6..] As `4esn`,`2esn` =~usn1 As `6esn` Skip 0xabc[7.0e-0..][12e12..] Limit .12e12 =~$#usn7 Remove {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}.`7esn`,(`5esn` :`2esn`:`8esn`)-[`6esn`:`6esn`|#usn7*]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})._usn4 Remove `2esn`(Distinct 12 Is Null Is Null)._usn3! Union Create (:usn1{``:.9e1[..`5esn`]}) Merge (usn2 :@usn5{`3esn`:$usn1 Is Null})-[_usn3:`2esn`|`7esn`*..{#usn8:`1esn` =~0 =~_usn4,`2esn`:0e-0 In $1000 In .9e1}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}) On Create Set @usn5 ={``:`1esn` In 12e-12 In 1e-1,usn2:_usn3[`2esn`..10.12e12][9e1..true]}[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )]..][Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`])..],`6esn` =usn2['s_str'...9e-1][$7..Count ( * )] On Create Set None(`8esn` In 01234567[..0.0][..false] Where $_usn3 Contains 1e1 Contains .12).``.`8esn`? =8.1e1[$`5esn`][0e0] Unwind All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0)[..[@usn6 In 00 =~.9e-12 =~usn1 Where 0.0[$1000][3.9e-1]|$usn2 =~$`2esn` =~\"d_str\"]] As `6esn`"), + octest:ct_string("With *,.1e1 Starts With .1e-1,(`5esn` :`5esn`{`5esn`:12.0[..Count(*)][..5.9e-12],`2esn`:0x0 Starts With 1000})-[`6esn`? *123456789..0x0]->({`6esn`:$usn1 Starts With usn1 Starts With 1e-1,#usn8:$#usn7 Starts With 10.12e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}) Is Null Order By 123456789[\"d_str\"..] Descending,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending,12e-12[`7esn`..][5.9e-12..] Asc Skip $`` In $@usn6 In 3.9e-1 Limit .1e1 =~10.12e12 Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]|$_usn3 Is Not Null).usn2!.#usn7!.`8esn`!"), + octest:ct_string("Merge (:#usn8{_usn4:$999 Ends With .9e-12})<-[?{_usn4:$#usn7 Is Not Null Is Not Null,`3esn`:9.1e-1 In #usn8}]->(#usn8 {_usn3:$usn2 In usn1 In 1e-1}) On Match Set (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]->(:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}).`3esn`!.#usn7._usn3! =`5esn`[$`4esn`] On Create Set usn1+=9e0[..1e1] Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]|Count(*) Starts With $_usn4).`8esn`! Merge (((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Union Unwind `7esn` Ends With _usn4 As _usn3 Return Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] As `5esn` Order By 0 Starts With 0Xa Starts With $0 Ascending,$`2esn`[$usn1..] Asc,Count(*) Starts With $_usn4 Descending Limit All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..]"), + octest:ct_string("Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Where 07[.0e0][3.9e-1] With Distinct .0 Is Null Is Null As `7esn` Order By Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``]) Is Not Null Is Not Null Asc,0x0 =~$7 =~Null Descending,.12e-12[$`6esn`..] Desc Skip false[12e-12..][usn1..] Where `1esn`[11.12e-12..] Union All Delete All(`8esn` In 01234567[..0.0][..false] Where 07 Ends With @usn6 Ends With _usn3) In (:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})<-[`3esn`?:`1esn`]-(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[usn2:@usn6|:_usn3 *123456789..0x0$_usn3]->(:`8esn`:#usn7{``:$7 Starts With Null Starts With `6esn`,`4esn`:#usn8[..#usn7][..@usn6]}) In Null Merge (`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[_usn3:usn1|:#usn8 *07..]-({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}) On Match Set `6esn`:`6esn`:`3esn`,`8esn`:`7esn` On Match Set {#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}.`6esn`!.`3esn`! =5.9e-12[$`4esn`],_usn3:`2esn`:`8esn`,#usn7(0e0 Starts With $1000 Starts With `2esn`,Count ( * )[..`8esn`]).@usn5? =.0e0 =~5.9e-12 =~`7esn`"), + octest:ct_string("Optional Match `1esn`=(((@usn5 :usn2)-[`4esn`?:_usn3|`2esn`]-(:#usn7:_usn3)<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}))) Match (`5esn` :`7esn`{`7esn`:$_usn3[.1e1..][$`1esn`..],`5esn`:.12e-12 =~9e12 =~1e-1})<-[#usn8{`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5}]->(:_usn4{_usn3:010 Starts With 0.0 Starts With .0e0}) Merge ``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Union All Merge `2esn`=(({_usn4:01234567[6.0e0][$usn2]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})) Unwind `7esn` Is Not Null Is Not Null As `1esn` Merge `6esn`=(((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-({@usn6:``[$``..]})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]->(@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]}))) On Match Set `3esn`+=(:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])],`5esn`+=Null =~true =~.1e-1,`3esn`:`6esn`:`3esn` On Create Set `8esn` =$12[01] Union Delete (:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) Starts With count(Distinct 9.1e-1 =~@usn5 =~Count ( * )),true Starts With 2.9e1 Starts With 9e1,.1e1 Starts With $`7esn` Unwind 12e12 Is Null Is Null As usn2"), + octest:ct_string("Optional Match ((usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})<-[? *07..{_usn4:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:$#usn8[...9e1]}]-({`1esn`:0X0123456789ABCDEF Contains 8.1e1})) Where 7.0e-0[.._usn4][..0X7] Union All Create `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),((_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))"), + octest:ct_string("With *,'s_str' =~.9e1 =~3.9e-1 As usn2,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `6esn` Order By 01 Ends With \"d_str\" Asc,9e-1 =~6.0e0 =~`` Descending Skip $`5esn` Ends With 9e-1 Ends With $#usn8 Where `7esn`[3.9e-1..][$@usn5..] Union Delete 1.9e0 =~0x0,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]),{_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12) Union Detach Delete All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Unwind #usn8[3.9e-1.._usn3] As `4esn`"), + octest:ct_string("With Distinct Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Limit 9e0[..1e1] Where $usn2[1e-1] With Distinct *,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,false[12e-12..][usn1..] Order By Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]) Desc Limit $`1esn`[`3esn`..] Where $usn1 =~$999 =~$7 Return Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] As usn1,Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) As usn1,_usn4[9e0..$#usn8] Order By $``[`4esn`..][0.0..] Desc,9e0[$usn2][0] Ascending Limit Count ( * )[`7esn`]"), + octest:ct_string("Unwind Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) As `3esn` Detach Delete (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1) Ends With Filter(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7])"), + octest:ct_string("Remove .9e-12.usn2 Return `5esn`[$`4esn`] As @usn6,count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) =~Filter(_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789) =~[`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]|.9e12 Starts With #usn8 Starts With 00],[_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] As usn2 Limit All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Union All Delete $#usn7 Is Not Null Is Not Null Delete Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null,0X0123456789ABCDEF Is Not Null Is Not Null"), + octest:ct_string("Match (`5esn` :`7esn`{`7esn`:$_usn3[.1e1..][$`1esn`..],`5esn`:.12e-12 =~9e12 =~1e-1})<-[#usn8{`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5}]->(:_usn4{_usn3:010 Starts With 0.0 Starts With .0e0}) Where 12e12 Starts With 4.9e12 Starts With 0e0 Union Return Distinct Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` Is Null Is Null) Is Not Null Is Not Null As usn1,123.654 Is Not Null Is Not Null As `1esn`,0X0123456789ABCDEF Contains 8.1e1 As @usn5 Limit _usn4[7][8.1e1] Remove {usn2:$usn1[$12..]}._usn3,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0).@usn5! Optional Match #usn8=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`3esn`=({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})<-[?{_usn3:00[$`6esn`]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}) Where .9e1[12] Union Unwind .1e-1 Contains 1e1 Contains $`6esn` As @usn6"), + octest:ct_string("Return *,All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Starts With 10.12e12 Starts With #usn7(false =~4.9e12),0e0[`4esn`] Create `7esn`=(#usn8 :#usn8)<-[`5esn`?:``|:`3esn` *..0xabc]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[{#usn8:.0e0[1e1..][01234567..],`6esn`:123.654 Ends With 0Xa Ends With .12e12}]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12}),_usn4=((`5esn` {`2esn`:`1esn` =~0 =~_usn4})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[usn2?{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3}]-(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})) Union All Remove {`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]}.#usn7!,{usn2:12.0[..123456789][..01]}.#usn8! Create (:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[`7esn`*..]->({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[`8esn`:`3esn`|:_usn3 *123456789..0x0{`8esn`:$`3esn` Ends With 010 Ends With $`7esn`,usn2:7.0e-0[$usn2..0.12][$``..0]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010}) Merge ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`5esn` *01234567]->(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) On Create Set None(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).`5esn`?.`3esn`! =[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]},`8esn` =Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]],None(`` In $_usn3 Is Not Null Where 7.0e-0 =~$123456789 =~`8esn`).`3esn` =Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1]) On Match Set `8esn` =[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]).#usn7!.usn1?.usn1? =$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 9e0 =~9e1 =~.12e12|$@usn5 =~.12e-12).`2esn`?.`1esn`! =0e-0[...9e12]"), + octest:ct_string("Remove Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567).`4esn`!.`8esn`!.`4esn`,(:`1esn`{`7esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[`7esn`*..]-(`7esn` :usn1).`6esn` Remove (:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}).`3esn`?,Extract(usn2 In .0e0[$`6esn`..] Where usn2 Ends With .0)._usn4?.@usn5._usn3,{usn2:.9e-1 Is Not Null Is Not Null}.@usn6!"), + octest:ct_string("Detach Delete $`1esn`[.9e0][$_usn3],`4esn` Starts With .0e0 Starts With usn2 Optional Match ((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})),`7esn`=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})"), + octest:ct_string("Create (:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}),`6esn`=(#usn7 {`4esn`:7.0e-0 =~$12 =~5.9e-12,_usn4:8.1e1 Contains 0e-0 Contains $_usn3})-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[$0]->(`7esn` :`2esn`:`8esn`) With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Order By 12.0[.._usn4][..0X7] Descending,`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Ascending Skip 's_str' Ends With 0.0 Ends With .12e12 Union Optional Match usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),`2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Unwind All(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12) In All(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`]) In {usn1:`3esn` Ends With `6esn`} As usn2 Union Create (:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[`6esn`?:`4esn`|:@usn5{usn1:00,`1esn`:.0e0[1e1..][01234567..]}]->(`3esn` ),usn1=((:_usn3:_usn3{usn1:.9e1[12]}))"), + octest:ct_string("With Distinct *,[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},07 =~_usn4 =~.9e12 As `` Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending Where .9e-1[12.0] Union All Match ((`` :``:usn1)),`8esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where 999[..@usn5][..`1esn`] Union With *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `5esn`,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null) Starts With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * )) Starts With (_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) As usn1 Order By 0e0[.12..][3.9e-1..] Descending,Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Asc Limit {#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]) Where 12 =~$@usn5 Match `7esn`=({_usn3:$`5esn`[7..]})<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}),_usn4=((`4esn` {usn2:$`7esn`[..12.0][..0e0]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})) Match (((:@usn5)-[#usn8 *0..010{_usn4:Count(*)[.0e0..][#usn7..]}]->(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[?:``|:`3esn`{#usn8:.9e1[Count(*)..$`3esn`]}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}))),_usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) Where .9e1 Contains Null"), + octest:ct_string("Merge `8esn`=(@usn6 :`5esn`{@usn5:$`4esn` Ends With 0e-0})-[usn2?:@usn5*{`6esn`:.9e0 In 9.1e-1 In $123456789,`6esn`:.12[$`2esn`..usn2][.9e-1.._usn3]}]->($`2esn`) On Create Set [`5esn` In 12[0xabc..][$0..] Where 12 Is Null Is Null].``? =.9e0 Is Null Is Null On Match Set `7esn`+=$`` In $7 In 9e-1,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`].``? =Count(*) Starts With $_usn4,`1esn` =0xabc Contains 9e1 Contains 0x0"), + octest:ct_string("Detach Delete .9e-12[12e12][.0e0],'s_str' Is Null,$`2esn` Ends With $`8esn`"), + octest:ct_string("Merge ``=((({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})<-[@usn6:#usn7|:`8esn` *0Xa..7]->(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})<-[@usn6:#usn7|:`8esn` *0Xa..7]->(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`}))) Merge (((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))) On Create Set `7esn` =$`7esn` Is Null Is Null,Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1]|12 Contains usn2 Contains $usn2).usn2? =`1esn` Ends With 7.0e-0 Ends With $usn1,None(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12)._usn4 =.1e-1[@usn6..] Union All Merge `3esn`=((`1esn` :_usn3:_usn3$0)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})) On Match Set #usn7:usn2,({usn1:usn2 Ends With 10.12e12})<-[`8esn` *1000]->(#usn8 ).usn2! =$`` In `2esn` In 07,`5esn` =`8esn`[6.0e0..][$`1esn`..] Create _usn3=((:`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[`3esn`:`5esn` *123456789..0x0{`6esn`:.9e-12[12e12][.0e0]}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}))"), + octest:ct_string("Create `2esn`=(usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2}),`3esn`=((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Remove None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])._usn4._usn4,Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where usn1[..10.12e12][..7]).``? Union Optional Match @usn6=((`` :usn1)-[ *0..010]->(_usn4 :`5esn`)),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})) Where 1e1 Is Not Null Is Not Null Detach Delete .12e12[$12..4.9e12][11.12e-12..9e12],$_usn4 =~$_usn4 =~2.9e1 With *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Where Null[`2esn`..]"), + octest:ct_string("Create `2esn`=(({_usn4:01234567[6.0e0][$usn2]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})) Detach Delete $_usn3 In $`7esn` In $`3esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where $_usn4[..usn2]|`1esn` Starts With 999 Starts With 3.9e-1) =~(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}) =~Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]),Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12)[Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12)..][`4esn`(Distinct)..] Union All Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] Ascending,1e-1[..$`6esn`] Ascending Skip (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Remove {usn2:`3esn` In 0X7,usn2:7 Is Null Is Null}.`4esn`.@usn6!,{@usn6:.9e-12[..$`7esn`][...9e-1]}.usn2 Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1 Union All Return Count(*) Is Not Null Is Not Null As usn2,$`3esn` =~4.9e12 =~$7,.9e0 Is Not Null As `6esn` Skip Any(`8esn` In 01234567[..0.0][..false] Where $_usn3 Contains 1e1 Contains .12) =~0.0 =~Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`) Return Distinct *,Null[...9e1] As `2esn` Order By 10.12e12 =~12e-12 =~0X0123456789ABCDEF Descending,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) Asc,8.1e1 Starts With .9e12 Starts With `7esn` Desc"), + octest:ct_string("With Distinct *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Skip `` =~123456789 Limit Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Where 12 In 1000 In \"d_str\" Delete 10.12e12 In `3esn` In $usn2 Match ((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2}))"), + octest:ct_string("With Distinct `5esn`[$`4esn`] As @usn6,.0e0 Is Null Is Null As _usn4,1.9e0 Starts With .9e0 Order By @usn5 Contains _usn3 Contains 00 Descending,$`6esn` Ends With 12 Ascending Union Return $`4esn` Contains $12 Contains .9e-1,.1e-1[@usn6..] As `4esn`,`2esn` =~usn1 As `6esn` Skip 0xabc[7.0e-0..][12e12..] Limit .12e12 =~$#usn7 Remove {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]}.`7esn`,(`5esn` :`2esn`:`8esn`)-[`6esn`:`6esn`|#usn7*]->(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})._usn4 Remove `2esn`(Distinct 12 Is Null Is Null)._usn3! Union With Distinct 12.0 Starts With 07 Starts With $`3esn` As `8esn`,(`3esn` :#usn7:_usn3)<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) Ends With [_usn3 In ``[$``..] Where @usn5 Ends With 0] As usn1,(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) Starts With count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) Skip [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1|.9e1[12]] Is Null Is Null Create _usn4=(({@usn5:@usn6[usn1..][`1esn`..],``:$``[`5esn`..][`2esn`..]})-[_usn3:usn1|:#usn8 *07..]-(usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})) Create (({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)),((`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}))"), + octest:ct_string("Merge _usn4=({usn1:usn2 Ends With 10.12e12}) On Create Set Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999).#usn8? =07 Is Null Is Null,`4esn` =[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null][..`1esn`(Distinct `5esn` Contains `6esn`,`3esn` Contains $`8esn` Contains 0e0)][..Single(`5esn` In 12[0xabc..][$0..] Where 1000[_usn3..`8esn`])],@usn5 =All(usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null])[``($_usn3[1e-1..],.12e12[Count(*)..])][None(_usn4 In Count(*)[9e1..][12e-12..] Where 123456789 Ends With _usn4)] On Match Set usn1+=9e0[..1e1] Delete [`2esn` In .9e-12[0e0...9e-1] Where `3esn` Contains 01234567 Contains .9e-12|10.12e12[$`5esn`]] Ends With .9e0 Ends With {``:999 =~0Xa =~9e0} Union All Return Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] As `5esn` Order By 0 Starts With 0Xa Starts With $0 Ascending,$`2esn`[$usn1..] Asc,Count(*) Starts With $_usn4 Descending Limit All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..] Remove `6esn`:`3esn`,({`6esn`:$`3esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}).``?.`5esn`!.@usn6? With Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `5esn`,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null) Starts With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * )) Starts With (_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) As usn1 Order By 0e0[.12..][3.9e-1..] Descending,Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Asc Limit {#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]) Where true Starts With 2.9e1 Starts With 9e1"), + octest:ct_string("With Distinct All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7])[..Extract(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..])],Count(*) Is Not Null Is Not Null As `4esn`,9e12 Ends With 07 Order By $`2esn`[$1000][2.9e1] Desc,9e1 Ends With .9e0 Descending,@usn5 Is Null Is Null Desc Remove Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where ``[..$#usn7]).usn1?,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})-[`8esn`:`3esn`|:_usn3*..{`2esn`:.9e-1 Ends With `8esn`,``:0[..$@usn5]}]-(`5esn` :`7esn`{`7esn`:$_usn3[.1e1..][$`1esn`..],`5esn`:.12e-12 =~9e12 =~1e-1}).`4esn`!.#usn8"), + octest:ct_string("Merge `2esn`=((`5esn` :`4esn`:`7esn`)) On Create Set Any(`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]).usn1!.``?.``? =false =~4.9e12,usn1 =7.0e-0[3.9e-1..`1esn`] Union All Return Distinct *,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]},00[$`6esn`] As `6esn` Order By [`7esn` In .12e12[Count(*)..] Where \"d_str\" =~9e-12 =~`5esn`] Is Null Is Null Asc Limit 123456789[.1e1..][$`5esn`..] With Distinct 010[11.12e-12..],Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) As `2esn`,.9e1[#usn7..] Where \"d_str\" =~9e-12 =~`5esn` With 12 Contains usn2 Contains $usn2 As ``,Count ( * )[12e-12] As #usn7 Skip .0 Where .9e-1 Contains .0e0 Contains usn1 Union Unwind .9e1[Count(*)..$`3esn`] As `5esn` Unwind .0e-0[0e0..00][.9e1..12] As usn2"), + octest:ct_string("Return 12 Contains usn2 Contains $usn2 As ``,Count ( * )[12e-12] As #usn7 Skip .0 With Distinct *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Order By .9e-12[12e12][.0e0] Asc,0.0[4.9e12..][00..] Ascending,$`1esn` Starts With Count(*) Starts With $`8esn` Ascending Skip {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Count(*)[9e-12..0Xa][$123456789..0.0])..Any(`2esn` In .9e-12[0e0...9e-1] Where `3esn` Contains 01234567 Contains .9e-12)][All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e0 In 9.1e-1 In $123456789)..Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)] Where 1.9e0[$12][``]"), + octest:ct_string("Merge ((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) On Create Set #usn7+=$#usn7 Starts With #usn7,_usn3 =`5esn`(01[Count(*)..0e-0][7..$`2esn`])[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 1.9e0 Starts With 's_str' Starts With 9.1e-1|12e-12 Starts With .9e12 Starts With 0.12]],`8esn` =07 Ends With @usn6 Ends With _usn3 On Match Set #usn7+=10.12e12[Count(*)..],#usn8 =@usn6[.9e12..0e0] Optional Match @usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),`3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})) Union Delete $12[01],.9e-12 =~$`2esn` =~`4esn` Remove {#usn7:.0e0[1e1..][01234567..],@usn5:`2esn` Is Not Null Is Not Null}.#usn8?.`7esn`?,`1esn`:``:usn1,$12.`8esn`!.usn2!._usn4"), + octest:ct_string("Return {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} As _usn3,Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])[All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654])][None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])] As usn2 Skip 5.9e-12 =~$@usn6 Limit 10.12e12[..10.12e12][..`6esn`] Unwind .9e1[Count(*)..$`3esn`] As `5esn` Union Remove [`5esn` In 12[0xabc..][$0..] Where $usn2[0e0][$7]|Count ( * )[`7esn`..]].``._usn4!.`5esn`,`1esn`(Count(*) Starts With $_usn4).#usn7.#usn7,@usn6:#usn8 Optional Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Where `` Ends With .9e-1 Ends With 9e-12"), + octest:ct_string("With Distinct $12[.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As #usn8,{#usn7:01 Ends With \"d_str\",_usn4:`3esn` In 0X7}[All(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12])..Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]|999[..@usn5][..`1esn`])][Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1)..Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)] Order By $`3esn`[010..][9e-1..] Ascending Optional Match ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) Union All Unwind _usn4 Ends With .0 Ends With 7 As `7esn` Union All With Distinct 0X0123456789ABCDEF Contains 8.1e1 As `6esn`,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,.9e0 Is Not Null Is Not Null As `5esn` Skip .1e-1 Delete \"d_str\"[12e12..][4.9e12..]"), + octest:ct_string("Delete 0e0 Ends With `7esn` Ends With usn1,`4esn`[0.0..][.1e-1..] Create `7esn`=(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]}) Union All With Distinct *,#usn8 In $@usn6 As `8esn` Skip `1esn`[..0x0][..\"d_str\"] Match @usn6=((usn1 )-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})) Union Match ``=((:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})-[:_usn4|`1esn` *00..123456789]->({_usn3:00[$`6esn`]})),(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))) Where 7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]"), + octest:ct_string("Match `8esn`=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Remove count().`1esn`!._usn4?.`7esn`!,None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12).@usn5!.`2esn`!,[`5esn` In 12[0xabc..][$0..] Where $usn2[0e0][$7]|Count ( * )[`7esn`..]].``._usn4!.`5esn` Match ((`` :``:usn1)),`8esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where 999[..@usn5][..`1esn`] Union All Unwind 0e0[`4esn`] As _usn4 Unwind 12e-12[`7esn`..][5.9e-12..] As `8esn` Union Unwind 9e1 Is Not Null As #usn8 Unwind 01234567[..Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null)][..999] As usn2 With *,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] As usn1 Limit `3esn`[$0..][.9e1..]"), + octest:ct_string("Merge (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))) Union With Distinct {usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0xabc In 10.12e12)..][0X7..],.9e1 Starts With `4esn` As `5esn` Order By [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) Descending,0e0[.12..][3.9e-1..] Asc Limit [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12] Ends With (usn1 {`6esn`:$`5esn`[true],usn2:1e1 Is Not Null Is Not Null})-[?:`4esn`|:@usn5 *..0xabc]-(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(usn2 {_usn4:$999 Ends With .9e-12}) Where 0e0[..'s_str']"), + octest:ct_string("Create ((@usn5 :usn1)-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})),(:_usn4) Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)],Null[...9e1] Union All Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) Union Merge `6esn`=(({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Create Set All(usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]).`2esn`? =0Xa[$usn2..],`3esn`:usn1,`1esn` =$``[`6esn`][00] Unwind [`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] In Any(`7esn` In .12e12[Count(*)..] Where 0Xa[9e0]) In [usn2 In .0e0[$`6esn`..] Where .12e12[`7esn`][#usn8]|7 Is Null Is Null] As @usn6 Delete $12[$12..],usn2 Ends With 10.12e12,1.9e0[$12][``]"), + octest:ct_string("Delete 123.654 Ends With 0Xa Ends With .12e12,0X7[$7..] Union All Create `2esn`=(({_usn4:01234567[6.0e0][$usn2]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})),(@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}) Merge ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})) On Create Set @usn5+=_usn4 Ends With .0 Ends With 7,None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0e-0 Contains _usn4 Contains 1e-1).`6esn`! =Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) On Create Set [_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8].`5esn`! ={_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12),#usn8 =(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] Merge ((`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010})) On Match Set All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 999 =~0Xa =~9e0).`1esn`?.`2esn`? =()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] Union Merge ``=(((_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`7esn`:`8esn`|:`2esn`]->({`4esn`:$`2esn` Ends With $`8esn`})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0))) Return Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1] Return Distinct {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As ``,$`8esn`[12.0..][4.9e12..],.1e-1 Ends With @usn6 As @usn6 Order By false Starts With 3.9e-1 Asc,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Descending"), + octest:ct_string("Optional Match usn2=(`3esn` {`2esn`:01[1e-1]}),usn1=(#usn7 {`5esn`:.12e12[$0]}) Where 0[$`1esn`..`8esn`]"), + octest:ct_string("Remove Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `4esn` Is Not Null Is Not Null).``?,(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})<-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`}).@usn5!"), + octest:ct_string("Detach Delete 1e1 Starts With `8esn` Starts With .9e0 Merge usn1=(:#usn7:_usn3{#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) On Match Set `7esn`+=$`` In $7 In 9e-1,usn1+=$12 Starts With 1e-1 Starts With $@usn5,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).`2esn`?.#usn8! =Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null"), + octest:ct_string("Create @usn6=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})) Remove {usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}._usn4! Remove `3esn`.`2esn`?,(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6? Union Merge (#usn7 :usn2)<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}) Merge #usn7=(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[?{#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0}]-({`6esn`:07 Ends With @usn6 Ends With _usn3}) On Match Set `4esn`+=$`2esn`[$1000][2.9e1],{usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}._usn3 =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1} On Match Set {@usn5:12e-12 Starts With .9e12 Starts With 0.12}.`1esn`? =`3esn`[$0..][.9e1..]"), + octest:ct_string("Detach Delete $`8esn`[$``..$`1esn`][9e-12..$7],Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]),.9e-1 Ends With `8esn` Delete `1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)],_usn4 In `3esn` In 7.0e-0,'s_str' =~.9e1 =~3.9e-1 Merge ((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2)) Union Merge @usn6=(((@usn6 {`8esn`:999[..@usn5][..`1esn`]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]}))) On Match Set Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 999 Starts With .9e12 Starts With 3.9e-1).`6esn`.@usn6!._usn4? =`4esn`[0.0..][.1e-1..],Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).@usn5! =9e1 Contains 4.9e12 Contains .9e0,`1esn`+=00[0e-0...9e-1][1e-1..``] On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1] Merge ((`5esn` :`2esn`:`8esn`)<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})) On Match Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Where 4.9e12 In 5.9e-12 In .9e0"), + octest:ct_string("With $12[.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As #usn8,{#usn7:01 Ends With \"d_str\",_usn4:`3esn` In 0X7}[All(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12])..Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]|999[..@usn5][..`1esn`])][Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1)..Extract(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12)] Limit Count ( * ) Is Null Is Null Return *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Match `8esn`=(`3esn` :#usn7:_usn3)<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(`2esn` :usn2)<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}),`4esn`=(((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Union Remove All(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1).usn1!.`7esn`.`2esn`!,Filter(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8).@usn5?,(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})._usn3.@usn6!.@usn5 Match _usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))) Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As `8esn`"), + octest:ct_string("Merge `5esn`=((({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))) On Match Set Extract(`` In $_usn3 Is Not Null Where $_usn3 In 123.654 In $`8esn`|$`8esn`[$usn2..]).`6esn`!.``! =_usn4 In `3esn` In 7.0e-0 On Create Set {`1esn`:$`1esn`[.9e0][$_usn3]}.`8esn`? =`1esn`[Count ( * )][5.9e-12],`8esn`+=123.654 Ends With Count(*) Return All(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[..Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`])] As `7esn` Order By _usn4 Is Not Null Is Not Null Asc,All(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Starts With Filter(_usn3 In ``[$``..] Where .0e0[1e1..][01234567..]) Starts With `3esn`(Distinct) Descending Union Remove Any(`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6).`4esn`,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0e-0 Contains _usn4 Contains 1e-1].`2esn`,\"d_str\".`2esn`.`8esn`! Merge (({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) On Match Set .9e-12.`3esn`?.`3esn`.`7esn`? =Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).usn2!,{_usn4:$#usn7 Is Not Null Is Not Null,`3esn`:9.1e-1 In #usn8}._usn4?,6.0e0.`8esn`"), + octest:ct_string("With (:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] Where `7esn` Is Null Return *,(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})<-[?:usn1|:#usn8{`8esn`:`2esn` Is Not Null Is Not Null}]-({#usn8:1e1[Null..][.12..]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null,8.1e1 Is Not Null As usn2 Order By .1e1[$usn2..9e1][9e-1...9e-1] Desc Skip Null In 0Xa In .9e-1 Unwind .9e-12[12e12][.0e0] As `3esn` Union Create ({usn2:0.0[4.9e12..][00..]})-[``]-(`7esn` :``:usn1{`1esn`:0e0 Starts With $1000 Starts With `2esn`,@usn6:@usn6 In 3.9e-1 In 9e-12})<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}) Create `2esn`=(usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2}),`3esn`=((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Merge ((`7esn` {_usn3:false[$1000..$@usn6][7..12]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set @usn6 =$`3esn`"), + octest:ct_string("Remove {`4esn`:01[..01]}.`8esn`?.`8esn`?.usn1?,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`2esn`[010..`5esn`][``..0.12]).`4esn` Union All Unwind (`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As `7esn` Union Remove Any(`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6).`4esn`,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0e-0 Contains _usn4 Contains 1e-1].`2esn`,\"d_str\".`2esn`.`8esn`! Merge (({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) On Match Set .9e-12.`3esn`?.`3esn`.`7esn`? =Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).usn2!,{_usn4:$#usn7 Is Not Null Is Not Null,`3esn`:9.1e-1 In #usn8}._usn4?,6.0e0.`8esn`"), + octest:ct_string("Remove `7esn`:_usn4,Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 9.1e-1 Contains 0xabc|$usn2 In usn1 In 1e-1).usn2?.`1esn`?,@usn6(12 Is Null Is Null)._usn3?.`6esn`! Detach Delete 11.12e-12 Contains 9e-12 Union Optional Match `3esn`=(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})),`5esn`=(((_usn3 )-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3}))) Where $_usn3 In 123.654 In $`8esn`"), + octest:ct_string("With Distinct $`8esn` Is Null Is Null As `7esn` Skip Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-12 Is Not Null Is Not Null) Is Null Is Null Limit .9e0[.1e-1][Count(*)] Where .9e-12 Ends With `1esn` Ends With 123.654 Unwind `1esn` Starts With 999 Starts With 3.9e-1 As _usn4 Optional Match (((`5esn` :usn1{_usn4:8.1e1 Is Null,#usn7:$_usn3 =~$usn1 =~_usn4})<-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(:_usn4{#usn7:.0e0[1e1..][01234567..],@usn5:`2esn` Is Not Null Is Not Null})-[#usn7?:`2esn`|`7esn` *..7]-(`3esn` {`6esn`:$`8esn`[..1e1][..``],`8esn`:$usn2 In usn1 In 1e-1}))) Union Create (:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}),(({#usn8:1e1[Null..][.12..]})<-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]->(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) Union All Create (({_usn3:$`5esn`[7..]})) Detach Delete _usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null Merge ((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) On Create Set (`6esn` :usn1)<-[usn1{`2esn`:usn2 Ends With .0}]->(_usn3 :_usn3:_usn3)-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})._usn3? =Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}],@usn5 =.9e1[...12e12]"), + octest:ct_string("Remove ``().usn1.@usn5!,usn2(Distinct 0X7 Starts With 1e1 Starts With $12)._usn3!,{#usn8:$_usn3 Is Not Null}.@usn6! Union All With Distinct Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) As `1esn`,0[..$@usn5] As `` Order By {`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending Limit 12 Contains _usn3 Where $`2esn` Ends With 2.9e1 Ends With $usn1 Detach Delete 5.9e-12[.1e1][$#usn8] Union All Merge ((:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[#usn8? *0x0..]->(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)) On Match Set `8esn` =#usn7 Ends With $#usn7 Ends With #usn7"), + octest:ct_string("Delete 0x0 Starts With $`5esn` Starts With 9e-12,.0e0[..12.0][...1e-1] Union Create `3esn`=(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))),(((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})-[`2esn`?:#usn8|:`4esn`]-(:@usn6:_usn4{`2esn`:$usn1[$7..][$0..]}))) Return .1e1 =~`1esn`,Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],$#usn7 Is Not Null Order By All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Desc,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] Ascending,.9e0 In 9.1e-1 In $123456789 Desc Remove (#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *01234567]->(`5esn` :`2esn`:`8esn`).#usn7!.`3esn`!.@usn6! Union All Merge (((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))),(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}) Where 01234567[6.0e0][$usn2]"), + octest:ct_string("Match `3esn`=(:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})<-[? *0X0123456789ABCDEF..0]-(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null}) Where #usn8[usn1] Remove [`2esn` In .12e-12[$@usn6..5.9e-12] Where 1000[..0e0][..$`6esn`]|Count(*)[12..][0X0123456789ABCDEF..]].@usn6!,`8esn`:_usn3:_usn3 Union Merge `6esn`=(:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}) On Create Set `1esn`+=00[0e-0...9e-1][1e-1..``],``+=2.9e1 Starts With 12e-12 Starts With 0.0,(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8 Remove Any(`8esn` In 01234567[..0.0][..false] Where 0e0 Starts With $1000 Starts With `2esn`).`4esn`.@usn5!.`2esn`!"), + octest:ct_string("Unwind 0e0 Ends With 0X7 Ends With .1e1 As _usn4 Unwind 999 =~0Xa =~9e0 As `` Union Match (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))),(`8esn` {`3esn`:#usn8[`2esn`]}) Union With ({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)[{``:.1e-1 Ends With $`8esn` Ends With .9e0,`7esn`:.9e-12 Is Not Null Is Not Null}][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])],Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) Unwind $0 Starts With 010 As #usn8 With .0e0 Is Null Is Null As _usn4,`6esn`(usn1 Is Not Null,123456789 =~6.0e0)[Single(_usn3 In ``[$``..] Where Null[..07])..][{_usn3:010[9e0..9e1][$_usn4..$12],`3esn`:7.0e-0[$usn2..0.12][$``..0]}..] As usn1,#usn8 In $@usn6 Order By 8.1e1 Ends With $0 Ends With 6.0e0 Descending,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null Ascending,Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\") Ascending Skip $`2esn` In 0X7 In 3.9e-1 Limit 0x0[`5esn`][$`5esn`]"), + octest:ct_string("Unwind `6esn`[`5esn`] As @usn6 Optional Match `2esn`=(_usn3 :_usn3:_usn3{@usn6:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where `2esn` Is Not Null Is Not Null Remove `1esn`:usn2,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where false[$1000..$@usn6][7..12]].`5esn`?"), + octest:ct_string("Create ((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1))),_usn4=((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) With Distinct *,0Xa Ends With #usn8 Ends With usn2 As `6esn` Delete #usn8(Distinct false[$1000..$@usn6][7..12],123456789 In 9e-12 In false) Starts With `4esn`(Distinct 0e0 Is Null Is Null),.0 Union All Delete #usn8(Distinct false[$1000..$@usn6][7..12],123456789 In 9e-12 In false) Starts With `4esn`(Distinct 0e0 Is Null Is Null),0e0 Contains $`8esn` Contains 9e-12"), + octest:ct_string("Merge `3esn`=(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Union Return *,Extract(`5esn` In 12[0xabc..][$0..] Where 9e-1[0X0123456789ABCDEF][0]|.9e1[..Count(*)][..7.0e-0]) Is Null Is Null As _usn3 Order By {`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] Ascending Limit 123.654 In $`5esn` In 9e-1 Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Where 0X7[$999...12e12][12..`2esn`] With All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Where .9e1 Contains Null Union All With Distinct *,@usn5 Ends With 's_str' Ends With 01 As _usn4,Null[.12e-12] Order By `3esn`[`4esn`..Null][$usn1..`5esn`] Asc,$``[7..] Ascending,_usn4 In `3esn` In 7.0e-0 Desc Skip Extract(_usn4 In Count(*)[9e1..][12e-12..] Where $_usn4[..usn2]|`1esn` Starts With 999 Starts With 3.9e-1) =~(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}) =~Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]) Where .0e0[$`1esn`][.9e-12] With Distinct *,@usn6[..$`3esn`][..4.9e12] As #usn8 Order By .12e-12[$`6esn`..] Desc"), + octest:ct_string("Remove [`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0]._usn3?._usn3?,(:`3esn`{usn1:123.654 Ends With 0Xa Ends With .12e12})-[?{`3esn`:$`6esn`[$`7esn`][$`4esn`]}]->(:_usn4{`7esn`:9.1e-1 =~@usn5 =~Count ( * )}).`5esn`?.usn2,`2esn`(Distinct 12e-12[`7esn`..][5.9e-12..],0.0[$1000][3.9e-1])._usn4!.`2esn`.``! Return Distinct *,_usn3[`2esn`..10.12e12][9e1..true] Remove (usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2})-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12}).@usn5,Filter(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`).`3esn`,Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1).@usn5.`4esn`! Union Optional Match `3esn`=(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})),`5esn`=(((_usn3 )-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3}))) Where $_usn3 In 123.654 In $`8esn`"), + octest:ct_string("Remove `6esn`(Distinct).`2esn`,{`8esn`:.1e1 Is Null Is Null}.#usn7? Match (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[:usn1|:#usn8]-(:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`}),`2esn`=((_usn4 {#usn7:$`5esn` Is Null Is Null})-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})) Return Distinct *,0xabc[7.0e-0..][12e12..] Order By .0e0[..12.0][...1e-1] Descending,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Descending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Skip 12e12 =~#usn7 =~.9e-1 Limit All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7)[{`6esn`:$123456789[$_usn3..][$usn2..],#usn7:_usn4[7][8.1e1]}]"), + octest:ct_string("Create #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]})-[`3esn`? *..0xabc{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`}) Create `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Union Unwind 12e12 Is Null Is Null As usn2 Union All Merge (((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999})))"), + octest:ct_string("Remove Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count ( * ) Ends With `6esn` Ends With .12e12|5.9e-12[$`4esn`]).#usn7?,{`4esn`:$`8esn` In 9e-12 In 3.9e-1,@usn5:999 Ends With $123456789 Ends With $_usn4}._usn4!.@usn6?.`7esn`,Any(`7esn` In .12e12[Count(*)..] Where \"d_str\" =~9e-12 =~`5esn`).@usn5!"), + octest:ct_string("Create (((`3esn` :@usn6:_usn4)<-[_usn4?:#usn8|:`4esn` *123456789..0x0]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12})-[?:_usn3|`2esn`]->(`1esn` :`7esn`))),(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567}) Return $0[..0x0][..01234567] As #usn7,\"d_str\" Starts With `6esn` Starts With 1.9e0 As _usn3 Order By 01[7][`1esn`] Asc,Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,#usn7[12e-12..][$`2esn`..] Asc Skip $7 =~0 =~.1e-1"), + octest:ct_string("Merge ((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`3esn`? =0.12[3.9e-1],_usn4 =Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],[`` In $_usn3 Is Not Null Where 12 =~$@usn5|$`2esn` In 0X7 In 3.9e-1].`8esn`.`5esn`? =12e-12[9e0..1.9e0] On Create Set `1esn` =.1e-1[..12][.._usn4],_usn4 =usn2[..7.0e-0],`5esn` =[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|0e-0 Contains _usn4 Contains 1e-1] In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`|.9e0 Is Null Is Null] In {`8esn`:.9e-1 =~.9e-1} Unwind `2esn` Starts With 12 Starts With 10.12e12 As `5esn` Optional Match (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[:usn1|:#usn8]-(:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`}) Where 123456789 Contains .1e-1 Contains .12e12"), + octest:ct_string("Create `4esn`=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6),`3esn`=((`6esn` {`4esn`:$@usn5[$#usn8..][_usn3..]})<-[`8esn`?:`7esn`|@usn6 *..7]->(`5esn` {`2esn`:`1esn` =~0 =~_usn4})) Union All Create `3esn`=(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})),`5esn`=(((_usn3 )-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3}))) Union Delete `2esn`[..9.1e-1][..0xabc],Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|.9e12 Starts With 6.0e0 Starts With .1e1) Is Null Is Null,\"d_str\" =~9e-12 =~`5esn` Optional Match _usn3=((usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1})),usn1=(:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}) Where Null Starts With 9e1 Starts With ``"), + octest:ct_string("With Distinct `8esn`[6.0e0..][$`1esn`..],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Unwind (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)] As ``"), + octest:ct_string("Delete Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 9e0 =~9e1 =~.12e12) =~{usn1:$@usn5[...9e-1][..$usn1]} =~(_usn4 {usn1:`3esn` Ends With `6esn`})<-[_usn3{`8esn`:0e0[..'s_str']}]-(usn1 :`2esn`:`8esn`{usn2:$`3esn` =~4.9e12 =~$7,#usn7:12e12[..$`8esn`][...0e-0]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}),12.0[`8esn`] Match (((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}))) Where 12e-12 Contains .9e-1 Contains 9e-1 Union Unwind Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null As @usn5 Return `2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,1e1 In .1e-1 In .0 Order By Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) Asc Skip 00 =~.9e-12 =~usn1 Limit 12e12 Ends With usn1"), + octest:ct_string("Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``]|`4esn` Starts With $_usn3 Starts With .9e-12].@usn5!._usn4?.`1esn`? Remove (`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1})<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}).@usn6.#usn8? Remove {usn1:0Xa[9e0]}._usn3?._usn4.``?"), + octest:ct_string("Create `7esn`=({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}),`2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})"), + octest:ct_string("Match (:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}),(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}) Where .9e-1[3.9e-1]['s_str'] Merge usn1=(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ) Optional Match `2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null})))"), + octest:ct_string("With [_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789|0e-0 Contains _usn4 Contains 1e-1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567) As `3esn`,.9e-1 Is Not Null Is Not Null,$@usn6 =~$`2esn` =~9e1 Skip [usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Limit 0X7[_usn4..1.9e0][Count ( * )..false] Where 1.9e0[$12][``]"), + octest:ct_string("Optional Match ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})) Optional Match (({_usn3:$`5esn`[7..]})) Where $@usn6 =~$`2esn` =~9e1 Union All Unwind $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn` As _usn4 Create _usn3=((:`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[`3esn`:`5esn` *123456789..0x0{`6esn`:.9e-12[12e12][.0e0]}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})) Union Unwind $`6esn` In `2esn` As _usn4"), + octest:ct_string("Optional Match `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})),(:#usn8{usn2:07 Starts With usn1 Starts With 010})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})"), + octest:ct_string("With Null =~9e12 As #usn7,.0[usn2.._usn4] As `8esn` Order By $`5esn`[true] Descending,`7esn` Contains $7 Contains 07 Asc,3.9e-1[..$7] Desc Where $@usn6 Contains Count ( * ) Return *,Null[...9e1],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Optional Match @usn6=((`` :usn1)-[ *0..010]->(_usn4 :`5esn`)),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})) Where 1e1 Is Not Null Is Not Null"), + octest:ct_string("Detach Delete [`` In 0.12[3.9e-1] Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`|Null[10.12e12..]] In {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] Match ((@usn6 {`8esn`:999[..@usn5][..`1esn`]})-[usn1?:`3esn`|:_usn3]->(`2esn` {`7esn`:Count(*)[.0e0..][#usn7..]})<-[`8esn`:`3esn`|:_usn3 *123456789..0x0{`8esn`:$`3esn` Ends With 010 Ends With $`7esn`,usn2:7.0e-0[$usn2..0.12][$``..0]}]-(`` :_usn4)),`2esn`=((#usn8 {#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})) Where _usn4['s_str'..] With Distinct $`4esn` In 123456789 In `5esn` As @usn5,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12) Skip 1.9e0 =~0x0 Limit 01234567[$#usn7][.0] Union All With Distinct *,$12 Contains $#usn8 Contains 01 As usn1 Order By 0X7[`4esn`..][`3esn`..] Ascending,$#usn7 In .12e-12 Ascending,$`6esn` In `2esn` Ascending Where $_usn3[1e-1..] With Distinct 12e-12 Ends With @usn5 Ends With $`2esn` As `6esn`,$123456789[#usn8][.9e-12],@usn5 Contains _usn3 Contains 00 As _usn4 Order By Count(*)[0e0..] Ascending,12e-12 Ends With @usn5 Ends With $`2esn` Desc Union Create (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) Merge `5esn`=(`7esn` :`8esn`:#usn7{`4esn`:`8esn` =~.1e1 =~.0}) On Match Set #usn8:`5esn`"), + octest:ct_string("Optional Match (:usn1{``:.9e1[..`5esn`]})"), + octest:ct_string("Unwind 9e12 Is Null Is Null As `8esn` Merge usn1=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) On Match Set (#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`3esn`?:usn1|:#usn8*..{usn1:.12e-12[999...12]}]->(#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]}).`7esn`? =12 Ends With $7 Ends With $#usn8"), + octest:ct_string("Detach Delete Extract(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]|1000[..0e0][..$`6esn`])[{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}][Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 8.1e1 Ends With $0 Ends With 6.0e0)],.9e1[All(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)..][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])..] Union Merge `6esn`=(({`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]})-[#usn8:`2esn`|`7esn`{`5esn`:07 Starts With usn1 Starts With 010}]-(`5esn` :`4esn`:`7esn`)) On Create Set None(`8esn` In 01234567[..0.0][..false] Where Count(*)[9e1..][12e-12..]).usn1 =.0e0[$`6esn`..] Union Detach Delete `4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Ends With None(`` In $_usn3 Is Not Null Where .9e1[...12e12]),`5esn`[0X7..][12..] Remove None(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]).#usn8,{@usn5:$`1esn` Starts With Count(*) Starts With $`8esn`}._usn3! Optional Match ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),(({`4esn`:$123456789[$_usn3..][$usn2..]})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[:@usn5 *1000{#usn8:\"d_str\" =~`5esn` =~.12e-12,#usn8:$``[4.9e12..2.9e1]}]->(#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}))"), + octest:ct_string("Merge (`5esn` :_usn3:_usn3{`5esn`:$`2esn`[010..`5esn`][``..0.12]})<-[usn2:@usn6|:_usn3 *123456789..0x0$_usn3]->(:`8esn`:#usn7{``:$7 Starts With Null Starts With `6esn`,`4esn`:#usn8[..#usn7][..@usn6]}) On Match Set Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`1esn` =.1e1 Ends With `2esn` Ends With $`1esn`,All(usn1 In 7.0e-0[.._usn4][..0X7] Where 12.0[..Count(*)][..5.9e-12]).`3esn`!.`4esn`!.``! =Count(*)[8.1e1..],{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}.usn1!.@usn6? =$`3esn` In 's_str' In $#usn7 With *,None(_usn3 In ``[$``..] Where .0e0 In 10.12e12 In $`5esn`) Is Null Is Null As ``,Count ( * ) Starts With 10.12e12 Starts With `` Skip Count(*)[..Count(*)][..9e0] Where $`6esn` Starts With `4esn` Union Merge `5esn`=(((`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`))) Unwind 7.0e-0[3.9e-1..`1esn`] As _usn3 With Distinct $123456789 Is Null Is Null As #usn8,@usn6[..$`3esn`][..4.9e12] As #usn8,1.9e0[$12][``] As `5esn` Order By `1esn` Ends With 7.0e-0 Ends With $usn1 Desc Limit $`2esn` Ends With $`8esn` Union Unwind .0[01234567][$#usn8] As `2esn` Merge `6esn`=(({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Create Set All(usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]).`2esn`? =0Xa[$usn2..],`3esn`:usn1,`1esn` =$``[`6esn`][00]"), + octest:ct_string("With Distinct *,Null[12e-12..] As _usn4,$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Skip Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`])[0x0..[`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`]] Create `6esn`=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}))) Union All Return *,$#usn7 Is Not Null Is Not Null As `1esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4 Order By 9e12 Ends With 07 Ascending,\"d_str\" =~9e-12 =~`5esn` Desc,Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999)[Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])][[_usn3 In ``[$``..] Where @usn5 Ends With 0]] Descending Skip `` =~$`5esn` Merge (usn2 :@usn5{`3esn`:$usn1 Is Null})-[_usn3:`2esn`|`7esn`*..{#usn8:`1esn` =~0 =~_usn4,`2esn`:0e-0 In $1000 In .9e1}]-({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}) On Create Set @usn5 ={``:`1esn` In 12e-12 In 1e-1,usn2:_usn3[`2esn`..10.12e12][9e1..true]}[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )]..][Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`])..],`6esn` =usn2['s_str'...9e-1][$7..Count ( * )] On Create Set None(`8esn` In 01234567[..0.0][..false] Where $_usn3 Contains 1e1 Contains .12).``.`8esn`? =8.1e1[$`5esn`][0e0] Merge (:usn1{``:.9e1[..`5esn`]}) On Match Set {_usn4:7.0e-0 =~$12 =~5.9e-12}.#usn8?.`` =9e12[...12e12][..$`2esn`] On Match Set _usn3(.9e12[..$usn1][..10.12e12],$`2esn` In 0 In 0Xa).`1esn`? =.1e1 Starts With .1e-1,@usn5+=123456789 =~$`1esn` =~#usn7,`8esn`+=Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]) In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )] In `8esn`(Distinct $_usn3 Contains 1e1 Contains .12) Union All Create @usn6=((`5esn` :`6esn`:`3esn`{usn2:$`4esn`[..2.9e1][..07],`6esn`:#usn7[10.12e12..][\"d_str\"..]})<-[`7esn`*..]->($@usn6)<-[:_usn3|`2esn` *010..]-(`` :usn1)) Create `5esn`=((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]})),@usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))) Return Distinct count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0])[_usn3(8.1e1[usn2..$1000][$7..0x0],false[..12e-12][...9e1])..] As @usn6,.0e-0[0e0..00][.9e1..12] As `1esn`,Count ( * ) Starts With 10.12e12 Starts With `` As `5esn` Order By 5.9e-12[9e0..] Ascending,0x0 Asc Skip 0Xa[$usn2..]"), + octest:ct_string("Create `5esn`=((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})),``=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}) Return Distinct [`` In 0.12[3.9e-1] Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`|Null[10.12e12..]] In {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] As `7esn` Order By 00 Ascending Skip 12.0 Contains $_usn4 Contains $usn2 Limit .9e1 Starts With `4esn` Union Remove @usn5:@usn5,Extract(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null]|true Is Null Is Null)._usn4?.#usn7?,All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e0 In 9.1e-1 In $123456789).#usn7 Delete Null Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null),None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4),$usn1 Starts With 00 Unwind Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] As #usn7"), + octest:ct_string("Remove {`5esn`:.9e-12 Starts With .0e-0 Starts With usn2}.`3esn`!,Single(`` In $_usn3 Is Not Null Where $`4esn` In 11.12e-12 In .9e12).`` Union Merge `6esn`=((#usn7 )) On Match Set `1esn`().`` =$`2esn`[$1000..][$@usn5..] Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As #usn7"), + octest:ct_string("Optional Match `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),_usn4=((`6esn` :#usn7:_usn3)<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union All Remove @usn5(Distinct Null =~true =~.1e-1,12e12[..123456789][..false])._usn4!,All(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]).`4esn`? Optional Match `5esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}),``=((`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]})-[?:@usn6|:_usn3 *999..]->(`1esn` :`1esn`{`5esn`:$`4esn`[..2.9e1][..07]})<-[`5esn`?:#usn7|:`8esn` *010..]->(:@usn5{usn2:$usn1[$12..]})) Where true Starts With 2.9e1 Starts With 9e1 With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) Starts With count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) Where $`3esn`[..`1esn`][..$`7esn`] Union Remove Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12).`5esn`? Merge usn2=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}) Merge _usn4=(({_usn3:$`5esn`[7..]}))"), + octest:ct_string("Remove Filter(_usn4 In Count(*)[9e1..][12e-12..] Where .9e1[#usn7..]).``"), + octest:ct_string("Unwind 7.0e-0[0X7..$`2esn`][`4esn`..`7esn`] As `1esn` Union All Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1"), + octest:ct_string("Create `1esn`=(_usn3 )-[?:`6esn`|#usn7{_usn4:8.1e1 Is Null,#usn7:$_usn3 =~$usn1 =~_usn4}]-(usn2 :@usn5{`8esn`:00[$`6esn`]})-[?:usn2|:``]-(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}),usn1=((`8esn` :_usn3:_usn3)<-[_usn4? *..7{#usn7:Count ( * )[7]}]->(`6esn` :`7esn`)<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)) Create ``=((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})),`3esn`=((`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})) Remove None(`5esn` In 12[0xabc..][$0..] Where .9e0 Is Null Is Null).`4esn`?.`7esn`!,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $`8esn`[$``..$`1esn`][9e-12..$7]).`7esn`.`5esn`,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null].#usn7?.`6esn`?.`1esn`"), + octest:ct_string("Delete .9e12 =~`5esn` =~07,1.9e0 Ends With 0Xa Ends With $12,$`2esn`[010..`5esn`][``..0.12] Union Merge `5esn`=(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[:#usn8|:`4esn`{_usn3:'s_str' Is Null,#usn7:#usn7[..0X0123456789ABCDEF]}]->(`` {`2esn`:.1e-1[2.9e1..][12..]}) Remove ({`1esn`:0X0123456789ABCDEF Contains 8.1e1})<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}).``!,`8esn`(07 Is Null Is Null).`7esn`!,Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]).``!.@usn6?"), + octest:ct_string("Merge #usn8=(@usn5 :usn1{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(@usn5 {#usn8:_usn3 Ends With 01 Ends With .1e-1}) On Match Set `7esn` =$`7esn` Is Null Is Null,`8esn`+=`6esn`[..$@usn6][..$`1esn`],`3esn`+=3.9e-1 Contains 9.1e-1 Contains `8esn` Union All Return 1.9e0 Ends With Count ( * ) Ends With .12 As `4esn`,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12),9e1 Is Not Null As #usn8 Order By $`4esn` Ends With 0e-0 Ascending,.9e-1 Contains .0e0 Contains usn1 Asc Skip None(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8) Is Null Is Null Union All With Distinct ($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]),0e0[`4esn`] Skip _usn4(0[true..$7]) =~Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`) =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0) Limit @usn6(Distinct 12e12 Ends With $`3esn` Ends With 11.12e-12)[..{`2esn`:.9e12 Starts With 6.0e0 Starts With .1e1,#usn7:010[11.12e-12..]}][..`1esn`(Distinct $0[$`7esn`..$`3esn`]['s_str'...0])] Where .9e-12 Is Not Null Is Not Null"), + octest:ct_string("Detach Delete 12e12[$@usn5..][.0e-0..] Unwind {#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]) As `1esn`"), + octest:ct_string("Unwind Extract(`7esn` In .12e12[Count(*)..] Where true Starts With 2.9e1 Starts With 9e1|12[0xabc..][$0..]) Starts With Extract(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12|0.12[3.9e-1]) Starts With ``(12e12[true..][$`2esn`..]) As `4esn` Return Distinct $0 =~01234567 As ``,Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])[All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654])][None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])] As usn2 Order By .0e-0 =~$`7esn` =~$0 Descending,01234567 Ends With 2.9e1 Ends With 9.1e-1 Asc,0x0 Contains $`1esn` Contains 0.0 Ascending Skip $`` In $@usn6 In 3.9e-1 Merge `1esn`=(((@usn5 :usn2)-[`4esn`?:_usn3|`2esn`]-(:#usn7:_usn3)<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}))) Union Detach Delete `2esn`[0xabc..][$_usn3..],01[1e-1],$``[Count(*)]"), + octest:ct_string("Optional Match ``=((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})),`3esn`=((`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999}))"), + octest:ct_string("Delete `6esn`[..$``][..4.9e12],(`8esn` {`3esn`:#usn8[`2esn`]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null,{#usn8:8.1e1 Ends With $0 Ends With 6.0e0,#usn8:Null =~true =~.1e-1} Contains {usn1:Count ( * )[..2.9e1],_usn3:07 Starts With usn1 Starts With 010} Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where `1esn`[9.1e-1]|$`8esn` Starts With `2esn`).``!.`5esn`.``!"), + octest:ct_string("Detach Delete $`1esn` Starts With Count(*) Starts With $`8esn`,$12[.9e-1],Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1]) With Distinct *,8.1e1 Ends With .1e-1,$#usn7 =~8.1e1 As #usn7 Order By false =~4.9e12 Asc Skip 0x0 =~0x0 Limit $_usn4[1e-1..8.1e1][`1esn`..1.9e0] Where 5.9e-12[.1e1][$#usn8] Create `1esn`=((:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[usn1 *12..0Xa]->({`5esn`:07 Starts With usn1 Starts With 010})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})) Union Delete .1e-1[..12][.._usn4],[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]}"), + octest:ct_string("Return Distinct $0 =~01234567 As ``,Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])[All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654])][None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])] As usn2 Order By .0e-0 =~$`7esn` =~$0 Descending,01234567 Ends With 2.9e1 Ends With 9.1e-1 Asc,0x0 Contains $`1esn` Contains 0.0 Ascending Skip $`` In $@usn6 In 3.9e-1 Return .1e1 =~`1esn`,Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],$#usn7 Is Not Null Order By All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Desc,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] Ascending,.9e0 In 9.1e-1 In $123456789 Desc Union All Merge ((:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]-(`8esn` $12)<-[#usn8? *12..0Xa]-(:#usn8$#usn8)) On Create Set `8esn`+=0x0 Starts With 01234567 Union All With Count(*) Is Not Null As `4esn` Skip All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null With *,123.654 Is Not Null Is Not Null As `7esn`,(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) Starts With count(Distinct 9.1e-1 =~@usn5 =~Count ( * ))"), + octest:ct_string("Delete {`8esn`:$`` Is Null Is Null}[Extract(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..])..][Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)])..],$`6esn`[..12e12][.._usn3],$_usn4 Starts With 0e-0 Starts With 1e-1 With `2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,1e1 In .1e-1 In .0 Order By 1000 Contains Null Contains 9e1 Desc,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null Descending,$`7esn`[..12.0][..0e0] Asc Limit 11.12e-12 Is Null Where 's_str' Ends With 0.0 Ends With .12e12 Match `5esn`=((`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]})-[:`6esn`|#usn7{usn1:$`2esn` Contains $1000,`7esn`:`7esn`[.1e1..][`8esn`..]}]-(#usn8 {`2esn`:usn2 Ends With .0})) Where 999 Starts With .9e12 Starts With 3.9e-1"), + octest:ct_string("Optional Match `5esn`=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}),#usn8=((`3esn` {#usn8:`7esn` Is Null})-[_usn4 *999..]->(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]})) Return *,0 Starts With 0Xa Starts With $0 Limit Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}] With .12e-12 Is Not Null,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})],12e12[$@usn5..][.0e-0..] As `2esn` Limit All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] Where true Contains 0x0 Union Unwind 7 Starts With 0X7 As usn1"), + octest:ct_string("Remove {_usn3:@usn6 In 3.9e-1 In 9e-12}.`3esn`!,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`8esn` Is Null|.0[usn2.._usn4]).usn2!,(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]}).#usn7! Unwind `2esn` Starts With 12 Starts With 10.12e12 As @usn6 Union Unwind `8esn`[6.0e0..][$`1esn`..] As `6esn` Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By $7 In .9e1 In $`` Desc,$`6esn` Starts With `4esn` Descending,8.1e1 Starts With .9e12 Starts With `7esn` Desc Skip 12.0 Is Null Is Null"), + octest:ct_string("Unwind .0[01234567][$#usn8] As `2esn` Merge `6esn`=(({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Create Set All(usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]).`2esn`? =0Xa[$usn2..],`3esn`:usn1,`1esn` =$``[`6esn`][00] Union All Create `5esn`=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}),#usn8=((`3esn` {#usn8:`7esn` Is Null})-[_usn4 *999..]->(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]})) Remove {usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}._usn4! Return Distinct *,1000[Null..] As `1esn`,.9e1[#usn7..] As `7esn` Limit Count ( * ) In 999 Union Optional Match #usn8=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) Optional Match `7esn`=(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]}) Where #usn8[7..@usn5]"), + octest:ct_string("With Distinct {usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])],@usn5 Ends With 's_str' Ends With 01 As `7esn` Order By `3esn`[`4esn`..Null][$usn1..`5esn`] Desc,`5esn` Contains `6esn` Asc,9e-12 In 5.9e-12 Asc Union All Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]|$_usn3 Is Not Null).usn2!.#usn7!.`8esn`! Union All Delete All(_usn4 In Count(*)[9e1..][12e-12..] Where 7 Contains $#usn7) In (`` :`7esn`{`3esn`:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7],@usn6:01[..0.12]})<-[ *0x0..{`3esn`:$@usn6 Is Not Null Is Not Null}]-({``:_usn3[$_usn3][usn1]}),None(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12)[{`8esn`:$`3esn` Ends With 010 Ends With $`7esn`,usn2:7.0e-0[$usn2..0.12][$``..0]}][[usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|$12[01]]]"), + octest:ct_string("With *,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] As _usn4 Order By 00[$`6esn`] Descending,$``[Count(*)] Desc,$`5esn` Is Null Is Null Ascending Where .9e1[...12e12] Union Unwind .9e12[..$usn1][..10.12e12] As `3esn` Delete usn2['s_str'...9e-1][$7..Count ( * )] Merge `6esn`=(:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}) On Create Set `1esn`+=00[0e-0...9e-1][1e-1..``],``+=2.9e1 Starts With 12e-12 Starts With 0.0,(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8"), + octest:ct_string("Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Where Count(*) With *,$999 In 0.0,5.9e-12[`1esn`][usn2] Order By Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null) Starts With {`2esn`:.12e12[`7esn`][#usn8],@usn6:12e12[..$`8esn`][...0e-0]} Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e12 Starts With 6.0e0 Starts With .1e1) Asc Unwind All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2 In usn1 In 1e-1) =~{#usn8:00[0e-0...9e-1][1e-1..``]} As `1esn`"), + octest:ct_string("Match ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})),_usn3=((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Where $usn2 =~$`2esn` =~\"d_str\" Optional Match #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}),`1esn`=(:usn1{usn1:Count(*)[0.12..2.9e1]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})"), + octest:ct_string("Match ((:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[? *12..0Xa]-(`2esn` :#usn7:_usn3)<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})),((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`5esn`]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)) Remove Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]).`3esn`.`1esn`!.`6esn`!,(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})-[``?:@usn5]->(usn1 :#usn8).`7esn`?.`1esn`?,`8esn`:_usn3:_usn3 Create `6esn`=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Union All Return Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] As `5esn` Order By 0 Starts With 0Xa Starts With $0 Ascending,$`2esn`[$usn1..] Asc,Count(*) Starts With $_usn4 Descending Limit All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..] Remove `6esn`:`3esn`,({`6esn`:$`3esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}).``?.`5esn`!.@usn6? With Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `5esn`,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null) Starts With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * )) Starts With (_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) As usn1 Order By 0e0[.12..][3.9e-1..] Descending,Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Asc Limit {#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]) Where true Starts With 2.9e1 Starts With 9e1 Union Match (((@usn6 {`8esn`:999[..@usn5][..`1esn`]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]}))),({`4esn`:$@usn5[$#usn8..][_usn3..]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]}) Delete Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]),11.12e-12 Contains 9e-12 Return Distinct ``[..$#usn7],$`6esn`[$`8esn`..][false..] As _usn3 Order By (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})[Extract(`` In $_usn3 Is Not Null Where _usn4[7][8.1e1])..None(usn1 In 7.0e-0[.._usn4][..0X7] Where .9e-1 =~.9e-1)] Desc Limit $0 In Count ( * ) In .1e1"), + octest:ct_string("Create @usn6=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Union All Remove @usn5(Distinct 1e-1[..$@usn5][..0xabc]).`3esn`!,Filter(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010).`1esn`?.`7esn`?.`3esn`?,`3esn`:usn2 Union Unwind [`` In 0.12[3.9e-1] Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`|Null[10.12e12..]] In {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] As `1esn` Merge (`1esn` :`5esn`)-[:#usn8|:`4esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]}]-(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}) On Match Set .9e-12.`3esn`?.`3esn`.`7esn`? =Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) Remove {usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7}.`3esn`!,(:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}).`3esn`?,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where usn2 Ends With 10.12e12).`3esn`!"), + octest:ct_string("With Distinct *,(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]})[Extract(`` In $_usn3 Is Not Null Where .0e-0 =~12e-12)..[`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6]] Limit All(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]) Starts With Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) Where .9e-12[0e0...9e-1] Union All Return 3.9e-1[0.12..] Order By $`` =~$_usn3 Desc,$0 Contains .12e-12 Descending Skip Count ( * )[`7esn`..] Remove {usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`}.`1esn`!.usn1!,(`2esn` :``:usn1)<-[`6esn`? *..0xabc{``:$_usn4[Null]}]->(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]}).#usn7?.`3esn` Create ({`4esn`:7 Is Null Is Null})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}) Union All Create ((`3esn` {#usn8:`7esn` Is Null})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})),#usn7=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})) Optional Match `2esn`=(`` :usn2),((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})) Create ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?]->(:@usn5{usn2:$usn1[$12..]}))"), + octest:ct_string("Merge (((_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`1esn`{`7esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]}))) On Create Set @usn5+=_usn4 Ends With .0 Ends With 7,None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0e-0 Contains _usn4 Contains 1e-1).`6esn`! =Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) Detach Delete $`6esn` Starts With `4esn` Remove ({`1esn`:0X0123456789ABCDEF Contains 8.1e1})<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}).``!,`8esn`(07 Is Null Is Null).`7esn`!,Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]).``!.@usn6?"), + octest:ct_string("Return Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As #usn7"), + octest:ct_string("Unwind Filter(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..])[(@usn6 :#usn8)-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]})<-[:@usn6|:_usn3{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`` :`3esn`)][Single(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])] As #usn7"), + octest:ct_string("Create _usn3=((:`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[`3esn`:`5esn` *123456789..0x0{`6esn`:.9e-12[12e12][.0e0]}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})) Union With Distinct Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,9e-1 Starts With 123.654 Starts With .9e1 As `6esn`,.9e0 Is Null Is Null Skip usn1(07 Ends With @usn6 Ends With _usn3,$`2esn` In 0X7 In 3.9e-1) Contains [`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|9e0 =~9e1 =~.12e12] Limit $7 Starts With Null Starts With `6esn` Remove `3esn`.`2esn`? Unwind Null In 0Xa In .9e-1 As `3esn` Union All Match `2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Where 0x0 Starts With $`5esn` Starts With 9e-12 Return Count ( * )[..1.9e0][..`8esn`] As `1esn`,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] As @usn6,01[1e-1] Order By Extract(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``]|$_usn4[..usn2]) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) Starts With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null|`4esn` Is Not Null Is Not Null) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} Descending Skip (:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})<-[``:`8esn`|:`2esn` *12..0Xa]-(usn2 :@usn5{`3esn`:$usn1 Is Null})[..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 8.1e1 Is Null)][..#usn7(Distinct usn2 Ends With .0)]"), + octest:ct_string("With (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7),Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),12.0 =~$@usn5 =~8.1e1 Order By Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] Ascending Limit $@usn6 Contains Count ( * ) Return Distinct ``[..$#usn7],$`6esn`[$`8esn`..][false..] As _usn3 Order By (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})[Extract(`` In $_usn3 Is Not Null Where _usn4[7][8.1e1])..None(usn1 In 7.0e-0[.._usn4][..0X7] Where .9e-1 =~.9e-1)] Desc Limit $0 In Count ( * ) In .1e1 Match usn2=((:@usn5)-[@usn5:_usn3|`2esn`{`1esn`:5.9e-12[$`4esn`],usn1:9.1e-1[Count(*)..][5.9e-12..]}]->(usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})),(({#usn7:0X7[Count(*)][.9e0],`2esn`:0x0[`5esn`][$`5esn`]})-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})) Union Merge @usn5=((:`7esn`{usn1:123.654 Ends With 0Xa Ends With .12e12})-[ *0..010]->(_usn4 :`5esn`)) On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} On Match Set `7esn`+=$`` In $7 In 9e-1,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`].``? =Count(*) Starts With $_usn4,`1esn` =0xabc Contains 9e1 Contains 0x0"), + octest:ct_string("Remove 12.0.`8esn`?.@usn5?.`8esn`!,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12 Contains 0e-0 Contains .0).`8esn` Detach Delete (`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :``:usn1{usn2:12.0[..123456789][..01]}) Contains {`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12} Contains {`7esn`:`3esn` Starts With _usn4} Merge usn1=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) On Match Set (#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`3esn`?:usn1|:#usn8*..{usn1:.12e-12[999...12]}]->(#usn8 {`8esn`:`3esn`[3.9e-1..$`5esn`]}).`7esn`? =12 Ends With $7 Ends With $#usn8 Union All Create `7esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}),({@usn5:$12 Contains $`7esn` Contains .0})<-[usn2 *..0xabc]->(:@usn5{`7esn`:7.0e-0[`6esn`..]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1}) Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``]|`4esn` Starts With $_usn3 Starts With .9e-12].@usn5!._usn4?.`1esn`?,All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where true In $0 In @usn5).`3esn` Remove [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where true Contains 0x0|$@usn6 Is Not Null Is Not Null].`8esn`,`2esn`:`3esn`,[`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1|`6esn`[..$@usn6][..$`1esn`]].`8esn`?"), + octest:ct_string("Merge (:`6esn`:`3esn`) On Create Set usn2+=Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) With *,Null[...9e1],Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Where `2esn` Starts With $`7esn` Starts With _usn4 Union Unwind 123.654 Is Not Null Is Not Null As `6esn` Unwind $`` Is Not Null As _usn3"), + octest:ct_string("Delete All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null,({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`3esn`?:`1esn`]-(:`8esn`:#usn7{@usn5:$12 Contains $`7esn` Contains .0})<-[@usn6?:@usn5]->(:usn1{usn1:Count(*)[0.12..2.9e1]}) Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2|9e0[..1e1]) Ends With {`1esn`:7.0e-0[3.9e-1..`1esn`]},All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..])[`8esn`()] Return Distinct *,None(`7esn` In .12e12[Count(*)..] Where Count(*)[..Count(*)][..9e0])[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1]|.0)..] Skip Single(`5esn` In 12[0xabc..][$0..] Where @usn6[..$`3esn`][..4.9e12]) Ends With {@usn6:0.12[07..3.9e-1],usn1:.1e-1 Is Null} Ends With None(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4[Null]) Limit {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} =~Filter(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]) Union With Distinct Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null Union Delete (:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) Starts With count(Distinct 9.1e-1 =~@usn5 =~Count ( * )),true Starts With 2.9e1 Starts With 9e1,.1e1 Starts With $`7esn` Unwind 12e12 Is Null Is Null As usn2"), + octest:ct_string("Unwind `1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `2esn` Union All Return Distinct *,All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,`1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `1esn` Limit {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[..`8esn`(010[@usn5..123.654],8.1e1[usn2..$1000][$7..0x0])][..{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1}]"), + octest:ct_string("Remove All(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null).`3esn`!.`4esn`?,(#usn8 {`3esn`:123456789 Contains .1e-1 Contains .12e12,`1esn`:$`3esn` =~4.9e12 =~$7})<-[:#usn8|:`4esn`{usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})<-[{`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}]-(:@usn5).`1esn` Optional Match (((`7esn` {`3esn`:.9e-1 Is Null})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`))) Where .0e-0[0e0..00][.9e1..12] Union Merge (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))) On Match Set `4esn`+=.9e0 =~`6esn` =~2.9e1,`` =_usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null With 3.9e-1 Is Null As usn1 Unwind ``[..$#usn7] As @usn5"), + octest:ct_string("Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}))"), + octest:ct_string("Match (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}),`1esn`=(((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[:_usn3|`2esn` *010..]-(`` :usn1)<-[@usn5?:@usn6|:_usn3 *07..{_usn3:$`3esn` Is Not Null Is Not Null,#usn8:usn1[0.12..1000]}]->(`3esn` {usn2:$`7esn`[..12.0][..0e0]}))) Return *,`2esn` Starts With $`7esn` Starts With _usn4 As `3esn`,Null =~9e12 As #usn7 Order By .0e0[..12.0][...1e-1] Descending,5.9e-12 =~$@usn6 Asc"), + octest:ct_string("Unwind 999 =~0Xa =~9e0 As `` Remove {`8esn`:Null[..07]}._usn4?.`8esn`?,{`4esn`:$123456789[$_usn3..][$usn2..]}.usn1,[`8esn` In 01234567[..0.0][..false] Where 01[..0Xa]].``.@usn5?.`2esn`! Union Delete $usn2[12.0..]"), + octest:ct_string("Merge usn1=(`` {_usn4:9e0[..1e1]})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}) On Create Set `5esn`(Distinct $`2esn`[8.1e1],Count ( * ) Is Null Is Null).`7esn`!.`8esn`? =$``[7..] Union All With 12e12[..$`8esn`][...0e-0] As `1esn`,Null[...9e1] Skip .9e0 =~`6esn` =~2.9e1 Union Optional Match _usn4=(:_usn4),`3esn`=(({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[``?:``|:`3esn` *01234567]->(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})) Where $12[01] Detach Delete All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Delete ``(Distinct #usn7 =~`5esn` =~``)[Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..])..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)],4.9e12[1e1..'s_str'][Count(*)..0X7]"), + octest:ct_string("Create `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Merge `5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))"), + octest:ct_string("Merge usn2=(({`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]})-[#usn8:`2esn`|`7esn`{`5esn`:07 Starts With usn1 Starts With 010}]-(`5esn` :`4esn`:`7esn`)) Union All Remove All(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1]).`8esn`!,Single(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12).usn1!,{_usn3:false[$1000..$@usn6][7..12]}.#usn8!"), + octest:ct_string("Create @usn5=((usn1 )-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})),(`8esn` {`3esn`:#usn8[`2esn`]}) Return Distinct Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` Is Null Is Null) Is Not Null Is Not Null As usn1,123.654 Is Not Null Is Not Null As `1esn`,0X0123456789ABCDEF Contains 8.1e1 As @usn5 Limit _usn4[7][8.1e1] Union Return Distinct ({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)[{``:.1e-1 Ends With $`8esn` Ends With .9e0,`7esn`:.9e-12 Is Not Null Is Not Null}][Any(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`])],Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) Skip Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) =~Filter(`8esn` In 01234567[..0.0][..false] Where .9e12 =~`5esn` =~07) =~Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0|12[0xabc..][$0..]) Detach Delete ``(@usn6[..$`3esn`][..4.9e12],0x0 Contains $`1esn` Contains 0.0)[{`6esn`:999[...12e12][..0]}][[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)]|.9e1[Count(*)..$`3esn`]]],Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) In {`5esn`:$`` =~$_usn3,`4esn`:`7esn`} In `3esn`,Null In 0Xa In .9e-1"), + octest:ct_string("Unwind `7esn` Is Not Null Is Not Null As `1esn` Union All Remove [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )].`5esn`.`7esn`? Unwind Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7)[{usn2:`8esn` Is Null}..[@usn6 In .9e12 Starts With #usn8 Starts With 00]][(:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null})..{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}] As `1esn` Union Create `7esn`=((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})),usn1=((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})) Unwind $`8esn`[$``..$`1esn`][9e-12..$7] As _usn4 Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12}))"), + octest:ct_string("Return Distinct 123.654 Is Not Null Is Not Null As `1esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Ascending Skip 0.0[0x0..0.12]['s_str'..false] Limit $`7esn`[..12.0][..0e0] Create (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=(((_usn3 )-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3}))) Union With Distinct $`4esn` In 123456789 In `5esn` As @usn5,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0e0 In 1e1 In 8.1e1|12e12 Is Not Null) Ends With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) Ends With None(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12) Skip 1.9e0 =~0x0 Limit 01234567[$#usn7][.0] Remove `6esn`($12 Contains $#usn8 Contains 01).`3esn`?.@usn6?,Single(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1).#usn8!,{@usn5:$`5esn` Is Null Is Null,#usn8:$@usn5[..1e-1]}.`5esn`!.usn1 Merge `3esn`=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) On Match Set #usn7 =[usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|9e0 =~9e1 =~.12e12] Is Null Is Null,`8esn`+=123.654 Is Not Null Is Not Null,`3esn`+=_usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null Union Remove Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`).`1esn`!._usn4!.#usn8?"), + octest:ct_string("Merge usn2=((#usn8 {_usn3:$_usn4 Contains .12e-12})) On Create Set @usn5 ={``:`1esn` In 12e-12 In 1e-1,usn2:_usn3[`2esn`..10.12e12][9e1..true]}[[`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )]..][Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`])..],`6esn` =usn2['s_str'...9e-1][$7..Count ( * )] Union All Detach Delete .0[usn2.._usn4],.12[.0e-0..] Remove .9e-12.usn2"), + octest:ct_string("Remove {`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null}.@usn5?.#usn8!.`8esn`?,_usn4:_usn4,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1]|Count(*) Starts With $_usn4).`8esn`! Unwind {usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) As usn2 Union All Return *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip usn2 Starts With $_usn3 Union All Remove _usn3:`1esn`,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']).`2esn`! Match ((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Where 0[$`1esn`..][9e12..] Delete 12 Is Null Is Null,[usn1 In 7.0e-0[.._usn4][..0X7]|7.0e-0 Is Null Is Null] =~#usn7 =~`4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`),$`2esn` In 0X7 In 3.9e-1"), + octest:ct_string("Return *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip 0xabc =~7.0e-0 =~4.9e12 Limit Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Create @usn6=((`` :usn1)-[ *0..010]->(_usn4 :`5esn`)),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})) With Distinct All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) Is Null Is Null,0xabc =~7.0e-0 =~4.9e12,Single(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1)[Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-12 Is Not Null Is Not Null)][Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`])] Where 9e12 Is Null Is Null"), + octest:ct_string("Create (usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]-(:_usn4{_usn3:010 Starts With 0.0 Starts With .0e0})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}) Merge ((#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[`3esn`?:`5esn`]->(`2esn` )) On Match Set `7esn`+=$`` In $7 In 9e-1,usn1+=$12 Starts With 1e-1 Starts With $@usn5,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).`2esn`?.#usn8! =Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null With .0e0[$`1esn`][.9e-12] As `6esn`,\"d_str\"[$123456789..][0X7..] Order By All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Asc,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Limit (usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})-[`4esn`?:`6esn`|#usn7]->(`1esn` )[[`2esn` In .12e-12[$@usn6..5.9e-12]|$#usn7 Starts With 10.12e12]..] Union All Merge ((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Remove @usn5(Distinct Null =~true =~.1e-1,12e12[..123456789][..false])._usn4!,All(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]).`4esn`? Merge (@usn6 :_usn4) Union All Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where `1esn`[9.1e-1]|$`8esn` Starts With `2esn`).``!.`5esn`.``!"), + octest:ct_string("Unwind {`3esn`:4.9e12 =~8.1e1 =~$`8esn`}[@usn6(Distinct 12e12 Ends With $`3esn` Ends With 11.12e-12)..count(Distinct 07 Ends With @usn6 Ends With _usn3,$@usn5[..1e-1])][({@usn5:#usn7[`5esn`..`2esn`][$`4esn`...1e1],`6esn`:Count(*) =~`5esn` =~$usn2})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})..Extract(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..]|123.654 Starts With 2.9e1)] As `3esn` With Distinct All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,usn2[..7.0e-0] As `1esn` Order By $_usn3 Contains 1e1 Contains .12 Ascending,.0e0 Is Null Is Null Descending,.0e0 Starts With $@usn6 Starts With Null Descending Limit 's_str' Ends With 0.0 Ends With .12e12"), + octest:ct_string("Remove {`4esn`:#usn8[..#usn7][..@usn6],`4esn`:8.1e1 Ends With $0 Ends With 6.0e0}.@usn6!.``! Return Distinct `8esn` Is Null As `6esn`,01234567 Starts With `4esn` Starts With 10.12e12,Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null As _usn3 Order By 01[7][`1esn`] Asc,Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null Descending,Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|.9e12 Starts With 6.0e0 Starts With .1e1) Is Null Is Null Asc Skip 1.9e0 =~0x0"), + octest:ct_string("With Distinct {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} As _usn3,Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])[All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654])][None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])] As usn2 Skip $`6esn` Starts With `4esn` Limit None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 999[0.12..8.1e1]) Is Null Is Null Where Count ( * ) Ends With `6esn` Ends With .12e12 Merge (((_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})<-[`4esn`?:_usn3|`2esn` *0..010]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`}))) On Create Set `6esn` =.1e1 =~10.12e12"), + octest:ct_string("Create `6esn`=((_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})) Remove All(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count ( * ) Ends With `6esn` Ends With .12e12).`7esn`? Union All Unwind Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0|12[0xabc..][$0..]) Contains [`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .12[$`2esn`..usn2][.9e-1.._usn3]] Contains Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]) As #usn8"), + octest:ct_string("Remove {usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}.`8esn`! Delete _usn4 In `3esn` In 7.0e-0"), + octest:ct_string("Unwind $@usn5 Is Null Is Null As @usn5 Union Match (:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}),(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}) Where .9e-1[3.9e-1]['s_str'] Merge usn1=(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ) Optional Match `2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Union Unwind true Is Null Is Null As usn1 Unwind `5esn`[$`4esn`] As `4esn` Detach Delete None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),`2esn`(Distinct) Starts With Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]) Starts With (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})"), + octest:ct_string("Merge ``=((#usn8 {_usn3:$_usn4 Contains .12e-12})) On Create Set #usn8 =usn2 Ends With 10.12e12 Union All Return 12e12 =~#usn7 =~.9e-1,All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null As @usn6 Skip 01 Contains 12.0 Remove .12e-12.`2esn` Create usn1=((_usn4 :`5esn`)-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]}))"), + octest:ct_string("With Distinct *,$`5esn`[true],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Skip $`1esn` =~0.0 Union Remove None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]).`6esn`? Remove ({`1esn`:0X0123456789ABCDEF Contains 8.1e1})-[`` *..0X7]->(usn2 :#usn8)._usn3 Delete #usn8(Distinct false[$1000..$@usn6][7..12],123456789 In 9e-12 In false) Starts With `4esn`(Distinct 0e0 Is Null Is Null),0e0 Contains $`8esn` Contains 9e-12 Union All With `8esn` As usn2 Order By Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"]|`7esn`[3.9e-1..][$@usn5..])[..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] Desc,.0e0 Is Null Is Null Descending,$`4esn` =~0e0 Ascending Unwind $usn1 Is Null As `2esn` Return Distinct Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12)[Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12)..][`4esn`(Distinct)..],Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] As `7esn`,None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[..Filter(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0)][..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] As #usn8 Order By {`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])] Asc,`6esn`[`6esn`..] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip `6esn` Is Not Null"), + octest:ct_string("Return Distinct $`2esn` Contains 123.654,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] As usn2,.9e-12[01][Count(*)] Order By (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] Ascending Skip $`3esn` Ends With 010 Ends With $`7esn` Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) Union All Create @usn6=((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})) Union All Return Distinct #usn8[7..@usn5] As usn2,12 Contains [usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12|$0 Contains .12e-12],10.12e12[$`5esn`] Limit (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] Return Distinct $#usn7 =~8.1e1 As #usn7,`4esn`[$1000..$``][$_usn4..$_usn4] Skip $`2esn` In 0X7 In 3.9e-1"), + octest:ct_string("Merge usn1=((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})) Remove {usn1:usn2[..7.0e-0]}.`2esn`.`2esn`?.usn1,(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6?,Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e12 Is Not Null Is Not Null).#usn8? Union All Optional Match `7esn`=(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}),(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Where 01234567[...0e-0][..12] Merge (_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ) Union Optional Match usn1=(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ),((_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0)-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]})) Where $`2esn` In 0 In 0Xa Remove {`1esn`:0.12[07..3.9e-1]}.usn1.usn1!,(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})._usn4._usn3?,Extract(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`]|$`3esn`[..`1esn`][..$`7esn`]).@usn6! Unwind .12[.0e-0..] As `3esn`"), + octest:ct_string("Create `5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})),(`1esn` :``:usn1{_usn4:.1e1 Is Null Is Null})<-[`6esn`?:``|:`3esn`]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}) Union All With (:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])] Where `7esn` Is Null Return *,(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})<-[?:usn1|:#usn8{`8esn`:`2esn` Is Not Null Is Not Null}]-({#usn8:1e1[Null..][.12..]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null,8.1e1 Is Not Null As usn2 Order By .1e1[$usn2..9e1][9e-1...9e-1] Desc Skip Null In 0Xa In .9e-1 Unwind .9e-12[12e12][.0e0] As `3esn` Union All Optional Match @usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))),(({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)) Where $@usn5 Starts With 0Xa Detach Delete $0[9e1],Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] Optional Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),(({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})<-[`4esn`:_usn4|`1esn` *123456789..0x0{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})-[_usn3 *..7]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]}))"), + octest:ct_string("With *,$`5esn`[true],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Skip $`1esn` =~0.0 Where 07[.0e0][3.9e-1] Detach Delete 00[0e-0...9e-1][1e-1..``],9e12[...12e12][..$`2esn`],7.0e-0 Contains Count ( * ) Contains 0Xa Return *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip 0xabc =~7.0e-0 =~4.9e12 Limit Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Union All Detach Delete 0.12 Is Not Null Is Not Null,$`1esn` Starts With .12 Remove None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`).`7esn`!.`6esn`?,({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null})<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3).`5esn`._usn3!"), + octest:ct_string("Delete $`8esn` In .1e1 In 010,123456789 =~6.0e0,@usn5 In $1000 In 07 Delete [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1) Ends With Filter(`2esn` In .9e-12[0e0...9e-1] Where $usn2[0e0][$7]),5.9e-12[`4esn`..12e12][0x0..1.9e0] Unwind `7esn` Ends With _usn4 As _usn3 Union All Match ((:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[? *12..0Xa]-(`2esn` :#usn7:_usn3)<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})) Remove [#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1].`6esn`._usn4?._usn4!,{`3esn`:#usn8[..#usn7][..@usn6]}.#usn8? Union With Distinct *,$7 Contains _usn4 Contains $`1esn`,9e-12 In 5.9e-12 As `` Skip 3.9e-1 Contains 9.1e-1 Contains `8esn` Limit Count ( * )[7] Where 11.12e-12 In $`1esn` In 9e12 Detach Delete 9e12[1e1...9e-12] Detach Delete 5.9e-12 Ends With 1e1 Ends With false"), + octest:ct_string("Create @usn5=(({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})) Unwind .0[01234567][$#usn8] As `2esn` Union Merge (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))) On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12"), + octest:ct_string("With $0 =~01234567 As ``,Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])[All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654])][None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])] As usn2 Order By 12e12 Starts With 9e1 Starts With $`4esn` Desc,$`5esn`[true] Descending Limit 123.654 With *,`5esn`[$`4esn`],#usn8[7..@usn5] As `4esn` Order By 9e0[.0e-0] Asc Limit `8esn` Is Not Null Is Not Null"), + octest:ct_string("Optional Match `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Where 0e0 Starts With $1000 Starts With `2esn` Unwind Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)[{_usn3:$0 Starts With 010}] As _usn4 Union All Create `8esn`=(`4esn` :`5esn`),((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Union Return *,`6esn`[010...9e-12] As `5esn` Match `3esn`=(:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})<-[? *0X0123456789ABCDEF..0]-(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null}) Where #usn8[usn1] With *,7.0e-0[3.9e-1..`1esn`] As `8esn`,$`6esn` In `2esn` Limit $`1esn` Starts With Count(*) Starts With $`8esn` Where 1.9e0 =~$`8esn` =~01234567"), + octest:ct_string("Match #usn7=(`` :_usn4) Create (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null})))"), + octest:ct_string("With Distinct `3esn`[3.9e-1..$`5esn`] As usn2,0X0123456789ABCDEF Is Not Null Is Not Null As `2esn`,11.12e-12 =~5.9e-12 =~.9e1 As `3esn` Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null Desc,8.1e1[usn2..$1000][$7..0x0] Descending,0Xa Ends With #usn8 Ends With usn2 Ascending Where @usn5[$``] Union All Unwind `1esn`[9.1e-1] As #usn8 Union Merge ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})) On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1]"), + octest:ct_string("With *,10.12e12[..1.9e0][..Null] As `8esn`,All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])[..{#usn8:.12e12[Count(*)..]}][.._usn4(Distinct `2esn` Starts With 999,$`5esn` Starts With 0X7 Starts With 1e1)] As `` Order By 0[true..$7] Descending Skip Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999)[Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])][[_usn3 In ``[$``..] Where @usn5 Ends With 0]] Return Distinct `5esn` Contains `6esn` As `4esn` Skip 0X7[Count(*)][.9e0] Limit None(`7esn` In .12e12[Count(*)..] Where Count(*)[..Count(*)][..9e0])[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1]|.0)..] Unwind [`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) As usn1"), + octest:ct_string("Optional Match #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Where 0x0 Starts With $`5esn` Starts With 9e-12 Union Create usn2=(((`7esn` :``:usn1)<-[:`4esn`|:@usn5]-(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[?]->(_usn4 :@usn5))) Optional Match `4esn`=(((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})<-[`8esn`?:usn2|:``]->(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})-[`3esn`?:`5esn` *07..{#usn7:9e-1 =~6.0e0 =~``}]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))),((@usn6 )<-[`2esn`{`4esn`:.0e0[$`6esn`..]}]->({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})-[`6esn`:#usn7|:`8esn` *01234567]-(`5esn` :`2esn`:`8esn`)) Where 0xabc Is Not Null"), + octest:ct_string("Create `2esn`=((:`4esn`:`7esn`{`3esn`:`1esn`[9.1e-1]})<-[?:@usn6|:_usn3 *07..]-(#usn8 :`2esn`:`8esn`{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:@usn5[...9e12]})-[? *..0X7{_usn3:00[$`6esn`]}]->({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})),#usn7=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})) Union Create ((`3esn` {#usn8:`7esn` Is Null})<-[{`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}]-(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Merge (((`4esn` {_usn3:@usn6 In 3.9e-1 In 9e-12})<-[`6esn`? *123456789..0x0]-(`7esn` :`8esn`:#usn7{`4esn`:`8esn` =~.1e1 =~.0})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`6esn` {_usn3:$_usn4 Contains .12e-12}))) On Create Set #usn8 =usn2 Ends With 10.12e12 On Match Set `8esn` =01[.9e-12..],usn2 =.9e-1 =~.9e-1,`2esn`+=$999 Return [_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789|0e-0 Contains _usn4 Contains 1e-1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567) As `7esn`,@usn5 Ends With 's_str' Ends With 01 As _usn4 Order By [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Descending,123456789 =~2.9e1 =~@usn5 Descending Skip .0e0[1e1..][01234567..] Limit Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7)"), + octest:ct_string("Match (:_usn3:_usn3{`5esn`:`2esn` Is Not Null Is Not Null,`7esn`:2.9e1})<-[`7esn`*..]-(`7esn` :usn1),(`1esn` :``:usn1{usn1:123.654 Ends With 0Xa Ends With .12e12})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``}) Where $usn2 =~$`2esn` =~\"d_str\" Unwind {`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] As `3esn` Union Delete .9e-1 =~.9e-1 Remove (:`7esn`{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[#usn8?:`4esn`|:@usn5]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})._usn3!,Any(`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0).usn1 Union Merge ((`5esn` :`2esn`:`8esn`)<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})) On Match Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Remove (`` :@usn6:_usn4{`4esn`:00 Is Not Null Is Not Null})-[`1esn`:usn1|:#usn8]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}).`6esn`!.@usn5?._usn4?,@usn5:_usn4,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]).`2esn`!.`8esn`!._usn3!"), + octest:ct_string("Return Distinct .0e0[$`1esn`][.9e-12] As `6esn`,\"d_str\"[$123456789..][0X7..] Order By All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Asc,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Limit (usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})-[`4esn`?:`6esn`|#usn7]->(`1esn` )[[`2esn` In .12e-12[$@usn6..5.9e-12]|$#usn7 Starts With 10.12e12]..] With *,1000 Is Not Null Is Not Null As #usn7,.1e-1 Ends With @usn6 As @usn6 Skip 9.1e-1 =~@usn5 =~Count ( * ) Limit _usn4 In `3esn` In 7.0e-0 Where 1.9e0 Is Null Is Null Optional Match `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),_usn4=((`6esn` :#usn7:_usn3)<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Union Optional Match (:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(usn1 :usn2{``:$`` Is Not Null}) Where 1.9e0 =~$`8esn` =~01234567 Optional Match #usn8=(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[``?:_usn3|`2esn`]->(usn2 {_usn4:$999 Ends With .9e-12})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(#usn7 {`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),`8esn`=(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}))) Merge (usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2}) Union Merge (:`4esn`:`7esn`{`3esn`:`1esn`[9.1e-1]})<-[`4esn`]->(`` :`3esn`)<-[`1esn`?:`2esn`|`7esn` *123456789..0x0{#usn7:.9e-12 Starts With .0e-0 Starts With usn2}]->(`` :`8esn`:#usn7) Remove `5esn`(123456789 =~$`1esn` =~#usn7,$0[$`7esn`..$`3esn`]['s_str'...0]).#usn7?"), + octest:ct_string("Merge `6esn`=(usn2 {_usn4:$999 Ends With .9e-12})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``}) On Match Set `4esn`+=0Xa Starts With .0,`1esn` =12 Ends With $7 Ends With $#usn8,(`1esn` :_usn3:_usn3$0)<-[``:`8esn`|:`2esn` *12..0Xa]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})<-[?*{`6esn`:.1e-1[..12e12]}]->(:`3esn`{_usn4:7.0e-0 =~$12 =~5.9e-12}).`4esn`.`7esn`! =``(Distinct `4esn`[$1000..$``][$_usn4..$_usn4],.1e-1 Starts With 1000 Starts With $`1esn`) In [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|`4esn` Starts With $_usn3 Starts With .9e-12] In {`6esn`:``[$``..]} Unwind [usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null]][(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})..] As usn2"), + octest:ct_string("Unwind Extract(usn2 In .0e0[$`6esn`..] Where 9.1e-1[Count(*)..][5.9e-12..]) =~#usn8(5.9e-12 Contains $`` Contains $`5esn`) As `7esn` Unwind $999[$usn1...0e0] As `3esn` Remove (_usn3 :_usn4)-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)._usn4?,(usn2 :`1esn`$7)<-[_usn3{`8esn`:0e0[..'s_str']}]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`1esn`{`7esn`:8.1e1 Ends With $0 Ends With 6.0e0})._usn4? Union Unwind 7 Starts With 0X7 As usn1"), + octest:ct_string("Unwind usn1[12e-12] As #usn8 Return Distinct Null[.12e-12] As #usn7 Skip 0x0 Contains 0X7 Contains 999 Limit `6esn` Is Not Null Is Not Null Union Match (((:#usn8{`8esn`:usn1[12e-12],@usn6:Count ( * ) In 999})<-[`8esn`? *0x0..]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})<-[@usn6?:`5esn`]->(`8esn` {`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}))) Where 0[$999..]"), + octest:ct_string("Optional Match ``=((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})),(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}) Where 0[true..$7] Delete \"d_str\" Contains 4.9e12 Contains 7.0e-0,{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])]"), + octest:ct_string("Remove `5esn`().`7esn`.`7esn`.usn2,{`5esn`:$#usn8[$1000..],#usn7:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]}.`4esn` With *,{`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As #usn7,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Limit [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]][{`2esn`:$`8esn` In 9e-12 In 3.9e-1}..{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}][Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..])..Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Optional Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Where .0e0[1e1..][01234567..]"), + octest:ct_string("Unwind 123.654 =~1e-1 =~.9e-1 As `8esn` Merge `7esn`=((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)) On Match Set Filter(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).``.`8esn` =Count ( * )[..`8esn`],usn1 =123456789 Contains .1e-1 Contains .12e12,`8esn`+=`7esn` Ends With _usn4 On Match Set `6esn` ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])],All(`5esn` In 12[0xabc..][$0..] Where _usn3 Ends With 01 Ends With .1e-1).`6esn`? =12.0[..Count(*)][..5.9e-12] Return *,(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12})[[`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1|`6esn`[..$@usn6][..$`1esn`]]] Order By {@usn5:true Contains 0x0} In Extract(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$1000[..01234567][..0X0123456789ABCDEF]) Descending,$`2esn`[$usn1..] Asc,.9e-12 Is Not Null Is Not Null Asc Skip $usn2[4.9e12..false][.0e-0..00] Union Match `1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) Where 0e0 Is Null Is Null Unwind usn1[12e-12] As #usn8"), + octest:ct_string("Remove [#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1].`6esn`._usn4?._usn4!,{`3esn`:#usn8[..#usn7][..@usn6]}.#usn8? Create ((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),(((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]}))) Union All Delete Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)[{_usn3:$0 Starts With 010}],Extract(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``]|$_usn4[..usn2]) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) Starts With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null|`4esn` Is Not Null Is Not Null) Union Detach Delete {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null),\"d_str\" Starts With `6esn` Starts With 1.9e0,`5esn` Contains 1.9e0 Contains 9e0 Create (((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))),(`5esn` :`5esn`)"), + octest:ct_string("Merge #usn7=(`8esn` {``:$123456789[$_usn3..][$usn2..]}) On Match Set `7esn` =$`6esn` Is Null Is Null On Match Set `7esn` =$`7esn` Is Null Is Null,`8esn`+=`6esn`[..$@usn6][..$`1esn`],`3esn`+=3.9e-1 Contains 9.1e-1 Contains `8esn` Union With 12e12 Starts With `6esn` Starts With true,#usn7[12e-12..][$`2esn`..] As @usn6,`` Is Not Null Is Not Null As _usn4 Order By #usn7 Ends With Count ( * ) Ends With @usn6 Ascending,usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) In {`2esn`:$`2esn` Contains $1000} In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $@usn6 Contains Count ( * )|11.12e-12 Contains 9e-12] Descending,Extract(usn2 In .0e0[$`6esn`..] Where 9.1e-1[Count(*)..][5.9e-12..]) =~#usn8(5.9e-12 Contains $`` Contains $`5esn`) Descending Limit #usn8[7..@usn5] Union All With Distinct All(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[..Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`])] As `6esn`,11.12e-12[010..11.12e-12] As `2esn`,`8esn`[Null...12e12][0..11.12e-12] Order By $_usn3 Contains 1e1 Contains .12 Asc,9e12 Asc,0e0[`3esn`..][.9e-1..] Descending Limit $12[01]"), + octest:ct_string("Merge @usn6=(((@usn5 {``:.0e0[$`6esn`..]})-[?:usn2|:``]-(_usn4 :`4esn`:`7esn`{#usn7:0xabc Is Not Null,`4esn`:_usn3[`2esn`..10.12e12][9e1..true]})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(@usn5 :usn2))) On Create Set #usn7:`4esn`:`7esn`,{`7esn`:$`5esn`[7..],`5esn`:`5esn` Contains `6esn`}.#usn8?.usn2.@usn5! =usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]],@usn6 =\"d_str\" =~9e-12 =~`5esn` On Match Set {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]}.#usn8?.`4esn`?.@usn6? =.9e12[$usn2..][7..],[_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]].`8esn`.@usn6? =0X7 =~$123456789 =~$`` Union All Unwind @usn5 Contains _usn3 Contains 00 As #usn8 Merge #usn8=(`6esn` :``:usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[_usn4:`6esn`|#usn7]-(`8esn` $12) On Match Set _usn4:#usn7:_usn3,Extract(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0|`6esn` In 9e-12)._usn4? =0Xa Ends With #usn8 Ends With usn2 With Distinct *,'s_str'[1e-1] As usn1,_usn3[`2esn`..10.12e12][9e1..true] As `1esn` Order By $`8esn`[$``..$`1esn`][9e-12..$7] Descending,$`` In $usn2 Desc,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Ascending Union All Match ((:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})<-[_usn4:`6esn`|#usn7]-(`8esn` $12))"), + octest:ct_string("Return *,$0[$`7esn`..$`3esn`]['s_str'...0],usn1 Ends With 12 Order By $#usn7 Starts With #usn7 Descending,9e12[.0e-0] Descending,01[..01] Descending Limit (usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})-[`4esn`?:`6esn`|#usn7]->(`1esn` )[[`2esn` In .12e-12[$@usn6..5.9e-12]|$#usn7 Starts With 10.12e12]..] Union All Match ((:`7esn`)) Detach Delete $@usn5 =~.12e-12,Null Is Not Null,`1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] Unwind 12e12 =~#usn7 =~.9e-1 As #usn8 Union Delete 12.0[$1000..][123456789..] Return `1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `4esn`"), + octest:ct_string("Return *,_usn4(Distinct 1e-1 =~0.0 =~9.1e-1) =~None(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) =~(`2esn` {usn2:7.0e-0 Starts With $7 Starts With true})-[`2esn`:`5esn`{usn2:Count(*)[12..][0X0123456789ABCDEF..]}]-({_usn4:$`3esn` In 's_str' In $#usn7})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12}) As ``,`3esn` Ends With true Limit {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) Unwind .9e12 Starts With .9e12 Starts With `7esn` As usn2 Remove All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `8esn` Is Null).`4esn`,`2esn`:_usn4 Union Merge `7esn`=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}) With Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1] Optional Match _usn3=((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]})) Union Optional Match @usn5=({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3}) Unwind .9e12 Starts With .9e12 Starts With `7esn` As _usn4 Return Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..] Limit .9e12 Starts With .9e12 Starts With `7esn`"), + octest:ct_string("Detach Delete 11.12e-12 Contains 9e-12 Return Distinct *,9e0[.0e-0] As _usn4 Skip 0X7[`4esn`..][`3esn`..] Return Distinct @usn5 Ends With 's_str' Ends With 01 As `7esn`,$`8esn`[..usn1][..$`6esn`] As usn2,Count ( * )[..123456789][...0e0] Order By 10.12e12 =~12e-12 =~0X0123456789ABCDEF Descending,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where Null[10.12e12..]|false[$1000..$@usn6][7..12]] In (`6esn` :``:usn1)<-[`2esn`?:``|:`3esn`*]-({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In None(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]) Asc,8.1e1 Starts With .9e12 Starts With `7esn` Desc Union All Detach Delete None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),12e12[07..] Union All With Distinct *,$0[$`7esn`..$`3esn`]['s_str'...0],usn1 Ends With 12 Order By Count ( * )[0..][010..] Desc Limit 12.0 Starts With 07 Starts With $`3esn` Where @usn6[usn1..][`1esn`..] Match `3esn`=(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}),usn2=((:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}))"), + octest:ct_string("With *,(`5esn` :`2esn`:`8esn`)-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]}) Is Null Is Null As `8esn` Skip {#usn7:$usn2[1e-1]}[(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)..][(usn1 :`2esn`:`8esn`)<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]})..] Merge (((#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`5esn` :#usn8{_usn4:010[11.12e-12..],`7esn`:3.9e-1[..$7]})<-[_usn3? *1000{`3esn`:$usn1 Is Null}]->(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}))) On Create Set `2esn` =$`3esn`[010..][9e-1..],[`8esn` In 01234567[..0.0][..false] Where 5.9e-12[.1e1][$#usn8]|12 Contains usn2 Contains $usn2].#usn7 =01234567[..0.0][..false],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789).usn1!.``! =010 Starts With 0.0 Starts With .0e0 Unwind Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null As _usn4"), + octest:ct_string("With *,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1) Ends With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) Skip 123456789[Count(*)] Remove `2esn`(Distinct .9e-12 Ends With `1esn` Ends With 123.654).`6esn`?,({_usn3:$`5esn`[7..]})-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`` :`5esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1}).`8esn`!._usn4.@usn5! Union All Delete $usn1[$7..][$0..] Union All With Distinct `8esn`[Null...12e12][0..11.12e-12] Order By 4.9e12[..Null] Desc,12e12 Ends With $`3esn` Ends With 11.12e-12 Asc,#usn8(Distinct false[$1000..$@usn6][7..12],123456789 In 9e-12 In false) =~{#usn7:$`6esn`[..12e12][.._usn3]} =~(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1) Descending Limit 0X0123456789ABCDEF Contains 8.1e1 Detach Delete $`1esn`[.9e0][$_usn3],`4esn` Starts With .0e0 Starts With usn2"), + octest:ct_string("Return *,$12[$12..] As `4esn` Skip Count ( * )[..`8esn`] Unwind Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0|12[0xabc..][$0..]) Contains [`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .12[$`2esn`..usn2][.9e-1.._usn3]] Contains Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]) As #usn8 Detach Delete 1e1 Is Not Null,1e1 Ends With Null Ends With `7esn`,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1])[Filter(_usn3 In ``[$``..] Where Null[`2esn`..])..][Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)..] Union With Distinct Null[...9e1] As usn2 Union Detach Delete 0Xa In 0.12 In $#usn7,12.0[..Count(*)][..5.9e-12] With 11.12e-12 Is Null Is Null As `4esn`,#usn8 Starts With 11.12e-12 Starts With $`3esn` As `2esn` Skip 123.654 Ends With 0Xa Ends With .12e12"), + octest:ct_string("Optional Match _usn3=(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Where .9e-12[1000..$`3esn`] With Distinct *,`8esn` Is Null As `6esn` Order By [usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc,0x0 =~$7 =~Null Desc,12e-12[9e0..1.9e0] Asc Where `` =~$`5esn` Create ((`6esn` :usn1))"), + octest:ct_string("Unwind usn1[12e-12] As `2esn` Unwind Extract(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..]|.9e12[..$usn1][..10.12e12]) Starts With Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]) As #usn7 Union All Merge #usn8=(@usn5 :usn1{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(@usn5 {#usn8:_usn3 Ends With 01 Ends With .1e-1}) Optional Match #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Where 0x0 Starts With $`5esn` Starts With 9e-12"), + octest:ct_string("Match usn1=(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}),@usn5=({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}) Where $`3esn`[..`1esn`][..$`7esn`] Union All Merge _usn4=(((`2esn` {`7esn`:Count(*)[.0e0..][#usn7..]})-[`2esn` *12..0Xa{#usn7:#usn8[`2esn`]}]->(:_usn4)-[:#usn8|:`4esn` *12..0Xa]->(`1esn` {`3esn`:999[...12e12][..0],`6esn`:`1esn`[Count ( * )][5.9e-12]}))) Remove [usn2 In $_usn3 =~$usn1 =~_usn4 Where 0xabc In 10.12e12|9e-1 Starts With 123.654 Starts With .9e1].`2esn`?.`5esn`"), + octest:ct_string("Merge ((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})) On Match Set usn1:`2esn`:`8esn`,`1esn` =$`` Is Not Null,_usn4 =0.0[..Null][..9e-12] On Match Set `2esn`+=.1e1 Is Not Null Is Not Null,`5esn`+=Count ( * )[..1.9e0][..`8esn`] With *,'s_str'[1e-1] As usn1,_usn3[`2esn`..10.12e12][9e1..true] As `1esn` Order By $`8esn`[$``..$`1esn`][9e-12..$7] Descending,$`` In $usn2 Desc,Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Ascending Unwind Extract(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[({_usn3:$`5esn`[7..]})<-[ *010..{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}]-()] As `8esn` Union Merge ((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) On Create Set #usn8 =usn2 Ends With 10.12e12 On Match Set {_usn4:Count(*)[9e-12..0Xa][$123456789..0.0],`4esn`:$_usn3 Is Not Null Is Not Null}.@usn6 =07[.0e0][3.9e-1],`5esn`:`3esn` Return *,true Is Null Limit `6esn`[010...9e-12] With $0 =~01234567 As `2esn`,07[.0e0][3.9e-1] Skip Extract(`7esn` In .12e12[Count(*)..] Where true Starts With 2.9e1 Starts With 9e1|12[0xabc..][$0..]) Starts With Extract(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12|0.12[3.9e-1]) Starts With ``(12e12[true..][$`2esn`..]) Limit [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 0e-0[$`2esn`][8.1e1]] Where 5.9e-12[`4esn`..12e12][0x0..1.9e0] Union All With Distinct .12e-12 In 9e12 In 9e-12,$#usn8[...9e1] Order By $``[`4esn`..][0.0..] Asc,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Skip Extract(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]|1000[..0e0][..$`6esn`])[{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}][Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 8.1e1 Ends With $0 Ends With 6.0e0)] Unwind 123456789[Count(*)] As usn1 Create ((#usn7 :_usn4{usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[?:`8esn`|:`2esn`{`2esn`:8.1e1 Is Null Is Null}]-(usn1 )-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})),_usn3=((usn2 {`4esn`:12e12 Is Not Null})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4}))"), + octest:ct_string("Return Distinct $usn1 Is Null As `5esn`,123.654 Starts With Count ( * ) As `4esn` Skip .9e-1 Ends With `8esn` Create ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),`1esn`=(((`5esn` :#usn7:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(usn2 {@usn5:$usn2 Ends With `8esn` Ends With _usn3,@usn6:`7esn` Is Not Null})))"), + octest:ct_string("With *,Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]),0x0 Starts With $`5esn` Starts With 9e-12 Order By 0.0[4.9e12..][00..] Ascending,Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07) Desc"), + octest:ct_string("Optional Match `2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Merge usn1=(:#usn7:_usn3{#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) On Match Set `7esn`+=$`` In $7 In 9e-1,usn1+=$12 Starts With 1e-1 Starts With $@usn5,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).`2esn`?.#usn8! =Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null Union Unwind `4esn`[$1000..$``][$_usn4..$_usn4] As `7esn` Union All Merge ((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12}))"), + octest:ct_string("Detach Delete $usn1[$7..][$0..] Union All Unwind 999 =~0Xa =~9e0 As `` Remove {`8esn`:Null[..07]}._usn4?.`8esn`?,{`4esn`:$123456789[$_usn3..][$usn2..]}.usn1,[`8esn` In 01234567[..0.0][..false] Where 01[..0Xa]].``.@usn5?.`2esn`!"), + octest:ct_string("With Distinct *,true Is Null Is Null As _usn3 Skip 12e-12[.0..] Limit $@usn5 Is Null Is Null With Distinct Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Limit 9e0[..1e1] Where $usn2[1e-1] Merge ((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Union All Unwind 00 Is Not Null As `1esn` Remove {`4esn`:01[..01]}.`8esn`?.`8esn`?.usn1?,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`2esn`[010..`5esn`][``..0.12]).`4esn`"), + octest:ct_string("Merge ``=(((_usn4 )<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[?{`3esn`:$`6esn`[$`7esn`][$`4esn`]}]->(`8esn` {`5esn`:`3esn` Starts With _usn4,#usn7:$1000[$1000...9e0]}))) Remove None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 8.1e1 Is Null).`6esn` Union Remove Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12|$`4esn` =~0e0).usn1?._usn3!.`6esn`!,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 01 Ends With \"d_str\").@usn6?,{_usn4:Count(*)[.0e0..][#usn7..]}.#usn8?"), + octest:ct_string("Return *,Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),3.9e-1[.0e0..][07..] Order By 2.9e1 Starts With 12e-12 Starts With 0.0 Asc,.0e0 Starts With $@usn6 Starts With Null Descending Union With 12 Contains usn2 Contains $usn2 As ``,Count ( * )[12e-12] As #usn7 Skip .0 Where .9e-1 Contains .0e0 Contains usn1 Merge ((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) With Distinct 0e0 Is Null Is Null,None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[..Filter(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0)][..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] Order By .9e-12[0e0...9e-1] Ascending,.1e1 Starts With .1e-1 Asc Skip 0.12 Ends With $123456789 Ends With `7esn` Where 07 In $usn1 In 12 Union Return Distinct *,(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12})[[`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1|`6esn`[..$@usn6][..$`1esn`]]]"), + octest:ct_string("Unwind Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Detach Delete (`2esn` :_usn3:_usn3)<-[:_usn3|`2esn` *..0X7{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[_usn3:_usn4|`1esn`{`2esn`:123456789 In 9e-12 In false}]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) =~Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 0e-0 Contains _usn4 Contains 1e-1) =~[usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]],.12e-12 Ends With $`7esn`,`3esn` Union Delete $`6esn` In $`3esn` In 9e1 Create #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})),``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2}))"), + octest:ct_string("Remove None(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`).`7esn`!.`6esn`?,({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null})<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3).`5esn`._usn3! Remove `7esn`:`2esn`:`8esn` Unwind .0[01234567][$#usn8] As `2esn`"), + octest:ct_string("Remove {`3esn`:1.9e0 Is Null Is Null,``:$usn2 Ends With `8esn` Ends With _usn3}.`3esn`?,({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})<-[``?:_usn3|`2esn` *0X0123456789ABCDEF..0{`5esn`:`4esn`[0.0..][.1e-1..]}]->(:@usn6:_usn4{`2esn`:$usn1[$7..][$0..]}).`8esn` Create (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),_usn3=((usn2 :@usn6:_usn4{``:$`2esn` Ends With 2.9e1 Ends With $usn1})) Detach Delete 5.9e-12 =~$@usn6,10.12e12[..1.9e0][..Null] Union All Remove Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12|$usn2[1e-1]).`5esn`,`5esn`(.9e-12[..$`7esn`][...9e-1],`` =~123456789).`4esn`!.usn1!"), + octest:ct_string("Optional Match @usn6=(:`6esn`:`3esn`{`5esn`:.12e12[$0]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(usn2 :_usn4{_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),`3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})) Create `3esn`=(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`),(((:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[@usn6?:@usn5 *07..{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4}]-({``:_usn3[$_usn3][usn1]})-[`8esn` *..7{usn2:12.0 Contains $_usn4 Contains $usn2}]-(`8esn` :`7esn`{`6esn`:_usn4 Is Not Null Is Not Null}))) Delete .9e-1 =~.9e-1"), + octest:ct_string("Unwind {`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] As `3esn` Merge `8esn`=((`4esn` )<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})) On Match Set Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`1esn` =.1e1 Ends With `2esn` Ends With $`1esn`,All(usn1 In 7.0e-0[.._usn4][..0X7] Where 12.0[..Count(*)][..5.9e-12]).`3esn`!.`4esn`!.``! =Count(*)[8.1e1..],{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}.usn1!.@usn6? =$`3esn` In 's_str' In $#usn7 Union Create (((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))),`5esn`=(:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]-(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null}) Create ``=(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn8? *0x0..]->(usn2 :`6esn`:`3esn`) Unwind 0xabc['s_str'][$``] As `2esn`"), + octest:ct_string("Create ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) Union Create `5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)),``=(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`` :@usn6:_usn4)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})"), + octest:ct_string("Remove All(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..]).usn1,`5esn`:``:usn1 Unwind 1000 Starts With 11.12e-12 Starts With 01234567 As `1esn` Remove `4esn`:`4esn`:`7esn`"), + octest:ct_string("Merge ((#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[`3esn`?:`5esn`]->(`2esn` )) On Match Set usn1 =.0e0[$`1esn`][.9e-12],(_usn4 :``:usn1)-[ *..01]->(#usn8 :#usn7:_usn3)-[usn2?:@usn5*{`6esn`:.9e0 In 9.1e-1 In $123456789,`6esn`:.12[$`2esn`..usn2][.9e-1.._usn3]}]->($`2esn`).`2esn`?.#usn7? =`4esn` Starts With .0e0 Starts With usn2,`8esn`+=$usn2[4.9e12..false][.0e-0..00]"), + octest:ct_string("Return *,0 Starts With 0Xa Starts With $0 Limit Filter(`2esn` In .9e-12[0e0...9e-1] Where Count(*) Ends With `3esn` Ends With `7esn`)[(`1esn` :`6esn`:`3esn`)<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]-(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..{`6esn`:12 Contains 0e-0 Contains .0}] Remove (:@usn5{`4esn`:.0e0[$`6esn`..]})-[? *0X0123456789ABCDEF..0]-({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`).#usn7!"), + octest:ct_string("Return Distinct 00[$`6esn`] As `6esn`,Count ( * )[12e-12] As #usn7,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] Order By .9e1[Count(*)..$`3esn`] Asc Detach Delete 7.0e-0 Is Null Is Null"), + octest:ct_string("With Distinct 12e-12 Ends With @usn5 Ends With $`2esn` As `6esn`,$123456789[#usn8][.9e-12],@usn5 Contains _usn3 Contains 00 As _usn4 Order By Count(*)[0e0..] Ascending,12e-12 Ends With @usn5 Ends With $`2esn` Desc Remove [`8esn` In 12.0 Contains $_usn4 Contains $usn2|#usn8 Starts With 11.12e-12 Starts With $`3esn`].`6esn`.`6esn`!.`5esn` Create `4esn`=({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})"), + octest:ct_string("Return Distinct 10.12e12[..1.9e0][..Null] As `8esn` Skip `1esn`[..0x0][..\"d_str\"] Create `3esn`=((:`2esn`:`8esn`)<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]}))"), + octest:ct_string("With *,`5esn`[$`4esn`],#usn8[7..@usn5] As `4esn` Order By 9e0[.0e-0] Asc Limit `8esn` Is Not Null Is Not Null Optional Match ((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})),``=((({`4esn`:$`2esn` Ends With $`8esn`})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})-[``]-(:_usn4{#usn8:.0e0[1e1..][01234567..],#usn7:1e-1[..2.9e1]}))) Detach Delete `3esn`[.12e-12..],Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Union All Merge `1esn`=((:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[usn1 *12..0Xa]->({`5esn`:07 Starts With usn1 Starts With 010})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})) On Create Set #usn7 =Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Null Is Null,`4esn`+=$_usn4 =~$_usn4 =~2.9e1 Union All Remove `2esn`($_usn3[1e-1..],07 =~7.0e-0 =~`8esn`).@usn6!"), + octest:ct_string("Remove None(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).``?.@usn5?,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).`2esn`"), + octest:ct_string("Merge (((`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0))) On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`3esn`? =0.12[3.9e-1],_usn4 =Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],[`` In $_usn3 Is Not Null Where 12 =~$@usn5|$`2esn` In 0X7 In 3.9e-1].`8esn`.`5esn`? =12e-12[9e0..1.9e0] With Distinct *,$`2esn`[$1000..][$@usn5..] As #usn8 Order By .9e0 Is Null Asc,0 Is Not Null Desc Skip #usn7[5.9e-12][00] Where 12e12[..$`8esn`][...0e-0]"), + octest:ct_string("Delete 12e12 =~#usn7 =~.9e-1,(:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[`2esn`? *..7]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]})<-[#usn7? *00..123456789]->(:`6esn`:`3esn`)[{``:`1esn`[Count ( * )][5.9e-12],_usn3:$_usn3[1e-1..]}..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1)],010 Ends With 0x0"), + octest:ct_string("Create usn1=({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}),_usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}))) Union Return *,0xabc[7.0e-0..][12e12..] Skip Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Return Distinct 00[$`6esn`] As `6esn`,Count ( * )[12e-12] As #usn7,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] Order By .9e1[Count(*)..$`3esn`] Asc Create ({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}),`1esn`=(((`5esn` :#usn7:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(usn2 {@usn5:$usn2 Ends With `8esn` Ends With _usn3,@usn6:`7esn` Is Not Null})))"), + octest:ct_string("Merge `2esn`=((@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]})) Detach Delete $`1esn`[.9e0][$_usn3],`4esn` Starts With .0e0 Starts With usn2 Union All Remove (:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null}).`8esn`?,Extract(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null).usn2 Remove [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null].usn2?,Any(`8esn` In 01234567[..0.0][..false] Where $@usn5[$#usn8..][_usn3..]).`8esn`!,(:usn1{usn1:Count(*)[0.12..2.9e1]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]}).#usn8 Union Return *,true Is Null Limit `6esn`[010...9e-12]"), + octest:ct_string("With Distinct 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] Ascending,1e-1[..$`6esn`] Ascending Skip (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Where #usn7 Ends With $#usn7 Ends With #usn7 Return `6esn` In 9e-12 As `3esn` Skip (#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})[Any(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)..][Single(_usn3 In ``[$``..] Where Null[`2esn`..])..] Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] Ascending,1e-1[..$`6esn`] Ascending Skip (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`)"), + octest:ct_string("Return Distinct [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null,Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,1.9e0 Starts With .9e0 Order By `5esn`[0X7..][12..] Asc Limit 0 Is Not Null Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),`3esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1)"), + octest:ct_string("Return 0[..$@usn5],0e0 Ends With 0X7 Ends With .1e1 As _usn3,12e12[..123456789][..false] Limit {`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"} Is Not Null Is Not Null Return Distinct *,_usn3[`2esn`..][0x0..] As usn1,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} Order By Filter(`7esn` In .12e12[Count(*)..] Where .9e1[12]) Is Null Ascending,usn1() In Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) In (`7esn` :usn1)-[usn2:`4esn`|:@usn5 *01234567]->(_usn4 )-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]}) Desc,``[..$#usn7] Asc Limit 07 Ends With @usn6 Ends With _usn3 Union Merge #usn8=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) On Create Set `2esn` =(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)],`3esn` =9e1 Contains 4.9e12 Contains 123456789 Detach Delete 0x0,$``[`6esn`][00],'s_str' Ends With $usn1"), + octest:ct_string("Return Distinct $`2esn` In 0X7 In 3.9e-1 As #usn7,All(usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null])[``($_usn3[1e-1..],.12e12[Count(*)..])][None(_usn4 In Count(*)[9e1..][12e-12..] Where 123456789 Ends With _usn4)] Skip Count ( * )[7] Limit 123456789 =~2.9e1 =~@usn5 Return $``[7..] As #usn8 Union All Merge ``=((@usn6 :`5esn`)<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})) Delete Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Detach Delete Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8),_usn4[7][8.1e1],Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999)[Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])][[_usn3 In ``[$``..] Where @usn5 Ends With 0]]"), + octest:ct_string("Unwind $usn1 Is Not Null Is Not Null As `5esn` Union All Return 6.0e0 In 12 As usn1 Limit $#usn7 Starts With 10.12e12 Match (((:#usn8{`8esn`:usn1[12e-12],@usn6:Count ( * ) In 999})<-[`8esn`? *0x0..]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})<-[@usn6?:`5esn`]->(`8esn` {`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}))) Where 0[$999..] Return 12e12 =~#usn7 =~.9e-1,.1e1 Starts With 9e0 Order By None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) In (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]}) In [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] Ascending,.9e0 Is Null Asc,.12[$`2esn`..usn2][.9e-1.._usn3] Ascending Limit 2.9e1 Starts With 12e-12 Starts With 0.0"), + octest:ct_string("Create #usn7=(({`5esn`:8.1e1 Ends With $0 Ends With 6.0e0,@usn5:9e0[..1e1]})-[`5esn`?:`3esn`|:_usn3{`3esn`:1.9e0 Is Null Is Null,``:$usn2 Ends With `8esn` Ends With _usn3}]-(:``:usn1{_usn3:$#usn7[$_usn4..][.12e-12..],`1esn`:false})<-[`2esn`:`5esn`{usn2:Count(*)[12..][0X0123456789ABCDEF..]}]->(`1esn` {`5esn`:0X7[_usn4..1.9e0][Count ( * )..false],@usn5:123456789 Ends With _usn4}))"), + octest:ct_string("Remove (`6esn` {`4esn`:$@usn5[$#usn8..][_usn3..]})<-[? *..0X7{`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12}]->(`6esn` :`5esn`{usn2:`8esn` Is Null}).`7esn`!,{#usn7:9e-1 =~6.0e0 =~``}.usn1? Create `6esn`=((#usn7 :_usn3:_usn3)<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Union All Merge usn1=(:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}) On Create Set None(`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0).`8esn`? =[`5esn` In 12[0xabc..][$0..] Where $123456789 Is Not Null] Starts With Any(`7esn` In .12e12[Count(*)..] Where 's_str' Ends With 0.0 Ends With .12e12),``+={`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}[(@usn6 :#usn8)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)][Filter(`` In 0.12[3.9e-1] Where 999[..@usn5][..`1esn`])] On Create Set #usn7:`4esn`:`7esn`,{`7esn`:$`5esn`[7..],`5esn`:`5esn` Contains `6esn`}.#usn8?.usn2.@usn5! =usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]],@usn6 =\"d_str\" =~9e-12 =~`5esn` Merge usn1=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})) On Match Set `4esn` =$`` =~$_usn3,`7esn` =\"d_str\" Ends With `5esn` Ends With 7"), + octest:ct_string("Unwind $_usn3 Is Not Null As @usn6 Union Detach Delete $_usn3 =~$usn1 =~_usn4,false[$1000..$@usn6][7..12] Union Create `5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)),``=(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`` :@usn6:_usn4)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})"), + octest:ct_string("Delete 0[$999..],Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null]) Is Not Null Is Not Null,$#usn7 In .12e-12 Union All Unwind $usn2[4.9e12..false][.0e-0..00] As `5esn` Merge _usn4=((`` :usn1)<-[``?:_usn3|`2esn` *0X0123456789ABCDEF..0{`5esn`:`4esn`[0.0..][.1e-1..]}]->({`7esn`:0[$`1esn`..`8esn`]})) On Create Set #usn7+=(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] On Match Set (@usn6 :usn1{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(`7esn` :`2esn`:`8esn`).`4esn`! =01[..0Xa],#usn7 =$999[.1e1..0.0],`3esn`+=Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null Union All With Distinct Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Limit 9e0[..1e1] Where $usn2[1e-1] With Distinct *,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,false[12e-12..][usn1..] Order By Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]) Desc Limit $`1esn`[`3esn`..] Where $usn1 =~$999 =~$7 Return Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] As usn1,Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) As usn1,_usn4[9e0..$#usn8] Order By $``[`4esn`..][0.0..] Desc,9e0[$usn2][0] Ascending Limit Count ( * )[`7esn`]"), + octest:ct_string("With *,.9e-12[9e1..6.0e0][`1esn`..9e0] As @usn6,$`6esn` In $`3esn` In 9e1 Order By 5.9e-12 Ends With 1e1 Ends With false Descending,$`2esn` Starts With .12e12 Starts With 3.9e-1 Ascending,`6esn`[`6esn`..] Descending Skip $_usn4 =~$_usn4 =~2.9e1 Where $`4esn` In 123456789 In `5esn` Union Match (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))),(`8esn` {`3esn`:#usn8[`2esn`]})"), + octest:ct_string("Optional Match usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),`2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Unwind All(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12) In All(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`]) In {usn1:`3esn` Ends With `6esn`} As usn2 Union All Remove {_usn4:$#usn7 Is Not Null Is Not Null,`3esn`:9.1e-1 In #usn8}._usn4?,Any(`8esn` In 01234567[..0.0][..false] Where 6.0e0 Is Not Null).@usn5,`6esn`($0 Starts With 010)._usn3! Unwind 10.12e12 In `3esn` In $usn2 As #usn7 Merge ((#usn8 :#usn8)) On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] On Match Set `2esn`+=9e-12 In usn2,`7esn`($usn1 Is Not Null).`1esn`! =@usn5 Ends With 's_str' Ends With 01,None(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).@usn5! =$`2esn`[8.1e1] Union All Create `2esn`=((:`4esn`:`7esn`{`3esn`:`1esn`[9.1e-1]})<-[?:@usn6|:_usn3 *07..]-(#usn8 :`2esn`:`8esn`{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:@usn5[...9e12]})-[? *..0X7{_usn3:00[$`6esn`]}]->({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})),#usn7=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}))"), + octest:ct_string("Detach Delete 7.0e-0 Is Null Is Null Return *,(`5esn` :`2esn`:`8esn`)-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]}) Is Null Is Null As `8esn` Limit 010 Is Not Null Is Not Null Union Detach Delete $`1esn`[.9e0][$_usn3],`4esn` Starts With .0e0 Starts With usn2 Optional Match ((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})),`7esn`=(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})"), + octest:ct_string("Return *,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null As usn2 Limit 0X0123456789ABCDEF Contains 8.1e1 Create `6esn`=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}))) Return $999 Ends With .9e-12 As `7esn`,$``[Count(*)] Order By 1.9e0 In $0 Desc,7.0e-0 =~$123456789 =~`8esn` Asc,#usn7[10.12e12..][\"d_str\"..] Desc Union Optional Match `2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),usn2=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where 0e0[.12..][3.9e-1..] Create _usn4=((`5esn` {`2esn`:`1esn` =~0 =~_usn4})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[usn2?{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3}]-(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})),((usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})) Detach Delete Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8),_usn4[7][8.1e1],Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999)[Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])][[_usn3 In ``[$``..] Where @usn5 Ends With 0]]"), + octest:ct_string("Remove Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2|0e-0[...9e12]).@usn5? Union Merge `6esn`=(({@usn5:.9e1 Contains Null,`3esn`:'s_str'[12][00]})) On Create Set `2esn`+=[@usn6 In .9e12 Starts With #usn8 Starts With 00][`7esn`(Distinct $999,$123456789 =~12 =~7)..],All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]).#usn7? ={usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) On Create Set All(usn2 In $_usn3 =~$usn1 =~_usn4 Where 5.9e-12[9e0..]).`2esn`? =0Xa[$usn2..],`3esn`:usn1,`1esn` =$``[`6esn`][00] Unwind [`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] In Any(`7esn` In .12e12[Count(*)..] Where 0Xa[9e0]) In [usn2 In .0e0[$`6esn`..] Where .12e12[`7esn`][#usn8]|7 Is Null Is Null] As @usn6 Delete $12[$12..],usn2 Ends With 10.12e12,1.9e0[$12][``] Union All With *,All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn`,`1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `1esn` Limit {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[..`8esn`(010[@usn5..123.654],8.1e1[usn2..$1000][$7..0x0])][..{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1}] Where 12e12 Is Not Null"), + octest:ct_string("Detach Delete 5.9e-12 =~$@usn6,10.12e12[..1.9e0][..Null] Union Detach Delete Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12])[..None(_usn3 In ``[$``..] Where Null[`2esn`..])][..{`3esn`:.0e-0 Starts With $#usn7 Starts With _usn3,usn2:`6esn` In 9e-12}] Union All Unwind Count(*)[0e0..] As `7esn`"), + octest:ct_string("Detach Delete `3esn`[.12e-12..],Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Union All Merge ``=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}) Union All Delete _usn3 Starts With `2esn`,9e-1[0X0123456789ABCDEF][0],Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0[..$@usn5]|`1esn`[9.1e-1]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where Count(*) Ends With `3esn` Ends With `7esn`] =~Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null) Create `1esn`=((({``:_usn3[$_usn3][usn1]})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(#usn8 {_usn3:$usn2 In usn1 In 1e-1})<-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(_usn3 :#usn8)))"), + octest:ct_string("With *,{`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] As `2esn` Order By Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) Ascending Limit $_usn4[1e-1..8.1e1][`1esn`..1.9e0] Where 12e-12 Contains .9e-1 Contains 9e-1"), + octest:ct_string("Match (_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})<-[@usn6?:`5esn`]->(`8esn` :`7esn`{``:01234567[6.0e0][$usn2],`3esn`:$@usn5[usn1..][$`8esn`..]}) Where `4esn`[..$#usn7][..0X7] With {@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2} Is Not Null Where `1esn`[11.12e-12..] Detach Delete 123456789 Contains .1e-1 Contains .12e12 Union Merge @usn6=(((@usn6 {`8esn`:999[..@usn5][..`1esn`]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]}))) On Match Set Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 999 Starts With .9e12 Starts With 3.9e-1).`6esn`.@usn6!._usn4? =`4esn`[0.0..][.1e-1..],Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).@usn5! =9e1 Contains 4.9e12 Contains .9e0,`1esn`+=00[0e-0...9e-1][1e-1..``] On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1] Merge ((`5esn` :`2esn`:`8esn`)<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})) On Match Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Where 4.9e12 In 5.9e-12 In .9e0 Union All Unwind $`6esn`[$`8esn`..][false..] As `6esn` Merge (#usn8 {_usn3:$_usn4 Contains .12e-12}) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null"), + octest:ct_string("Merge _usn4=((`5esn` {`2esn`:`1esn` =~0 =~_usn4})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[usn2?{`3esn`:``[$``..],@usn5:07 Ends With @usn6 Ends With _usn3}]-(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})) Union Delete 0Xa Ends With #usn8 Ends With usn2,#usn8[3.9e-1.._usn3],_usn4 In `3esn` In 7.0e-0 Delete 0x0 Starts With $`5esn` Starts With 9e-12,.0e0[..12.0][...1e-1] Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2}))"), + octest:ct_string("Merge usn1=((#usn8 :usn2{`5esn`:$_usn4 Starts With 0e-0 Starts With 1e-1})<-[#usn8?{`3esn`:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7],@usn6:01[..0.12]}]-(`3esn` :_usn3:_usn3)) On Create Set `2esn`+=Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],#usn8 =.9e-12[0e0...9e-1] Unwind _usn3(0x0 Starts With 1000,.1e1[.0e0..])[[`` In $_usn3 Is Not Null Where 7.0e-0 =~$123456789 =~`8esn`|999[...12e12][..0]]..``(Distinct)][(`2esn` :`1esn`)-[?{@usn5:6.0e0 Is Not Null}]->({`8esn`:$`7esn` Is Not Null,`5esn`:01234567 Starts With `4esn` Starts With 10.12e12})<-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]->(`` )..({`6esn`:07 Ends With @usn6 Ends With _usn3})<-[:@usn6|:_usn3]->(usn2 :`7esn`)<-[`7esn`*..]-(`7esn` :usn1)] As `4esn` Remove (:@usn5{`4esn`:.0e0[$`6esn`..]})-[? *0X0123456789ABCDEF..0]-({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`)._usn3._usn3!.`4esn`?,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1|9.1e-1 Contains 0xabc).`6esn`"), + octest:ct_string("Merge `2esn`=((#usn8 {#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})) On Match Set ``+=0.12[07..3.9e-1] On Create Set `4esn`+=1000[Null..],{`4esn`:0e0 Is Null Is Null,`8esn`:1.9e0 Is Null Is Null}.`6esn`? =$`2esn` In 0 In 0Xa,`3esn` =_usn4['s_str'..] Match ($`8esn`)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[``?:@usn5]->(_usn3 :#usn8),(:#usn8{`7esn`:0[$`1esn`..`8esn`]})-[`4esn`?:`6esn`|#usn7]->(`1esn` ) Where 123456789 =~$`1esn` =~#usn7 Union All Merge `1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) On Match Set #usn7 =[usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|9e0 =~9e1 =~.12e12] Is Null Is Null,`8esn`+=123.654 Is Not Null Is Not Null,`3esn`+=_usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null Delete `3esn`[.12e-12..]"), + octest:ct_string("Merge `4esn`=((`7esn` :#usn7:_usn3{`3esn`:00[0e-0...9e-1][1e-1..``]})<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1})) Return *,$`5esn`[true],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Skip $`1esn` =~0.0 Delete $usn1[$7..][$0..] Union Merge `7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) On Match Set (`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})-[`4esn`?:`5esn`]->(`1esn` {`3esn`:$`` Is Null Is Null})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(`2esn` :_usn3:_usn3).usn2 =9.1e-1 In #usn8,_usn3+=Null[..07] Unwind 5.9e-12 =~$@usn6 As `2esn` Return 1.9e0 Starts With 's_str' Starts With 9.1e-1,8.1e1 Is Null,.1e1 Starts With .1e-1 Order By 1.9e0 In $0 Desc,7.0e-0 =~$123456789 =~`8esn` Asc,#usn7[10.12e12..][\"d_str\"..] Desc Union Optional Match #usn8=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`3esn`=({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})<-[?{_usn3:00[$`6esn`]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}) Where .9e1[12] Remove ({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[ *07..{#usn8:`1esn`[1000][Null]}]-(usn1 :`2esn`:`8esn`).`5esn`?,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"]._usn4,(:`7esn`{`8esn`:$usn2[0e0][$7],_usn3:.9e-12[0e0...9e-1]})-[_usn4?:``|:`3esn`]-(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn1? *0X0123456789ABCDEF..0{_usn4:00[0e-0...9e-1][1e-1..``]}]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6!"), + octest:ct_string("Merge @usn5=((#usn8 :usn1)<-[`2esn`?:usn2|:`` *010..{`5esn`:$`4esn` Ends With 0e-0}]->(:usn1{`3esn`:$0 =~01234567,@usn5:7 Is Null Is Null})-[@usn5?:usn1|:#usn8 *01234567{`1esn`:7.0e-0[3.9e-1..`1esn`]}]-({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) On Match Set `7esn`:@usn5 On Match Set usn2+=(:`8esn`:#usn7{`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null})<-[`2esn`?:usn2|:`` *0Xa..7]->({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..usn2(Distinct 11.12e-12 In $`1esn` In 9e12)][..Filter(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12])],usn2+=Count(*)[9e-12..0Xa][$123456789..0.0],#usn7+=7.0e-0 Contains Count ( * ) Contains 0Xa Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Where Count(*) Delete Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7)[{usn2:`8esn` Is Null}..[@usn6 In .9e12 Starts With #usn8 Starts With 00]][(:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null})..{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}],999 Ends With $123456789 Ends With $_usn4 Union Merge @usn5=($`8esn`)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[``?:@usn5]->(_usn3 :#usn8) Remove [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]|$`3esn` In 's_str' In $#usn7]._usn4!.#usn8?,`2esn`:`5esn`,[`7esn` In .12e12[Count(*)..] Where 's_str' Ends With 0.0 Ends With .12e12].`4esn`?.``!"), + octest:ct_string("With Distinct *,.9e1 Starts With `4esn` As `5esn`,Count ( * )[`7esn`..] Order By $``[`4esn`..][0.0..] Desc,07 =~7.0e-0 =~`8esn` Descending Skip .9e-12[01][Count(*)] Where 1e-1 =~0.0 =~9.1e-1 Merge (`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6) On Match Set count(@usn6[..$`3esn`][..4.9e12]).`1esn`! =(`1esn` :`3esn`)-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}) In Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) In {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]} On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)]"), + octest:ct_string("Remove {_usn3:10.12e12 In `3esn` In $usn2}._usn3?.`7esn`!,Filter(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0).`2esn`?.``!.`2esn`!,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[..0e0][..$`6esn`]].usn2._usn3! Merge ({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}) On Match Set ({usn2:.9e-1 Is Not Null Is Not Null})<-[?:@usn6|:_usn3 *07..]-(#usn8 :`2esn`:`8esn`{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:@usn5[...9e12]}).`5esn` =(:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null),Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0).``?.#usn7?.@usn6 =9.1e-1 In #usn8,Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..]).usn1? =Extract(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``]|$`5esn` Ends With 9e-1 Ends With $#usn8)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\")..[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0X7[Count(*)][.9e0]|$`8esn`[$``..$`1esn`][9e-12..$7]]][{usn1:`6esn` Is Not Null}..``(.9e-1 =~.9e-1,$_usn4 Starts With 0e-0 Starts With 1e-1)] On Create Set usn2+=01234567[$#usn7][.0],{`3esn`:1.9e0 Is Null Is Null,``:$usn2 Ends With `8esn` Ends With _usn3}.`3esn`? =Null Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null),_usn4+=#usn8[3.9e-1.._usn3] With Distinct {`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]],_usn4[.0e-0][010],Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]] As `3esn` Limit 12.0[$1000..][123456789..]"), + octest:ct_string("Return _usn4 In `3esn` In 7.0e-0 As #usn7 Order By $`` Ends With 6.0e0 Descending,$1000[..01234567][..0X0123456789ABCDEF] Ascending Limit .1e-1[.9e12..usn2][`4esn`..$_usn3] Remove Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $@usn6 Contains Count ( * )).`4esn`?,({`4esn`:.0e0[$`6esn`..]})<-[:`2esn`|`7esn`]-({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`4esn`?:`5esn`]->(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8}).`5esn`?,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]|`3esn` Contains 01234567 Contains .9e-12).`7esn`! Return All(`` In 0.12[3.9e-1] Where `7esn`)[(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(`4esn` :_usn3:_usn3)<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999})][`8esn`(#usn7 Ends With $#usn7 Ends With #usn7,7.0e-0[`6esn`..])],01234567 Ends With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 0[true..$7]) Ends With {`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]} As #usn7,Count ( * )[..1.9e0][..`8esn`] Skip 010 Is Not Null Is Not Null Limit 123456789 Ends With _usn4 Union Unwind `7esn`[.1e1..][`8esn`..] As `3esn` With Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],`2esn` Is Not Null Is Not Null Skip $123456789 Starts With Count ( * ) Limit Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..] Create @usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))),(({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)) Union All Create `1esn`=(((@usn5 :usn2)-[`4esn`?:_usn3|`2esn`]-(:#usn7:_usn3)<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) With Distinct .1e-1[..12e12] Order By Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 6.0e0 Is Not Null) Is Not Null Is Not Null Desc Limit 's_str' In `7esn` In .9e-12"), + octest:ct_string("Merge `7esn`=((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)) On Match Set Filter(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).``.`8esn` =Count ( * )[..`8esn`],usn1 =123456789 Contains .1e-1 Contains .12e12,`8esn`+=`7esn` Ends With _usn4 On Match Set `6esn` ={`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 00[0e-0...9e-1][1e-1..``])],All(`5esn` In 12[0xabc..][$0..] Where _usn3 Ends With 01 Ends With .1e-1).`6esn`? =12.0[..Count(*)][..5.9e-12]"), + octest:ct_string("Unwind All(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12) In All(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`]) In {usn1:`3esn` Ends With `6esn`} As usn2"), + octest:ct_string("Remove Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]).`2esn`!._usn4! Unwind 12[0xabc..][$0..] As @usn5 Merge _usn4=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(`5esn` :`5esn`) On Match Set `6esn`+=Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null"), + octest:ct_string("Create usn1=((`8esn` :_usn3:_usn3)<-[_usn4? *..7{#usn7:Count ( * )[7]}]->(`6esn` :`7esn`)<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)),`3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Union Create ((usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]->(:usn1{usn1:Count(*)[0.12..2.9e1]})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})),(:usn1{``:.9e1[..`5esn`]}) With Distinct 2.9e1 As usn2,.1e-1[$`2esn`..][$`1esn`..] Order By `2esn` Starts With $`7esn` Starts With _usn4 Ascending,0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7] Asc,.12e12[$0] Asc Skip All(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..])[`8esn`()] Where 8.1e1 Contains 0e-0 Contains $_usn3 Union All Remove `3esn`($`5esn`[7..],9e-1[0X0123456789ABCDEF][0]).usn2,`6esn`(Distinct $_usn3 In 123.654 In $`8esn`,$@usn5[$#usn8..][_usn3..]).usn1?.`4esn`?.`8esn`?,`7esn`(Distinct $`3esn` =~4.9e12 =~$7,0xabc[$`4esn`..][`8esn`..]).`8esn`!.``?.#usn8! Detach Delete All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0)[Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"])..Single(usn2 In .0e0[$`6esn`..] Where $`8esn`[#usn7][.9e1])][{usn1:9e-1 Starts With 123.654 Starts With .9e1,#usn8:$_usn4 Is Not Null}..(usn1 :_usn4)<-[_usn4? *07..]-(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})],$`6esn`[$`7esn`][$`4esn`],0X7 =~$123456789 =~$``"), + octest:ct_string("Return Distinct Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12])[..None(_usn3 In ``[$``..] Where Null[`2esn`..])][..{`3esn`:.0e-0 Starts With $#usn7 Starts With _usn3,usn2:`6esn` In 9e-12}] As #usn7,Null[...9e1],Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1|$#usn7 Starts With 10.12e12) In Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) In [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1|Null[`2esn`..]] As `5esn` Order By 999 Ends With $123456789 Ends With $_usn4 Descending"), + octest:ct_string("Unwind 9e12 Ends With 07 As `5esn`"), + octest:ct_string("With Distinct Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) As `1esn`,0[..$@usn5] As `` Order By {`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending Limit 12 Contains _usn3 Where $`2esn` Ends With 2.9e1 Ends With $usn1 Detach Delete 5.9e-12[.1e1][$#usn8]"), + octest:ct_string("Unwind 0Xa Contains $999 Contains 0Xa As _usn4 With All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Where .9e1 Contains Null Union All Create _usn4=(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0}),((`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})) Remove `3esn`(Distinct 9e12[...12e12][..$`2esn`],.9e1[12]).`2esn`!.`7esn`?"), + octest:ct_string("Unwind #usn8[3.9e-1.._usn3] As usn2 Return Distinct (`2esn` :`6esn`:`3esn`)<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789)..Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1])][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|1000[$`6esn`..12.0]['s_str'..$`3esn`]]..Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 9.1e-1 Is Null|9e1 Contains 4.9e12 Contains .9e0)],00 As `8esn`,_usn3 Ends With .12 Ends With `6esn` Order By Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2|0e-0[...9e12])[All(`2esn` In .9e-12[0e0...9e-1] Where .9e-1 Is Not Null Is Not Null)] Descending Limit `4esn` Starts With $_usn3 Starts With .9e-12 Union All Optional Match `3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})),usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})) Where $0 Starts With 010 Optional Match _usn4=((`4esn` {usn2:$`7esn`[..12.0][..0e0]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}))"), + octest:ct_string("Match `1esn`=(((`1esn` :`1esn`)<-[#usn8? *12..0Xa]-(:_usn4{``:$_usn3[1e-1..]})<-[`1esn` *0..010]-(usn2 :``:usn1))) Where 0e0 Is Null Is Null Unwind usn1[12e-12] As #usn8 Union All Create @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Merge (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}) On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1]"), + octest:ct_string("Remove (_usn3 {`5esn`:`8esn` =~.1e1 =~.0})-[?{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]}]-({_usn3:$`8esn` Is Null})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`).@usn6.``! Return Distinct *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By 01 Ends With \"d_str\" Asc,$_usn3[$`8esn`..$`4esn`] Descending,Null[12e-12..] Desc Skip None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) =~[@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] Limit $``[0.12..]"), + octest:ct_string("Merge #usn8=(@usn5 :usn1{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(@usn5 {#usn8:_usn3 Ends With 01 Ends With .1e-1}) Optional Match #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Where 0x0 Starts With $`5esn` Starts With 9e-12 Union All Unwind $`` Is Not Null As _usn3 With Count(*) Is Not Null As `4esn` Skip All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Unwind Extract(@usn6 In 00 =~.9e-12 =~usn1 Where @usn5[$``]|$_usn4[..usn2]) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) Starts With Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where _usn4 Is Null Is Null|`4esn` Is Not Null Is Not Null) As `4esn`"), + octest:ct_string("Remove {@usn5:Count(*)}.@usn6!.`5esn`.usn2!,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2).`8esn`?._usn3!.`8esn`,None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1)._usn4.#usn8! Create (((_usn3 :_usn3:_usn3)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})-[#usn7? *00..123456789]->(usn1 :@usn6:_usn4))),usn1=(:`1esn`)-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)<-[? *999..]->(_usn3 {`6esn`:8.1e1 Is Null}) Union All Unwind 0X0123456789ABCDEF Contains $`6esn` Contains $123456789 As usn2 Optional Match @usn6=(((@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[#usn7? *00..123456789]->(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}))),({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})-[ *01234567]-(`5esn` :`7esn`{`7esn`:$_usn3[.1e1..][$`1esn`..],`5esn`:.12e-12 =~9e12 =~1e-1}) Unwind 12e12 =~#usn7 =~.9e-1 As #usn8 Union All Remove `4esn`(12e12 In $`` In 6.0e0,.9e1[#usn7..]).`5esn`?,@usn6:@usn6:_usn4 Delete 's_str' Ends With $usn1 Merge `1esn`=(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))) On Create Set `8esn`+=Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),`8esn`+=0.0 Is Not Null Is Not Null On Create Set `2esn` =$999[$usn1...0e0]"), + octest:ct_string("Delete Any(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `3esn` Contains $`8esn` Contains 0e0) In (usn2 :#usn8)<-[?:@usn5 *..0xabc]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[_usn3?:`8esn`|:`2esn` *..7{#usn8:0xabc[7.0e-0..][12e12..],_usn3:#usn8 Starts With 11.12e-12 Starts With $`3esn`}]->(`2esn` :_usn3:_usn3) In {`8esn`:usn1[12e-12],@usn6:Count ( * ) In 999} Create ((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})),(((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))) Union All Return Distinct $`2esn` Contains 123.654,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] As usn2,.9e-12[01][Count(*)] Order By (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] Ascending Skip $`3esn` Ends With 010 Ends With $`7esn` Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) Union All Detach Delete 00[0e-0...9e-1][1e-1..``],9e12[...12e12][..$`2esn`],7.0e-0 Contains Count ( * ) Contains 0Xa"), + octest:ct_string("Create ((:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[? *12..0Xa]-(`2esn` :#usn7:_usn3)<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})) Unwind Count ( * )[12e-12] As @usn6 Unwind .9e-1[3.9e-1]['s_str'] As `7esn` Union Remove [`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0]._usn3?._usn3?,(:`3esn`{usn1:123.654 Ends With 0Xa Ends With .12e12})-[?{`3esn`:$`6esn`[$`7esn`][$`4esn`]}]->(:_usn4{`7esn`:9.1e-1 =~@usn5 =~Count ( * )}).`5esn`?.usn2,`2esn`(Distinct 12e-12[`7esn`..][5.9e-12..],0.0[$1000][3.9e-1])._usn4!.`2esn`.``! Return Distinct *,_usn3[`2esn`..10.12e12][9e1..true] Remove (usn2 :usn1{`7esn`:Count(*) =~`5esn` =~$usn2})-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12}).@usn5,Filter(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`).`3esn`,Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1).@usn5.`4esn`! Union With Distinct *,true Is Null Is Null As _usn3,All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)[{`5esn`:usn1[0.12..1000]}..All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)][All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12)..#usn8(0xabc In 10.12e12)] As `1esn` Skip All(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Starts With Filter(_usn3 In ``[$``..] Where .0e0[1e1..][01234567..]) Starts With `3esn`(Distinct) Limit Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Where 123456789 Ends With _usn4"), + octest:ct_string("Unwind $999 In 0.0 As `1esn` Unwind $999 In 0.0 As `1esn` Remove Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7).`2esn`.`3esn`.`7esn`!,`7esn`:`7esn` Union Merge _usn4=((`` :usn1)<-[``?:_usn3|`2esn` *0X0123456789ABCDEF..0{`5esn`:`4esn`[0.0..][.1e-1..]}]->({`7esn`:0[$`1esn`..`8esn`]})) On Create Set #usn7+=(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] On Match Set (@usn6 :usn1{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(`7esn` :`2esn`:`8esn`).`4esn`! =01[..0Xa],#usn7 =$999[.1e1..0.0],`3esn`+=Any(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12) Is Not Null Is Not Null"), + octest:ct_string("Detach Delete {#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]),(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Is Not Null With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Skip usn2 Starts With $_usn3 Where 10.12e12[12e12..0X7]"), + octest:ct_string("With $12[.9e-1] As `6esn` Order By (:`6esn`:`3esn`{``:9e-12 In 5.9e-12,usn2:.9e-12 Ends With `1esn` Ends With 123.654})<-[`7esn`?]->(`5esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(#usn8 {_usn3:$_usn4 Contains .12e-12}) Ends With `4esn`($usn2 In usn1 In 1e-1,01[Count(*)..0e-0][7..$`2esn`]) Ascending Where $7 Is Null Is Null Return *,_usn4['s_str'..] As `2esn`,Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Order By .0e0[1e1..][01234567..] Descending,5.9e-12[2.9e1][9e0] Desc Skip Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7)"), + octest:ct_string("Remove [usn2 In $_usn3 =~$usn1 =~_usn4 Where 0xabc In 10.12e12|9e-1 Starts With 123.654 Starts With .9e1].`2esn`?.`5esn` Merge @usn6=((:_usn3:_usn3{usn1:.9e1[12]})) On Create Set `4esn` =9e-12 In 0X0123456789ABCDEF In $999 Match ``=((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})),#usn8=((`3esn` {#usn8:`7esn` Is Null})-[_usn4 *999..]->(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]})) Union Unwind \"d_str\"[12e12..][4.9e12..] As `2esn` Remove Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7).``?,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null).@usn5?,[`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|`1esn`[Count ( * )][5.9e-12]].@usn5"), + octest:ct_string("Remove [`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12e12[..123456789][..false]|12[0xabc..][$0..]].@usn6!,[@usn6 In .9e12 Starts With #usn8 Starts With 00].usn2?,{usn2:$usn1[$12..]}._usn3 Union Merge (`8esn` :_usn3:_usn3)-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})-[ *..01]->(#usn8 :#usn7:_usn3)"), + octest:ct_string("With Distinct *,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1) Ends With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1) Merge #usn8=(:@usn6:_usn4$`6esn`)<-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :#usn8{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})<-[`1esn`?:#usn7|:`8esn` *..01]-(:`6esn`:`3esn`) On Create Set @usn6 =$`3esn` Remove Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `` =~$`5esn`).`1esn`!._usn4!.#usn8? Union All Optional Match usn1=(@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),#usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12})"), + octest:ct_string("Create usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),`2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Optional Match ((_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})),((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) Detach Delete `8esn`[..7.0e-0][..0xabc],{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)],[_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null Union All Delete $_usn4[1e-1..8.1e1][`1esn`..1.9e0],0e-0[$`2esn`][8.1e1] Unwind 7.0e-0[0X7..$`2esn`][`4esn`..`7esn`] As `7esn` Detach Delete `` =~$`5esn`,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12)[{_usn4:@usn6 In 3.9e-1 In 9e-12}][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]|10.12e12[12e12..0X7])],`` Ends With .9e-1 Ends With 9e-12 Union All Optional Match #usn7=(:usn1{``:.9e1[..`5esn`]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})<-[`8esn`? *0x0..]->({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null}) With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Limit #usn7[10.12e12..][\"d_str\"..] Where 9e12[...12e12][..$`2esn`] Delete $usn1[$7..][$0..]"), + octest:ct_string("Merge _usn4=(({_usn3:$`5esn`[7..]})) Delete All(_usn3 In ``[$``..] Where .12e-12 Ends With $`7esn`)[`3esn`(Distinct 0[true..$7],`3esn`[$0..][.9e1..])..],$#usn8[$@usn5][11.12e-12] Union All Remove [`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12e12[..123456789][..false]|12[0xabc..][$0..]].@usn6!,[@usn6 In .9e12 Starts With #usn8 Starts With 00].usn2?,{usn2:$usn1[$12..]}._usn3"), + octest:ct_string("Return Distinct *,'s_str' =~.9e1 =~3.9e-1 As usn2,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `6esn` Order By `3esn` Starts With 's_str' Asc,8.1e1[$`5esn`][0e0] Descending,$usn2 Contains $`4esn` Contains true Ascending Limit [`4esn` In 01234567 Ends With $1000 Ends With $#usn7] In (#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]}) In {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]} Detach Delete 0x0,$``[`6esn`][00],'s_str' Ends With $usn1 Union All Match (({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})) Create ((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})),`7esn`=((`2esn` :usn2)-[usn2:`4esn`|:@usn5 *01234567]->(:`5esn`{`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567})<-[:#usn8|:`4esn`{usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]}))"), + octest:ct_string("Detach Delete 10.12e12 =~12e-12 =~0X0123456789ABCDEF,1e1 Is Not Null Is Not Null Optional Match ((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Union Remove `5esn`().`7esn`.`7esn`.usn2,{`5esn`:$#usn8[$1000..],#usn7:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]}.`4esn` With *,{`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As #usn7,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Limit [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]][{`2esn`:$`8esn` In 9e-12 In 3.9e-1}..{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}][Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..])..Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Optional Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Where .0e0[1e1..][01234567..] Union All Merge _usn4=((`6esn` :#usn7:_usn3)<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})<-[`8esn`?:`7esn`|@usn6{@usn5:0X7 Starts With 1e1 Starts With $12}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) On Create Set @usn5 =9e-12 Ends With `7esn` Remove (`` :`3esn`{`5esn`:``[$``..]})-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}).`7esn`,(`8esn` {#usn8:1e1[Null..][.12..]})-[`2esn`?{@usn5:`6esn` Is Not Null Is Not Null,_usn4:9e12 Contains $@usn6 Contains Count(*)}]->({usn1:`6esn`[0x0..@usn5][$1000...9e-12]}).``?.``!.`8esn`!,{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}.@usn5? Remove All(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).``!,{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null}.usn2?"), + octest:ct_string("Delete 0 Contains $`6esn` Contains #usn7,1e1 Union All Optional Match (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))),(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Optional Match ((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Where 1e1[Null..][.12..] With Distinct Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,07 =~_usn4 =~.9e12 As `` Order By 5.9e-12[9e0..] Ascending,#usn8[`2esn`] Desc,`7esn` Ends With 9e-1 Ends With usn1 Ascending Skip $#usn7 Starts With #usn7 Limit $123456789[$_usn3..][$usn2..]"), + octest:ct_string("Optional Match (((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999}))),(`` :``:usn1{usn2:12.0[..123456789][..01]}) Where 12e-12[9e0..1.9e0] Merge `6esn`=(usn2 {_usn4:$999 Ends With .9e-12})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``}) On Create Set Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3|`4esn` Starts With .0e0 Starts With usn2).`3esn`?.`4esn`!.`8esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct),_usn4+=0X7[$999...12e12][12..`2esn`],`7esn` =6.0e0 In 12 On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} Union All Return Distinct _usn4(0[true..$7]) =~Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`) =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0) As _usn3,Null Is Not Null Is Not Null Remove All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1).`1esn`?"), + octest:ct_string("Create usn1=(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1}) Union All Merge usn1=(`5esn` :`1esn`) Union All Remove Filter(`7esn` In .12e12[Count(*)..] Where @usn5[$_usn3..]).usn2? Create `8esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Create @usn6=((`5esn` :`6esn`:`3esn`{usn2:$`4esn`[..2.9e1][..07],`6esn`:#usn7[10.12e12..][\"d_str\"..]})<-[`7esn`*..]->($@usn6)<-[:_usn3|`2esn` *010..]-(`` :usn1))"), + octest:ct_string("With *,Count(*)[..Count(*)][..9e0] Order By 07 Starts With usn1 Starts With 010 Ascending,7.0e-0[..$`7esn`][..Null] Descending,$usn2[8.1e1...9e-1][.1e-1..11.12e-12] Desc Skip Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] Limit 999 Ends With $123456789 Ends With $_usn4"), + octest:ct_string("With usn2 =~$`7esn` =~$`8esn` As _usn3 Order By $7 In .9e1 In $`` Desc,$`6esn` Starts With `4esn` Descending,8.1e1 Starts With .9e12 Starts With `7esn` Desc Skip Extract(_usn4 In Count(*)[9e1..][12e-12..] Where $_usn4[..usn2]|`1esn` Starts With 999 Starts With 3.9e-1) =~(`7esn` :`7esn`{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[``? *1000]->(usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}) =~Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa[$usn2..]) Limit [`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]|.1e-1 Ends With $`8esn` Ends With .9e0] Starts With {#usn7:1e-1[..2.9e1],`1esn`:.9e1[#usn7..]} Optional Match @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`))) Where 0X7[$999...12e12][12..`2esn`]"), + octest:ct_string("Merge (:#usn8{_usn4:$999 Ends With .9e-12})<-[?{_usn4:$#usn7 Is Not Null Is Not Null,`3esn`:9.1e-1 In #usn8}]->(#usn8 {_usn3:$usn2 In usn1 In 1e-1}) Unwind ``(Distinct `4esn`[$1000..$``][$_usn4..$_usn4],.1e-1 Starts With 1000 Starts With $`1esn`) In [usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]|`4esn` Starts With $_usn3 Starts With .9e-12] In {`6esn`:``[$``..]} As `6esn`"), + octest:ct_string("Delete 12e-12[.0..] Union With $usn1 Is Null As `5esn`,123.654 Starts With Count ( * ) As `4esn` Skip .9e-1 Ends With `8esn` Where 7.0e-0 =~$12 =~5.9e-12 Union With Distinct `5esn`[$`4esn`] As @usn6,.0e0 Is Null Is Null As _usn4,1.9e0 Starts With .9e0 Order By @usn5 Contains _usn3 Contains 00 Descending,$`6esn` Ends With 12 Ascending"), + octest:ct_string("Detach Delete {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null),\"d_str\" Starts With `6esn` Starts With 1.9e0,`5esn` Contains 1.9e0 Contains 9e0 Create (((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})<-[@usn5 *00..123456789{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]})-[`3esn`:`3esn`|:_usn3]-({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}))),(`5esn` :`5esn`) Union Unwind usn1(Distinct 3.9e-1[.0e0..][07..],9.1e-1 In #usn8)[..(@usn6 )<-[usn1?*]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]})][..[@usn6 In 00 =~.9e-12 =~usn1 Where $7 Is Null Is Null]] As #usn8 Optional Match (:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[:usn1|:#usn8 *010..{usn2:0[..$@usn5],@usn5:$#usn8[$1000..]}]-($`2esn`)<-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`6esn` {`4esn`:Count ( * )[`7esn`..]}),((#usn8 :`3esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(:`6esn`:`3esn`{_usn3:Count ( * )[7]})) Where 1000[$`6esn`..12.0]['s_str'..$`3esn`] Union All Merge `1esn`=((@usn6 :usn2)<-[`7esn`?:`3esn`|:_usn3 *..0xabc]->(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0})) On Create Set [@usn6 In .9e12 Starts With #usn8 Starts With 00|#usn7[..0X0123456789ABCDEF]]._usn4?.`4esn` ={usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])],Single(`5esn` In 12[0xabc..][$0..] Where $123456789 Is Not Null).usn2? =Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0[..$@usn5]|`1esn`[9.1e-1]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where Count(*) Ends With `3esn` Ends With `7esn`] =~Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null),`3esn`+=$`5esn` Is Not Null Is Not Null On Match Set None(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).@usn5! =$`2esn`[8.1e1] Remove {_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}.`1esn`"), + octest:ct_string("Remove ({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[ *07..{#usn8:`1esn`[1000][Null]}]-(usn1 :`2esn`:`8esn`).`5esn`?,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"]._usn4,(:`7esn`{`8esn`:$usn2[0e0][$7],_usn3:.9e-12[0e0...9e-1]})-[_usn4?:``|:`3esn`]-(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn1? *0X0123456789ABCDEF..0{_usn4:00[0e-0...9e-1][1e-1..``]}]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6!"), + octest:ct_string("Remove Any(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).`2esn`!,({``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-(:`3esn`{_usn4:Count(*) =~`5esn` =~$usn2,`7esn`:$123456789[$_usn3..][$usn2..]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`).@usn6.@usn5? Return Distinct *,'s_str' =~.9e1 =~3.9e-1 As usn2,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `6esn` Order By `3esn` Starts With 's_str' Asc,8.1e1[$`5esn`][0e0] Descending,$usn2 Contains $`4esn` Contains true Ascending Limit [`4esn` In 01234567 Ends With $1000 Ends With $#usn7] In (#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]}) In {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]} Union Return Distinct *,1000[Null..] As `1esn`,.9e1[#usn7..] As `7esn` Order By #usn8[`2esn`] Asc,.9e0 Is Null Asc,$`1esn` Starts With Count(*) Starts With $`8esn` Descending Limit 0.0[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])..] Return *,Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),3.9e-1[.0e0..][07..] Order By 2.9e1 Starts With 12e-12 Starts With 0.0 Asc,.0e0 Starts With $@usn6 Starts With Null Descending Create (usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}),`3esn`=((@usn6 :`6esn`:`3esn`)<-[`1esn`? *0X0123456789ABCDEF..0{`4esn`:9e1 Ends With .9e0}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}))"), + octest:ct_string("Return Distinct 0xabc[$`4esn`..][`8esn`..] As #usn7 Order By Any(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\") Is Null Is Null Desc,#usn8[..#usn7][..@usn6] Ascending Skip `2esn`[..9.1e-1][..0xabc] Union Create @usn5=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))),@usn6=(((@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[#usn7? *00..123456789]->(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]})))"), + octest:ct_string("With 1e-1 =~0.0 =~9.1e-1 As usn1,Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null,Count(*) In .9e-12 In $usn1 As _usn4 Order By $`7esn`[..12.0][..0e0] Asc,.9e0[$7][1e1] Descending,8.1e1[usn2..$1000][$7..0x0] Descending Skip Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] Limit `1esn`[11.12e-12..] Where $`2esn` Contains false Contains 123456789 Delete Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]),.9e1[Count(*)..$`3esn`] Detach Delete 10.12e12 =~12e-12 =~0X0123456789ABCDEF,1e1 Is Not Null Is Not Null Union Create (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}) Remove _usn3(Distinct 7.0e-0 Is Null Is Null,$@usn6 Contains Count ( * )).`6esn`?,{`7esn`:9e12 =~.12e12,usn2:$999 Ends With .9e-12}.@usn6?,$`1esn`._usn3!.`3esn`?.@usn6 Union With *,{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1} In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) As _usn4,$#usn7 Is Not Null As `7esn` Where `1esn` Starts With 999 Starts With 3.9e-1"), + octest:ct_string("Return `6esn`[..$``][..4.9e12] Unwind .12[.0e-0..] As `3esn` Merge ((`3esn` {#usn8:`7esn` Is Null})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})) On Create Set {`1esn`:$`1esn`[.9e0][$_usn3]}.`8esn`? =`1esn`[Count ( * )][5.9e-12],`8esn`+=123.654 Ends With Count(*)"), + octest:ct_string("Delete ``(0X0123456789ABCDEF Contains 8.1e1,Count ( * )[..123456789][...0e0])[..All(usn2 In .0e0[$`6esn`..] Where .0e0 In 10.12e12 In $`5esn`)][..(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})],All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)],`2esn` Starts With $`7esn` Starts With _usn4 Union All Detach Delete _usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null"), + octest:ct_string("Detach Delete `4esn`[0.0..][.1e-1..],.0e0[$`6esn`..] Merge (`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}) On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] With Distinct *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5[..1e-1] Union All Remove `7esn`:`3esn` Union Unwind @usn5 Ends With 's_str' Ends With 01 As `7esn` With .9e0 Is Null Is Null As #usn7,$12[`1esn`][1e1] As @usn6,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As usn2 Order By 9e-1 =~6.0e0 =~`` Descending,999[0.12..8.1e1] Ascending Limit (`3esn` {`7esn`:`4esn` Starts With $_usn3 Starts With .9e-12})-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}) Is Null Is Null Where .9e1[...12e12] With 1e-1 =~0.0 =~9.1e-1 As usn1,Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null,Count(*) In .9e-12 In $usn1 As _usn4 Order By $`7esn`[..12.0][..0e0] Asc,.9e0[$7][1e1] Descending,8.1e1[usn2..$1000][$7..0x0] Descending Skip Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] Limit `1esn`[11.12e-12..] Where $`2esn` Contains false Contains 123456789"), + octest:ct_string("Create usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) Union Unwind true Is Null Is Null As usn1 Unwind `5esn`[$`4esn`] As `4esn` Detach Delete None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),`2esn`(Distinct) Starts With Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..]) Starts With (:`8esn`:#usn7{_usn3:$_usn4 Contains .12e-12})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0}) Union Remove None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1).`8esn`!.`2esn`!.``?,`7esn`:@usn5"), + octest:ct_string("Remove `4esn`:_usn4,(`5esn` {usn1:true Contains 0x0})<-[?:usn2|:``]->(@usn5 :usn1{usn1:.9e1[12]})-[`2esn`?:#usn8|:`4esn`]-(:@usn6:_usn4{`2esn`:$usn1[$7..][$0..]}).@usn5!.#usn8!.`2esn`,{`7esn`:7.0e-0[.._usn4][..0X7],usn1:8.1e1 Is Null Is Null}.`5esn`? Unwind $`2esn` Contains false Contains 123456789 As `8esn` Merge `8esn`=(`3esn` :#usn7:_usn3)<-[*{`6esn`:1e1 In .1e-1 In .0,#usn8:_usn3[`2esn`..10.12e12][9e1..true]}]->(`2esn` :usn2)<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}) Union All Optional Match (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Where 999[0.12..8.1e1]"), + octest:ct_string("Merge ((#usn8 :`3esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(:`6esn`:`3esn`{_usn3:Count ( * )[7]})) On Create Set `7esn` =`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)],@usn6(Distinct true Starts With 2.9e1 Starts With 9e1).@usn5.`2esn` =07[usn1..] Union All Merge ((usn1 )-[`5esn`{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})<-[ *00..123456789{`2esn`:00,`4esn`:_usn3 Ends With .12 Ends With `6esn`}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})) On Create Set `8esn`+=Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]),`8esn`+=0.0 Is Not Null Is Not Null On Match Set {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]}.#usn8?.`4esn`?.@usn6? =.9e12[$usn2..][7..],[_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]].`8esn`.@usn6? =0X7 =~$123456789 =~$`` Create @usn6=(((:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[`3esn`?:_usn4|`1esn`]-(_usn3 :`6esn`:`3esn`{`3esn`:.9e-1[12.0]})<-[_usn4{@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]}]-(`4esn` :`1esn`)))"), + octest:ct_string("Unwind `7esn` Is Not Null As #usn7 Merge `7esn`=({_usn3:$`8esn` Is Null}) On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 On Create Set [@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]].`3esn`?.`6esn`! =Single(usn1 In 7.0e-0[.._usn4][..0X7] Where 0Xa[$usn2..])[(usn1 )<-[`8esn`?:usn2|:``]->(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})..0Xa],`2esn`+=$`2esn` Contains false Contains 123456789,`3esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)] Optional Match (usn2 {`8esn`:9.1e-1[Count(*)..][5.9e-12..],#usn8:5.9e-12[$`4esn`]})<-[`1esn` *0..010]-(:usn1{#usn7:$7 Starts With Null Starts With `6esn`,`8esn`:.9e-1 =~.9e-1})<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}),`3esn`=((@usn6 :`6esn`:`3esn`)<-[`1esn`? *0X0123456789ABCDEF..0{`4esn`:9e1 Ends With .9e0}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})) Where 1e-1 =~0.0 =~9.1e-1 Union All Create @usn5=((#usn8 :usn1)<-[`2esn`?:usn2|:`` *010..{`5esn`:$`4esn` Ends With 0e-0}]->(:usn1{`3esn`:$0 =~01234567,@usn5:7 Is Null Is Null})-[@usn5?:usn1|:#usn8 *01234567{`1esn`:7.0e-0[3.9e-1..`1esn`]}]-({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) With 11.12e-12 Is Null Is Null As `4esn`,#usn8 Starts With 11.12e-12 Starts With $`3esn` As `2esn` Skip 123.654 Ends With 0Xa Ends With .12e12 Union With Distinct Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8),``(@usn6[..$`3esn`][..4.9e12],0x0 Contains $`1esn` Contains 0.0)[{`6esn`:999[...12e12][..0]}][[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-12[01][Count(*)]|.9e1[Count(*)..$`3esn`]]] As `7esn`,usn2 =~$`7esn` =~$`8esn` Order By $7 Contains _usn4 Contains $`1esn` Ascending,{#usn7:5.9e-12 =~$@usn6} In `3esn`(Distinct usn1[0.12..1000]) In Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..]) Asc,`5esn`[0X7..][12..] Asc Limit `1esn`[..0x0][..\"d_str\"] Merge #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}))"), + octest:ct_string("Unwind .1e-1 Contains 1e1 Contains $`6esn` As `2esn` Return *,$#usn7 Is Not Null Is Not Null As `1esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4 Order By 9e12 Ends With 07 Ascending,\"d_str\" =~9e-12 =~`5esn` Desc,Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999)[Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])][[_usn3 In ``[$``..] Where @usn5 Ends With 0]] Descending Skip `` =~$`5esn`"), + octest:ct_string("Remove (`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1})<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}).@usn6.#usn8?,[_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]].`1esn` Union Create `3esn`=((:`2esn`:`8esn`)<-[?:#usn7|:`8esn` *..01]->(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}))) Optional Match (@usn5 {_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2)-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]-(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12}),((`5esn` :`6esn`:`3esn`{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null})-[? *0..010{usn1:#usn7[..0X0123456789ABCDEF],`1esn`:12e-12[.0..]}]-(:#usn8{`7esn`:0[$`1esn`..`8esn`]})) Where 12.0 Contains $_usn4 Contains $usn2 Union Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where $usn1 =~$999 =~$7|$_usn3 Is Not Null Is Not Null).`4esn`!.#usn8,Filter(`` In 0.12[3.9e-1] Where `2esn` Starts With $`7esn` Starts With _usn4).usn1 Merge (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))) On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} On Match Set `5esn`:`4esn`:`7esn`,`7esn` =$usn1 Starts With 12 Starts With 12e12 Create ((`5esn` :`2esn`:`8esn`))"), + octest:ct_string("Merge usn2=(usn2 {#usn7:$_usn3 =~$usn1 =~_usn4})<-[:`4esn`|:@usn5 *00..123456789]-(`1esn` :`5esn`)-[``?:``|:`3esn` *01234567]->(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]}) On Match Set usn1 ={usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])] On Create Set ``+=$`8esn` In .1e1 In 010,Single(`8esn` In 01234567[..0.0][..false] Where .9e12 =~`5esn` =~07).@usn5! =9e-1 Starts With 123.654 Starts With .9e1 Merge `1esn`=((#usn8 :_usn3:_usn3)<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Match Set `6esn` =.1e1 =~10.12e12 On Match Set #usn8 =11.12e-12[010..11.12e-12],_usn4(Distinct $1000 Contains 01234567 Contains 0X7).`6esn`.`3esn`? =``[..$#usn7] Union All Unwind `2esn` Is Not Null Is Not Null As #usn7 Create #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}),`1esn`=(:usn1{usn1:Count(*)[0.12..2.9e1]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}) Delete (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Starts With `7esn`(Distinct $`5esn` Is Null Is Null,$`4esn` Ends With 0e-0) Starts With Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 5.9e-12 Ends With 1e1 Ends With false),None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),4.9e12 =~8.1e1 =~$`8esn`"), + octest:ct_string("Optional Match ((`3esn` {#usn8:`7esn` Is Null})<-[{`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}]-(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})),((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Match (({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)),((`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]})) Union All Return Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 123456789 Ends With _usn4) =~{usn2:$``[`6esn`][00],#usn7:.12e12[$12..4.9e12][11.12e-12..9e12]} =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`5esn` Is Null Is Null),1e1 Skip 8.1e1 Starts With 9e-12 Starts With $1000 With Distinct $#usn7 =~8.1e1 As #usn7,None(`` In $_usn3 Is Not Null Where .9e1[...12e12])[..(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7})][..{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}] As `4esn`,(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]) Order By Null Starts With 9e1 Starts With `` Asc,12[123456789][5.9e-12] Desc,.9e-1 =~.9e-1 Descending Skip #usn7[@usn5..0.0][`5esn`..9e1] Merge `2esn`=((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}))"), + octest:ct_string("Unwind true Starts With 2.9e1 Starts With 9e1 As _usn4 Delete true In $0 In @usn5 Return Count(*) Is Not Null Is Not Null As usn2,$`3esn` =~4.9e12 =~$7,.9e0 Is Not Null As `6esn` Skip Any(`8esn` In 01234567[..0.0][..false] Where $_usn3 Contains 1e1 Contains .12) =~0.0 =~Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`) Union All With .0e0[$`1esn`][.9e-12] As `6esn`,\"d_str\"[$123456789..][0X7..] Order By All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Asc,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Limit (usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})-[`4esn`?:`6esn`|#usn7]->(`1esn` )[[`2esn` In .12e-12[$@usn6..5.9e-12]|$#usn7 Starts With 10.12e12]..] Remove Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2|0e-0[...9e12]).@usn5?,All(`` In 0.12[3.9e-1]).#usn8!.@usn5!.`2esn`!,None(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7).``!.`7esn`?.`6esn`! Unwind Count(*) Is Not Null Is Not Null As `8esn` Union Unwind 12e12 =~#usn7 =~.9e-1 As #usn8 Remove (`` :@usn6:_usn4{`4esn`:00 Is Not Null Is Not Null})-[`1esn`:usn1|:#usn8]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}).`6esn`!.@usn5?._usn4?,@usn5:_usn4,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]).`2esn`!.`8esn`!._usn3!"), + octest:ct_string("Detach Delete .1e1[.0e0..],12 In Count(*) In 0e0 Create ((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1))),_usn4=((_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))"), + octest:ct_string("Match (:_usn3:_usn3{usn1:Null Starts With $`4esn` Starts With $#usn7}),`7esn`=((`8esn` {@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})) Where 7.0e-0 Starts With $7 Starts With true"), + octest:ct_string("Create (((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) Return Distinct 123.654 Is Not Null Is Not Null As `1esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Ascending Skip 0.0[0x0..0.12]['s_str'..false] Limit $`7esn`[..12.0][..0e0] Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))"), + octest:ct_string("Optional Match usn1=(_usn4 :`7esn`{@usn6:.12e-12[999...12]})<-[usn1? *123456789..0x0]-(@usn5 ),((_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0)-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(@usn5 {#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]})) Where $`2esn` In 0 In 0Xa Remove {`1esn`:0.12[07..3.9e-1]}.usn1.usn1!,(:`6esn`:`3esn`{_usn3:Count ( * )[7]})<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3)-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})._usn4._usn3?,Extract(`7esn` In .12e12[Count(*)..] Where 10.12e12[$`5esn`]|$`3esn`[..`1esn`][..$`7esn`]).@usn6! Unwind .12[.0e-0..] As `3esn` Union Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) Union All Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where `1esn`[9.1e-1]|$`8esn` Starts With `2esn`).``!.`5esn`.``!"), + octest:ct_string("Unwind Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `2esn` Optional Match _usn4=((`4esn` {usn2:$`7esn`[..12.0][..0e0]})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})) Merge `3esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1) On Match Set `7esn`+=$`` In $7 In 9e-1,usn1+=$12 Starts With 1e-1 Starts With $@usn5,Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0[01..`5esn`]).`2esn`?.#usn8! =Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true|Count(*)[9e1..][12e-12..]) Is Null On Match Set All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 999 =~0Xa =~9e0).`1esn`?.`2esn`? =()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)]"), + octest:ct_string("Detach Delete 9e-1 Ends With 5.9e-12,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) Remove All(`5esn` In 12[0xabc..][$0..] Where .0e0[1e1..][01234567..]).#usn8!,Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]).`6esn`,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 's_str'[12][00]|$`8esn`[#usn7][.9e1]].#usn7?.`4esn`?"), + octest:ct_string("Create ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6) Match ((:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[? *12..0Xa]-(`2esn` :#usn7:_usn3)<-[`8esn`? *..01{_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6}]->({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})),((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`5esn`]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)) Unwind 10.12e12 In `3esn` In $usn2 As #usn7 Union All Delete 8.1e1 Is Not Null,{`4esn`:5.9e-12[9e0..]} =~None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12) Merge #usn8=(:@usn6:_usn4$`6esn`)<-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(`` :#usn8{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})<-[`1esn`?:#usn7|:`8esn` *..01]-(:`6esn`:`3esn`) On Create Set @usn6 =$`3esn` Detach Delete _usn4 Ends With .0 Ends With 7,All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 10.12e12[12e12..0X7])[..Extract(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..])]"), + octest:ct_string("With *,9e0[.0e-0] As _usn4 Skip 0X7[`4esn`..][`3esn`..] Where 00 =~.9e-12 =~usn1 Return *,Null[..07],5.9e-12 =~$@usn6 As `7esn` Skip #usn8 In $#usn8 In \"d_str\" Merge ((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Union Return *,.9e1 Starts With `4esn` As `5esn`,Count ( * )[`7esn`..] Order By $``[`4esn`..][0.0..] Desc,07 =~7.0e-0 =~`8esn` Descending Skip .9e-12[01][Count(*)] Union Optional Match (({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})) Where 5.9e-12 =~$@usn6"), + octest:ct_string("Return Distinct *,$7 Contains _usn4 Contains $`1esn`,0e-0[$`2esn`][8.1e1] As @usn5 Detach Delete $1000 Ends With 3.9e-1,Count ( * )[7],1.9e0 In $0 Match (((#usn8 :`7esn`)<-[?:#usn7|:`8esn` *..01]->(:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})-[#usn8?:`3esn`|:_usn3{`3esn`:.9e-1[12.0]}]->(#usn8 {`2esn`:usn2 Ends With .0}))),(`8esn` {`3esn`:#usn8[`2esn`]}) Union All Optional Match ((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :_usn3:_usn3)),@usn5=((:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]})-[?{@usn6:`8esn`[..7.0e-0][..0xabc],`1esn`:12.0 =~$@usn5 =~8.1e1}]-(`4esn` :`2esn`:`8esn`)-[`8esn`:`4esn`|:@usn5{#usn7:Count(*)}]-({`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Remove None(`5esn` In 12[0xabc..][$0..] Where .9e0 Is Null Is Null).`4esn`?.`7esn`!,{`4esn`:9.1e-1 Is Null}.`` Delete 10.12e12[0Xa..999][1000..Count(*)],2.9e1"), + octest:ct_string("Delete 01234567[6.0e0][$usn2] Return Distinct *,$usn1 Contains `7esn` Contains .9e12,.9e12 Starts With 6.0e0 Starts With .1e1 Order By `1esn`[11.12e-12..] Asc Skip 9e12 Contains $@usn6 Contains Count(*) Limit `5esn` Contains `6esn` Union All Detach Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..],.1e-1 Contains 1e1 Contains $`6esn` With *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By .12e-12 =~9e12 =~1e-1 Desc,11.12e-12 =~$`4esn` =~.12e12 Descending Limit [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null Where `2esn` =~usn1 Union Delete usn1(Distinct)[({@usn5:01234567[6.0e0][$usn2],`7esn`:010 Starts With 0.0 Starts With .0e0})<-[``?:#usn8|:`4esn`]-(:usn1{@usn5:Count(*)})..Filter(`5esn` In 12[0xabc..][$0..] Where 010[11.12e-12..])],0e0[.12..][3.9e-1..] Match (:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}),_usn3=((@usn5 :usn1)-[? *123456789..0x0{`8esn`:`2esn` Is Not Null Is Not Null}]->(`` :usn1))"), + octest:ct_string("Unwind _usn4 Is Null Is Null As usn2 Return _usn4 In `3esn` In 7.0e-0 As #usn7 Order By $`` Ends With 6.0e0 Descending,$1000[..01234567][..0X0123456789ABCDEF] Ascending Limit .1e-1[.9e12..usn2][`4esn`..$_usn3] Union With Distinct *,0 Starts With 0Xa Starts With $0 Order By None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4) Asc,$``[`5esn`..][`2esn`..] Desc,0e-0[$`2esn`][8.1e1] Asc Match @usn5=((@usn6 :`6esn`:`3esn`)<-[`6esn`? *..0xabc{``:$_usn4[Null]}]->(:#usn7:_usn3{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((:#usn8{`8esn`:usn1[12e-12],@usn6:Count ( * ) In 999})<-[?]->(:@usn5{usn2:$usn1[$12..]})-[ *..01]->(#usn8 :#usn7:_usn3)) Optional Match ((#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[`3esn`?:`5esn`]->(`2esn` )) Where .0e0 In 10.12e12 In $`5esn`"), + octest:ct_string("Unwind All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] As `` Create `7esn`=({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}),`2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Delete .0e0[..1e1][..$1000]"), + octest:ct_string("With Distinct *,_usn3[`2esn`..10.12e12][9e1..true] Where .9e1[#usn7..] Optional Match `7esn`=((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)),``=(({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})) Union Return $`6esn`[..12e12][.._usn3] As `5esn`,($@usn6)-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]}) =~`5esn`(Distinct 0e-0[$`2esn`][8.1e1]) As _usn4 Unwind .12[.0e-0..] As `3esn` Union All With *,`8esn`(Distinct $999 Ends With .9e-12,Null Is Not Null Is Not Null)[.._usn3(Distinct 5.9e-12[9e0..],$@usn5 Is Null)][..@usn5(@usn5 =~$@usn5 =~6.0e0,$`4esn` In 11.12e-12 In .9e12)] Order By .0e0 Starts With $@usn6 Starts With Null Asc Skip `3esn`[`4esn`..Null][$usn1..`5esn`] Limit Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1])[(:@usn5{`7esn`:7.0e-0[`6esn`..]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)][All(usn2 In .0e0[$`6esn`..] Where .0e0[..1e1][..$1000])]"), + octest:ct_string("With Distinct *,`3esn`[.12e-12..] As `7esn`,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) As _usn4 Order By 01[Count(*)..0e-0][7..$`2esn`] Desc Where 0e0[..'s_str'] Union Unwind Count ( * )[12e12][$_usn4] As #usn8 Union Unwind 1.9e0 =~$`8esn` =~01234567 As usn2 Create ((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))"), + octest:ct_string("Delete $`2esn` Starts With .12e-12 Starts With .0e-0 With *,$@usn5[..1e-1] As @usn5,All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0]) Is Null As `1esn` Order By \"d_str\"[12e12..][4.9e12..] Asc Where 7.0e-0 =~$12 =~5.9e-12 Match (_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}),((`6esn` :usn1)) Where 9.1e-1 In #usn8 Union All Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct),Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..],Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) Unwind 0e0 Ends With `7esn` Ends With usn1 As _usn3"), + octest:ct_string("Optional Match (#usn7 {`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`})-[usn1?:@usn6|:_usn3{``:_usn3[$_usn3][usn1],usn1:`6esn` Is Not Null Is Not Null}]-(@usn6 )-[:usn1|:#usn8]-(:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`}) Where 123456789 Contains .1e-1 Contains .12e12 Remove ``:`3esn`"), + octest:ct_string("Merge `3esn`=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})) On Match Set #usn7 =[usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|9e0 =~9e1 =~.12e12] Is Null Is Null,`8esn`+=123.654 Is Not Null Is Not Null,`3esn`+=_usn4(.9e1 Contains Null,$_usn3 Ends With Count(*) Ends With $``) Is Null Is Null With *,`5esn`[$`4esn`],#usn8[7..@usn5] As `4esn` Order By 9e0[.0e-0] Asc Limit `8esn` Is Not Null Is Not Null"), + octest:ct_string("Merge ((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})) On Match Set `2esn`+=false Starts With 3.9e-1 On Create Set ``:_usn4 Create _usn3=((@usn6 {`8esn`:1.9e0 Is Null Is Null})),(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))) Union All Remove (`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})<-[?*..{`6esn`:.9e1[11.12e-12],`4esn`:$`1esn`[.9e0][$_usn3]}]-(@usn6 :_usn3:_usn3{`2esn`:12e-12 Contains .9e-1 Contains 9e-1})<-[`2esn` *0x0..{`3esn`:$`2esn`[010..`5esn`][``..0.12],usn1:.0e0 Ends With `8esn`}]->(`8esn` {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]}).@usn6.#usn8?,[_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]].`1esn` Union Delete 11.12e-12 In $`1esn` In 9e12 Unwind 123.654 Is Not Null Is Not Null As `6esn` Merge ((:`6esn`:`3esn`{@usn6:\"d_str\" =~9e-12 =~`5esn`})<-[?:`5esn` *01234567]->(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})) On Create Set None(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).`5esn`?.`3esn`! =[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]},`8esn` =Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]],None(`` In $_usn3 Is Not Null Where 7.0e-0 =~$123456789 =~`8esn`).`3esn` =Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1]) On Match Set `8esn` =[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]).#usn7!.usn1?.usn1? =$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 9e0 =~9e1 =~.12e12|$@usn5 =~.12e-12).`2esn`?.`1esn`! =0e-0[...9e12]"), + octest:ct_string("Match (`1esn` {#usn8:.12e12[Count(*)..]})<-[{`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]}]-(:@usn5) Where $`` Is Null Is Null Union Delete {#usn8:8.1e1 Ends With $0 Ends With 6.0e0,#usn8:Null =~true =~.1e-1} Contains {usn1:Count ( * )[..2.9e1],_usn3:07 Starts With usn1 Starts With 010},`2esn`[..9.1e-1][..0xabc] Union All Remove Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[1e-1..]).`6esn`?,`4esn`:#usn7:_usn3 Remove (`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``!,usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4!"), + octest:ct_string("Detach Delete $usn2[0e0][$7],$`` In $@usn6 In 3.9e-1 Optional Match `3esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where .12e-12[$@usn6..5.9e-12] Merge ((`` :``:usn1)) Union All Merge `5esn`=(`7esn` :`8esn`:#usn7{`4esn`:`8esn` =~.1e1 =~.0}) On Match Set #usn8:`5esn` Delete Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]),.9e1[Count(*)..$`3esn`] Delete {@usn5:$`2esn`[8.1e1]}[None(`7esn` In .12e12[Count(*)..] Where .9e1[12])..Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1)][`6esn`(Distinct 0e0 In $_usn4 In `2esn`)..{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]}] Union All Unwind #usn8[`2esn`] As _usn3 Merge (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}) On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1]"), + octest:ct_string("With Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) As `1esn`,Count(*) Is Not Null As `4esn`,(usn1 {`6esn`:$`5esn`[true],usn2:1e1 Is Not Null Is Not Null})-[`3esn`?:`5esn` *07..{#usn7:9e-1 =~6.0e0 =~``}]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}) Is Not Null Is Not Null As `7esn` Order By 0e-0 Contains 11.12e-12 Contains $`4esn` Asc Skip `6esn`[..01][..`8esn`] Where $@usn5[..1e-1] With Distinct *,`2esn` Is Not Null Is Not Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Order By {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} Desc,{`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]] Ascending"), + octest:ct_string("Return Distinct *,$`6esn` In $`3esn` In 9e1,$7 Contains #usn8 Contains 0Xa As `6esn` Order By $999[.1e1..0.0] Desc,8.1e1 Starts With .9e12 Starts With `7esn` Asc Skip 0e-0 Contains _usn4 Contains 1e-1"), + octest:ct_string("Merge ((_usn3 {`5esn`:`8esn` =~.1e1 =~.0})) With 010 Starts With 0.0 Starts With .0e0 As _usn4 Order By 123456789 =~$`1esn` =~#usn7 Ascending,.1e1 =~010 =~0.12 Descending Skip Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..])[..Extract(@usn6 In 00 =~.9e-12 =~usn1 Where .0e-0[3.9e-1][.12e12]|$`6esn` Starts With `4esn`)] Limit Extract(`5esn` In 12[0xabc..][$0..] Where 9e-1[0X0123456789ABCDEF][0]|.9e1[..Count(*)][..7.0e-0]) Is Null Is Null Where `6esn`[010...9e-12] Union All Return *,.9e1 Starts With `4esn` As `5esn`,{_usn4:1.9e0 =~$`8esn` =~01234567}[All(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)] As _usn4 Order By #usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Desc,3.9e-1[..$7] Desc Skip 12 Contains $usn1 Contains 0 Optional Match (((`3esn` :@usn6:_usn4)<-[_usn4?:#usn8|:`4esn` *123456789..0x0]-(_usn4 :`6esn`:`3esn`{@usn5:$_usn4 Contains .12e-12})-[?:_usn3|`2esn`]->(`1esn` :`7esn`))),((:@usn6:_usn4{#usn7:9.1e-1 Contains 0xabc})) Union With Distinct *,999[Filter(`2esn` In .9e-12[0e0...9e-1] Where 4.9e12[..Null])..] As `3esn` Skip 0xabc =~7.0e-0 =~4.9e12 Limit Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null"), + octest:ct_string("Unwind $`1esn`[.9e0][$_usn3] As `4esn` Union Optional Match (((`7esn` {`3esn`:.9e-1 Is Null})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`))) Where .0e-0[0e0..00][.9e1..12]"), + octest:ct_string("Return Distinct #usn8[7..@usn5] As usn2,12 Contains [usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12|$0 Contains .12e-12],10.12e12[$`5esn`] Limit (_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)] Return Distinct $#usn7 =~8.1e1 As #usn7,`4esn`[$1000..$``][$_usn4..$_usn4] Skip $`2esn` In 0X7 In 3.9e-1 Union Remove 9e-12._usn4 With (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7),Extract(_usn3 In ``[$``..] Where 9e-12 =~9.1e-1 =~usn1) Contains Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0),12.0 =~$@usn5 =~8.1e1 Order By Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] Ascending Limit $@usn6 Contains Count ( * )"), + octest:ct_string("Return Distinct $`7esn` Contains 0X7 As usn2,$`8esn` Starts With `2esn` Union Remove Filter(`7esn` In .12e12[Count(*)..] Where @usn5[$_usn3..]).usn2?,[`5esn` In 12[0xabc..][$0..] Where .12e12[$12..4.9e12][11.12e-12..9e12]|Count(*)[9e-12..0Xa][$123456789..0.0]].@usn5,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where #usn8[7..@usn5]).usn2? Merge `8esn`=((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) On Match Set _usn3+=$usn2[12.0..],`7esn`+=false[..12e-12][...9e1] Remove Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).`5esn`!.`3esn`.usn2!,Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0Xa[$usn2..])._usn3!.`7esn`.`4esn`!,Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]).@usn5.usn2 Union Create `3esn`=(((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:@usn5{`1esn`:@usn5[$_usn3..]})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}))),(((`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})-[`2esn`?:#usn8|:`4esn`]-(:@usn6:_usn4{`2esn`:$usn1[$7..][$0..]}))) Return .1e1 =~`1esn`,Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) Ends With [`7esn` In .12e12[Count(*)..]],$#usn7 Is Not Null Order By All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Desc,None(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..])[{@usn6:.12e-12[999...12]}][Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`6esn`[$`7esn`][$`4esn`])] Ascending,.9e0 In 9.1e-1 In $123456789 Desc Remove (#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[ *01234567]->(`5esn` :`2esn`:`8esn`).#usn7!.`3esn`!.@usn6!"), + octest:ct_string("Detach Delete ({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null},Count(*) =~Extract(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12|123.654 Starts With $7),{@usn5:true Contains 0x0} In Extract(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$1000[..01234567][..0X0123456789ABCDEF]) Merge usn2=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Remove ({#usn8:$`8esn`[..1e1][..``],@usn6:$`8esn` =~.9e12 =~010})<-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(`4esn` :usn1{`1esn`:0X0123456789ABCDEF Contains 8.1e1}).`4esn` Union All Match `7esn`=((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})),usn1=((`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})) Where 1.9e0 Ends With Count ( * ) Ends With .12"), + octest:ct_string("Create #usn7=(:usn1{``:.9e1[..`5esn`]})<-[``?:@usn6|:_usn3{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-({usn1:usn2 Ends With 10.12e12})<-[`8esn`? *0x0..]->({_usn4:.9e12[..$usn1][..10.12e12],_usn4:$`7esn` Is Not Null}),@usn6=((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where $`1esn` Starts With Count(*) Starts With $`8esn` Unwind $`6esn` In `2esn` As _usn4 Union Merge ((:`4esn`:`7esn`{#usn7:9.1e-1 Contains 0xabc})-[usn2?:@usn6|:_usn3]->({usn1:01[.9e-12..],@usn6:$`5esn` Ends With $#usn7 Ends With .0e-0})) On Match Set {@usn5:12e-12 Contains .9e-1 Contains 9e-1}.``! =usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]),@usn6 =0.0 Is Not Null Is Not Null,[`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0]._usn3?._usn3? =.1e1 Starts With .1e-1 On Match Set `8esn`+=Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where #usn7[`5esn`..`2esn`][$`4esn`...1e1]) Ends With {`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null} Ends With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 01 Ends With \"d_str\"),`1esn`+=4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12),(`` {_usn4:9e0[..1e1]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`)-[@usn5?{usn2:'s_str' =~.9e1 =~3.9e-1,`3esn`:1000[..0e0][..$`6esn`]}]-(@usn5 :@usn6:_usn4).#usn8.`1esn`.usn1! =00[0e-0...9e-1][1e-1..``] Unwind $`5esn` Contains `2esn` Contains 9e1 As `1esn`"), + octest:ct_string("Merge #usn8=(((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) On Match Set Filter(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).``.`8esn` =Count ( * )[..`8esn`],usn1 =123456789 Contains .1e-1 Contains .12e12,`8esn`+=`7esn` Ends With _usn4 Remove (`6esn` :`5esn`{usn2:`8esn` Is Null})<-[? *010..{@usn6:.12[$`2esn`..usn2][.9e-1.._usn3],@usn5:$usn1 Starts With usn1 Starts With 1e-1}]-(`8esn` $12)-[? *0X0123456789ABCDEF..0{usn1:$123456789 Is Not Null,#usn8:$usn1[$12..]}]->(`1esn` :_usn3:_usn3{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}).``!,usn2(Distinct 123456789[.1e1..][$`5esn`..],$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12])._usn4! With Distinct #usn7[10.12e12..][\"d_str\"..] As `1esn`,9e-1 Contains $@usn5 Contains Count(*),`` Is Not Null Is Not Null As usn1 Order By @usn6 In 3.9e-1 In 9e-12 Asc,1.9e0[$12][``] Desc,12e12 =~#usn7 =~.9e-1 Asc Limit 0X7 =~$123456789 =~$`` Union All Create _usn3=((`6esn` :`7esn`)-[`7esn`?:`5esn`]->(#usn8 )<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})),@usn6=(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Create _usn3=((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]}))"), + octest:ct_string("With usn2 =~$`7esn` =~$`8esn` As _usn3 Match (({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]})) Union With $12[.9e-1] As `4esn`,.12e12 =~$#usn7,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) As `8esn` Order By (:`3esn`{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1})<-[?:@usn6|:_usn3 *07..]-({_usn4:01234567[6.0e0][$usn2]})<-[`2esn`?:`2esn`|`7esn` *..0X7{@usn5:$12 Contains $`7esn` Contains .0}]->(:``:usn1) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]) In {usn1:`7esn` Is Not Null} Ascending,0x0 Contains $`1esn` Contains 0.0 Ascending,$`6esn` In `2esn` Ascending Skip (`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..] Union All Unwind Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) In {`5esn`:$`` =~$_usn3,`4esn`:`7esn`} In `3esn` As #usn8 Create `8esn`=(({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),usn1=((@usn5 :usn1{usn1:.9e1[12]}))"), + octest:ct_string("Unwind 11.12e-12 Is Null As `1esn` With *,0e0 Ends With 0X7 Ends With .1e1 As _usn3 Order By Extract(@usn6 In 00 =~.9e-12 =~usn1 Where `2esn` Is Not Null Is Not Null|.1e1[.0e0..]) Ascending Skip 7 Contains $#usn7 Limit Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]) In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )] In `8esn`(Distinct $_usn3 Contains 1e1 Contains .12) Create (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Union All Merge @usn6=((_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) With Distinct *,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,false[12e-12..][usn1..] Order By Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]) Desc Limit $`1esn`[`3esn`..] Where $usn1 =~$999 =~$7 Unwind [usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|`3esn` Ends With 010 Ends With 9.1e-1][(`3esn` :`3esn`{usn1:1.9e0 Ends With Count ( * ) Ends With .12,`6esn`:6.0e0 Ends With .12e-12 Ends With 999})-[`7esn`?:`5esn`]->(#usn8 )..None(_usn4 In Count(*)[9e1..][12e-12..] Where 7 Contains $#usn7)] As `8esn`"), + octest:ct_string("Optional Match ((#usn8 {_usn3:$usn2 In usn1 In 1e-1})),usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Merge ((({usn1:.0e0 Is Null Is Null,`1esn`:$@usn5 Is Null})-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}))) On Match Set `6esn` =Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,_usn4+=8.1e1 Starts With .9e12 Starts With `7esn`,All(@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null).usn1! =$`6esn`[.9e1..][`5esn`..] Remove @usn5:`7esn`,{_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12}.usn2!.`1esn`?.#usn7"), + octest:ct_string("Unwind 3.9e-1 Is Null Is Null As `7esn` Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})) Optional Match `3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})),`3esn`=((:`1esn`{`8esn`:.1e1 Is Null Is Null})<-[_usn4 *0..010]->(:`8esn`:#usn7)-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})) Union Create `3esn`=((`2esn` {``:.0e0[$`6esn`..]})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(`6esn` :`3esn`)<-[`7esn`?:`3esn`|:_usn3 *..0xabc]->(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null})),(usn2 :`6esn`:`3esn`)<-[``? *07..{`8esn`:$usn2[0e0][$7],_usn3:.9e-12[0e0...9e-1]}]-(:`2esn`:`8esn`{`6esn`:7.0e-0 Is Null Is Null,`6esn`:999[0.12..8.1e1]}) Union All Return None(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Is Not Null As `6esn`,.9e-1[12.0] As @usn6,.12 Ends With .0e-0 Ends With $7 Order By (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7) Ascending Limit 1e-1 =~0.0 =~9.1e-1 Merge ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})) On Create Set $usn1.`4esn` =$`3esn` Is Not Null Is Not Null,``+=1e-1[..2.9e1]"), + octest:ct_string("Unwind {_usn4:$`5esn` Is Null Is Null}[Filter(usn2 In .0e0[$`6esn`..] Where $1000 Contains 01234567 Contains 0X7)..] As @usn6 Delete 12e12 =~#usn7 =~.9e-1,(:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[`2esn`? *..7]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]})<-[#usn7? *00..123456789]->(:`6esn`:`3esn`)[{``:`1esn`[Count ( * )][5.9e-12],_usn3:$_usn3[1e-1..]}..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1)],010 Ends With 0x0 Union All Optional Match (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))),(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Optional Match ((_usn3 :usn2)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`)),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}) Where 1e1[Null..][.12..] With Distinct Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,07 =~_usn4 =~.9e12 As `` Order By 5.9e-12[9e0..] Ascending,#usn8[`2esn`] Desc,`7esn` Ends With 9e-1 Ends With usn1 Ascending Skip $#usn7 Starts With #usn7 Limit $123456789[$_usn3..][$usn2..] Union Merge ``=((({_usn3:10.12e12[12e12..0X7],_usn3:false =~4.9e12})<-[@usn6:#usn7|:`8esn` *0Xa..7]->(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})<-[@usn6:#usn7|:`8esn` *0Xa..7]->(:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`}))) Merge (((:`8esn`:#usn7{@usn5:.12e-12 =~9e12 =~1e-1})-[`1esn`:_usn3|`2esn`{`4esn`:11.12e-12[010..11.12e-12],#usn8:$`2esn` Starts With 0x0}]-(_usn4 :`4esn`:`7esn`)-[?:`5esn`*..]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))) On Create Set `7esn` =$`7esn` Is Null Is Null,Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1]|12 Contains usn2 Contains $usn2).usn2? =`1esn` Ends With 7.0e-0 Ends With $usn1,None(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12)._usn4 =.1e-1[@usn6..]"), + octest:ct_string("Unwind `7esn`[.1e1..][`8esn`..] As `3esn` With Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],`2esn` Is Not Null Is Not Null Skip $123456789 Starts With Count ( * ) Limit Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..] Create @usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))),(({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`)) Union Merge (`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6) On Match Set count(@usn6[..$`3esn`][..4.9e12]).`1esn`! =(`1esn` :`3esn`)-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}) In Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) In {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]} On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] Union All Merge (((`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0))) On Create Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn`[$0..][.9e1..]).`3esn`? =0.12[3.9e-1],_usn4 =Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],[`` In $_usn3 Is Not Null Where 12 =~$@usn5|$`2esn` In 0X7 In 3.9e-1].`8esn`.`5esn`? =12e-12[9e0..1.9e0] With Distinct *,$`2esn`[$1000..][$@usn5..] As #usn8 Order By .9e0 Is Null Asc,0 Is Not Null Desc Skip #usn7[5.9e-12][00] Where 12e12[..$`8esn`][...0e-0]"), + octest:ct_string("Detach Delete 2.9e1[...9e-12][..0] Unwind {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null As `5esn` Match `7esn`=((`8esn` {@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})),({usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) Union With 9e-12 In 5.9e-12 As ``,Extract(_usn4 In Count(*)[9e1..][12e-12..] Where 0x0 Contains $`1esn` Contains 0.0) In None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 4.9e12 In 5.9e-12 In .9e0) As `5esn` Order By 1000 Starts With 11.12e-12 Starts With 01234567 Descending,07[..@usn6][..$`4esn`] Ascending Skip .9e1[...12e12] Where ``[..$#usn7] Unwind 3.9e-1 Is Null As `4esn` Merge `5esn`=(((_usn3 )-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})-[`4esn`?:_usn3|`2esn`]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3}))) On Match Set `8esn` =[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},Extract(usn2 In .0e0[$`6esn`..] Where $#usn8[...9e1]).#usn7!.usn1?.usn1? =$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 9e0 =~9e1 =~.12e12|$@usn5 =~.12e-12).`2esn`?.`1esn`! =0e-0[...9e12] On Match Set `2esn` =(_usn3 :`2esn`:`8esn`{#usn7:9.1e-1[Count(*)..][5.9e-12..],`8esn`:``[$``..]})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null})[..(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[``?:@usn5]->(usn1 :#usn8)][..Any(usn1 In 7.0e-0[.._usn4][..0X7] Where $123456789 Contains 1000 Contains 11.12e-12)],`3esn` =9e1 Contains 4.9e12 Contains 123456789 Union Return `6esn`[..$``][..4.9e12] Unwind .12[.0e-0..] As `3esn` Merge ((`3esn` {#usn8:`7esn` Is Null})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})) On Create Set {`1esn`:$`1esn`[.9e0][$_usn3]}.`8esn`? =`1esn`[Count ( * )][5.9e-12],`8esn`+=123.654 Ends With Count(*)"), + octest:ct_string("Create ((:#usn8{usn1:00,`1esn`:.0e0[1e1..][01234567..]})<-[#usn8? *0x0..]->({``:.0e0[$`6esn`..]})) Create (({@usn6:0Xa[9e0]})) Unwind usn1[12e-12] As `2esn` Union All Unwind {@usn5:true Contains 0x0} In Extract(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$1000[..01234567][..0X0123456789ABCDEF]) As @usn5 With Distinct *,_usn3[`2esn`..10.12e12][9e1..true] Where .9e1[#usn7..] Union All Optional Match (((usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}))),`5esn`=(`5esn` :`1esn`) Return *,.12e-12 In 9e12 In 9e-12 As `5esn`,1e-1 Starts With usn2 Starts With 12e-12 As `` Order By 0[true..$7] Descending Skip (_usn4 :`2esn`:`8esn`)-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]})<-[`2esn`?:@usn5]-(`7esn` :usn1$`6esn`) =~(#usn8 {`3esn`:123456789 Contains .1e-1 Contains .12e12,`1esn`:$`3esn` =~4.9e12 =~$7})-[#usn7? *00..123456789]->(`8esn` :@usn5)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Create `1esn`=(_usn3 )-[?:`6esn`|#usn7{_usn4:8.1e1 Is Null,#usn7:$_usn3 =~$usn1 =~_usn4}]-(usn2 :@usn5{`8esn`:00[$`6esn`]})-[?:usn2|:``]-(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0}),usn1=((`8esn` :_usn3:_usn3)<-[_usn4? *..7{#usn7:Count ( * )[7]}]->(`6esn` :`7esn`)<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`))"), + octest:ct_string("Create #usn7=(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[?{#usn7:1e-1[..2.9e1],_usn3:$12 Contains $`7esn` Contains .0}]-({`6esn`:07 Ends With @usn6 Ends With _usn3}) With Distinct *,`6esn`[..01][..`8esn`] As usn1,.1e1 Starts With 9e0 Order By 12.0[.._usn4][..0X7] Descending,`1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Ascending Skip 's_str' Ends With 0.0 Ends With .12e12 Remove All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5[$``]).`4esn`,Extract(`8esn` In 01234567[..0.0][..false]).``._usn4,{`2esn`:usn2 Ends With .0}.#usn8!.`3esn` Union Remove ``(usn2 Ends With 10.12e12,$`1esn`[.9e0][$_usn3]).`7esn`?._usn4!.`5esn`?,[`2esn` In .9e-12[0e0...9e-1]].`8esn` Detach Delete .1e1[..0][..010],Extract(usn2 In .0e0[$`6esn`..]|$@usn6 Contains Count ( * ))[`2esn`(usn1[12e-12])..][(`8esn` :usn2)<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})..],`7esn` Create ((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) Union All Create `7esn`=(`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Optional Match `3esn`=(@usn5 :`7esn`),((#usn8 {_usn3:$usn2 In usn1 In 1e-1})) Where usn2[..10.12e12][..$`7esn`] Create ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((`` :``:usn1))"), + octest:ct_string("Unwind 0[..$@usn5] As `6esn` With Distinct 9e1 Contains 4.9e12 Contains 123456789 As _usn4,1e1[Null..][.12..],1e1 Is Not Null Is Not Null Order By #usn7[`5esn`..`2esn`][$`4esn`...1e1] Ascending Skip `7esn`(7.0e-0[.._usn4][..0X7],$`5esn`[7..]) Contains [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]] Limit 0e-0[$`2esn`][8.1e1] Remove All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]).`4esn`?.#usn7!,Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|$_usn3 Is Not Null).`5esn`! Union With *,`5esn`[$`4esn`],#usn8[7..@usn5] As `4esn` Order By 9e0[.0e-0] Asc Limit `8esn` Is Not Null Is Not Null Optional Match ((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})-[:`4esn`|:@usn5 *1000{_usn4:01234567[6.0e0][$usn2]}]->(:_usn4{@usn5:12 =~$@usn5,`2esn`:$`4esn` In 123456789 In `5esn`})),``=((({`4esn`:$`2esn` Ends With $`8esn`})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})-[``]-(:_usn4{#usn8:.0e0[1e1..][01234567..],#usn7:1e-1[..2.9e1]}))) Detach Delete `3esn`[.12e-12..],Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Union All Match usn1=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})) Return Distinct Extract(usn1 In 7.0e-0[.._usn4][..0X7] Where .1e-1 Ends With @usn6|_usn4['s_str'..]) =~All(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e0[..1e1]),$`6esn`[$`8esn`..][false..] As _usn3,$`6esn`[..12e12][.._usn3] As `5esn` Order By $@usn6 =~$`2esn` =~9e1 Desc,$`2esn`[$usn1..] Desc,@usn6[01][.9e0] Ascending Skip All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)] Limit `1esn`(1.9e0 Ends With 0Xa Ends With $12)[None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 0e0 In 1e1 In 8.1e1)][None(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4)] Create #usn7=((`4esn` :_usn3:_usn3))"), + octest:ct_string("Optional Match `1esn`=({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(_usn3 :`6esn`:`3esn`),`3esn`=((#usn8 {`5esn`:8.1e1 Ends With $0 Ends With 6.0e0,@usn5:9e0[..1e1]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))"), + octest:ct_string("Remove Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 01[..0Xa]).`1esn`!.`1esn`! Merge #usn8=(usn1 :_usn3:_usn3) Optional Match `5esn`=(:``:usn1{_usn3:00[$`6esn`]})-[?:_usn3|`2esn`]->(`1esn` :`7esn`),`7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) Where 1e-1 =~0.0 =~9.1e-1 Union All Merge ((:`3esn`{`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``})<-[#usn8? *0x0..]->(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[?:_usn3|`2esn`]-(_usn4 :`4esn`:`7esn`)) On Match Set `8esn` =#usn7 Ends With $#usn7 Ends With #usn7"), + octest:ct_string("Return Distinct *,(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})<-[?:usn1|:#usn8{`8esn`:`2esn` Is Not Null Is Not Null}]-({#usn8:1e1[Null..][.12..]})-[`7esn`:`4esn`|:@usn5 *0Xa..7]-(`6esn` :usn1) Is Not Null Is Not Null,8.1e1 Is Not Null As usn2 Order By .1e1[$usn2..9e1][9e-1...9e-1] Desc Skip Null In 0Xa In .9e-1 Union All With Distinct *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5[..1e-1] Union All Delete ``(0X0123456789ABCDEF Contains 8.1e1,Count ( * )[..123456789][...0e0])[..All(usn2 In .0e0[$`6esn`..] Where .0e0 In 10.12e12 In $`5esn`)][..(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})],All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `6esn`[010...9e-12])[All(`7esn` In .12e12[Count(*)..] Where `3esn` Ends With 010 Ends With 9.1e-1)..{@usn5:11.12e-12 =~$`4esn` =~.12e12,#usn8:.0e0 Is Null Is Null}][Any(`8esn` In 01234567[..0.0][..false] Where $`8esn`[..1e1][..``])..`1esn`(1.9e0 Ends With 0Xa Ends With $12)],`2esn` Starts With $`7esn` Starts With _usn4"), + octest:ct_string("Remove Any(@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null).#usn8? Merge usn1=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})) On Match Set `4esn` =$`` =~$_usn3,`7esn` =\"d_str\" Ends With `5esn` Ends With 7 Create @usn6=((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Union Unwind Any(`5esn` In 12[0xabc..][$0..] Where $7 Starts With Null Starts With `6esn`)[{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]}][[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]]] As ``"), + octest:ct_string("Delete .1e-1[$`2esn`..][$`1esn`..] Return Filter(`5esn` In 12[0xabc..][$0..] Where $@usn6 Is Not Null Is Not Null) Is Not Null Is Not Null,9e-1 Starts With 123.654 Starts With .9e1 As `6esn`,.9e0 Is Null Is Null Skip usn1(07 Ends With @usn6 Ends With _usn3,$`2esn` In 0X7 In 3.9e-1) Contains [`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|9e0 =~9e1 =~.12e12] Limit $7 Starts With Null Starts With `6esn`"), + octest:ct_string("Return 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By [_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] Ascending,1e-1[..$`6esn`] Ascending Skip (:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`6esn`:`3esn`)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null}) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 5.9e-12[9e0..]) In All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`) Remove {usn2:`3esn` In 0X7,usn2:7 Is Null Is Null}.`4esn`.@usn6!,{@usn6:.9e-12[..$`7esn`][...9e-1]}.usn2 Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1 Union Match (({usn2:#usn7[10.12e12..][\"d_str\"..]})-[?:`8esn`|:`2esn` *..7]-(`4esn` :#usn8{#usn8:_usn4[7][8.1e1],#usn7:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})),`3esn`=(((`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[:`4esn`|:@usn5 *00..123456789]-({@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})<-[@usn5?:@usn6|:_usn3 *07..{_usn3:$`3esn` Is Not Null Is Not Null,#usn8:usn1[0.12..1000]}]-(:@usn5{`7esn`:7.0e-0[`6esn`..]}))) Where 0 Ends With 2.9e1 Ends With 1000 Detach Delete 0e0 Ends With `7esn` Ends With usn1 Unwind .0e-0[0e0..00][.9e1..12] As usn2 Union All Create `2esn`=((:`4esn`:`7esn`{`3esn`:`1esn`[9.1e-1]})<-[?:@usn6|:_usn3 *07..]-(#usn8 :`2esn`:`8esn`{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:@usn5[...9e12]})-[? *..0X7{_usn3:00[$`6esn`]}]->({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})),#usn7=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}))"), + octest:ct_string("Detach Delete usn2[Count ( * )..07],$999 =~`6esn` Unwind #usn8[7..@usn5] As `` Unwind $123456789[$1000..usn1][#usn7..9e-12] As `7esn` Union All With Distinct Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0) As `1esn`,0[..$@usn5] As `` Order By {`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending Limit 12 Contains _usn3 Where $`2esn` Ends With 2.9e1 Ends With $usn1 Detach Delete 5.9e-12[.1e1][$#usn8] Union All Remove Single(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12).`6esn`,(:@usn5{`4esn`:.0e0[$`6esn`..]})-[? *0X0123456789ABCDEF..0]-({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[`7esn`:`4esn`|:@usn5]->(usn2 :`6esn`:`3esn`)._usn3._usn3!.`4esn`?,{@usn5:'s_str' Is Null,`3esn`:Count(*)[12..][0X0123456789ABCDEF..]}.`6esn` Remove Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null|$_usn3 Is Not Null).`5esn`!,count(Distinct $`3esn` Starts With 0Xa).#usn7"), + octest:ct_string("With Distinct count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0])[_usn3(8.1e1[usn2..$1000][$7..0x0],false[..12e-12][...9e1])..] As @usn6,.0e-0[0e0..00][.9e1..12] As `1esn`,Count ( * ) Starts With 10.12e12 Starts With `` As `5esn` Union Create @usn6=((`5esn` :`6esn`:`3esn`{usn2:$`4esn`[..2.9e1][..07],`6esn`:#usn7[10.12e12..][\"d_str\"..]})<-[`7esn`*..]->($@usn6)<-[:_usn3|`2esn` *010..]-(`` :usn1)),(:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})<-[:@usn6|:_usn3{`2esn`:$usn1 Is Not Null,_usn3:0x0 =~$7 =~Null}]->(`4esn` :`5esn`{`2esn`:$usn1[$7..][$0..]}) Return *,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) As `7esn`,$`3esn` Starts With 0Xa As @usn6 Order By true Starts With 2.9e1 Starts With 9e1 Asc,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending Skip 12 =~$@usn5"), + octest:ct_string("Return *,`3esn` Contains 01234567 Contains .9e-12 Skip Filter(`2esn` In .9e-12[0e0...9e-1] Where $``[`5esn`..][`2esn`..]) In [`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $@usn6 Contains Count ( * )] In `8esn`(Distinct $_usn3 Contains 1e1 Contains .12) Limit $1000 Unwind $`6esn` In `2esn` As _usn4 Union All Delete (`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})<-[``?:_usn3|`2esn` *12..0Xa{`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]}]->(`1esn` {`2esn`:9e12 Contains $@usn6 Contains Count(*),_usn3:#usn7[12e-12..][$`2esn`..]})[{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}..][Single(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1)..],1e-1 =~0.0 =~9.1e-1,$`5esn`[7..] With Distinct [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Order By Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12) Desc Limit .0e0 Is Null Is Null Where 01[1e-1] Remove Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $@usn5 =~.12e-12).`4esn`?,Single(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]).`8esn`? Union All With $usn2 In usn1 In 1e-1 Skip .9e12 In 12e12 Limit Null[10.12e12..] Where 9e12[...12e12][..$`2esn`] Optional Match @usn5=(@usn6 :@usn6:_usn4{`1esn`:`3esn`[3.9e-1..$`5esn`]})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]}),#usn8=({_usn3:$`8esn` Is Null}) Detach Delete (:usn1{@usn5:Count(*)})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`8esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]}) In #usn8(Distinct 010[9e0..9e1][$_usn4..$12]) In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $`6esn`[$_usn4][01]),.1e1 Is Not Null Is Not Null"), + octest:ct_string("Match ((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`2esn`=((`7esn` :usn1)<-[`6esn`?:``|:`3esn`]->(`2esn` :#usn7:_usn3)) Remove [`4esn` In 01234567 Ends With $1000 Ends With $#usn7]._usn3.`4esn`!,Single(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0).`6esn`?,{`3esn`:1.9e0 Is Null Is Null,``:$usn2 Ends With `8esn` Ends With _usn3}.`3esn`? Delete 123.654 =~1e-1 =~.9e-1,4.9e12 =~8.1e1 =~$`8esn` Union All Optional Match (`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(@usn5 :`5esn`{@usn6:11.12e-12[010..11.12e-12]}),(#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`}) Where $`3esn` In 's_str' In $#usn7"), + octest:ct_string("Remove @usn5:`5esn`,{`2esn`:.0,`5esn`:$`3esn` =~4.9e12 =~$7}.usn2.`4esn`? Optional Match `7esn`=((`3esn` :usn1)<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})) Where 0e0 Starts With $1000 Starts With `2esn` Union All Optional Match (#usn8 {_usn3:$_usn4 Contains .12e-12}) Return Distinct *,`4esn`(Distinct 01[..0.12],$`8esn` Is Null) Contains All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]),Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} As `3esn` Limit Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null Merge `1esn`=(`3esn` :_usn3:_usn3)-[`7esn`:`2esn`|`7esn` *010..]-(@usn5 {`8esn`:12e-12[..$7][..$0]}) On Match Set `8esn` =.9e1[Count(*)..$`3esn`] On Create Set usn1+=$`3esn` In 's_str' In $#usn7"), + octest:ct_string("Remove (#usn7 {`5esn`:.12e12[$0]})<-[`6esn`?:``|:`3esn`]->(`5esn` {`6esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]}).`2esn`?,[`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1|true[9e-12...0e-0][`5esn`.._usn4]].usn2!,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..]).`4esn`!._usn4! Create `5esn`=((`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})),``=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2}) Return *,0X0123456789ABCDEF Contains 8.1e1 As `6esn`,.1e1 =~`1esn` Order By All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])[..{#usn8:.12e12[Count(*)..]}][.._usn4(Distinct `2esn` Starts With 999,$`5esn` Starts With 0X7 Starts With 1e1)] Descending,Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..] Ascending,.9e1[12] Desc Limit 01234567 Ends With 2.9e1 Ends With 9.1e-1 Union With Distinct 0Xa Contains $999 Contains 0Xa Order By Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `1esn`[..0x0][..\"d_str\"]|`7esn`[3.9e-1..][$@usn5..])[..Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|0xabc[$`4esn`..][`8esn`..])] Desc,.0e0 Is Null Is Null Descending,$`4esn` =~0e0 Ascending Limit .0e0[..1e1][..$1000] Remove {`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1}.usn2!.`1esn`.usn2?,Filter(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8).@usn5?,Any(@usn6 In 00 =~.9e-12 =~usn1 Where `` Ends With .9e-1 Ends With 9e-12)._usn4!.`2esn`._usn4 Optional Match `2esn`=(_usn3 :_usn3:_usn3{@usn6:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where `2esn` Is Not Null Is Not Null"), + octest:ct_string("With Distinct `5esn`[$`4esn`] As @usn6,count(Distinct 9.1e-1 =~@usn5 =~Count ( * )) =~Filter(_usn3 In ``[$``..] Where .9e0 In 9.1e-1 In $123456789) =~[`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]|.9e12 Starts With #usn8 Starts With 00],[_usn3 In ``[$``..] Where 12e-12[`7esn`..][5.9e-12..]|\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"]][(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})-[`` *..0X7]-(:usn1{``:.9e1[..`5esn`]})..][[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`|01234567[$#usn7][.0]]..] As usn2 Limit All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 0Xa In 0.12 In $#usn7) Starts With {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12} Starts With Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6)"), + octest:ct_string("Merge @usn5=((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})-[`6esn`? *..0xabc{``:$_usn4[Null]}]->({usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`6esn` {_usn3:$_usn4 Contains .12e-12})) On Create Set None(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).`5esn`?.`3esn`! =[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0|$#usn7 Is Not Null Is Not Null] In Extract(`` In 0.12[3.9e-1] Where 9e-12 =~9.1e-1 =~usn1) In {#usn8:00[0e-0...9e-1][1e-1..``]},`8esn` =Single(`2esn` In .9e-12[0e0...9e-1] Where $#usn7 =~8.1e1) Contains Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn6[`6esn`..123.654]) Contains [`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7|$`6esn`[$_usn4][01]],None(`` In $_usn3 Is Not Null Where 7.0e-0 =~$123456789 =~`8esn`).`3esn` =Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) Contains `7esn`(9e12 =~.12e12,$`5esn` Ends With $#usn7 Ends With .0e-0) Contains None(`2esn` In .9e-12[0e0...9e-1]) On Match Set Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3|`4esn` Starts With .0e0 Starts With usn2).`3esn`?.`4esn`!.`8esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct),_usn4+=0X7[$999...12e12][12..`2esn`],`7esn` =6.0e0 In 12 Detach Delete $`8esn`[..1e1][..``],0e0 Ends With 1e1 Ends With 0Xa,0x0[#usn8...1e-1]['s_str'..$`6esn`] Return *,`2esn` Is Not Null Is Not Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Order By 12.0[$1000..][123456789..] Descending,$`1esn` Starts With Count(*) Starts With $`8esn` Ascending Skip $`` Ends With 6.0e0 Limit $`8esn`[..1e1][..``]"), + octest:ct_string("With Distinct *,`2esn` Is Not Null Is Not Null,Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Order By {`6esn`:07 Ends With @usn6 Ends With _usn3} Ends With Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 12 Contains 0e-0 Contains .0) Ends With {#usn7:`3esn` Ends With 010 Ends With 9.1e-1} Desc,{`7esn`:0[$`1esn`..`8esn`]}[..(#usn7 {`3esn`:`7esn` Is Not Null Is Not Null,usn1:`` Ends With .9e-1 Ends With 9e-12})-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(@usn5 :`1esn`{``:999 =~0Xa =~9e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`})][..[`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`]] Ascending Detach Delete (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)] Detach Delete None(`2esn` In .12e-12[$@usn6..5.9e-12] Where 6.0e0 Is Not Null) Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1) Ends With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where $#usn7 =~8.1e1),1e-1 Starts With usn2 Starts With 12e-12 Union Return Distinct *,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)[@usn5($`7esn`[..12.0][..0e0],9.1e-1[.1e-1])..(:@usn5)<-[#usn8?:`4esn`|:@usn5]-(:`8esn`:#usn7)<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})] As `1esn`,false[12e-12..][usn1..] Order By Extract(_usn3 In ``[$``..] Where Null[..07]|.0[01..`5esn`]) =~[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `7esn`[3.9e-1..][$@usn5..]|$`2esn` Contains false Contains 123456789] =~Single(`8esn` In 01234567[..0.0][..false] Where .12[$`2esn`..usn2][.9e-1.._usn3]) Desc Limit $`1esn`[`3esn`..]"), + octest:ct_string("Merge _usn3=(((#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})-[_usn3:`7esn`|@usn6{`4esn`:9e-12 In 0X0123456789ABCDEF In $999,`3esn`:0x0[`5esn`][$`5esn`]}]->($`2esn`)<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0}))) On Create Set `7esn` =$`7esn` Is Null Is Null,Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1]|12 Contains usn2 Contains $usn2).usn2? =`1esn` Ends With 7.0e-0 Ends With $usn1,None(usn2 In .0e0[$`6esn`..] Where $#usn7 Starts With 10.12e12)._usn4 =.1e-1[@usn6..] Union All With Distinct $usn2 In usn1 In 1e-1 Limit 0.12[07..3.9e-1] Where 0[$`1esn`..`8esn`] Detach Delete {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} Is Not Null Is Not Null,`6esn`[`5esn`..][0.12..] Match ({`4esn`:7 Is Null Is Null})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})"), + octest:ct_string("Return Distinct 10.12e12[12e12..0X7] As #usn8,.9e-12[01][Count(*)] As _usn3"), + octest:ct_string("Delete `4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Ends With None(`` In $_usn3 Is Not Null Where .9e1[...12e12]),`2esn`[0xabc..][$_usn3..],9e0[..1e1] Merge (:@usn5{usn2:$usn1[$12..]})-[usn1?*]->(:#usn7:_usn3{#usn8:00[$`6esn`],_usn4:_usn3[$_usn3][usn1]}) On Create Set `8esn` =$12[01] Union All Create #usn8=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Detach Delete $_usn3 In $`7esn` In $`3esn`,All(`` In $_usn3 Is Not Null Where Count(*) Is Not Null Is Not Null)[..(`5esn` :`3esn`{#usn8:$_usn4[Null]})<-[:#usn8|:`4esn`{usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})<-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(#usn8 {`3esn`:123456789 Contains .1e-1 Contains .12e12,`1esn`:$`3esn` =~4.9e12 =~$7})],`1esn` =~0 =~_usn4 Union Remove usn1($@usn5[...9e-1][..$usn1],$`3esn` Ends With 010 Ends With $`7esn`).`3esn`,Any(_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8).``.#usn8!,Filter(`2esn` In .9e-12[0e0...9e-1] Where $_usn3 =~$usn1 =~_usn4).``?.usn1! Delete ()-[*{`7esn`:$`3esn` Ends With 010 Ends With $`7esn`}]-(#usn8 )[.1e1..Filter(usn2 In .0e0[$`6esn`..] Where 01[Count(*)..0e-0][7..$`2esn`])][[`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]]..None(`5esn` In 12[0xabc..][$0..] Where 07 In $usn1 In 12)],.9e-1 Is Null,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 123456789 Ends With _usn4) =~{usn2:$``[`6esn`][00],#usn7:.12e12[$12..4.9e12][11.12e-12..9e12]} =~Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $`5esn` Is Null Is Null)"), + octest:ct_string("Create ((:`7esn`)),((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})<-[usn2 *..0xabc]->({``:.0e0[$`6esn`..]})<-[usn2? *..01{@usn5:7 Is Null Is Null,@usn6:Count ( * ) Ends With `6esn` Ends With .12e12}]-(`8esn` :usn2)) Remove All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Starts With 1000 Starts With $`1esn`).`3esn`?._usn4!._usn4,Filter(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])._usn4? Create `2esn`=((:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]}))"), + octest:ct_string("Remove _usn3:#usn7:_usn3,Single(`8esn` In 01234567[..0.0][..false] Where 0e0 Starts With $1000 Starts With `2esn`).usn1?,Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where 7.0e-0 =~$123456789 =~`8esn`).#usn8? Union All Unwind 01234567 Is Not Null As `` Union All Merge ``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010})"), + octest:ct_string("Detach Delete Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 07[.0e0][3.9e-1]) Contains Extract(`` In $_usn3 Is Not Null),$`4esn` Ends With 0e-0 Remove Single(`8esn` In 01234567[..0.0][..false] Where $123456789 Contains 1000 Contains 11.12e-12).`6esn` Return Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3) Starts With `2esn`(Distinct) Starts With (`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12}),7.0e-0[3.9e-1..`1esn`] As `8esn`,9e1 Is Not Null As #usn8 Limit `7esn` Ends With 9e-1 Ends With usn1"), + octest:ct_string("Return Distinct *,`2esn` Starts With $`7esn` Starts With _usn4 As `3esn` Order By .9e0 Is Null Asc,0 Is Not Null Desc"), + octest:ct_string("Unwind .1e-1 Contains 1e1 Contains $`6esn` As @usn6"), + octest:ct_string("With *,Single(`2esn` In .9e-12[0e0...9e-1] Where 0.12[3.9e-1]) =~{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1} =~None(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]),0x0 Starts With $`5esn` Starts With 9e-12 Order By 0.0[4.9e12..][00..] Ascending,Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null|7.0e-0[.._usn4][..0X7]) In [@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] In Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 In $`` In 6.0e0|.9e12 =~`5esn` =~07) Desc Where $`8esn` In 9e-12 In 3.9e-1 Union All Match ((#usn7 {`5esn`:$`1esn` Starts With Count(*) Starts With $`8esn`})<-[`3esn`?:`5esn`]->(`2esn` )) Where 12e12[true..][$`2esn`..]"), + octest:ct_string("Remove {@usn6:0X7 Starts With 1e1 Starts With $12}.#usn8?.usn1.@usn5!,Extract(usn2 In .0e0[$`6esn`..] Where 0.0[4.9e12..][00..]|0e0 Ends With 1e1 Ends With 0Xa).``?,@usn5:`3esn` Union Merge `7esn`=(`7esn` :usn1)-[`6esn`? *0Xa..7{`4esn`:$`2esn` Ends With $`8esn`}]->({usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]-(`1esn` :``:usn1{_usn4:.1e1 Is Null Is Null}) On Match Set `6esn`+=$`2esn` Starts With .12e-12 Starts With .0e-0,_usn4+='s_str' Ends With $usn1,#usn8:_usn4 On Match Set Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 999 Starts With .9e12 Starts With 3.9e-1).`6esn`.@usn6!._usn4? =`4esn`[0.0..][.1e-1..],Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).@usn5! =9e1 Contains 4.9e12 Contains .9e0,`1esn`+=00[0e-0...9e-1][1e-1..``] Union Merge #usn8=((`5esn` :#usn8)<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null})) Match ({`4esn`:7 Is Null Is Null})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})"), + octest:ct_string("Return *,$999 Order By _usn3[`2esn`..10.12e12][9e1..true] Descending Skip $`2esn` Ends With $`8esn` Limit All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],.1e-1 Is Null,.9e12[$usn2..][7..] As `2esn` Limit _usn4 Is Null Is Null Where .12e-12 Ends With $`7esn` Merge ``=(({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})) On Create Set usn2:usn2,usn1+=0xabc[$`4esn`..][`8esn`..],#usn7+=Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12])[..None(_usn3 In ``[$``..] Where Null[`2esn`..])][..{`3esn`:.0e-0 Starts With $#usn7 Starts With _usn3,usn2:`6esn` In 9e-12}] On Match Set #usn7 =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct) Union All With 6.0e0 Is Null Is Null As @usn6 Limit Count ( * ) Starts With 10.12e12 Starts With `` Where `3esn`[3.9e-1..$`5esn`] Unwind Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 's_str'[12][00])[`1esn`(Distinct $0[$`7esn`..$`3esn`]['s_str'...0])..] As @usn6 Create ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}))"), + octest:ct_string("With Distinct *,Any(usn2 In .0e0[$`6esn`..] Where Null In 0Xa In .9e-1) Contains All(`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1) Contains Single(`` In $_usn3 Is Not Null Where 1e1 Starts With `8esn` Starts With .9e0),$usn1 Contains `7esn` Contains .9e12 Remove Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $@usn5 =~.12e-12).`4esn`?,Single(`5esn` In 12[0xabc..][$0..] Where .9e-12[0e0...9e-1]).`8esn`? Union Detach Delete $`8esn`[$usn2..] Return Count ( * ) Starts With 10.12e12 Starts With `` Skip Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .0e0[$`1esn`][.9e-12])[..Single(`` In $_usn3 Is Not Null Where 12 In 1000 In \"d_str\")][..Any(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null)] Union All Match @usn6=((:_usn3:_usn3{`5esn`:`2esn` Is Not Null Is Not Null,`7esn`:2.9e1})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0)),`8esn`=(((:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(:`5esn`{#usn7:9.1e-1 Contains 0xabc})<-[? *..7{`8esn`:0xabc[7.0e-0..][12e12..]}]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1}))) Return #usn7[`5esn`..`2esn`][$`4esn`...1e1] As _usn4,8.1e1 Is Not Null,$_usn3 Is Not Null Order By $`6esn`[.9e1..][`5esn`..] Ascending,#usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Desc,Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Ascending Optional Match `3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})),`6esn`=((#usn7 )) Where 9.1e-1 In #usn8"), + octest:ct_string("Match ((`` :`5esn`)),`7esn`=({`5esn`:@usn6[..$`3esn`][..4.9e12],usn1:0X7[Count(*)][.9e0]}) Union All Detach Delete {usn2:.0e-0 =~12e-12,#usn8:#usn8[7..@usn5]} Starts With All(`5esn` In 12[0xabc..][$0..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Starts With (`6esn` :#usn7:_usn3)-[?:usn2|:`` *..0X7]-(`1esn` :`6esn`:`3esn`{`2esn`:.1e-1[2.9e1..][12..]})"), + octest:ct_string("Unwind 123456789 Contains .1e-1 Contains .12e12 As `6esn` Optional Match `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Where .0e0[1e1..][01234567..]"), + octest:ct_string("Delete Extract(usn2 In .0e0[$`6esn`..] Where 010|0e-0 Contains _usn4 Contains 1e-1)[{#usn7:_usn4 Ends With .0 Ends With 7,#usn8:`` Ends With .9e-1 Ends With 9e-12}],.12e12[`7esn`][#usn8],Single(`8esn` In 01234567[..0.0][..false] Where `5esn` Contains 1.9e0 Contains 9e0)[{_usn3:$0 Starts With 010}] With *,(`5esn` :`2esn`:`8esn`)-[`2esn`?:#usn8|:`4esn`]-({`6esn`:$`3esn`})-[`5esn` *00..123456789{`7esn`:$#usn7 Starts With 10.12e12}]-(@usn6 {`4esn`:Count(*),usn1:0xabc[7.0e-0..][12e12..]}) Is Null Is Null As `8esn` Skip {#usn7:$usn2[1e-1]}[(usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[ *12..0Xa{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(:`3esn`)..][(usn1 :`2esn`:`8esn`)<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]})..] With 1000[Null..] As `1esn`,.1e1 Starts With $7 Order By Extract(usn2 In .0e0[$`6esn`..] Where $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]) Is Not Null Is Not Null Ascending,$`7esn` Contains 0X7 Asc,$_usn4 Is Not Null Ascending Limit .0e0[$`1esn`][.9e-12] Union Delete 0X7[Count(*)][.9e0],`1esn` In 12e-12 In 1e-1,010 Unwind $999 As `` Union All Merge `8esn`=((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2})) On Match Set ``+=0.12['s_str']"), + octest:ct_string("Merge ((`7esn` :usn1$`6esn`)-[`5esn`:`8esn`|:`2esn` *07..{`2esn`:$usn1[$7..][$0..]}]-(`7esn` :`2esn`:`8esn`)-[?:``|:`3esn` *1000{``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}]->(`1esn` :``:usn1)) Union All Create (:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[`6esn`?:`4esn`|:@usn5{usn1:00,`1esn`:.0e0[1e1..][01234567..]}]->(`3esn` ),`1esn`=((:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[usn1 *12..0Xa]->({`5esn`:07 Starts With usn1 Starts With 010})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})) With Distinct 9e12 Starts With `4esn` Starts With .9e-1 As @usn6 Order By {`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0} Ascending,01 Ends With \"d_str\" Asc,1000 Is Null Is Null Ascending Limit 0e0 Starts With $1000 Starts With `2esn`"), + octest:ct_string("Delete $usn2 In usn1 In 1e-1,$999[1000..1.9e0] Unwind .9e-1 Is Null As `2esn` Union Delete Count ( * )[12e-12],{`5esn`:false,_usn3:.9e-12 Starts With .0e-0 Starts With usn2} Is Null,$`2esn`[..12e12][..0]"), + octest:ct_string("Remove (:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})-[#usn8?*..]->(`` :#usn8{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})<-[usn2:`8esn`|:`2esn`]->(usn2 :`8esn`:#usn7).#usn8?,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]].#usn7 Match (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`))"), + octest:ct_string("Remove All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]).`1esn`? Union Create ((:_usn4{``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[``]-(:`5esn`{`1esn`:$_usn3 In 123.654 In $`8esn`})),_usn3=((`8esn` $12)-[_usn4? *..7{#usn7:Count ( * )[7]}]-(`6esn` {`8esn`:01234567 Is Not Null})) Remove {@usn5:Count(*)}.@usn6!.`5esn`.usn2!,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2).`8esn`?._usn3!.`8esn`,None(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 1.9e0 Starts With 's_str' Starts With 9.1e-1)._usn4.#usn8! Remove Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where `2esn` Starts With $`7esn` Starts With _usn4).``?,Extract(`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|$_usn4[Null]).`7esn`"), + octest:ct_string("Merge ((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) Union Create `5esn`=(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}),((@usn5 :usn1)-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})) Unwind $``[`5esn`..][`2esn`..] As `8esn`"), + octest:ct_string("Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01[.9e-12..]].#usn7!.#usn7!.usn1!,{_usn3:@usn6 In 3.9e-1 In 9e-12}.`3esn`._usn3! Create @usn6=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00}))"), + octest:ct_string("Return Distinct *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]],`2esn` Is Not Null Is Not Null Skip $123456789 Starts With Count ( * ) Limit Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..] Merge `1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) On Match Set None(`8esn` In 12.0 Contains $_usn4 Contains $usn2).`8esn`!.`6esn`?.`7esn`! =11.12e-12 =~5.9e-12 =~.9e1,#usn7 =#usn7[5.9e-12][00],[usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12]._usn3._usn4!._usn4? =$`5esn` Is Not Null Is Not Null Union Detach Delete 6.0e0 In 12"), + octest:ct_string("Detach Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..],.1e-1 Contains 1e1 Contains $`6esn` With *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By .12e-12 =~9e12 =~1e-1 Desc,11.12e-12 =~$`4esn` =~.12e12 Descending Limit [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null Where `2esn` =~usn1 Union All Create ((:`4esn`:`7esn`{#usn8:.9e12 Is Not Null Is Not Null})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->({`5esn`:.1e1 Starts With `1esn` Starts With 6.0e0,`1esn`:0X7[`4esn`..][`3esn`..]})<-[#usn8? *0X0123456789ABCDEF..0]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})),((:`6esn`:`3esn`{`1esn`:$``[4.9e12..2.9e1]})<-[_usn3?:``|:`3esn` *0..010]->(`6esn` :_usn3:_usn3)-[? *12..0Xa]-(`2esn` :#usn7:_usn3)) With [@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~{#usn7:.9e0 Is Null Is Null,#usn8:$0[..0x0][..01234567]} As usn1,All(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $0 =~01234567)[{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]}..] As `` Skip $``[`5esn`..][`2esn`..] Where $1000 Contains 01234567 Contains 0X7 Create ((usn1 :`8esn`:#usn7{@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000})-[usn2?:`4esn`|:@usn5 *..0xabc{`1esn`:$`7esn` Is Not Null}]->(:usn1{usn1:Count(*)[0.12..2.9e1]})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})),(:usn1{``:.9e1[..`5esn`]}) Union All With {usn1:$_usn4 Starts With 0e-0 Starts With 1e-1}[..(:usn2{usn1:$123456789 Is Not Null,usn1:$1000 Contains 01234567 Contains 0X7})-[_usn4 *07..]->(#usn8 {`2esn`:usn2 Ends With .0})<-[? *..0xabc]->({`4esn`:.9e-12[0e0...9e-1],`2esn`:$0[$`7esn`..$`3esn`]['s_str'...0]})][..Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"])],@usn5 Ends With 's_str' Ends With 01 As `7esn` Limit 1000[_usn3..`8esn`] Remove [`` In 0.12[3.9e-1] Where 07 =~7.0e-0 =~`8esn`].`8esn`"), + octest:ct_string("Remove All(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).``!,{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null}.usn2? Create (usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]-(:_usn4{_usn3:010 Starts With 0.0 Starts With .0e0})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})"), + octest:ct_string("Unwind (_usn4 {usn1:`3esn` Ends With `6esn`})<-[``?:#usn8|:`4esn`]-(:usn1{@usn5:Count(*)}) Ends With Extract(`` In $_usn3 Is Not Null Where .9e1 Contains Null|.9e1[..`5esn`]) As `2esn` With Distinct *,Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e1[..Count(*)][..7.0e-0]) =~[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 01[Count(*)..0e-0][7..$`2esn`]] =~Single(usn2 In .0e0[$`6esn`..] Where 01[1e-1]),usn1 Ends With 12 As `` Limit `7esn` Ends With `7esn` Ends With $`3esn` Where @usn6[01][.9e0] Unwind 0e0[.12..][3.9e-1..] As `2esn` Union All Merge ((`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010})) On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)] With 11.12e-12 Is Null Is Null As `4esn`,#usn8 Starts With 11.12e-12 Starts With $`3esn` As `2esn` Skip 123.654 Ends With 0Xa Ends With .12e12 Union All Create ((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})),`5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))"), + octest:ct_string("Unwind \"d_str\"[12e12..][4.9e12..] As `2esn` Remove Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7).``?,Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null).@usn5?,[`` In $_usn3 Is Not Null Where _usn4[.0e-0][010]|`1esn`[Count ( * )][5.9e-12]].@usn5 Union Return Distinct count(Distinct $_usn4[1e-1..8.1e1][`1esn`..1.9e0])[_usn3(8.1e1[usn2..$1000][$7..0x0],false[..12e-12][...9e1])..] As @usn6,.0e-0[0e0..00][.9e1..12] As `1esn`,Count ( * ) Starts With 10.12e12 Starts With `` As `5esn` Order By 5.9e-12[9e0..] Ascending,0x0 Asc Skip 0Xa[$usn2..] With {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[..`8esn`(010[@usn5..123.654],8.1e1[usn2..$1000][$7..0x0])][..{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1}] As _usn3,@usn6[..$`3esn`][..4.9e12] As #usn8,0e-0[...9e12] As @usn5 Where $`4esn` In 123456789 In `5esn` Union All Detach Delete (:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[ *0..010]-(@usn5 {`6esn`:$0 =~01234567})-[?:#usn7|:`8esn`{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}]->(`2esn` :@usn5{_usn3:0Xa Is Not Null}) Ends With Extract(`` In $_usn3 Is Not Null Where @usn5[$_usn3..]),Count(*) Starts With $_usn4 Merge `2esn`=((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set `7esn`+=.9e12[..$usn1][..10.12e12],[usn2 In .0e0[$`6esn`..] Where $_usn3 Contains 1e1 Contains .12|$`` =~$_usn3].`5esn`!.@usn5?.#usn7? ={_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)]"), + octest:ct_string("Match `1esn`=(((:@usn5{`1esn`:@usn5[$_usn3..]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[#usn8 *01234567{`5esn`:9e-12 In 5.9e-12,#usn7:$@usn5[usn1..][$`8esn`..]}]->(:#usn7:_usn3{`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]}))) Merge (usn2 {_usn4:$999 Ends With .9e-12})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})"), + octest:ct_string("Unwind .1e1 Starts With $`7esn` As usn1 Detach Delete $usn1[$7..][$0..] Delete 0Xa Ends With #usn8 Ends With usn2,#usn8[3.9e-1.._usn3],_usn4 In `3esn` In 7.0e-0 Union Create `5esn`=(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]}),((@usn5 :usn1)-[@usn5:usn1|:#usn8 *999..]->(`6esn` :usn1{#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})) Unwind $``[`5esn`..][`2esn`..] As `8esn` Union Match `7esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Return *,.9e0 Is Null As _usn4 Order By {`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}[Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-12 Is Not Null Is Not Null)..None(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)][[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']|12e12[..$`8esn`][...0e-0]]..`4esn`(_usn4 Is Not Null Is Not Null,_usn4['s_str'..])] Descending,.9e-12[0e0...9e-1] Asc Optional Match `1esn`=((`7esn` :usn1)<-[usn1?]->(`4esn` {usn2:.9e12 Starts With #usn8 Starts With 00})),((_usn3 {`5esn`:`8esn` =~.1e1 =~.0}))"), + octest:ct_string("With Distinct `6esn`[`5esn`] As usn1,$`3esn` Starts With 0Xa As @usn6 Limit $`8esn`[#usn7][.9e1] Where 9e12[$#usn8..9e-1][$999..$`4esn`] Merge (((`1esn` :`1esn`)-[?:usn1|:#usn8{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 {`4esn`:$@usn5[$#usn8..][_usn3..]})-[ *12..0Xa{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789}]->(`2esn` {_usn3:$0 Starts With 010}))) Match (`` :#usn8{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}),`5esn`=((_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})<-[``?:_usn4|`1esn` *0Xa..7]->(`5esn` :`8esn`:#usn7{#usn8:.12e12 =~$#usn7})-[`7esn`?:@usn5]->(_usn3 {`4esn`:$`4esn` =~0e0,_usn4:#usn8[..#usn7][..@usn6]})) Union Merge `1esn`=((({``:_usn3[$_usn3][usn1]})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(#usn8 {_usn3:$usn2 In usn1 In 1e-1})<-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(_usn3 :#usn8)))"), + octest:ct_string("Remove None(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999).`3esn`?.#usn7?.`1esn`,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']).`2esn`!,{`2esn`:$`8esn` In 9e-12 In 3.9e-1}.`6esn`? Remove All(`8esn` In 01234567[..0.0][..false] Where $@usn5[$#usn8..][_usn3..]).`8esn`!.`6esn`! Create _usn3=((usn2 {`4esn`:12e12 Is Not Null})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4})) Union With Distinct *,All(`7esn` In .12e12[Count(*)..]) =~[usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]],Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01234567[6.0e0][$usn2]) Ends With `6esn`(Distinct 0e0 In $_usn4 In `2esn`) Ends With {@usn5:.0 Is Null Is Null} As `5esn` Skip `` =~123456789 Limit Extract(@usn6 In 00 =~.9e-12 =~usn1 Where 9.1e-1 Is Null) Starts With Extract(`7esn` In .12e12[Count(*)..] Where 1e1 Ends With Null Ends With `7esn`) Starts With (:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[`4esn`?:_usn3|`2esn`]-(`7esn` :#usn8{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}) Where 12 In 1000 In \"d_str\" Delete 10.12e12 In `3esn` In $usn2 Match ((usn1 :`2esn`:`8esn`{usn1:9e1 Is Not Null,`3esn`:9e0[..1e1]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[?:_usn4|`1esn`]->({`7esn`:Count(*) =~`5esn` =~$usn2})) Union Create _usn3=(((`3esn` :`8esn`:#usn7)<-[usn2:`3esn`|:_usn3 *00..123456789{`8esn`:$`` Is Null Is Null}]-(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})<-[`2esn`?:@usn5]-(#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})))"), + octest:ct_string("Merge ((`7esn` :``:usn1)-[@usn5:usn2|:`` *..0X7]-(@usn6 :`5esn`)<-[?:_usn3|`2esn` *123456789..0x0{`5esn`:`8esn` =~.1e1 =~.0}]->(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})) On Create Set `6esn`(Distinct .9e-1[3.9e-1]['s_str'],9e0 =~9e1 =~.12e12).@usn5?.`1esn` =123456789 Ends With $@usn6 Ends With 0.12 Return Distinct false[..12e-12][...9e1] As `1esn`,$usn1 Contains `7esn` Contains .9e12 As `8esn`"), + octest:ct_string("With *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By .12e-12 =~9e12 =~1e-1 Desc,11.12e-12 =~$`4esn` =~.12e12 Descending Limit [_usn4 In Count(*)[9e1..][12e-12..] Where 1.9e0 =~$`8esn` =~01234567|`6esn`[..$@usn6][..$`1esn`]] Is Not Null Is Not Null Where `2esn` =~usn1 With *,{`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As #usn7,Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789|.12e12[Count(*)..])[Single(`2esn` In .9e-12[0e0...9e-1] Where _usn4 Is Null Is Null)][{usn1:0.12[.12e-12]}] As `6esn` Limit [_usn3 In ``[$``..] Where 0e0[.12..][3.9e-1..]][{`2esn`:$`8esn` In 9e-12 In 3.9e-1}..{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}][Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..])..Single(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Union Return 123456789 Contains .1e-1 Contains .12e12 As usn1 Order By 4.9e12[1e1..'s_str'][Count(*)..0X7] Asc,9e12 Is Null Is Null Ascending Skip #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(`5esn` In 12[0xabc..][$0..] Where .0e0[1e1..][01234567..]) Limit 1e1 Union With Distinct *,9.1e-1 =~.12 =~0e-0 As `1esn` Order By 9e-1 Starts With 123.654 Starts With .9e1 Descending,$`8esn`[$``..$`1esn`][9e-12..$7] Descending Skip \"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"] Limit $`5esn` Is Not Null Where .9e1[#usn7..] With *,0.12[3.9e-1],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Skip $usn2[.12e12] Limit 9e12 Where $@usn5 Is Null With Distinct *,All(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Starts With 10.12e12 Starts With #usn7(false =~4.9e12),0e0[`4esn`] Where 1e1 Ends With Null Ends With `7esn`"), + octest:ct_string("Match `3esn`=((@usn6 :`6esn`:`3esn`)<-[`1esn`? *0X0123456789ABCDEF..0{`4esn`:9e1 Ends With .9e0}]->(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]})),({usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7})<-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]->({usn1:`4esn`[..$#usn7][..0X7],`8esn`:5.9e-12 Contains `3esn` Contains Null})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) Create (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Match usn1=(:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}) Where $`6esn`[$_usn4][01]"), + octest:ct_string("Create (((`6esn` :`5esn`{usn2:`8esn` Is Null})-[usn1?]-({@usn6:``[$``..]})<-[ *0x0..{`3esn`:$@usn6 Is Not Null Is Not Null}]-({``:_usn3[$_usn3][usn1]}))) Create ({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]})"), + octest:ct_string("Match `2esn`=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})) Where .0e0 =~5.9e-12 =~`7esn` Unwind 12.0[..Count(*)][..5.9e-12] As `1esn` Union Optional Match #usn8=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`3esn`=({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})<-[?{_usn3:00[$`6esn`]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}) Where .9e1[12] Remove ({`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})<-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-({_usn3:10.12e12[$`5esn`],usn2:5.9e-12 =~$@usn6})-[ *07..{#usn8:`1esn`[1000][Null]}]-(usn1 :`2esn`:`8esn`).`5esn`?,[`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 12 In 1000 In \"d_str\"]._usn4,(:`7esn`{`8esn`:$usn2[0e0][$7],_usn3:.9e-12[0e0...9e-1]})-[_usn4?:``|:`3esn`]-(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn1? *0X0123456789ABCDEF..0{_usn4:00[0e-0...9e-1][1e-1..``]}]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0}).@usn6!"), + octest:ct_string("Merge (((`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[`7esn`:`8esn`|:`2esn`]-({@usn6:``[$``..]})<-[#usn8?:``|:`3esn` *0..010{`1esn`:0e0 Ends With `7esn` Ends With usn1,`5esn`:9e-12 In usn2}]-(`1esn` :_usn3:_usn3$0))) Union All Optional Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),`5esn`=(`8esn` $12)<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}) Where 123456789 In 9e-12 In false Union All Create ({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})-[`4esn`?:`6esn`|#usn7]->($@usn6),(((@usn6 {`8esn`:999[..@usn5][..`1esn`]})<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)-[?{usn2:Count(*)[12..][0X0123456789ABCDEF..],_usn3:1e-1 =~0.0 =~9.1e-1}]-(`8esn` {`7esn`:$``[0.12..]}))) Detach Delete {_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0} Is Not Null,$`4esn` =~0e0 Optional Match `2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}),usn2=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Where 0e0[.12..][3.9e-1..]"), + octest:ct_string("Detach Delete .1e1[..0][..010],Extract(usn2 In .0e0[$`6esn`..]|$@usn6 Contains Count ( * ))[`2esn`(usn1[12e-12])..][(`8esn` :usn2)<-[`5esn`:`2esn`|`7esn` *..0X7]->(`4esn` :`5esn`)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})..],`7esn` Unwind true Is Null As #usn8 Merge ((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))"), + octest:ct_string("Delete .9e1 Contains `8esn`,None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null) Create @usn5=({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]})-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]->(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}),(`3esn` :`8esn`:#usn7)<-[_usn3?:`7esn`|@usn6 *..0xabc]-(`1esn` {`3esn`:$`` Is Null Is Null})<-[?:@usn6|:_usn3 *07..]-(`1esn` {`6esn`:$_usn4[Null],`6esn`:9e0 =~9e1 =~.12e12}) Union Match usn2=(((_usn4 :`7esn`{@usn6:.12e-12[999...12]})-[#usn7? *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null}))),#usn8=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Create `7esn`=((#usn7 )) Union All Detach Delete 12e12 Starts With 9e1 Starts With $`4esn`,.9e1[#usn7..] Create (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`2esn`=(`3esn` :`3esn`{`3esn`:\"d_str\"[12e12..][4.9e12..],@usn6:.9e12[..$usn1][..10.12e12]})-[?:`2esn`|`7esn`{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]->(`` :`6esn`:`3esn`{#usn8:9.1e-1[.1e-1],`2esn`:@usn6[.9e12..0e0]})-[`3esn`? *..0xabc{`6esn`:$1000 Contains 01234567 Contains 0X7,`6esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0]}]-(`` {_usn3:12e12 Starts With 9e1 Starts With $`4esn`,`1esn`:0e0 Starts With $1000 Starts With `2esn`})"), + octest:ct_string("Merge `4esn`=(((`2esn` {`7esn`:.9e12 Starts With 6.0e0 Starts With .1e1,@usn5:$#usn8[$1000..]})-[``]-(`7esn` :``:usn1{`1esn`:0e0 Starts With $1000 Starts With `2esn`,@usn6:@usn6 In 3.9e-1 In 9e-12})-[@usn5*{`7esn`:`3esn` Starts With _usn4}]->(#usn8 :_usn4{_usn3:.0 Is Null Is Null})))"), + octest:ct_string("With *,.9e0 Starts With @usn6 Where #usn7[5.9e-12][00] Merge usn1=(`` {_usn4:9e0[..1e1]})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}) On Create Set `5esn`(Distinct $`2esn`[8.1e1],Count ( * ) Is Null Is Null).`7esn`!.`8esn`? =$``[7..]"), + octest:ct_string("Unwind .1e1[..0][..010] As `5esn` Union All Create `7esn`=({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}),`2esn`=(:``:usn1{`3esn`:1e1 In .1e-1 In .0,@usn6:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Union Return 12e12 =~#usn7 =~.9e-1,All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null As @usn6 Order By Extract(`8esn` In 01234567[..0.0][..false] Where .12e-12[$@usn6..5.9e-12]|$`3esn` Starts With 0Xa) Starts With Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 9e1 Contains 4.9e12 Contains .9e0) Starts With Single(`` In $_usn3 Is Not Null Where $@usn6 =~$`2esn` =~9e1) Descending,$`` Contains 00 Contains 123456789 Asc With Distinct $123456789 Is Null Is Null As #usn8,@usn6[..$`3esn`][..4.9e12] As #usn8,1.9e0[$12][``] As `5esn` Order By `1esn` Ends With 7.0e-0 Ends With $usn1 Desc Limit $`2esn` Ends With $`8esn` Create `6esn`=((`3esn` :`8esn`:#usn7)<-[usn2?:@usn6|:_usn3]->(`8esn` {`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`})<-[_usn4?:`8esn`|:`2esn`]-(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})),`2esn`=(((#usn7 {#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2})<-[`4esn`? *0X0123456789ABCDEF..0{#usn8:$`2esn` Starts With 0x0}]->(`1esn` :@usn5{_usn3:010 Starts With 0.0 Starts With .0e0})))"), + octest:ct_string("Return `3esn` Contains $`8esn` Contains 0e0 As usn2,1e-1 =~0.0 =~9.1e-1 Order By 7.0e-0[3.9e-1..`1esn`] Asc,#usn7(`2esn` Starts With 12 Starts With 10.12e12,$usn1 Starts With 12 Starts With 12e12) Is Null Is Null Desc,0.12[.12e-12] Ascending Skip 12 Contains usn2 Contains $usn2 Unwind `5esn`[$`4esn`] As `4esn` Union Optional Match (`4esn` :`6esn`:`3esn`) Where 8.1e1 Is Null Is Null Match usn2=(((_usn4 :`7esn`{@usn6:.12e-12[999...12]})-[#usn7? *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null}))),#usn8=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Remove Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .1e1 Starts With `1esn` Starts With 6.0e0).`6esn`?.`2esn`!,{``:@usn6 In 3.9e-1 In 9e-12,`3esn`:$`` Is Not Null Is Not Null}.@usn5?.`3esn`!.`2esn`,Filter(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2).``.`8esn` Union Match `5esn`=(({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]})-[:``|:`3esn` *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})),``=(usn2 :`1esn`{@usn5:Count(*)[.0e0]})-[`8esn` *1000]->(usn1 :_usn4)-[#usn8?*..]->({_usn3:$0 Starts With 010}) Create usn1=(@usn6 :@usn5)-[:_usn4|`1esn` *00..123456789]-(`5esn` {`3esn`:#usn7 Ends With Count ( * ) Ends With @usn6,`4esn`:9.1e-1[Count(*)..][5.9e-12..]})-[`6esn`:#usn8|:`4esn` *123456789..0x0]-(_usn4 {#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12}),#usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) With *,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) Starts With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]|'s_str' Ends With 0.0 Ends With .12e12) Starts With [`` In $_usn3 Is Not Null Where false[..12e-12][...9e1]|@usn6[..$`3esn`][..4.9e12]] As `5esn`,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 123.654 Is Null Is Null) Starts With All(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * )) Starts With (_usn4 :@usn5{`1esn`:.9e-1 =~.9e-1,``:``[$``..]})-[`2esn` *010..{_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}]-(@usn5 :@usn6:_usn4) As usn1 Skip Count(*)[0.12..2.9e1] Limit (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)] Where .9e1 Starts With `4esn`"), + octest:ct_string("Delete 0X7[Count(*)][.9e0],`1esn` In 12e-12 In 1e-1,010 Unwind $999 As `` Union With Distinct *,Any(`2esn` In .9e-12[0e0...9e-1] Where .1e-1 Ends With $`8esn` Ends With .9e0) Is Null As `5esn`,0xabc =~7.0e-0 =~4.9e12 Order By (#usn8 )<-[:usn1|:#usn8{_usn4:$12[01]}]-({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(`3esn` {`1esn`:$`8esn` In 9e-12 In 3.9e-1})[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][{#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}..] Desc Where @usn6[.9e12..0e0] Unwind $_usn3 Is Not Null As `5esn` Union All Create @usn6=((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})),`3esn`=(({@usn6:``[$``..]})<-[`3esn`?:`1esn`]-(_usn4 {`4esn`:01234567[..0.0][..false],_usn4:12 =~$@usn5})-[?:@usn6|:_usn3 *999..]-({`4esn`:7 Is Null Is Null}))"), + octest:ct_string("Merge (`6esn` :`8esn`:#usn7{`4esn`:00 Is Not Null Is Not Null,`4esn`:7 =~$`5esn`}) On Match Set `8esn`+=0x0 Starts With 01234567 On Match Set #usn8 =[`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] Starts With None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7),`8esn`+=$999 =~`6esn`,@usn5 =Extract(`2esn` In .9e-12[0e0...9e-1] Where 12e-12[`7esn`..][5.9e-12..]|.9e12[..$usn1][..10.12e12]) Starts With Filter(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0[.12..][3.9e-1..]) Union All Remove Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where Count(*)[..Count(*)][..9e0]).usn2.@usn5!"), + octest:ct_string("With Distinct .9e0 Is Null Is Null As #usn7,All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Where 5.9e-12[$`4esn`]"), + octest:ct_string("Detach Delete $`7esn`[..12.0][..0e0] Create (({usn2:#usn7[10.12e12..][\"d_str\"..]})-[?:`8esn`|:`2esn` *..7]-(`4esn` :#usn8{#usn8:_usn4[7][8.1e1],#usn7:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})),(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]})))"), + octest:ct_string("Remove None(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where .9e1[...12e12]).@usn5,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $12[`1esn`..]|01[.9e-12..]].#usn7!.#usn7!.usn1! Return `6esn`(usn1 Is Not Null,123456789 =~6.0e0)[Single(_usn3 In ``[$``..] Where Null[..07])..][{_usn3:010[9e0..9e1][$_usn4..$12],`3esn`:7.0e-0[$usn2..0.12][$``..0]}..] As #usn7 Skip .0[01..`5esn`] Limit Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6) In (`1esn` :`6esn`:`3esn`)<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-({usn2:0.0[4.9e12..][00..]}) In count(Distinct $@usn5[$#usn8..][_usn3..]) Create (((:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})<-[@usn5?:`4esn`|:@usn5 *1000]-(`` :usn2)-[@usn5{@usn5:$`4esn` Ends With 0e-0}]->(`7esn` {`2esn`:usn2 Ends With .0}))) Union All Unwind Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 1e1 In .1e-1 In .0|12[0xabc..][$0..]) Contains [`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .12[$`2esn`..usn2][.9e-1.._usn3]] Contains Single(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]) As #usn8"), + octest:ct_string("With Distinct *,$12[.9e-1] As `6esn`,`6esn`[010...9e-12] As `5esn` Order By 123456789[\"d_str\"..] Descending,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Ascending,12e-12[`7esn`..][5.9e-12..] Asc Where 07[.0e0][3.9e-1] Merge (((`7esn` :usn1)<-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(_usn3 :#usn8)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`2esn`:`8esn`))) Union Delete `2esn`[..9.1e-1][..0xabc],`6esn`[`5esn`..][0.12..],0.0[All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .9e1[11.12e-12])..] Merge ((`5esn` :`2esn`:`8esn`)<-[?{`5esn`:$`2esn` In 0 In 0Xa}]->(`6esn` {`5esn`:01 Ends With \"d_str\",`5esn`:#usn7 =~`5esn` =~``})-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->({`8esn`:usn1 Ends With 12})) On Match Set Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .12[$`2esn`..usn2][.9e-1.._usn3]).``! =$1000[.._usn3][..#usn7] Return Distinct {`6esn`:7.0e-0 Is Null Is Null,usn2:6.0e0 Is Not Null} Ends With Extract(`2esn` In .9e-12[0e0...9e-1] Where .9e1[...12e12]) Ends With (:@usn5)<-[`4esn`:#usn8|:`4esn`]->(`4esn` {`1esn`:9.1e-1[Count(*)..][5.9e-12..],_usn4:$7 Is Null Is Null}) As ``,$`8esn`[12.0..][4.9e12..],.1e-1 Ends With @usn6 As @usn6 Order By 01[..01] Desc,$123456789 Is Null Is Null Desc,Extract(`` In $_usn3 Is Not Null Where `8esn` Is Null|9e1 Ends With 123456789) Ends With #usn8(Distinct `6esn`[0x0..@usn5][$1000...9e-12],01[Count(*)..0e-0][7..$`2esn`]) Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where 's_str' Is Null) Asc Skip #usn8 =~.9e-12 =~$usn1"), + octest:ct_string("Return Distinct 7.0e-0[3.9e-1..`1esn`],$``[0.12..] As usn2 Order By $7 In .9e1 In $`` Desc,$`6esn` Starts With `4esn` Descending,8.1e1 Starts With .9e12 Starts With `7esn` Desc Skip 12.0 Is Null Is Null Optional Match #usn8=((`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[ *07..{#usn8:`1esn`[1000][Null]}]-(`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})),`3esn`=({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})<-[?{_usn3:00[$`6esn`]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}) Where $``[`6esn`][00] Union With Distinct *,$`` Is Not Null Is Not Null,12e12[..123456789][..false] Skip 12e-12 Ends With @usn5 Ends With $`2esn` Limit .9e-12[..$`7esn`][...9e-1] Union All Create (((`6esn` :`5esn`{usn2:`8esn` Is Null})-[usn1?]-({@usn6:``[$``..]})<-[ *0x0..{`3esn`:$@usn6 Is Not Null Is Not Null}]-({``:_usn3[$_usn3][usn1]}))) Create ({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]})"), + octest:ct_string("Return Distinct *,1.9e0 Ends With 0Xa Ends With $12 As `7esn`,All(`` In 0.12[3.9e-1] Where `7esn`)[(#usn8 :_usn4{``:.0e0 In 10.12e12 In $`5esn`,`8esn`:$`1esn`[.9e0][$_usn3]})<-[{`3esn`:#usn8[..#usn7][..@usn6]}]->(`4esn` :_usn3:_usn3)<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999})][`8esn`(#usn7 Ends With $#usn7 Ends With #usn7,7.0e-0[`6esn`..])] Order By 9e-12 In usn2 Asc,.9e-1 Ends With `8esn` Asc,$usn2[.1e1..][.0e-0..] Desc Limit 00 Return *,$`5esn`[true],Single(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where $_usn4 Contains 123456789) Is Not Null Is Not Null Skip $`1esn` =~0.0 Unwind {usn1:$`` Is Not Null,`2esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]} In All(`2esn` In .9e-12[0e0...9e-1] Where `4esn` Starts With .0e0 Starts With usn2) As usn2 Union Delete `2esn` Is Not Null Is Not Null,$0 =~01234567,[`7esn` In .12e12[Count(*)..] Where \"d_str\" =~9e-12 =~`5esn`] Is Null Is Null Merge `2esn`=((:`3esn`{_usn3:10.12e12 In `3esn` In $usn2})<-[@usn6?:`7esn`|@usn6 *123456789..0x0{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]->(:`8esn`:#usn7{#usn8:'s_str'[0Xa..12e-12][.9e1..0xabc]})) Unwind $999 In 0.0 As `1esn`"), + octest:ct_string("Merge ({_usn4:01[..0.12]})<-[usn2?:`4esn`|:@usn5]-(#usn8 :`3esn`)-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(`3esn` {``:`6esn`[..$@usn6][..$`1esn`]}) Return *,0 Starts With 0Xa Starts With $0 Order By None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4) Asc,$``[`5esn`..][`2esn`..] Desc,0e-0[$`2esn`][8.1e1] Asc Detach Delete (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)]"), + octest:ct_string("With Distinct 0x0 Starts With $`5esn` Starts With 9e-12 Order By Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7) Descending Skip [@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null][..`1esn`(Distinct `5esn` Contains `6esn`,`3esn` Contains $`8esn` Contains 0e0)][..Single(`5esn` In 12[0xabc..][$0..] Where 1000[_usn3..`8esn`])] Limit false[..12e-12][...9e1] Where 00 Is Not Null Is Not Null Union All Remove Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7).#usn7!,(@usn5 :``:usn1{`1esn`:$``[4.9e12..2.9e1]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12}).``!.`` Detach Delete {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0} =~Filter(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where `7esn`[.1e1..][`8esn`..]),2.9e1[0..$@usn5][`7esn`..$`1esn`],All(usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null])[``($_usn3[1e-1..],.12e12[Count(*)..])][None(_usn4 In Count(*)[9e1..][12e-12..] Where 123456789 Ends With _usn4)]"), + octest:ct_string("Optional Match (#usn7 {#usn7:.9e-12[12e12][.0e0],`2esn`:$@usn5 Is Null})-[`6esn`? *999..{`3esn`:01234567 Starts With `4esn` Starts With 10.12e12}]-(`1esn` :`3esn`) Where 999 Ends With $123456789 Ends With $_usn4 Remove Single(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`).`1esn`!.`4esn`._usn4?,`7esn`:_usn3:_usn3,(:_usn4{``:$_usn3[1e-1..]})-[@usn5?:`8esn`|:`2esn`]-(`2esn` :_usn3:_usn3).#usn7.`1esn` Delete (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Starts With `7esn`(Distinct $`5esn` Is Null Is Null,$`4esn` Ends With 0e-0) Starts With Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 5.9e-12 Ends With 1e1 Ends With false),None(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null),4.9e12 =~8.1e1 =~$`8esn` Union Merge `8esn`=(`6esn` :``:usn1) On Create Set `7esn`:`8esn`:#usn7,(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(usn2 :@usn5{`8esn`:00[$`6esn`]}).#usn7.@usn5 =@usn5 Ends With 's_str' Ends With 01,None(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12).#usn7! =$999 Is Not Null With Distinct *,(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->({@usn6:0Xa[9e0]})[Extract(`` In $_usn3 Is Not Null Where .0e-0 =~12e-12)..[`7esn` In .12e12[Count(*)..] Where #usn7 Ends With Count ( * ) Ends With @usn6]] Order By false =~4.9e12 Asc,$123456789 Is Not Null Asc Limit Null In 0Xa In .9e-1 Where 0[$`1esn`..][9e12..] Create (((`2esn` :`6esn`:`3esn`{@usn5:Count(*)[.0e0]})-[usn1?:usn1|:#usn8*..]-(`7esn` {`3esn`:.9e-1 Is Null})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}))),@usn5=(:#usn7:_usn3{``:7.0e-0[..$`7esn`][..Null]})<-[_usn3?:`5esn`]->(`4esn` :#usn7:_usn3{``:999 =~0Xa =~9e0})"), + octest:ct_string("Optional Match `3esn`=((`3esn` :`7esn`)<-[?:`8esn`|:`2esn`*..{`4esn`:07 Ends With @usn6 Ends With _usn3}]->(:#usn8{usn1:.9e12 =~`5esn` =~07})),`6esn`=((#usn7 )) Where 9.1e-1 In #usn8 With Distinct *,{`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null) Order By 4.9e12 Contains .12e12 Contains 0xabc Asc,$usn1 Is Not Null Desc Skip {`5esn`:usn1[0.12..1000]} Ends With [@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`|0X7[$999...12e12][12..`2esn`]] Ends With None(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null) Where _usn4[9e0..$#usn8] Remove {usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7}.`3esn`!,(:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}).`3esn`?,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where usn2 Ends With 10.12e12).`3esn`! Union Unwind 2.9e1[...9e-12][..0] As usn2 Return Distinct *,`4esn`(Distinct 01[..0.12],$`8esn` Is Null) Contains All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]),Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} As `3esn` Limit Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null Union Create (`3esn` :`4esn`:`7esn`)-[_usn4?:``|:`3esn`]-(`8esn` :`6esn`:`3esn`{#usn7:`3esn` Ends With 010 Ends With 9.1e-1})-[ *0X0123456789ABCDEF..0{usn1:10.12e12[$`5esn`],`7esn`:Count ( * )[..2.9e1]}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]}),_usn4=((:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12}))"), + octest:ct_string("Return *,_usn4['s_str'..] As `2esn`,Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Order By .0e0[1e1..][01234567..] Descending,5.9e-12[2.9e1][9e0] Desc Skip Filter(`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]) In None(@usn6 In 00 =~.9e-12 =~usn1 Where $`3esn` Ends With 010 Ends With $`7esn`) In Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7) Return Distinct .9e1[#usn7..] Order By 00 Ascending Union Remove (`1esn` :``:usn1{_usn4:.1e1 Is Null Is Null})<-[_usn3?:``|:`3esn` *0..010]->({@usn6:\"d_str\" =~9e-12 =~`5esn`}).@usn6"), + octest:ct_string("Return 0 Contains $`6esn` Contains #usn7 Limit usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) With 's_str' =~.9e1 =~3.9e-1 As usn2,@usn5 Ends With 's_str' Ends With 01 As `7esn`,.1e1 Starts With 9e0 As #usn7 Where 1000[_usn3..`8esn`] Union All Create #usn7=(:@usn5{@usn5:0X7 Starts With 1e1 Starts With $12}) Unwind Filter(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) Starts With All(`2esn` In .9e-12[0e0...9e-1] Where 5.9e-12[9e0..]) Starts With All(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `3esn` Ends With `6esn`) As `` Remove {`4esn`:$123456789[$_usn3..][$usn2..]}.usn1 Union All Optional Match ((@usn5 :usn1)<-[_usn4{`3esn`:`1esn`[9.1e-1]}]-(`` :``:usn1{usn2:12.0[..123456789][..01]})-[usn1 *..0xabc]-(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})) Where 07[\"d_str\"..]['s_str'..] Detach Delete 7.0e-0 Is Null Is Null,Count(*)[.0e0] Create @usn6=(((`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(`8esn` :`4esn`:`7esn`)-[?*..{`7esn`:12.0 =~$@usn5 =~8.1e1,usn1:false[$1000..$@usn6][7..12]}]-(`8esn` {`7esn`:_usn4 Is Not Null Is Not Null,`7esn`:usn2[..7.0e-0]}))),((_usn3 :usn2)<-[`6esn`?:``|:`3esn`]-(usn1 :_usn4))"), + octest:ct_string("Unwind usn2 Starts With usn1 As @usn6 Union Detach Delete .1e-1[..12e12] Union All Unwind Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) As `5esn` Optional Match (`1esn` :_usn3:_usn3{@usn6:$`2esn`[8.1e1],usn1:$999}),`1esn`=(((`3esn` {usn2:07 Starts With usn1 Starts With 010})<-[:_usn3|`2esn` *010..]-(`` :usn1)<-[@usn5?:@usn6|:_usn3 *07..{_usn3:$`3esn` Is Not Null Is Not Null,#usn8:usn1[0.12..1000]}]->(`3esn` {usn2:$`7esn`[..12.0][..0e0]}))) Where .0e0[$`1esn`][.9e-12]"), + octest:ct_string("Merge `8esn`=(:#usn7:_usn3{`8esn`:.12e-12[999...12],#usn7:$`` In $@usn6 In 3.9e-1}) On Match Set {#usn7:@usn6[01][.9e0],usn2:123.654 Is Null Is Null}.`6esn`!.`3esn`! =5.9e-12[$`4esn`],_usn3:`2esn`:`8esn`,#usn7(0e0 Starts With $1000 Starts With `2esn`,Count ( * )[..`8esn`]).@usn5? =.0e0 =~5.9e-12 =~`7esn` On Create Set _usn3+=Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567)..] With Distinct 01234567[{`2esn`:$`8esn` Starts With `2esn`}..][[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where `2esn` Is Not Null Is Not Null]..],.1e-1 Is Null,.9e12[$usn2..][7..] As `2esn` Limit _usn4 Is Null Is Null Where .12e-12 Ends With $`7esn`"), + octest:ct_string("Create ((usn1 :usn2{``:$`` Is Not Null})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})),({`4esn`:7 Is Null Is Null})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}) Create `5esn`=((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]})),@usn5=(((`7esn` :_usn4{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3})-[`6esn`?{_usn4:8.1e1[usn2..$1000][$7..0x0]}]-(@usn6 {#usn8:12 Contains usn2 Contains $usn2}))) Detach Delete 01[$`4esn`..$_usn4][0e-0..$@usn6],Extract(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..]|Count(*) Is Not Null Is Not Null)[(_usn4 {#usn7:$`5esn` Is Null Is Null})-[_usn3:usn1|:#usn8 *07..]->(`4esn` :#usn8{#usn8:_usn4[7][8.1e1],#usn7:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]})<-[ *..7{_usn4:$`1esn` Starts With Count(*) Starts With $`8esn`,`3esn`:$`2esn` In 0X7 In 3.9e-1}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})][Filter(`5esn` In 12[0xabc..][$0..] Where .12e-12[$@usn6..5.9e-12])],.9e-1 =~.9e-1 Union All Remove `7esn`:#usn8,`8esn`:`6esn`:`3esn`,[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 0X7[Count(*)][.9e0]|$`8esn`[$``..$`1esn`][9e-12..$7]].usn2?.usn2? Union All With *,(:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] As _usn4 Order By 00[$`6esn`] Descending,$``[Count(*)] Desc,$`5esn` Is Null Is Null Ascending Where .9e1[...12e12]"), + octest:ct_string("Remove Any(usn2 In .0e0[$`6esn`..] Where .0e0 In 10.12e12 In $`5esn`).#usn7,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where `7esn`].``?,Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 01[Count(*)..0e-0][7..$`2esn`]).`4esn`? Merge (((`7esn` {`3esn`:.9e-1 Is Null})<-[#usn7? *00..123456789]->(`1esn` :usn2{`3esn`:.9e-12[1000..$`3esn`]})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`))) On Create Set `1esn`(Count(*) Starts With $_usn4).`8esn`! =`7esn`(7.0e-0[.._usn4][..0X7],$`5esn`[7..]) Contains [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where Count ( * )[..2.9e1]],`8esn` =.9e1[Count(*)..$`3esn`],#usn7 =12[0..usn2]"), + octest:ct_string("Remove Extract(`2esn` In .9e-12[0e0...9e-1] Where $`6esn` In $`3esn` In 9e1)._usn3!,Any(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]).#usn8? Remove [`5esn` In 12[0xabc..][$0..] Where 12 Is Null Is Null].``?,Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .1e-1 Ends With @usn6).#usn8?.@usn6._usn3 Union All Delete Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 07[.0e0][3.9e-1]) Contains Extract(`` In $_usn3 Is Not Null),Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] Merge (((`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[*{`8esn`:999[..@usn5][..`1esn`]}]->(_usn4 {`6esn`:'s_str'[12][00],_usn3:010[11.12e-12..]})-[`7esn`?{`3esn`:.9e-1[12.0]}]-(`1esn` :`5esn`{`8esn`:$#usn8[$1000..],`6esn`:$999}))) Optional Match #usn7=((`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[`2esn`:#usn8|:`4esn` *0X0123456789ABCDEF..0{#usn7:Null In 0Xa In .9e-1,@usn5:`` Ends With .9e-1 Ends With 9e-12}]->(`3esn` :_usn4{@usn6:0X7 Starts With 1e1 Starts With $12})),`7esn`=((#usn7 )) Union All Optional Match usn1=((`8esn` $12)<-[ *0Xa..7{`7esn`:.12e12[$0],`1esn`:Count ( * )[..`8esn`]}]-(_usn4 {usn1:`3esn` Ends With `6esn`})-[@usn6:`3esn`|:_usn3 *00..123456789{`5esn`:9e12 Is Null Is Null,`6esn`:$_usn3 Is Not Null Is Not Null}]-(`7esn` {`5esn`:#usn7[`5esn`..`2esn`][$`4esn`...1e1]})),_usn3=(((usn2 {`4esn`:\"d_str\" =~`5esn` =~.12e-12,`5esn`:$usn2 Contains $`4esn` Contains true})<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)-[`1esn`:@usn5 *010..{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]}]->(:#usn7:_usn3{_usn4:7.0e-0[.._usn4][..0X7]}))) Where $_usn4 Starts With 0e-0 Starts With 1e-1 Match (`` :`8esn`:#usn7{usn2:$`3esn`,@usn6:$0 Starts With 010}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where $`1esn` Starts With Count(*) Starts With $`8esn` Remove (:``:usn1{`7esn`:9.1e-1 =~@usn5 =~Count ( * )})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->($@usn6)-[#usn8]-(:`3esn`{`1esn`:$1000 Contains 01234567 Contains 0X7,``:.9e-12 Is Not Null Is Not Null}).`8esn`?,Extract(`` In $_usn3 Is Not Null Where 0e0 Is Null Is Null).usn2"), + octest:ct_string("Unwind $123456789 Contains 1000 Contains 11.12e-12 As `6esn` Detach Delete .12e12 Ends With #usn7 Ends With 2.9e1,Extract(`7esn` In .12e12[Count(*)..] Where true Starts With 2.9e1 Starts With 9e1|12[0xabc..][$0..]) Starts With Extract(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12|0.12[3.9e-1]) Starts With ``(12e12[true..][$`2esn`..]),Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where 9.1e-1 =~@usn5 =~Count ( * ))[{`4esn`:12e-12 Starts With .9e12 Starts With 0.12}..(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})] Union Return Distinct *,Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Is Not Null Is Not Null As `4esn` Order By 01 Ends With \"d_str\" Asc,$_usn3[$`8esn`..$`4esn`] Descending,Null[12e-12..] Desc Skip None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .9e-1 Is Not Null Is Not Null) =~[@usn6 In 00 =~.9e-12 =~usn1 Where 7 Is Null Is Null] Limit $``[0.12..] Unwind 0e0 Ends With `7esn` Ends With usn1 As #usn7 Union Create `3esn`=((`2esn` {``:.0e0[$`6esn`..]})-[`3esn`:`3esn`|:_usn3 *..7{usn1:$`4esn` Ends With 0e-0,`2esn`:8.1e1 Is Null Is Null}]->(`6esn` :`3esn`)<-[`7esn`?:`3esn`|:_usn3 *..0xabc]->(`8esn` :`5esn`{`2esn`:9e-12 =~9.1e-1 =~usn1,`1esn`:.9e0 Is Null Is Null})),(usn2 :`6esn`:`3esn`)<-[``? *07..{`8esn`:$usn2[0e0][$7],_usn3:.9e-12[0e0...9e-1]}]-(:`2esn`:`8esn`{`6esn`:7.0e-0 Is Null Is Null,`6esn`:999[0.12..8.1e1]})"), + octest:ct_string("With `3esn`[3.9e-1..$`5esn`] As usn2,0X0123456789ABCDEF Is Not Null Is Not Null As `2esn`,11.12e-12 =~5.9e-12 =~.9e1 As `3esn` Limit {`2esn`:`7esn` Is Not Null,@usn5:#usn8[usn1]} Starts With (`7esn` :`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})-[_usn4 *999..]->({``:@usn5[$_usn3..],`5esn`:`` Contains 12.0}) Remove @usn6($`` Is Not Null Is Not Null,.9e0 In 9.1e-1 In $123456789).`8esn`,(`7esn` :`7esn`{usn1:Null Is Not Null Is Not Null,`7esn`:usn2[..10.12e12][..$`7esn`]})<-[_usn3:_usn3|`2esn`{`7esn`:0X7[_usn4..1.9e0][Count ( * )..false],_usn4:.9e-12[9e1..8.1e1]}]-({`6esn`:`` Ends With .9e-1 Ends With 9e-12,usn2:`1esn`[..0x0][..\"d_str\"]}).`3esn`! Unwind Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789[$_usn3..][$usn2..])[Filter(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $`` In $@usn6 In 3.9e-1)][(_usn3 )<-[`5esn`?:_usn3|`2esn`{#usn8:$_usn4 Contains .12e-12}]-(#usn7 :#usn7:_usn3{#usn8:$@usn5[$#usn8..][_usn3..],`3esn`:@usn6 In 3.9e-1 In 9e-12})] As #usn7 Union Return `1esn`(12.0[`8esn`]) Ends With Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Ends With [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where .9e0 Is Null Is Null|`7esn` Is Not Null] As `4esn` Unwind $usn1[$12..] As `7esn` Merge ((:`2esn`:`8esn`{usn1:.9e1[12]})<-[{usn1:Count(*)[.0e0..][#usn7..],usn2:$`3esn` Is Null Is Null}]-({`2esn`:false[$1000..$@usn6][7..12],`2esn`:07 Ends With @usn6 Ends With _usn3}))"), + octest:ct_string("Create `8esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Remove Filter(`` In $_usn3 Is Not Null Where @usn5[$_usn3..])._usn4?,Single(@usn6 In 00 =~.9e-12 =~usn1 Where 0x0 Contains $`1esn` Contains 0.0).`4esn`,@usn5:`4esn`:`7esn` Merge (`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]->({usn2:$`3esn` Ends With 010 Ends With $`7esn`,`8esn`:`3esn`[3.9e-1..$`5esn`]}) On Match Set Single(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12).`4esn`!.#usn8?.`1esn` =1.9e0 =~$`8esn` =~01234567,`1esn` =1000[$`6esn`..12.0]['s_str'..$`3esn`],@usn5 =9e0[$usn2][0] Union All With Distinct $`2esn` Contains 123.654,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] As usn2,.9e-12[01][Count(*)] Order By (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] Ascending Skip $`3esn` Ends With 010 Ends With $`7esn` Union All Detach Delete true Is Null Is Null,$usn2 In usn1 In 1e-1"), + octest:ct_string("Unwind _usn4 Ends With .0 Ends With 7 As `7esn` Union All With *,$_usn3 Contains usn2 Contains 0xabc,(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0})-[?{`4esn`:9.1e-1 Is Null}]-(:`6esn`:`3esn`)<-[usn2 *1000{usn1:Null Starts With $`4esn` Starts With $#usn7}]->(`6esn` :`3esn`{`6esn`:07 Ends With @usn6 Ends With _usn3})[{`3esn`:4.9e12 =~8.1e1 =~$`8esn`}][{usn2:.9e12[$usn2..][7..],@usn6:4.9e12 =~8.1e1 =~$`8esn`}] As @usn5 Order By .9e12 Starts With .9e12 Starts With `7esn` Ascending,Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0)[(`3esn` {`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})<-[`1esn` *..0X7]-(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]})<-[:`2esn`|`7esn` *0Xa..7]->(_usn4 :#usn8{@usn5:$`2esn`[010..`5esn`][``..0.12],``:.12e12[$12..4.9e12][11.12e-12..9e12]})..][Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 123456789[.1e1..][$`5esn`..])..] Desc Where 12e-12[.0..] Union All Create `4esn`=({`7esn`:Count(*) =~`5esn` =~$usn2})<-[?:`8esn`|:`2esn` *..7]-(`3esn` :usn1),((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3)) With Distinct *,0 Starts With 0Xa Starts With $0 Order By None(`5esn` In 12[0xabc..][$0..] Where Null[`2esn`..]) Ends With {_usn3:$7 Contains 0e-0 Contains .0e-0} Ends With Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where true Contains 0x0|999 Ends With $123456789 Ends With $_usn4) Asc,$``[`5esn`..][`2esn`..] Desc,0e-0[$`2esn`][8.1e1] Asc Unwind (`3esn` :#usn7:_usn3)<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}) Ends With [_usn3 In ``[$``..] Where @usn5 Ends With 0] As _usn4"), + octest:ct_string("Match (`1esn` :_usn3:_usn3$0)-[`7esn`?:`5esn`]->(`1esn` :`6esn`:`3esn`)-[ *0x0..{`3esn`:$@usn6 Is Not Null Is Not Null}]-(usn1 :@usn6:_usn4),`6esn`=(:`1esn`)-[@usn5:usn2|:`` *..0X7]-(`7esn` :usn1$`6esn`) Where `8esn` =~.1e1 =~.0 Match (((`5esn` :#usn7:_usn3)<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]})<-[`6esn`:usn2|:`` *12..0Xa{`5esn`:Count(*) =~`5esn` =~$usn2,`6esn`:@usn6[.9e12..0e0]}]-(usn1 {`6esn`:_usn4[9e0..$#usn8]}))),`5esn`=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Merge usn2=(:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null}) Union Remove {`5esn`:`4esn`[0.0..][.1e-1..]}.usn2! Union All Remove All(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where true In $0 In @usn5).`4esn`.`4esn`?.`3esn`,Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where #usn7[10.12e12..][\"d_str\"..]).@usn6.`7esn`!,Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567).`4esn`!.`8esn`!.`4esn` Optional Match `4esn`=(((:#usn7:_usn3{`6esn`:123456789 =~$`1esn` =~#usn7,#usn7:$`6esn`[$_usn4][01]})<-[`8esn`?:usn2|:``]->(_usn3 :`3esn`{`6esn`:12 Contains 0e-0 Contains .0,`5esn`:7 Starts With 0X7})-[`3esn`?:`5esn` *07..{#usn7:9e-1 =~6.0e0 =~``}]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))),((@usn6 )<-[`2esn`{`4esn`:.0e0[$`6esn`..]}]->({@usn6:9e12[.0e0..],@usn6:01234567 Ends With $1000 Ends With $#usn7})-[`6esn`:#usn7|:`8esn` *01234567]-(`5esn` :`2esn`:`8esn`)) Where 0xabc Is Not Null Create `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0}))"), + octest:ct_string("Optional Match (((_usn3 :_usn3:_usn3)-[`7esn`? *..0X7{usn1:$#usn8[...9e1]}]->(_usn3 {#usn7:5.9e-12 Contains $`` Contains $`5esn`,`2esn`:1e1[3.9e-1][.9e-1]})-[#usn7? *00..123456789]->(usn1 :@usn6:_usn4))),`2esn`=((`5esn` :`1esn`)) With `8esn`[Null...12e12][0..11.12e-12] Order By `4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`) Ends With None(`` In $_usn3 Is Not Null Where .9e1[...12e12]) Descending,2.9e1 Starts With 12e-12 Starts With 0.0 Asc,.1e-1 Starts With 1000 Starts With $`1esn` Descending Limit usn2[..7.0e-0] Union All Optional Match `3esn`=(@usn5 :`7esn`),((#usn8 {_usn3:$usn2 In usn1 In 1e-1})) Where usn2[..10.12e12][..$`7esn`]"), + octest:ct_string("Delete 1000 Is Not Null Is Not Null,'s_str' Ends With 0.0 Ends With .12e12 Union All Match (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),`1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) Return Distinct (:_usn4{_usn3:$`2esn` Ends With $`8esn`,`7esn`:12e12 Starts With 9e1 Starts With $`4esn`})-[ *0Xa..7{`5esn`:`8esn` =~.1e1 =~.0}]->(:_usn3:_usn3{`1esn`:$`2esn` Ends With $`8esn`})<-[usn2 *..0xabc]->(`2esn` {`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]}) Ends With {@usn6:\"d_str\" =~9e-12 =~`5esn`} Ends With Single(_usn4 In Count(*)[9e1..][12e-12..] Where _usn4 Ends With .0 Ends With 7),\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"] As @usn6 Skip 1e-1[..2.9e1] Limit [usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null]][(:`6esn`:`3esn`{`1esn`:false Starts With 3.9e-1,`2esn`:12 Contains usn2 Contains $usn2})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})..] Remove [`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0 Starts With 0Xa Starts With $0|#usn8 =~.9e-12 =~$usn1].`4esn`,`5esn`:_usn3:_usn3,(`8esn` :_usn3:_usn3{`6esn`:9e0[..1e1],@usn6:0x0 =~$7 =~Null})<-[`5esn`:usn1|:#usn8{@usn6:01234567[...0e-0][..12],@usn6:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]}]->(:_usn4{`5esn`:0e0 Ends With 1e1 Ends With 0Xa,`4esn`:123456789 Ends With _usn4})-[`8esn` *1000]->(usn1 :_usn4).``"), + octest:ct_string("Remove Extract(`7esn` In .12e12[Count(*)..] Where Count(*)[..Count(*)][..9e0]|Null =~true =~.1e-1)._usn4?,Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where usn1 Is Not Null).usn1!.@usn6! Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where 3.9e-1[010..][9e1..]|$`5esn`[7..])._usn3.`4esn`?.`1esn`!,{usn1:01[.9e-12..],@usn6:$`5esn` Ends With $#usn7 Ends With .0e-0}.`5esn`? Return Distinct Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,07 =~_usn4 =~.9e12 As `` Order By 5.9e-12[9e0..] Ascending,#usn8[`2esn`] Desc,`7esn` Ends With 9e-1 Ends With usn1 Ascending Skip $#usn7 Starts With #usn7 Limit $123456789[$_usn3..][$usn2..]"), + octest:ct_string("Create _usn4=(`` :usn1)<-[:`7esn`|@usn6{`4esn`:01[..01]}]-(:`7esn`)"), + octest:ct_string("Remove (:`3esn`{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12})<-[:`4esn`|:@usn5 *00..123456789]-(:@usn5{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}).`3esn`?,Extract(usn2 In .0e0[$`6esn`..] Where usn2 Ends With .0)._usn4?.@usn5._usn3,{usn2:.9e-1 Is Not Null Is Not Null}.@usn6! Remove Any(`` In $`5esn` Starts With 0X7 Starts With 1e1).usn2?,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5[$``]].`6esn`!,Single(`` In 0.12[3.9e-1] Where 11.12e-12 =~$`4esn` =~.12e12).`7esn`! Delete [usn2 In .0e0[$`6esn`..] Where 010|Count ( * )[`7esn`..]] In Single(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $`5esn`[7..]) In {#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12},`7esn` Contains $7 Contains 07 Union Create #usn8=((:#usn8{_usn4:.12e12[$12..4.9e12][11.12e-12..9e12],_usn3:`5esn` Contains 1.9e0 Contains 9e0})-[#usn8:`2esn`|`7esn` *0X0123456789ABCDEF..0{`7esn`:$`3esn` Is Not Null Is Not Null,usn1:$_usn3 In 123.654 In $`8esn`}]->(:`5esn`{usn1:.9e-12[_usn4..#usn8][9.1e-1..0.12]})),`3esn`=(:`3esn`{_usn4:1000[$`6esn`..12.0]['s_str'..$`3esn`]}) Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set usn1+=9e0[..1e1] On Match Set usn1+=Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],@usn6+={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) Union Unwind [`` In $_usn3 Is Not Null Where .9e12[$usn2..][7..]|true Starts With 2.9e1 Starts With 9e1] In Any(`7esn` In .12e12[Count(*)..] Where 0Xa[9e0]) In [usn2 In .0e0[$`6esn`..] Where .12e12[`7esn`][#usn8]|7 Is Null Is Null] As @usn6"), + octest:ct_string("Remove Extract(`2esn` In .12e-12[$@usn6..5.9e-12] Where `1esn`[9.1e-1]|$`8esn` Starts With `2esn`).``!.`5esn`.``! Union Unwind {@usn5:true Contains 0x0} In Extract(`2esn` In .9e-12[0e0...9e-1] Where #usn8[..#usn7][..@usn6]|$1000[..01234567][..0X0123456789ABCDEF]) As `2esn` Return *,.0e0 Is Null Is Null As _usn4,[_usn4 In Count(*)[9e1..][12e-12..] Where $_usn3[1e-1..]][[`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0]][None(`` In 0.12[3.9e-1] Where 123456789 Contains .1e-1 Contains .12e12)] As `6esn` Skip 1000[..0e0][..$`6esn`] Limit usn1[..10.12e12][..7] Return Distinct *,0 Starts With 0Xa Starts With $0 Skip Null Starts With Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null)"), + octest:ct_string("Remove `3esn`(Distinct 9e12[...12e12][..$`2esn`],.9e1[12]).`2esn`!.`7esn`?"), + octest:ct_string("With Distinct _usn4 In `3esn` In 7.0e-0 As #usn7 Order By $`` Ends With 6.0e0 Descending,$1000[..01234567][..0X0123456789ABCDEF] Ascending Limit .1e-1[.9e12..usn2][`4esn`..$_usn3] Where $_usn4 Contains 123456789 Merge `8esn`=(`6esn` :``:usn1) On Create Set `7esn`:`8esn`:#usn7,(`1esn` :`4esn`:`7esn`{usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`2esn`?:`2esn`|`7esn`{`7esn`:0X0123456789ABCDEF Contains 8.1e1}]->(usn2 :@usn5{`8esn`:00[$`6esn`]}).#usn7.@usn5 =@usn5 Ends With 's_str' Ends With 01,None(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12).#usn7! =$999 Is Not Null Remove (#usn7 {`5esn`:.12e12[$0]})<-[`6esn`?:``|:`3esn`]->(`5esn` {`6esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12]}).`2esn`?,[`` In 0.12[3.9e-1] Where $`2esn` In 0X7 In 3.9e-1|true[9e-12...0e-0][`5esn`.._usn4]].usn2!,Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $_usn3[1e-1..]).`4esn`!._usn4! Union Delete $12[01],.9e-12 =~$`2esn` =~`4esn` Remove {#usn7:.0e0[1e1..][01234567..],@usn5:`2esn` Is Not Null Is Not Null}.#usn8?.`7esn`?,`1esn`:``:usn1,$12.`8esn`!.usn2!._usn4"), + octest:ct_string("With *,None(_usn3 In ``[$``..] Where .0e0 In 10.12e12 In $`5esn`) Is Null Is Null As ``,Count ( * ) Starts With 10.12e12 Starts With `` Skip Count(*)[..Count(*)][..9e0] Where $`6esn` Starts With `4esn` Union All With Count ( * ) Starts With 10.12e12 Starts With `` Order By Single(`7esn` In .12e12[Count(*)..] Where 7 =~$`5esn`) Is Null Ascending,4.9e12 Starts With Extract(`8esn` In 01234567[..0.0][..false] Where 's_str' Ends With 0.0 Ends With .12e12) Ascending,$`2esn`[$1000][2.9e1] Desc Remove {`4esn`:01[..01]}.`8esn`?.`8esn`?.usn1?,Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`2esn`[010..`5esn`][``..0.12]).`4esn` Create (:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})<-[{_usn3:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`3esn`:$0 Starts With 010}]->(`5esn` {_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[`6esn`?:`4esn`|:@usn5{usn1:00,`1esn`:.0e0[1e1..][01234567..]}]->(`3esn` ),usn1=((:_usn3:_usn3{usn1:.9e1[12]})) Union Remove {@usn6:$0 Starts With 010}.@usn6?,[`8esn` In 01234567[..0.0][..false] Where 6.0e0 Is Not Null|`1esn` Starts With 999 Starts With 3.9e-1].@usn5!,[`2esn` In .12e-12[$@usn6..5.9e-12] Where $`6esn` Starts With `4esn`|$`5esn` Is Null Is Null]._usn3"), + octest:ct_string("Return Distinct *,[`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where .0e0 Contains `4esn` Contains Null|.0e0[1e1..][01234567..]] Is Null Is Null As usn2,1.9e0[$12][``] As `5esn` Merge (((`7esn` :usn1)<-[`5esn`:usn1|:#usn8{`1esn`:`1esn` Starts With 999 Starts With 3.9e-1,`3esn`:9e-12 =~9.1e-1 =~usn1}]-(_usn3 :#usn8)<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]-(`4esn` :`2esn`:`8esn`))) Match (((:`5esn`{`4esn`:0e-0 In $1000 In .9e1})-[`6esn`?:`5esn` *12..0Xa{`1esn`:$`4esn`[..2.9e1][..07],@usn6:@usn5 Ends With 0}]->(#usn7 :#usn7:_usn3{usn2:Null[`2esn`..],`5esn`:7.0e-0[0X7..$`2esn`][`4esn`..`7esn`]})<-[`1esn`?:`4esn`|:@usn5 *0Xa..7]->(`4esn` {_usn4:$`1esn`[.9e0][$_usn3]}))),(`3esn` :`8esn`:#usn7)<-[`8esn`?:`2esn`|`7esn` *123456789..0x0]->({usn2:.9e-1 Is Not Null Is Not Null}) Union Return Distinct 0[..$@usn5] As `` Skip $_usn3[0X0123456789ABCDEF..12][$12..11.12e-12] Limit 1e1 Is Not Null Is Not Null"), + octest:ct_string("Optional Match (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null}),`2esn`=(((@usn6 :`6esn`:`3esn`)-[?:`4esn`|:@usn5]->(:@usn6:_usn4)-[`7esn` *0X0123456789ABCDEF..0]-(usn2 :@usn6:_usn4{usn1:`7esn` Is Not Null}))) Where 123.654 Starts With 2.9e1 Remove All(usn1 In 7.0e-0[.._usn4][..0X7] Where 0e0 Ends With `7esn` Ends With usn1).usn1!.`7esn`.`2esn`!,Filter(`5esn` In 12[0xabc..][$0..] Where 0 Ends With `` Ends With #usn8).@usn5?,(`7esn` :`5esn`{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`})<-[#usn7:`6esn`|#usn7{#usn8:$`2esn` In 0X7 In 3.9e-1}]-(`5esn` :`8esn`:#usn7{@usn6:$_usn4 Is Not Null,`6esn`:`4esn` Starts With .0e0 Starts With usn2})._usn3.@usn6!.@usn5"), + octest:ct_string("Return 123.654 Starts With Count ( * ) As `4esn`,(`7esn` {`8esn`:Count(*)[9e1..][12e-12..],@usn6:4.9e12 In 5.9e-12 In .9e0})-[:`6esn`|#usn7 *..01]->(`7esn` {_usn3:false[$1000..$@usn6][7..12]})-[usn1?:usn1|:#usn8*..]-(`7esn` {`3esn`:.9e-1 Is Null})[..Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 's_str'[12][00])][..usn2($#usn8[...9e1])],Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where 123.654)[Filter(`5esn` In 12[0xabc..][$0..] Where $usn1[$7..][$0..])..][Extract(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where .9e-1 Is Not Null Is Not Null|`6esn` In 9e-12)..] As `8esn` Order By 12 Contains _usn3 Descending Skip 12 In 1000 In \"d_str\" Remove Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 1.9e0 =~$`8esn` =~01234567).`4esn`!.`8esn`!.`4esn`,(:`1esn`{`7esn`:8.1e1 Ends With $0 Ends With 6.0e0})<-[`7esn`*..]-(`7esn` :usn1).`6esn` Remove Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where ``[..$#usn7]|2.9e1).`1esn`?,None(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where .0e-0[3.9e-1][.12e12]).`3esn`? Union Match _usn3=((usn2 {`4esn`:12e12 Is Not Null})-[?:`3esn`|:_usn3 *..0X7{`1esn`:0.12[07..3.9e-1]}]-(`` :@usn5{#usn7:$_usn3 =~$usn1 =~_usn4})) Delete 0.12['s_str'],[`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]] Create `3esn`=(({usn2:12 Ends With $7 Ends With $#usn8,@usn6:7 Contains $#usn7}))"), + octest:ct_string("With _usn3[`2esn`..][0x0..] As usn1 Order By 01234567 Starts With `4esn` Starts With 10.12e12 Ascending,0Xa In 0.12 In $#usn7 Descending,$999 Is Not Null Desc Skip $@usn5 Ends With $@usn6 Ends With \"d_str\" Limit (:`1esn`{usn1:$999 Ends With .9e-12,`6esn`:07 Is Null Is Null})-[_usn4 *07..]->(usn2 :@usn5{`8esn`:00[$`6esn`]})<-[@usn5?:`4esn`|:@usn5 *1000]-({`4esn`:.0e0[$`6esn`..]})[Extract(_usn3 In ``[$``..] Where `6esn` In 9e-12)][{`2esn`:#usn8[7..@usn5],`8esn`:_usn3[$_usn3][usn1]}] Where 11.12e-12 =~$`4esn` =~.12e12 Optional Match (:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12}),((:usn1{@usn6:9e0[.0e-0],#usn7:$`2esn` Ends With $`8esn`})-[_usn3?:@usn6|:_usn3{`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}]-({`2esn`:12e12[..$`8esn`][...0e-0],usn1:$_usn3 Contains 1e1 Contains .12})) Where 999[0.12..8.1e1] Delete $`2esn` Ends With 2.9e1 Ends With $usn1 Union All Merge (`` {_usn4:9e0[..1e1]})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}) On Match Set Any(`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]).usn1!.``?.``? =false =~4.9e12,usn1 =7.0e-0[3.9e-1..`1esn`] On Match Set {@usn5:12e-12 Contains .9e-1 Contains 9e-1}.``! =usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]),@usn6 =0.0 Is Not Null Is Not Null,[`7esn` In .12e12[Count(*)..] Where 01234567 In $@usn5 In 1.9e0]._usn3?._usn3? =.1e1 Starts With .1e-1 Optional Match usn1=((`8esn` :_usn3:_usn3)<-[_usn4? *..7{#usn7:Count ( * )[7]}]->(`6esn` :`7esn`)<-[`7esn`?:@usn5{`7esn`:0e0 In 1e1 In 8.1e1,`2esn`:10.12e12[Count(*)..]}]-(#usn8 :`3esn`)) Where .9e-12[_usn4..#usn8][9.1e-1..0.12]"), + octest:ct_string("Remove `1esn`:usn2,[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where false[$1000..$@usn6][7..12]].`5esn`? Detach Delete Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 07[.0e0][3.9e-1]) Contains Extract(`` In $_usn3 Is Not Null),$`4esn` Ends With 0e-0 Match `5esn`=(`8esn` $12)<-[`8esn`?:usn2|:``]->(#usn8 {`8esn`:1e-1 =~0.0 =~9.1e-1}),`7esn`=(`6esn` :_usn3:_usn3{@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1}) Where `1esn`[11.12e-12..]"), + octest:ct_string("Detach Delete .0e-0[3.9e-1][.12e12] Union All Remove (`2esn` {usn2:7.0e-0 Starts With $7 Starts With true})-[{usn2:$`8esn`[#usn7][.9e1],`7esn`:@usn5[$``]}]->(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(:_usn4{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}).#usn7.usn1!,`5esn`(.9e-1 Ends With `8esn`,0xabc In 10.12e12).#usn7?,Single(usn2 In $_usn3 =~$usn1 =~_usn4 Where 7 Starts With 0X7).``!.usn2? Create `1esn`=((:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[usn1 *12..0Xa]->({`5esn`:07 Starts With usn1 Starts With 010})-[`3esn`?:#usn7|:`8esn` *0x0..{#usn8:$_usn4 Contains .12e-12}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]}))"), + octest:ct_string("Return Distinct Single(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $usn2 Contains $`4esn` Contains true)[Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2|0e-0[...9e12])..[`7esn` In .12e12[Count(*)..] Where 5.9e-12[9e0..]|.9e1[..`5esn`]]][Extract(`5esn` In 12[0xabc..][$0..] Where .9e0 Is Null Is Null|$7 Is Null Is Null)..Any(`7esn` In .12e12[Count(*)..] Where 9e1 Is Not Null)] As `6esn` Order By Filter(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 12e12 Starts With 4.9e12 Starts With 0e0)[Extract(`5esn` In 12[0xabc..][$0..] Where 12e12 In $`` In 6.0e0|12e12[..$`8esn`][...0e-0])] Descending,07 Starts With usn1 Starts With 010 Ascending Union Merge (((:`4esn`:`7esn`{usn1:.12[$`2esn`..usn2][.9e-1.._usn3]})<-[{_usn4:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,`2esn`:$`8esn` Is Null}]-({#usn8:9e-12 In usn2,@usn5:`7esn` Is Not Null})-[:`5esn` *010..]-({`8esn`:9e-1 Starts With 123.654 Starts With .9e1}))) On Create Set _usn3 =5.9e-12 Contains `3esn` Contains Null Create _usn3=((:`2esn`:`8esn`{`2esn`:$_usn4[1e-1..8.1e1][`1esn`..1.9e0],usn1:.12e12[$12..4.9e12][11.12e-12..9e12]})-[`` *..0X7]->(usn2 :#usn8)<-[?{@usn5:6.0e0 Is Not Null}]-(:`1esn`{`3esn`:#usn8[`2esn`]})) Return Distinct usn1 Contains {@usn5:$_usn3 =~$usn1 =~_usn4,@usn5:0x0 Starts With 1000} Contains None(`7esn` In .12e12[Count(*)..] Where 01[.9e-12..]) As usn1 Order By .9e-12 Starts With .0e-0 Starts With usn2 Ascending Skip `4esn`[..$#usn7][..0X7]"), + octest:ct_string("Return 9e12[7.0e-0] As #usn7 Skip Extract(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 01234567 In $@usn5 In 1.9e0|#usn7[`5esn`..`2esn`][$`4esn`...1e1]) In Any(@usn6 In 00 =~.9e-12 =~usn1 Where 12e12 Ends With $`3esn` Ends With 11.12e-12) Limit $usn2[4.9e12..false][.0e-0..00] Union All Return *,07 =~7.0e-0 =~`8esn` Order By 9e12[...12e12][..$`2esn`] Ascending Limit Any(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 12[123456789][5.9e-12]) =~[@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $``[`6esn`][00]|0[$`1esn`..`8esn`]] =~Filter(_usn4 In Count(*)[9e1..][12e-12..] Where 9.1e-1 In #usn8) Remove None(_usn3 In ``[$``..] Where 0xabc[7.0e-0..][12e12..]).`3esn`.usn2?.@usn5!,Filter(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])._usn3?"), + octest:ct_string("Create usn1=(:_usn3:_usn3{#usn7:0X0123456789ABCDEF[7..$`8esn`][$#usn7..0X7]}) Union All Delete #usn8 In $#usn8 In \"d_str\",01[..01] Return Single(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..])[{usn1:$_usn3[.1e1..][$`1esn`..],`4esn`:0X7[`4esn`..][`3esn`..]}..All(_usn4 In Count(*)[9e1..][12e-12..] Where $#usn7 Starts With 10.12e12)][Single(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn4 Contains 123456789)..Any(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $7 Starts With Null Starts With `6esn`)] As `6esn`,07 =~_usn4 =~.9e12 As `` Skip 12e12 =~#usn7 =~.9e-1 Merge ((_usn3 :#usn7:_usn3{`5esn`:``[$``..]})) On Create Set @usn6(9.1e-1[$`4esn`..][$`4esn`..]).@usn5?.#usn8!.`2esn` =usn1[12e-12],`4esn` =$`6esn`[..12e12][.._usn3] On Match Set Filter(`2esn` In .12e-12[$@usn6..5.9e-12] Where $999).#usn8? =07 Is Null Is Null,`4esn` =[@usn6 In 00 =~.9e-12 =~usn1 Where 0Xa Is Not Null][..`1esn`(Distinct `5esn` Contains `6esn`,`3esn` Contains $`8esn` Contains 0e0)][..Single(`5esn` In 12[0xabc..][$0..] Where 1000[_usn3..`8esn`])],@usn5 =All(usn1 In 7.0e-0[.._usn4][..0X7] Where 7.0e-0[..$`7esn`][..Null])[``($_usn3[1e-1..],.12e12[Count(*)..])][None(_usn4 In Count(*)[9e1..][12e-12..] Where 123456789 Ends With _usn4)] Union All With Distinct *,.9e1 Starts With `4esn` As `5esn`,Count ( * )[`7esn`..] Order By $``[`4esn`..][0.0..] Desc,07 =~7.0e-0 =~`8esn` Descending Skip .9e-12[01][Count(*)] Where 1e-1 =~0.0 =~9.1e-1 Merge (`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:_usn3|`2esn` *010..]-($@usn6) On Match Set count(@usn6[..$`3esn`][..4.9e12]).`1esn`! =(`1esn` :`3esn`)-[@usn5?:`8esn`|:`2esn`]-(#usn8 {_usn4:Null Starts With $`4esn` Starts With $#usn7}) In Any(usn1 In 7.0e-0[.._usn4][..0X7] Where .0e0[..1e1][..$1000]) In {`6esn`:.0e0 Is Null Is Null,`1esn`:12e-12[`7esn`..][5.9e-12..]} On Match Set Any(usn2 In .0e0[$`6esn`..] Where 0e0[.12..][3.9e-1..]).@usn5? ={`1esn`:$``[4.9e12..2.9e1],`2esn`:$`` Is Not Null}[All(`2esn` In .12e-12[$@usn6..5.9e-12] Where #usn7 Ends With $#usn7 Ends With #usn7)]"), + octest:ct_string("Return *,`8esn` Is Null As `6esn` Order By [usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]] =~07 =~{`2esn`:$`8esn` Starts With `2esn`} Desc,0x0 =~$7 =~Null Desc,12e-12[9e0..1.9e0] Asc Create @usn5=((@usn5 :`1esn`)),(:`8esn`:#usn7{`1esn`:$_usn3[.1e1..][$`1esn`..],`6esn`:`7esn` Ends With 9e12})-[`4esn`{_usn3:$`8esn`[$``..$`1esn`][9e-12..$7],usn1:.0e0 Ends With `8esn`}]-(usn1 :_usn4)<-[usn1?]->(:`2esn`:`8esn`{_usn4:0.0 Is Not Null Is Not Null})"), + octest:ct_string("Create `7esn`=(`7esn` {usn2:12.0[..123456789][..01]})<-[usn2 *010..{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:9e12[.0e0..]}]-(`4esn` {usn1:$`1esn`[.9e0][$_usn3]})-[`4esn`?:`6esn`|#usn7]->({_usn3:$`8esn` Is Null}) Optional Match `3esn`=(@usn5 :`7esn`),((#usn8 {_usn3:$usn2 In usn1 In 1e-1})) Where usn2[..10.12e12][..$`7esn`] Create ``=((#usn7 :`8esn`:#usn7{``:.0e-0 =~12e-12,#usn8:usn1[0.12..1000]})-[ *..01]->(`1esn` :#usn8{#usn8:01[.9e-12..],@usn5:usn1 Ends With 12})<-[_usn3?]-(`2esn` :@usn5{@usn6:3.9e-1[010..][9e1..],`7esn`:`4esn` Starts With .0e0 Starts With usn2})),((`` :``:usn1)) Union Remove Any(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn`[..0x0][..\"d_str\"]).#usn8!"), + octest:ct_string("Match (usn1 :usn2),usn2=((#usn8 :`5esn`{`6esn`:8.1e1 Ends With $0 Ends With 6.0e0})-[`6esn` *0..010{``:\"d_str\"[12e12..2.9e1][`7esn`..\"d_str\"],#usn7:.0[usn2.._usn4]}]-(_usn4 :`5esn`)) Where @usn6[.9e12..0e0] Unwind 0e0 Ends With 0X7 Ends With .1e1 As _usn4"), + octest:ct_string("Create ((usn1 :usn2{``:$`` Is Not Null})-[_usn3{#usn7:Count(*)}]->(usn1 :`3esn`{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null})),((`7esn` {usn2:12.0[..123456789][..01]})-[_usn3{#usn7:Count(*)}]->(`2esn` :_usn3:_usn3)<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``}))"), + octest:ct_string("Remove Any(`5esn` In 12[0xabc..][$0..] Where `3esn` Starts With _usn4).`3esn`?,[_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]].#usn8? Unwind $@usn5 Is Null Is Null As @usn5 Create `6esn`=((_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}))"), + octest:ct_string("With Distinct .9e12[$usn2..][7..] As `2esn`,4.9e12[..Null] As `` Limit .9e-12 =~$`2esn` =~`4esn` Detach Delete 1e1 Is Not Null,1e1 Ends With Null Ends With `7esn`,Any(@usn6 In 00 =~.9e-12 =~usn1 Where 0.12[3.9e-1])[Filter(_usn3 In ``[$``..] Where Null[`2esn`..])..][Extract(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 10.12e12 In `3esn` In $usn2)..] Match usn2=(((_usn4 :`7esn`{@usn6:.12e-12[999...12]})-[#usn7? *00..123456789]->(_usn3 {@usn5:$@usn5 In .9e1 In $``,@usn5:0e0 Ends With `7esn` Ends With usn1})<-[`8esn`:`3esn`|:_usn3{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]}]-(:`1esn`{``:0xabc =~7.0e-0 =~4.9e12,@usn6:'s_str' Is Null}))),#usn8=(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``})<-[:`8esn`|:`2esn`]-(`5esn` {`5esn`:$usn2[8.1e1...9e-1][.1e-1..11.12e-12]}) Union Return 0.0[..Null][..9e-12] As `1esn`,$0 =~01234567 As `2esn` Order By All(`` In $_usn3 Is Not Null Where 0.12[3.9e-1]) Is Not Null Asc,{`6esn`:@usn6[usn1..][`1esn`..],`1esn`:010[11.12e-12..]} =~{#usn7:$usn1 Starts With usn1 Starts With 1e-1,`2esn`:10.12e12[12e12..0X7]} =~Single(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where 0X0123456789ABCDEF Contains $`6esn` Contains $123456789) Ascending,Single(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7)[{`8esn`:01[.9e-12..],`7esn`:12 In 1000 In \"d_str\"}][.0e0] Desc Skip (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With (:@usn5{`2esn`:123.654 Ends With 0Xa Ends With .12e12})<-[?:usn1|:#usn8 *00..123456789{``:00[$`6esn`]}]-(:`1esn`{`4esn`:_usn3[$_usn3][usn1],@usn6:$_usn3[.1e1..][$`1esn`..]})-[?:_usn3|`2esn`]-({#usn7:$`2esn` Starts With 0X0123456789ABCDEF Starts With `7esn`,@usn5:usn2 Ends With 10.12e12}) Ends With None(`` In 0.12[3.9e-1] Where 1e1 Is Not Null Is Not Null) Remove _usn3:`1esn`,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']).`2esn`! Union Merge (({usn1:0Xa[9e0]})<-[?{_usn4:$1000 Contains 01234567 Contains 0X7}]->(_usn4 :`6esn`:`3esn`))"), + octest:ct_string("Unwind .9e1[Count(*)..$`3esn`] As `5esn` Unwind .0e-0[0e0..00][.9e1..12] As usn2 Union Remove `3esn`.`2esn`? Delete Extract(usn2 In .0e0[$`6esn`..] Where 01234567 Starts With `4esn` Starts With 10.12e12),$usn2[4.9e12..false][.0e-0..00],usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) Detach Delete .0[usn2.._usn4],.12[.0e-0..] Union Optional Match `8esn`=(`5esn` {`5esn`:'s_str'[0Xa..12e-12][.9e1..0xabc]})-[@usn5?:usn2|:`` *0x0..{#usn8:$#usn7 Starts With 10.12e12,`7esn`:.1e1 In 9e12}]-(usn1 :usn1),`7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) Where `7esn` Ends With 9e12 Create `2esn`=((:`4esn`:`7esn`{`3esn`:`1esn`[9.1e-1]})<-[?:@usn6|:_usn3 *07..]-(#usn8 :`2esn`:`8esn`{`3esn`:7.0e-0 Starts With $7 Starts With true,`1esn`:@usn5[...9e12]})-[? *..0X7{_usn3:00[$`6esn`]}]->({`8esn`:9e-1 Starts With 123.654 Starts With .9e1})) Optional Match `7esn`=(`` {_usn4:9e0[..1e1]}),usn2=(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})"), + octest:ct_string("Create (`1esn` :``:usn1{usn1:123.654 Ends With 0Xa Ends With .12e12})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``}) Union All Delete Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct),Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where @usn6[.9e12..0e0])[Any(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where @usn6 In 3.9e-1 In 9e-12)..][[`8esn` In 01234567[..0.0][..false] Where 10.12e12[12e12..0X7]|$usn1 Is Not Null]..],Any(usn1 In 7.0e-0[.._usn4][..0X7] Where 12e12 Ends With $`3esn` Ends With 11.12e-12) In Single(usn2 In .0e0[$`6esn`..] Where 010) In Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where @usn5 =~$@usn5 =~6.0e0) Unwind 0e0 Ends With `7esn` Ends With usn1 As _usn3 Union All Merge ({_usn4:$`3esn` In 's_str' In $#usn7}) On Match Set Filter(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 999 Starts With .9e12 Starts With 3.9e-1).`6esn`.@usn6!._usn4? =`4esn`[0.0..][.1e-1..],Extract(`2esn` In .9e-12[0e0...9e-1] Where 07 Starts With usn1 Starts With 010|4.9e12 Contains .12e12 Contains 0xabc).@usn5! =9e1 Contains 4.9e12 Contains .9e0,`1esn`+=00[0e-0...9e-1][1e-1..``] On Match Set Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1)._usn4 =$7 Contains _usn4 Contains $`1esn` Remove All(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).``!,{`7esn`:$12 Contains $`7esn` Contains .0,#usn8:.9e-12 Is Not Null Is Not Null}.usn2? Optional Match (#usn8 :`3esn`{_usn3:10.12e12 In `3esn` In $usn2})-[`8esn`?:`3esn`|:_usn3{#usn8:$`2esn` Starts With 0x0}]-(`6esn` :_usn3:_usn3{_usn3:true[9e-12...0e-0][`5esn`.._usn4]})<-[]->(`2esn` {`8esn`:$#usn8[$1000..],`6esn`:$999}),(({_usn3:Count ( * )[`7esn`..],`8esn`:$`` Is Not Null Is Not Null})<-[`4esn`:_usn4|`1esn` *123456789..0x0{`6esn`:$12 Contains $#usn8 Contains 01,`3esn`:`3esn` In 0X7}]->(`8esn` :@usn5{`4esn`:9e1 Ends With .9e0})-[_usn3 *..7]-(`1esn` :`2esn`:`8esn`{usn1:$_usn3 Ends With Count(*) Ends With $``,_usn4:12e12[$@usn5..][.0e-0..]}))"), + octest:ct_string("Delete 12e-12[`7esn`..][5.9e-12..],#usn7[`5esn`..`2esn`][$`4esn`...1e1] Merge (((#usn8 :_usn4{_usn3:.0 Is Null Is Null})<-[:#usn8|:`4esn` *0Xa..7{#usn7:$`2esn` Ends With $`8esn`}]->(:`2esn`:`8esn`{`2esn`:123456789 In 9e-12 In false})<-[@usn6?{`7esn`:.1e1 Ends With `2esn` Ends With $`1esn`,#usn7:$`2esn` Ends With $`8esn`}]-(@usn5 :`7esn`{`8esn`:123.654 Starts With $7,usn2:7.0e-0[3.9e-1..`1esn`]}))) On Match Set `6esn` =0e0 Ends With 1e1 Ends With 0Xa,`8esn` =01234567 Starts With `4esn` Starts With 10.12e12,`2esn` =$`5esn` Starts With 0X7 Starts With 1e1 Union All Remove _usn3:`1esn`,Filter(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str']).`2esn`! Match ((@usn5 :#usn8{usn2:#usn7[10.12e12..][\"d_str\"..]})) Where 0[$`1esn`..][9e12..] Delete 12 Is Null Is Null,[usn1 In 7.0e-0[.._usn4][..0X7]|7.0e-0 Is Null Is Null] =~#usn7 =~`4esn`(Distinct $`2esn` Starts With 0x0,4.9e12 =~8.1e1 =~$`8esn`),$`2esn` In 0X7 In 3.9e-1 Union All With Distinct Null =~9e12 As #usn7 Where @usn6 In 3.9e-1 In 9e-12 Create `1esn`=({#usn7:.1e-1 Ends With $`8esn` Ends With .9e0,usn1:_usn3 Starts With `2esn`})-[@usn6?:@usn5]->(usn1 :``:usn1{``:#usn8 In $#usn8 In \"d_str\",`2esn`:'s_str' Ends With 0.0 Ends With .12e12})"), + octest:ct_string("Unwind 0.0[0x0..0.12]['s_str'..false] As `2esn` Merge `8esn`=((`4esn` )<-[:``|:`3esn` *0..010{``:0[$`1esn`..`8esn`]}]->(@usn5 {`6esn`:0X0123456789ABCDEF Contains 8.1e1})) On Match Set None(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7).@usn5! =$`2esn`[8.1e1] On Create Set #usn8+=12 In Count(*) In 0e0,`8esn` =$usn2[.1e1..][.0e-0..],`5esn`+=true[`6esn`..10.12e12] Remove {`6esn`:.9e-12[0e0...9e-1],``:1.9e0 =~$`8esn` =~01234567}._usn3!,Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]).@usn6?"), + octest:ct_string("Match `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})) Merge `6esn`=(usn2 {_usn4:$999 Ends With .9e-12})<-[`3esn`?:`8esn`|:`2esn`*..{@usn6:11.12e-12[010..11.12e-12]}]-(`1esn` :`7esn`{_usn3:#usn7 =~`5esn` =~``}) On Create Set Extract(`` In $_usn3 Is Not Null Where $`` =~$_usn3|`4esn` Starts With .0e0 Starts With usn2).`3esn`?.`4esn`!.`8esn` =Any(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $12 Contains $`7esn` Contains .0) Contains None(`7esn` In .12e12[Count(*)..] Where 12.0 =~$@usn5 =~8.1e1) Contains `2esn`(Distinct),_usn4+=0X7[$999...12e12][12..`2esn`],`7esn` =6.0e0 In 12 On Match Set `1esn`+=07 =~_usn4 =~.9e12,`6esn`+=None(@usn6 In .9e12 Starts With #usn8 Starts With 00) Contains [_usn3 In ``[$``..] Where Count(*)[..Count(*)][..9e0]] Contains {#usn8:`7esn` Is Null} Optional Match (_usn4 {`6esn`:$`8esn`[#usn7][.9e1]}),`1esn`=((`3esn` :@usn5{_usn3:9.1e-1 =~@usn5 =~Count ( * ),`2esn`:$`1esn`[.9e0][$_usn3]})) Where `1esn` Starts With 999 Starts With 3.9e-1"), + octest:ct_string("Return {`7esn`:$_usn3 In 123.654 In $`8esn`,_usn3:9e-1 =~6.0e0 =~``} In All(usn1 In 7.0e-0[.._usn4][..0X7] Where 07 =~_usn4 =~.9e12) In {`6esn`:999[...12e12][..0]} As `6esn` Order By Filter(usn1 In 7.0e-0[.._usn4][..0X7] Where $`3esn` =~4.9e12 =~$7) Contains {`1esn`:$`1esn`[.9e0][$_usn3]} Contains None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where 12e12[true..][$`2esn`..]) Ascending,{_usn4:7.0e-0 =~$12 =~5.9e-12,`6esn`:$0 =~01234567}[Any(`5esn` In 12[0xabc..][$0..] Where 12e-12[..$7][..$0])..Extract(usn2 In .0e0[$`6esn`..] Where $`4esn`[..2.9e1][..07]|#usn7 Ends With $#usn7 Ends With #usn7)] Asc,usn2(4.9e12[1e1..'s_str'][Count(*)..0X7],$@usn5 =~.12e-12) =~Any(`8esn` In 01234567[..0.0][..false] Where $1000[..01234567][..0X0123456789ABCDEF]) =~(`2esn` :@usn5{_usn3:0Xa Is Not Null})<-[#usn7? *00..123456789]-(:``:usn1{_usn3:00[$`6esn`]}) Asc Limit Count(*) Delete [`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]],All(`2esn` In .9e-12[0e0...9e-1] Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12])[None(`` In $_usn3 Is Not Null)..][All(`8esn` In 01234567[..0.0][..false] Where .12e-12[$@usn6..5.9e-12])..] Union Delete Extract(`5esn` In 12[0xabc..][$0..] Where 12.0[`8esn`]) Contains Extract(`` In 0.12[3.9e-1] Where true[9e-12...0e-0][`5esn`.._usn4]|false Starts With 3.9e-1) With All(@usn6 In .9e12 Starts With #usn8 Starts With 00 Where $@usn5 Is Null)[{#usn7:@usn6 In 's_str',@usn5:9.1e-1 In #usn8}..] As `3esn` Order By (usn1 {`6esn`:$`5esn`[true],usn2:1e1 Is Not Null Is Not Null})-[`3esn`?:`5esn` *07..{#usn7:9e-1 =~6.0e0 =~``}]-(_usn4 :`2esn`:`8esn`{`1esn`:`2esn` Starts With 999}) Is Not Null Is Not Null Desc,{`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1} In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) Descending,$usn2 Contains $`4esn` Contains true Ascending Where false =~4.9e12 Union Remove {#usn8:``[$``..],`1esn`:$_usn4 Starts With 0e-0 Starts With 1e-1}.#usn8.#usn8?,`4esn`:`6esn`:`3esn`,`7esn`(9.1e-1 Contains 0xabc).`7esn`"), + octest:ct_string("Return All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Union Remove Any(usn2 In $_usn3 =~$usn1 =~_usn4 Where 01[..0Xa]).`1esn`!.`1esn`! Merge #usn8=(usn1 :_usn3:_usn3) Optional Match `5esn`=(:``:usn1{_usn3:00[$`6esn`]})-[?:_usn3|`2esn`]->(`1esn` :`7esn`),`7esn`=(usn1 {`6esn`:_usn4[9e0..$#usn8]})-[`6esn`? *123456789..0x0{@usn6:false[$1000..$@usn6][7..12]}]-(`4esn` :`5esn`{`8esn`:`2esn` Is Not Null Is Not Null}) Where 1e-1 =~0.0 =~9.1e-1"), + octest:ct_string("Create `5esn`=((@usn6 {#usn8:12 Contains usn2 Contains $usn2})),((#usn8 :`5esn`{`1esn`:0e0 Ends With 1e1 Ends With 0Xa,`6esn`:`` Contains 12.0})) Merge ((:@usn6:_usn4{#usn7:.9e1[Count(*)..$`3esn`]})<-[`3esn`?:`5esn`]->(`2esn` )) On Create Set usn1+=9e0[..1e1] On Match Set usn1+=Extract(`` In $_usn3 Is Not Null Where 999 =~0Xa =~9e0|0e0[.12..][3.9e-1..])[..All(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where .12e12[$0])],@usn6+={`5esn`:5.9e-12 Contains $`` Contains $`5esn`} Ends With (:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})-[@usn5?:_usn3|`2esn` *..01{#usn7:07[.0e0][3.9e-1]}]-(_usn3 {`6esn`:8.1e1 Is Null}) Create (:_usn3:_usn3{`5esn`:`2esn` Is Not Null Is Not Null,`7esn`:2.9e1})<-[`7esn`*..]-(`7esn` :usn1),(`1esn` :``:usn1{usn1:123.654 Ends With 0Xa Ends With .12e12})<-[:usn1|:#usn8{usn1:.12[.0e-0..],`4esn`:$`6esn` Ends With 12}]-(`4esn` :usn1{`2esn`:8.1e1 Is Null Is Null})<-[`6esn`:`6esn`|#usn7*]->(`` {`1esn`:0xabc[$`4esn`..][`8esn`..],`3esn`:$_usn3 Ends With Count(*) Ends With $``}) Union All With Distinct `8esn`[6.0e0..][$`1esn`..],Single(usn2 In .0e0[$`6esn`..] Where `3esn` Ends With true) Is Null Is Null As _usn3 Unwind (#usn8 :usn1)<-[`7esn`:`4esn`|:@usn5]-({#usn8:1e1[Null..][.12..]})<-[_usn4? *07..]->(`1esn` :_usn3:_usn3$0)[..Extract(`` In $`5esn` Starts With 0X7 Starts With 1e1 Where 0e0 In 1e1 In 8.1e1)][..Any(@usn6 In 00 =~.9e-12 =~usn1 Where 01234567 Starts With `4esn` Starts With 10.12e12)] As `` Union Unwind 2.9e1[...9e-12][..0] As usn2 Return Distinct *,`4esn`(Distinct 01[..0.12],$`8esn` Is Null) Contains All(`` In $_usn3 Is Not Null Where #usn8[..#usn7][..@usn6]),Single(usn1 In 7.0e-0[.._usn4][..0X7] Where Count ( * ) In 999) Contains {_usn3:$`` =~$_usn3,#usn8:$7 Starts With Null Starts With `6esn`} As `3esn` Limit Filter(_usn4 In Count(*)[9e1..][12e-12..] Where `1esn`[11.12e-12..]) Is Null Is Null"), + octest:ct_string("Create ((:_usn3:_usn3{`8esn`:$usn2[1e-1],@usn5:00 Is Not Null Is Not Null})),#usn8=(#usn7 :usn2)<-[`` *0x0..]-(`8esn` :usn1{`4esn`:_usn4[9e0..$#usn8],usn2:_usn4[7][8.1e1]}) Optional Match (_usn4 :`7esn`{@usn6:.12e-12[999...12]}) Where Null Starts With 9e1 Starts With `` Union With All(`2esn` In .12e-12[$@usn6..5.9e-12] Where 's_str' Is Null) Starts With Filter(`4esn` In 01234567 Ends With $1000 Ends With $#usn7 Where 123.654 Ends With 0Xa Ends With .12e12) As `8esn` Order By Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where `2esn` Starts With 999)[..count($`6esn`[$_usn4][01])][..{`2esn`:true =~999,`1esn`:_usn3 Starts With `2esn`}] Asc,{usn1:0.12[.12e-12]}[Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $12[`1esn`][1e1]|1000[_usn3..`8esn`])..{`8esn`:$999 Ends With .9e-12,@usn6:1000[..0e0][..$`6esn`]}] Asc,{`3esn`:$`5esn` Ends With 9e-1 Ends With $#usn8,@usn5:12e12 Starts With 9e1 Starts With $`4esn`}[..[@usn6 In 00 =~.9e-12 =~usn1 Where 01[..01]]] Desc Skip Filter(usn2 In $_usn3 =~$usn1 =~_usn4 Where .1e1 =~10.12e12) =~Any(`2esn` In .12e-12[$@usn6..5.9e-12] Where $_usn3 Ends With Count(*) Ends With $``) =~Extract(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where $`3esn` =~4.9e12 =~$7) Where .9e1 Contains Null"), + octest:ct_string("Remove [`2esn` In .9e-12[0e0...9e-1]|$1000[$1000...9e0]].`1esn`._usn3!,{@usn5:`2esn` =~usn1,#usn8:$`` Is Not Null Is Not Null}.@usn5!,[`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 0 Starts With 0Xa Starts With $0].`7esn`! Return Distinct 10.12e12[12e12..0X7],false Starts With 3.9e-1,$`4esn` In 123456789 In `5esn` As @usn5 Skip 123456789[Count(*)] Union Detach Delete {#usn7:false,usn1:.12[$`2esn`..usn2][.9e-1.._usn3]}[None(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where 1.9e0[$12][``])..Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where .9e-1[3.9e-1]['s_str'])][All(`2esn` In .9e-12[0e0...9e-1] Where 0X7[`4esn`..][`3esn`..])..(:`3esn`{usn1:11.12e-12[010..11.12e-12],``:123456789[.1e1..][$`5esn`..]})<-[_usn4:`6esn`|#usn7]-(usn2 {#usn8:9.1e-1 In #usn8,_usn3:`8esn` Is Null})] Union Delete 9e12[.0e-0] Merge #usn7=((`7esn` {`3esn`:.9e-1 Is Null})<-[`2esn`? *..7]->(#usn8 {_usn3:$_usn4 Contains .12e-12})) On Create Set #usn7:usn2,({usn1:usn2 Ends With 10.12e12})<-[`8esn` *1000]->(#usn8 ).usn2! =$`` In `2esn` In 07,`5esn` =`8esn`[6.0e0..][$`1esn`..] On Create Set #usn7 =_usn4 In `3esn` In 7.0e-0,[_usn4 In Count(*)[9e1..][12e-12..] Where $`5esn` Ends With 9e-1 Ends With $#usn8].`5esn`! ={_usn3:@usn6 In 3.9e-1 In 9e-12} Starts With [`` In 0.12[3.9e-1] Where .1e-1] Starts With Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where $@usn6 Is Not Null Is Not Null|01234567 Starts With `4esn` Starts With 10.12e12),usn1 =({@usn5:usn1[..10.12e12][..7],`6esn`:5.9e-12[9e0..]})-[_usn3?]-(@usn5 {_usn3:0x0 Starts With 1000,`4esn`:1e-1[..$@usn5][..0xabc]}) =~(:`2esn`:`8esn`{usn1:.9e1[12]})<-[{`5esn`:$@usn6 =~$`2esn` =~9e1}]->(`4esn` {usn1:`1esn`[9.1e-1],`6esn`:.12e12[$0]})<-[ *0Xa..7{#usn7:`1esn`[11.12e-12..],``:1000[Null..]}]->(_usn4 {#usn7:8.1e1[$`5esn`][0e0],`6esn`:`5esn` Contains 1.9e0 Contains 9e0}) =~{@usn5:.0 Is Null Is Null}"), + octest:ct_string("With Distinct None(#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn`[..0x0][..\"d_str\"])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where Count(*)[0.12..2.9e1])..Single(`` In $_usn3 Is Not Null Where 12[0xabc..][$0..])] As `4esn`,Null Is Not Null Is Not Null Order By {`1esn`:.9e-12 Ends With `1esn` Ends With 123.654,`8esn`:$_usn4 Starts With 0e-0 Starts With 1e-1} In None(`4esn` In 01234567 Ends With $1000 Ends With $#usn7) Descending,$`6esn` In `2esn` Ascending,usn2 Starts With usn1 Descending Skip 12e-12[.0..] With Distinct *,.9e-12[9e1..6.0e0][`1esn`..9e0] As @usn6,$`6esn` In $`3esn` In 9e1 Order By 5.9e-12 Ends With 1e1 Ends With false Descending,$`2esn` Starts With .12e12 Starts With 3.9e-1 Ascending,`6esn`[`6esn`..] Descending Skip $_usn4 =~$_usn4 =~2.9e1 Where .9e0 Is Null Is Null Remove Any(_usn4 In Count(*)[9e1..][12e-12..] Where Count(*)[9e1..][12e-12..]).`2esn`!,({``:$`1esn`[.9e0][$_usn3],`2esn`:0[true..$7]})<-[usn1?{`2esn`:#usn8[3.9e-1.._usn3],`3esn`:0X7[_usn4..1.9e0][Count ( * )..false]}]-(:`3esn`{_usn4:Count(*) =~`5esn` =~$usn2,`7esn`:$123456789[$_usn3..][$usn2..]})<-[:`7esn`|@usn6{@usn5:9e1 Contains 4.9e12 Contains .9e0,`4esn`:usn1[..10.12e12][..7]}]-(`` :`3esn`).@usn6.@usn5? Union Remove #usn7:`3esn`,Extract(`8esn` In 12.0 Contains $_usn4 Contains $usn2 Where $usn2[8.1e1...9e-1][.1e-1..11.12e-12]).usn2!.@usn6!.`1esn`?,[#usn8 In 11.12e-12 =~$`4esn` =~.12e12 Where `1esn` Starts With 999 Starts With 3.9e-1].`6esn`._usn4?._usn4! Delete $12[01],.9e-12 =~$`2esn` =~`4esn`"), + octest:ct_string("Unwind .9e-12[_usn4..#usn8][9.1e-1..0.12] As #usn8 Union Unwind Extract(usn2 In $_usn3 =~$usn1 =~_usn4 Where $123456789 Is Not Null|\"d_str\"[12e12..][4.9e12..])[Any(`3esn` In $`3esn`[..`1esn`][..$`7esn`] Where $12[`1esn`..])][Single(@usn6 In 00 =~.9e-12 =~usn1 Where Count ( * )[..`8esn`])] As usn2 Merge ((usn1 {`5esn`:$@usn5[$#usn8..][_usn3..],@usn6:$`6esn`[$_usn4][01]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(_usn3 :`4esn`:`7esn`{_usn3:07 Is Null Is Null})<-[`7esn`?]->(`5esn` :#usn7:_usn3))"), + octest:ct_string("Unwind (`5esn` :#usn8{@usn5:0 Starts With 0Xa Starts With $0,`1esn`:.9e12[$usn2..][7..]})<-[usn2? *..01{usn1:123456789 =~$`1esn` =~#usn7}]-(:_usn3:_usn3{`2esn`:$_usn3[0X0123456789ABCDEF..12][$12..11.12e-12],`2esn`:$`2esn` Contains false Contains 123456789})[({usn1:$999 Ends With .9e-12,`3esn`:_usn3 Starts With `2esn`})<-[`6esn` *..01{#usn8:12 Contains usn2 Contains $usn2}]->(_usn4 {usn1:`3esn` Ends With `6esn`})-[ *12..0Xa{`6esn`:$0 Starts With 010}]->(:usn1{#usn8:$`3esn` Is Null Is Null,@usn5:#usn8[`2esn`]})] As `7esn` Union All Return Distinct $`2esn` Contains 123.654,Any(`2esn` In .9e-12[0e0...9e-1] Where 7.0e-0 Is Null Is Null)[(:`7esn`{@usn6:7 =~$`5esn`,_usn4:0 Ends With `` Ends With #usn8})<-[#usn8]->(_usn3 {`5esn`:`8esn` =~.1e1 =~.0})] As usn2,.9e-12[01][Count(*)] Order By (:`2esn`:`8esn`{#usn8:$_usn3 Is Not Null})<-[`6esn`:`6esn`|#usn7*]-(:`4esn`:`7esn`{`1esn`:#usn8 Starts With 11.12e-12 Starts With $`3esn`,``:`3esn` Contains $`8esn` Contains 0e0})[(`7esn` :_usn3:_usn3{usn2:#usn7[10.12e12..][\"d_str\"..]})<-[usn2?:`4esn`|:@usn5]-(:`1esn`{@usn6:01234567[$#usn7][.0],usn2:$#usn7 Starts With 10.12e12})..][{#usn7:Count(*)}..] Ascending Skip $`3esn` Ends With 010 Ends With $`7esn` Merge `8esn`=((`` {`5esn`:$`6esn` Ends With 12,`7esn`:0Xa[9e0]})<-[`2esn`?:#usn8|:`4esn` *999..{_usn3:$usn2 Ends With `8esn` Ends With _usn3}]->(`5esn` :usn1{@usn5:`2esn` Starts With 12 Starts With 10.12e12})<-[@usn5 *0X0123456789ABCDEF..0]-({`7esn`:$`8esn`[$``..$`1esn`][9e-12..$7]}))"), + octest:ct_string("Return Distinct `` =~$`5esn`,`2esn`[..3.9e-1],1e1 As `2esn` Order By (:`3esn`{``:$@usn6 Contains Count ( * ),#usn7:0e0 In 1e1 In 8.1e1})<-[?:@usn6|:_usn3 *07..]-({_usn4:01234567[6.0e0][$usn2]})<-[`2esn`?:`2esn`|`7esn` *..0X7{@usn5:$12 Contains $`7esn` Contains .0}]->(:``:usn1) In Extract(`6esn` In _usn3 Ends With 01 Ends With .1e-1 Where `4esn`[$1000..$``][$_usn4..$_usn4]) In {usn1:`7esn` Is Not Null} Descending,.9e12[..$usn1][..10.12e12] Descending Skip @usn6[..$`3esn`][..4.9e12]"). diff --git a/test/performance_statement_legacy_SUITE.erl b/test/performance_statement_legacy_SUITE.erl index 559f87f..ce30006 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 : 15.12.2016 +%%% Created : 29.12.2016 %%%------------------------------------------------------------------- -module(performance_statement_legacy_SUITE). @@ -38,1003 +38,1003 @@ all() -> %%-------------------------------------------------------------------- test_statement(_Config) -> - 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("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`]})))"). + octest_legacy:ct_string("Load Csv From Shortestpath((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))[[`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`}[@usn5..{@usn6}]|{1000}[..`5esn`][..9e12]]..][{_usn4:`8esn`[.12e12..]}..] As usn1 Fieldterminator \"d_str\" Create Unique #usn8=Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))),`2esn`=(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1}) Merge Allshortestpaths(({`4esn`:{7}[0x0][1e1]})) On Create Set #usn8 =Null In {7} Union Remove ({`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}).#usn8,None(_usn3 In `8esn`[_usn4] Where $`4esn`[usn2..]).@usn6?.`1esn` Union All Foreach(@usn6 In {usn2} Contains {0}| Create Unique Shortestpath(((:usn1{#usn8:2.9e1[{`2esn`}]})<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``))),((_usn3 {`3esn`:`3esn` Is Null,`1esn`:$`8esn`[0x0][.9e0]}))) With Distinct *,$`5esn`[{@usn6}..{`7esn`}],.9e-12[.12e12..][0Xa..] As _usn3 Order By {12}[true..][7..] Ascending,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Asc,({#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]})<-[`8esn`*]-(#usn8 )[..Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn`[0X0123456789ABCDEF..][`8esn`..]|$_usn3 =~'s_str' =~12)][..`1esn`(Distinct .9e1[$`1esn`..][$``..])] Ascending Skip {#usn7} Is Not Null Match ``=Shortestpath(({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})),#usn7=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 ))) Using Join On usn1,`1esn`,_usn4 Using Join On `5esn`,usn1,`7esn`"), + octest_legacy:ct_string("Drop Constraint On()-[@usn6:_usn3]->()Assert Exists(None(`7esn` In 0.12 Is Not Null Where $0 Contains $7)._usn3!)"), + octest_legacy:ct_string("Foreach(`1esn` In [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12][All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3])..][Case When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else @usn5[9e-1..{`1esn`}] End..]| Remove Single(`6esn` In 010[{`1esn`}..] Where $usn1[9e1][{999}]).usn1!,Single(usn1 In {#usn7} =~.12e12 =~9e0 Where ``[$#usn7]).`2esn`)"), + octest_legacy:ct_string("Create `5esn`=Shortestpath((({_usn3:.9e12 Contains 0 Contains $0}))),usn2=(`8esn` :@usn6:_usn3)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) With Distinct 0.0[$999][`6esn`] Order By $`2esn`[`8esn`..] Descending,({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}) Contains Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Contains All(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]) Descending Limit $`5esn` =~Count(*) =~1.9e0 With Distinct Count(*)[Null..][01234567..] As `1esn`,{#usn7} Is Not Null As `7esn`,10.12e12[usn2] Union Start ``=Node:`7esn`({#usn7}) Where {`7esn`} =~\"d_str\" =~{``} Create Allshortestpaths((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})),`8esn`=(((`3esn` $0)-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})))"), + octest_legacy:ct_string("Optional Match #usn8=({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)}),`7esn`=(((usn2 :`2esn`:`4esn`{`6esn`:Count(*)[$7]})<-[_usn3:@usn5|:#usn7 *..07]-({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000})<-[?:_usn3{#usn7:3.9e-1[..$1000][..0.12]}]-(_usn3 {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}))) Using Index @usn5:`5esn`(usn2) Union All Unwind {`8esn`} Contains $@usn5 As _usn4"), + octest_legacy:ct_string("Unwind $`` =~.1e-1 As usn1 Union All Match `6esn`=(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Where 0[..{#usn7}][..$_usn3]"), + octest_legacy:ct_string("Create Constraint On()<-[`5esn`:#usn8]-()Assert Exists({`6esn`:4.9e12 Is Not Null Is Not Null,_usn4:`4esn`[9e-12..true]}.`2esn`?.`8esn`?.usn1)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`3esn`)Assert Exists(Reduce(@usn5=$0 Contains $123456789 Contains {`3esn`},usn2 In .12e-12 Ends With `2esn`|010[..9e-1][..0X7])._usn3!)"), + octest_legacy:ct_string("Merge Allshortestpaths((((`4esn` :``{_usn4:$_usn3[0x0][{0}],@usn6:9e-12 Is Not Null Is Not Null})-[`3esn`:@usn6|:`4esn`]-(`1esn` :usn2{`8esn`:12.0[...0e0]})-[usn2:_usn3 *0xabc..12]->(usn1 :usn1{#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})))) On Match Set Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999}).`5esn`.#usn8!.`3esn`? =$12 In {usn2},`4esn`(Distinct .9e0[07..][4.9e12..]).`4esn`! =Reduce(#usn7=#usn8[\"d_str\"..usn2],#usn7 In .0e-0 In 12|`` Ends With 1.0 Ends With usn1) Ends With [_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3]] Ends With Shortestpath((((:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[`2esn`?:`8esn`|:#usn8]->(`` )<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)))),`5esn`+=7 Starts With 9e-12 Load Csv With Headers From $`1esn`[4.9e12..][_usn3..] As `2esn` Fieldterminator 's_str' Foreach(_usn4 In Shortestpath((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5))[Allshortestpaths((#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}))]| Delete 9e12 Is Not Null Is Not Null,.9e1 Is Null Is Null Delete $1000[$`2esn`..])"), + octest_legacy:ct_string("Create (((@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[`7esn`?:`2esn`|`5esn` *0]->({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000}))),((#usn8 :@usn5)<-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 )<-[?:`1esn`|:`1esn`{`5esn`:9e1[0.0]}]->(`8esn` )) Remove .1e-1._usn3"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`1esn`)Assert Exists(Single(usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]).`8esn`?)"), + octest_legacy:ct_string("Drop Constraint On()-[#usn7:usn1]->()Assert Exists(Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`4esn`} Ends With Count(*)|{`7esn`} =~\"d_str\" =~{``})._usn4?)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`3esn`)Assert (`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})._usn3!.`4esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn6:`4esn`)Assert Exists(Reduce(@usn6=true In 0.0,`6esn` In 010[{`1esn`}..]|2.9e1[2.12..1.9e0]).`4esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn3)Assert Extract(usn1 In \"d_str\" Contains {@usn6} Where $`` =~.1e-1).`4esn`.usn1?._usn3? Is Unique"), + octest_legacy:ct_string("Load Csv With Headers From $`8esn` Starts With {`7esn`} As #usn8 Fieldterminator \"d_str\" Union Merge @usn6=((`1esn` :`8esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})) On Create Set #usn7 =0.0[$`4esn`],count({123456789} Starts With $_usn4 Starts With 0x0).#usn7? =5.9e-12 Contains {12} Contains {#usn8} On Create Set `3esn` =$`1esn`[4.9e12..][_usn3..] Load Csv With Headers From 0Xa In 1.0 In $@usn5 As @usn5 Fieldterminator \"d_str\" Start @usn6=Relationship:usn2({usn2}) ,`7esn`=Node:#usn8(@usn5={@usn6}) Union Delete 1e-1 Contains 0.0,1e-1 Starts With .1e1 Starts With 12.0 With $@usn5[.9e-1],.1e1 In 12.0 In $``,@usn5[9e-1..{`1esn`}] As `` Order By Filter(usn1 In $@usn6 Is Null Is Null Where {`3esn`}[#usn7]) Is Null Is Null Desc,`4esn`[12.0..][9.1e-1..] Descending,$_usn3 In `2esn` In `3esn` Asc Limit 1.9e0 =~.0e0 =~0X7 Foreach(usn2 In (`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End]| Start _usn4=Relationship( {#usn8}) ,`4esn`=Node:usn2(usn1={_usn3}))"), + octest_legacy:ct_string("Merge usn2=Shortestpath((`6esn` {`3esn`:Count ( * )[_usn4..]})<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(`5esn` :``{_usn3:$_usn4[..$999],`7esn`:0X0123456789ABCDEF Ends With {1000}})) Merge `7esn`=(({_usn4:1e-1[$`4esn`]})) On Create Set `3esn` =.9e-12[{@usn5}] Union All Unwind Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) As @usn6 Union All Delete 0e-0[..7.0e-0][..{`8esn`}] Remove (`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[{`2esn`:9e1[$``.._usn4][999..`3esn`],usn1:0.0[`7esn`]}]->(#usn8 :`5esn`:`7esn`{usn2})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}).@usn5!,Case When 11.12e-12 Ends With 's_str' Then #usn7 Contains .0e0 Contains $@usn6 When $#usn7 Then `7esn`[1.9e0..5.9e-12][9e0..@usn5] Else 0.12 Is Not Null End.#usn7!"), + octest_legacy:ct_string("Remove Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]).`1esn`.#usn8!,(`6esn` {`3esn`:Count ( * )[_usn4..]})-[#usn8? *0Xa..12]->(`7esn` {#usn8:2.9e1[{`2esn`}]}).#usn8.`3esn`,{usn2:{usn1} In Count ( * ) In 12e12}.`7esn`?.`3esn`! Detach Delete $`6esn`[..01][..{_usn3}],true Contains 0X7 Contains $#usn8 Union Start `2esn`=Rel:`6esn`(`4esn`=\"d_str\") ,`8esn`=Relationship:`8esn`(#usn7='s_str')Where 0e-0 In 0X0123456789ABCDEF In `3esn` Create _usn4=((:@usn5{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null})) Match `7esn`=Allshortestpaths((`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})<-[_usn3? *..123456789{`6esn`:.0e-0[..``][..$7],usn2:{usn2} Ends With {@usn6} Ends With 1000}]-(`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(#usn8 :_usn4:`2esn`{`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})) Using Index ``:@usn5(usn1) Using Scan `1esn`:_usn3 Union Remove (:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[?:`1esn`|:`1esn` *999..123456789]->(_usn3 {`3esn`:`3esn` Is Null,`1esn`:$`8esn`[0x0][.9e0]})-[`6esn`:``|:`7esn` *0{`4esn`:00 Is Not Null Is Not Null}]->(`2esn` {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}).`4esn` Create Unique ``=Shortestpath(((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})-[? *..123456789{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:`7esn`{`5esn`:{`8esn`} Starts With .9e-1 Starts With 1000})<-[_usn3?:`6esn`{_usn4:07[{@usn5}..],usn2:$`4esn` Is Null Is Null}]->(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))),Allshortestpaths((`6esn` :`5esn`:`7esn`)-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 {`2esn`:5.9e-12[0x0..]}))"), + octest_legacy:ct_string("Drop Constraint On()-[``:_usn4]-()Assert Exists((usn1 )<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})-[?:`7esn`|usn1 *01234567..{usn1:9e12 Is Null Is Null}]-(`3esn` :`2esn`:`4esn`).`5esn`?.`3esn`!.#usn8)"), + octest_legacy:ct_string("Match _usn4=(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[:`6esn` *..0x0{``}]-(#usn8 :``{usn2:9e1 =~$`8esn` =~10.12e12}) Using Scan @usn5:`5esn` Where 's_str' =~$usn2 =~{7} Create Unique (`1esn` {usn2:.9e-12[.12e12..][0Xa..]}),Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})))"), + octest_legacy:ct_string("Match `3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})),usn1=((`` :`7esn`)) Using Index @usn5:_usn4(usn2) Using Join On `1esn`,`3esn`,`5esn` Union Return Distinct *,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) As #usn8,Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``}) In (_usn4 :_usn3)<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-({#usn7:12e12[.9e12..07]}) In @usn5({1000}[0..]) Unwind .1e-1 Is Not Null As `3esn` Union All Detach Delete .1e-1 Contains .12e-12,{`5esn`:$`6esn`[@usn6...9e-12]}[{usn1:$_usn3[0x0][{0}]}..Filter(_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`])][Case When .12e12 Ends With 07 Ends With 3.9e-1 Then 01234567[\"d_str\"..][$`4esn`..] End..Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End],0xabc Is Null Is Null Start _usn4=Node:@usn6(#usn8='s_str') "), + octest_legacy:ct_string("Load Csv From None(`2esn` In $@usn5 Is Not Null Is Not Null Where usn1 Ends With 11.12e-12 Ends With 5.9e-12) Is Not Null Is Not Null As `` Create Shortestpath(((`7esn` {@usn5:Count ( * )[_usn4..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))) Union Start @usn5=Rel:#usn7(usn1={`6esn`}) Where #usn7 Contains .0e0 Contains $@usn6 Return Count(*) Starts With {usn2} Starts With `2esn` As `3esn`,0.12 Ends With 7 Ends With 12,`5esn`({`5esn`}[01234567..][5.9e-12..],5.9e-12 Is Null Is Null)[Reduce(#usn7={12} Ends With $`3esn` Ends With 0xabc,usn1 In $@usn6 Is Null Is Null|`1esn`[Null][{@usn6}])..@usn5(`3esn` Contains `2esn` Contains {_usn4},2.9e1 In {``})][Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789}))..Any(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`)] As usn2 Delete $`8esn`[0x0][.9e0],12e12[usn2..$`6esn`]"), + octest_legacy:ct_string("Optional Match #usn8=Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))),Shortestpath(((@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})-[@usn5:`6esn` *..00]->(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Using Index `3esn`:_usn4(@usn6) Where @usn6[0x0..][$_usn4..] Load Csv From Any(usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-12[010..{#usn7}][{123456789}..7])[[usn1 In $@usn6 Is Null Is Null Where _usn3 =~{7} =~123.654|`1esn` =~{12} =~{999}]][(`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[#usn8?:`8esn`|:#usn8 *999..123456789]->(`3esn` :usn2)<-[{usn2:{1000}[..{usn1}][..1e-1]}]->(`4esn` {`6esn`})] As `4esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Unwind Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null As `2esn` Union All Remove `8esn`(#usn7[$`8esn`][{`3esn`}],`6esn`[$@usn5][01]).usn1.@usn5.`4esn`?,({``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]}).`1esn`?,None(usn1 In \"d_str\" Contains {@usn6} Where false =~{`8esn`} =~00).`5esn`!.#usn8! Create Unique ((`4esn` :#usn7:`8esn`)<-[:`8esn`|:#usn8{_usn4:$#usn7 Ends With {`5esn`} Ends With 01}]-({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[usn1:#usn7|:@usn5 *999..123456789]->(`5esn` :``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})),(`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}) Foreach(`1esn` In None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..])| Create Unique (((@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?*..]-(`` {`6esn`:1000[{`1esn`}..][$`3esn`..]})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))),Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`))) Union Delete @usn6[0x0..][$_usn4..],1e1 =~{@usn5} =~`7esn`,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]) Is Null"), + octest_legacy:ct_string("Foreach(`7esn` In $`1esn`[..1000][..\"d_str\"]| Create Unique #usn8=((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) Create usn2=Allshortestpaths(((:`8esn`{@usn6:$`6esn`[$_usn3..{1000}],_usn3:0xabc[..{usn1}][..\"d_str\"]}))),#usn7=Shortestpath(()<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]-({`4esn`:.9e12[6.0e0..][@usn5..],``:1.0 Is Not Null})-[`3esn`? *..07]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}))) Optional Match ``=(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}) Using Scan `6esn`:#usn8 Using Index @usn5:@usn6(`5esn`) Union With Distinct [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End As `5esn` Order By `1esn` In 6.0e0 In 12 Descending Limit {`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}} Starts With Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999|$`1esn`[..12e-12][...9e12]) Starts With (`4esn` :`8esn`{12})<-[`2esn`?:`4esn`|:`2esn`]-(`4esn` {`8esn`:5.9e-12[0x0..]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}) Union All With Distinct *,$`5esn`[{@usn6}..{`7esn`}],.9e-12[.12e12..][0Xa..] As _usn3 Order By {12}[true..][7..] Ascending,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Asc,({#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]})<-[`8esn`*]-(#usn8 )[..Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn`[0X0123456789ABCDEF..][`8esn`..]|$_usn3 =~'s_str' =~12)][..`1esn`(Distinct .9e1[$`1esn`..][$``..])] Ascending Skip {#usn7} Is Not Null Start `5esn`=Node:#usn7({usn1}) Where {1000} =~4.9e12 =~9e1 Unwind Case When {usn2} In false Then {`3esn`} Is Not Null Is Not Null When 6.0e0 Is Null Then {`4esn`}[{`3esn`}][$`2esn`] End[exists(Distinct {`3esn`}[#usn7],@usn5 =~$#usn7 =~{usn1})..] As #usn8"), + octest_legacy:ct_string("Create _usn3=(`3esn` :`2esn`:`4esn`) Start @usn5=Node:#usn7(usn1={`6esn`}) ,`4esn`=Node( {``})Where $123456789 Match usn2=(((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(#usn7 :`8esn`))),#usn7=Shortestpath((`1esn` :usn2{`8esn`:12.0[...0e0]})-[?:`1esn`|:`1esn` *..0x0{@usn6:.0e-0 In 12}]-(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})) Using Scan `8esn`:`4esn` Where $`7esn` In $@usn5 Union All Create Unique `2esn`=((_usn3 :`6esn`{usn2:.9e1 In .1e-1,usn2:1e-1 Contains 0.0})) Union All Remove Case $`8esn`[0x0][.9e0] When 9e1 Starts With $@usn6 Starts With 0e-0 Then {#usn8} Starts With {`2esn`} Else 9e-12[$7..] End.#usn7 Load Csv From $``[Count(*)..{12}] As usn2 Fieldterminator 's_str'"), + octest_legacy:ct_string("Load Csv From Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] As `3esn` Fieldterminator \"d_str\" Union All Merge `3esn`=Allshortestpaths(((`4esn` :`8esn`{`4esn`:4.9e12 Starts With {``},`8esn`:$12 Ends With {_usn4} Ends With $`8esn`})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`)<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))) On Match Set `3esn` =0x0 Ends With #usn8 Ends With .9e-1,`7esn`+=`4esn` Ends With 9e12 Ends With {`5esn`} Load Csv From {@usn5:$@usn5 Is Not Null Is Not Null} Contains None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[..0xabc][..{`6esn`}]) As `6esn` Return Distinct Case When 9e-12[010..{#usn7}][{123456789}..7] Then $999 =~false =~{`8esn`} When {0}[.0e-0][$`2esn`] Then 12e12 Is Not Null Is Not Null Else false[..usn2][..999] End[Allshortestpaths(((({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(@usn6 :@usn5)-[`2esn`? *7{`5esn`:false[..usn2][..999]}]-(`4esn` :@usn6:_usn3))))..All(usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null)][.9e0..`4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`)] Order By $`5esn` Is Null Desc,8.1e1[..9.1e-1][...9e1] Ascending,[`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]) Asc Skip @usn5[{`1esn`}..][Count ( * )..] Union Start `5esn`=Node:`1esn`(@usn6={`4esn`}) ,`7esn`=Node:@usn6(`3esn`={``})Where {@usn6} In 9e12"), + octest_legacy:ct_string("Unwind Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 10.12e12[usn2]|usn1 Ends With 11.12e-12 Ends With 5.9e-12)[Reduce(usn1={usn1} Is Not Null,usn1 In \"d_str\" Contains {@usn6}|{`3esn`} =~$`` =~$`8esn`)..Single(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)][[usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 00 =~`4esn` =~.9e-12]..Single(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12)] As @usn5 Return *,$1000[..0e-0][..010] As _usn4,Any(usn1 In $@usn6 Is Null Is Null)[Case {_usn3}[{0}...9e-1][9e-1...0e0] When 010[..9e-1][..0X7] Then $0 Ends With $usn1 Ends With {``} End..Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]})))] As `4esn` Order By 9e-12[0e0..@usn5] Ascending,{``:01234567[10.12e12][0Xa]} Is Null Is Null Descending,{_usn3} In $#usn8 In $12 Asc Skip Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789)[..All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 1e1 =~{@usn5} =~`7esn`)][..Case 07[..$`5esn`] When 00[$_usn4][$`1esn`] Then {#usn7}[.12e-12] Else `5esn` Contains 0 Contains $12 End] Start ``=Node:_usn4({999}) ,``=Node:#usn8(usn2={@usn5}) Union All Foreach(`` In Filter(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Starts With (#usn7 :``)-[`3esn`{`4esn`:12e12[.9e12..07]}]-(`1esn` :``{_usn4:$@usn5 =~{`3esn`}})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}) Starts With Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)| Create ((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})),`4esn`=((`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[?$999]-(`8esn` :@usn6:_usn3)<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})) Start usn1=Rel:`8esn`({`3esn`}) ,#usn8=Rel:`1esn`(`4esn`={@usn5}))"), + octest_legacy:ct_string("Load Csv From {@usn6} Is Null As _usn3 Union All Merge `8esn`=Allshortestpaths(((`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})-[`2esn`?:@usn6|:`4esn` *010..0{`4esn`:Null[$`3esn`..][`1esn`..],_usn3:6.0e0[$#usn7..$1000]}]-(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]})-[`3esn`:#usn8|:``{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}]->(:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]}))) On Match Set `` =6.0e0[$12..0.12],#usn7+=7 In 1e1 In {``} On Match Set `` =$usn2 Starts With $999 Starts With .0e0,All(usn1 In \"d_str\" Contains {@usn6} Where $1000 Is Null)._usn3?._usn4!.`7esn`? ={usn1:$usn1[9e1][{999}],#usn8:0e-0[$``..10.12e12]}[Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End] Create `8esn`=Shortestpath(((:usn1{#usn8:2.9e1[{`2esn`}]})<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``))) Unwind {12}[true..][7..] As @usn5"), + octest_legacy:ct_string("With $#usn8 Starts With 9.1e-1 Starts With {#usn7} As `8esn`,$`1esn` Contains 1000 Contains $123456789 As _usn3 Order By 00[{1000}] Descending,'s_str'[$_usn3..][9.1e-1..] Desc,$_usn4 =~$#usn8 =~{`4esn`} Desc Skip $@usn6[...9e-1] Limit $#usn7[01..2.12][2.12..3.9e-1] Where {#usn7} Starts With .1e-1 Return Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] As #usn8,[`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]),{`7esn`} Is Not Null Is Not Null As `1esn` Order By 00[{1000}] Descending,'s_str'[$_usn3..][9.1e-1..] Desc,$_usn4 =~$#usn8 =~{`4esn`} Desc Skip $``[9e12..] Limit Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[`8esn`(0X0123456789ABCDEF Is Not Null Is Not Null,{usn1} Is Not Null Is Not Null)..][{usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}..] Create Unique `7esn`=Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}))))"), + octest_legacy:ct_string("Drop Constraint On(``:`8esn`)Assert Exists(Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where 07[{@usn5}..]).`7esn`?)"), + octest_legacy:ct_string("Using Periodic Commit 07 Load Csv With Headers From $@usn5[.9e-1] As `7esn` Return *,123456789[#usn7..9e-1][10.12e12..{0}] Order By [`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]] Is Not Null Is Not Null Desc,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) Desc Merge usn1=Shortestpath((`1esn` :`7esn`{usn1:3.9e-1 Starts With .9e0 Starts With {#usn7}})<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`6esn` :`4esn`:usn2)-[`1esn`]-(`2esn` :`2esn`:`4esn`{#usn7:0 Starts With `7esn` Starts With 9e0})) On Create Set _usn4+=123456789[_usn4..`1esn`][$`6esn`..{@usn6}],#usn7+=1.9e0[..1.0][..`6esn`]"), + octest_legacy:ct_string("Load Csv With Headers From $0 Is Null As `7esn` Fieldterminator \"d_str\" Detach Delete $_usn3[0X0123456789ABCDEF..][0x0..],0[10.12e12]"), + octest_legacy:ct_string("Create Constraint On()<-[`5esn`:`1esn`]-()Assert Exists(Case When `2esn` Starts With 010 Starts With `` Then 00[$``] Else @usn6[0x0..][$_usn4..] End.@usn6)"), + octest_legacy:ct_string("Unwind $12 =~4.9e12 As `5esn` Merge _usn3=Shortestpath(((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))) On Create Set @usn5 ={``}[$usn2..00][{_usn3}..123.654],_usn4 =Reduce(`3esn`=`7esn`[1.9e0..5.9e-12][9e0..@usn5],`` In `7esn` =~#usn8 =~\"d_str\"|{_usn3}[{0}...9e-1][9e-1...0e0])[Case false Contains {`7esn`} When `3esn` Is Null Then `1esn` Is Not Null Is Not Null Else .9e-1 Is Null Is Null End..][Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999})..],{@usn5:`2esn`}.``! =\"d_str\" Starts With ``"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:usn2)Assert Exists(Case When $`4esn` Ends With {999} Then 6.0e0[$#usn7..$1000] When .12e12 Is Not Null Then {`6esn`} Starts With .12e-12 End.`5esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:#usn8]-()Assert Exists(Case When 9e0[{7}...0e-0][Null..@usn5] Then $usn2 In #usn7 In #usn7 When 999 Ends With {#usn8} Then `1esn` =~{12} =~{999} Else {`1esn`} Is Null End.@usn6)"), + octest_legacy:ct_string("Load Csv With Headers From Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[`8esn`(0X0123456789ABCDEF Is Not Null Is Not Null,{usn1} Is Not Null Is Not Null)..][{usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}..] As usn2 Fieldterminator \"d_str\" Union All Load Csv From None(`2esn` In $@usn5 Is Not Null Is Not Null Where {7}[$@usn5..123456789][1e1..1.9e0]) Ends With Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End Ends With {_usn3:$1000 Starts With {@usn6} Starts With $@usn5} As `4esn` Fieldterminator \"d_str\" Union All Load Csv With Headers From 2.9e1 =~{123456789} =~01 As _usn3 Fieldterminator \"d_str\" With Distinct Any(`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]) In Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Skip {usn2} Contains {0}"), + octest_legacy:ct_string("Drop Constraint On(#usn7:_usn4)Assert [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where .12e-12[9e1]|.9e0[07..][4.9e12..]].usn2 Is Unique"), + octest_legacy:ct_string("Start #usn7=Rel:@usn6({1000}) ,`5esn`=Node:`1esn`(@usn6={`4esn`})Where Count(*) Starts With 07 Starts With $#usn7 Union Create Unique @usn6=((`1esn` :`8esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:`1esn`]-()Assert Exists(Single(#usn7 In .0e-0 In 12 Where {0}[.0e-0][$`2esn`]).`1esn`.@usn6?.@usn6!)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:#usn7)Assert Exists(Any(`` In `7esn` =~#usn8 =~\"d_str\" Where 12e12 Is Not Null Is Not Null).`5esn`!)"), + octest_legacy:ct_string("Optional Match `6esn`=(:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[:`2esn`|`5esn`{`8esn`:$`4esn`[$@usn6...12e12]}]-(usn1 {@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]})<-[?:usn1|usn2{#usn8:'s_str'[`2esn`][12.0]}]->(:`1esn`:``),(({`6esn`:3.9e-1[..$1000][..0.12]})-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-(:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})) Using Join On @usn5,_usn4 Using Index `6esn`:`8esn`(`2esn`) Union Match `8esn`=Allshortestpaths(({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})),``=(((#usn7 )-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(`2esn` :@usn5)<-[?:`2esn`|`5esn` *..123456789$1000]-({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}))) Using Scan `8esn`:#usn7 Using Index `3esn`:usn2(`5esn`) Merge Allshortestpaths((`4esn` :@usn6:_usn3)-[?:_usn3{usn2:010[{`1esn`}..],`1esn`:`5esn` Contains 0 Contains $12}]-(@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})<-[ *01234567..{usn1:{12} Contains `8esn` Contains @usn5}]->(`5esn` )) Union All Create Allshortestpaths(((`4esn` :#usn7:`8esn`)<-[:`8esn`|:#usn8{_usn4:$#usn7 Ends With {`5esn`} Ends With 01}]-({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[usn1:#usn7|:@usn5 *999..123456789]->(`5esn` :``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null}))),(`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`3esn`)Assert {@usn6:12e12[{`4esn`}..`4esn`][999..{@usn6}]}.usn1?.`8esn`? Is Unique"), + octest_legacy:ct_string("Start `5esn`=Node:_usn4(`3esn`={_usn3}) Match ``=Allshortestpaths(((`8esn` :`8esn`)<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))) Using Scan @usn6:usn1 Using Index @usn5:`3esn`(_usn4) Load Csv From Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]) In (`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) In `4esn`($#usn7[01..2.12][2.12..3.9e-1]) As _usn3 Fieldterminator 's_str' Union All Unwind `3esn`[{`4esn`}] As #usn7 Foreach(`1esn` In 07 Ends With {@usn5:.1e1 Is Null Is Null} Ends With Filter(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 1.9e0[.12e-12][9e-12])| Unwind Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`|.9e-12[.12e12..][0Xa..])[{#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}..] As `1esn`) With 0xabc[..Count(*)][..$`5esn`],Case {1000}[..`5esn`][..9e12] When $`8esn` Then Null[$`3esn`..][`1esn`..] End =~None(`` In `7esn` =~#usn8 =~\"d_str\" Where 7 In 1e1 In {``}) =~{`6esn`:usn2 Contains `2esn` Contains {1000}} As `3esn` Order By Single(usn1 In $@usn6 Is Null Is Null Where 0X0123456789ABCDEF Ends With {1000}) In (`1esn` :#usn8:@usn6{usn1:#usn8 Is Null Is Null,_usn3:{`4esn`} In 1000 In {@usn5}})-[``:``|:`7esn`*{#usn8:{#usn7}[.12e-12],`3esn`:1.9e0[`6esn`][`7esn`]}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})-[usn1?:`3esn`|`3esn`*..]->(:usn1) In Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1) Ascending Skip $_usn3[.0e-0..999] Where 3.9e-1 Ends With {usn1} Ends With {`5esn`}"), + octest_legacy:ct_string("Create Constraint On(_usn4:#usn7)Assert Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``))).@usn6! Is Unique"), + octest_legacy:ct_string("Start @usn5=Rel:`8esn`(usn1={#usn7}) ,``=Node:`7esn`({#usn7})Where 00[$``] Optional Match (:usn2)<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:#usn8|:``{#usn8:{_usn4} In 0X7 In 0e0,`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]-(@usn5 ) Union Delete [`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null] =~`6esn`(Distinct 2.9e1[Count ( * )..]),{`3esn`} Is Not Null Is Not Null Union Merge Allshortestpaths(((`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})<-[usn2? *0xabc..12{`6esn`:`8esn`[_usn4]}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]}))) On Match Set usn1 ={`6esn`} In 11.12e-12 In 2.9e1,#usn8+={@usn5} Contains .1e1 Contains {`5esn`},@usn6+={`3esn`}[#usn7] On Create Set @usn6 =$`5esn` In ``"), + octest_legacy:ct_string("Drop Index On:`1esn`(`2esn`)"), + octest_legacy:ct_string("Unwind Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})[Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})<-[`5esn`?:`7esn`|usn1{@usn5:9e0[`3esn`][0]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )))..][Case When $#usn7 Contains 3.9e-1 Then .12e12 Starts With 5.9e-12 Starts With `4esn` When {1000}[`2esn`...0e-0][9e-1..0X7] Then 010[...12e-12] End..] As `3esn` With Distinct .0e0[$usn1][0] As ``,0xabc[0Xa..],9e-12 Ends With 9e1 Ends With 4.9e12 As `5esn` Order By $`` Ends With 1e-1 Ends With $@usn6 Ascending Limit .9e0 Ends With $0"), + octest_legacy:ct_string("Unwind .9e12 Is Not Null Is Not Null As _usn3 Merge Allshortestpaths(((`4esn` :#usn7:`8esn`)<-[:`8esn`|:#usn8{_usn4:$#usn7 Ends With {`5esn`} Ends With 01}]-({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[usn1:#usn7|:@usn5 *999..123456789]->(`5esn` :``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})))"), + octest_legacy:ct_string("Foreach(@usn5 In {@usn5} Contains .1e1 Contains {`5esn`}| Return $`7esn` In $`4esn` Order By 0x0 Ends With #usn8 Ends With .9e-1 Descending,$12 Is Not Null Descending,$`` =~$_usn3 Asc Skip {#usn8} Starts With {`2esn`}) Foreach(_usn3 In 01 Is Not Null| Create Unique _usn4=((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})),`4esn`=(({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)) Detach Delete {`1esn`} Contains 1.0 Contains 4.9e12,{999}[..`6esn`],{`3esn`} =~$`` =~$`8esn`) Union Load Csv With Headers From 1000 As @usn6 Fieldterminator \"d_str\" Union All Start usn2=Relationship:@usn6(#usn8='s_str') ,`6esn`=Rel:@usn6(`8esn`='s_str')"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`5esn`)Assert Any(@usn6 In 9e12[..usn2][.._usn3] Where $0 Ends With 9e-12 Ends With $_usn4).@usn6!.usn2? Is Unique"), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv With Headers From $`1esn`[4.9e12..][_usn3..] As `2esn` Fieldterminator 's_str' Merge @usn5=(_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]}) On Match Set `7esn`+=$_usn3[0x0][{0}],Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}}))._usn3 =9e0[{7}...0e-0][Null..@usn5],usn1+=Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null Match `6esn`=Shortestpath((((:`6esn`{`3esn`:9e12[..usn2][.._usn3]})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})<-[_usn4 *010..0{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}]-(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})))),Allshortestpaths((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})) Using Scan `1esn`:_usn3 Using Index `3esn`:`2esn`(`7esn`)"), + octest_legacy:ct_string("Create Constraint On(``:#usn8)Assert Exists(Extract(_usn3 In `8esn`[_usn4] Where 12.0[..Count ( * )][..@usn6]|00 Is Not Null Is Not Null).`8esn`?)"), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv From Single(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`)[Case When $999 Is Not Null Then {`3esn`} =~$@usn5 =~`2esn` Else .12e-12 Ends With `2esn` End][[`2esn` In $@usn5 Is Not Null Is Not Null Where $1000[..0e-0][..010]|00[$``]]] As _usn3 Fieldterminator 's_str' Create Unique Allshortestpaths((`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`)) Match ((`8esn` :`2esn`:`4esn`)-[?:#usn7|:@usn5 *12]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}))"), + octest_legacy:ct_string("Create Constraint On(`6esn`:@usn5)Assert Exists(Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 3.9e-1 Starts With .9e0 Starts With {#usn7}).``!)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:@usn5)Assert @usn5(Count ( * ) Starts With 0.12,$123456789).#usn8 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:usn1)Assert Any(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With ``)._usn3 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`6esn`)Assert Shortestpath(((`8esn` :`8esn`)-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`8esn`*]-(`7esn` :``{usn2:$7}))).`3esn`.`4esn`!.`4esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:`2esn`)Assert Reduce(``=$_usn3[0X0123456789ABCDEF..][0x0..],usn2 In $`5esn`[{`4esn`}][{0}]|1.9e0 In $@usn6 In $_usn3).usn1 Is Unique"), + octest_legacy:ct_string("Delete Count(*) Is Not Null Is Not Null,All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3]) In Allshortestpaths((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]}))) In (`1esn` :`2esn`:`4esn`)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[#usn8]->(`2esn` :_usn3{`6esn`:_usn4[{``}..{`6esn`}][$7..$_usn3],`6esn`:$`4esn` Ends With {999}})"), + octest_legacy:ct_string("Unwind $123456789[{usn1}][.12e-12] As `1esn` Load Csv From {_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}[Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)][[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1]] As `5esn` Fieldterminator 's_str' Detach Delete 8.1e1[usn2..{1000}][0X7..9e12],$1000[_usn4][{@usn5}]"), + octest_legacy:ct_string("With *,\"d_str\" Starts With $`7esn` Starts With 999 As `3esn`,5.9e-12[\"d_str\"..][{`6esn`}..] As #usn7 Skip `2esn`[`7esn`][1000] Limit (@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[`8esn`?:_usn3 *12{usn1:#usn7[.9e0..`3esn`][{`6esn`}..1000],_usn4:$usn2 In #usn7 In #usn7}]-(_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(usn2 :`2esn`:`4esn`)[..Reduce(`2esn`={1000}[..{usn1}][..1e-1],_usn3 In `8esn`[_usn4]|Count(*)[$7])][..{_usn3}] Where .12e-12 Is Null Optional Match Shortestpath(((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})))),_usn3=Allshortestpaths((((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999})<-[``?:@usn5|:#usn7 *..00{#usn8:$`8esn`[...1e-1]}]->(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]})))) Using Index `3esn`:`8esn`(`5esn`) Where .12e12 Ends With 07 Ends With 3.9e-1 Detach Delete .9e-1 Is Not Null Is Not Null,$_usn3[.0e-0..999],0X0123456789ABCDEF Ends With {1000} Union All Create Unique `4esn`=((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})<-[ *01234567..{usn1:{12} Contains `8esn` Contains @usn5}]->(usn1 :@usn6:_usn3)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})),(:`3esn`{@usn5:9e12[..usn2][.._usn3]})<-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]->(:`5esn`:`7esn`{`1esn`:{1000}[..`5esn`][..9e12]})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1})"), + octest_legacy:ct_string("Create Constraint On(usn2:``)Assert Exists(Any(usn2 In .12e-12 Ends With `2esn` Where `3esn` Contains 01 Contains 01).`5esn`!)"), + octest_legacy:ct_string("Create Constraint On(#usn7:`6esn`)Assert Exists(usn1(Distinct 0e-0[{12}]).`3esn`?)"), + octest_legacy:ct_string("Foreach(`` In Case Count(*) =~01234567 =~.1e-1 When {123456789} Starts With $_usn4 Starts With 0x0 Then .9e-12[usn2] When {`8esn`}[@usn5][$`2esn`] Then 00[$``] End[..Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 999[..$@usn5][..``])][..Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End]| Remove Reduce(`6esn`=$999 =~0x0,@usn6 In 9e12[..usn2][.._usn3]|.9e1 Is Null Is Null).`2esn`,Reduce(@usn5={`3esn`}[01234567][{#usn7}],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|0e0 =~{12} =~{1000}).#usn7!)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`5esn`)Assert ({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[_usn3?:`6esn`{_usn4:07[{@usn5}..],usn2:$`4esn` Is Null Is Null}]->(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]}).`6esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`3esn`)Assert Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where $`4esn`[12e-12..$`1esn`][$`2esn`...9e12]).@usn6? Is Unique"), + octest_legacy:ct_string("Create `5esn`=(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})<-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-(@usn5 :@usn6:_usn3{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`2esn` *1000..{`2esn`:{@usn6} In 9e12}]->(:usn1{usn1:true In 0.0,@usn5:{`1esn`} Is Null}),@usn6=(`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[ *0X0123456789ABCDEF]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}) Merge ((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]}))"), + octest_legacy:ct_string("Delete $_usn3 Is Null,9e1[...9e1][..$`6esn`] Union All Create Unique Shortestpath(((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}))),`7esn`=((`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})<-[_usn4?:`8esn`|:#usn8 *01234567..]->(`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(usn2 {`7esn`:.9e12 Contains 0 Contains $0})) Delete {7} Is Not Null,.1e1 Is Not Null Is Not Null,`2esn`[`7esn`][1000] Union Foreach(`1esn` In $usn1 =~.0e0 =~{`4esn`}| Load Csv From $`5esn` Is Not Null As `3esn` ) Create Unique usn2=Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))),@usn6=Allshortestpaths(((#usn7 {`2esn`:`8esn`[.12e12..],_usn3:usn1 =~0Xa =~0})))"), + octest_legacy:ct_string("Drop Constraint On(_usn3:#usn7)Assert `7esn`(11.12e-12 In {usn1}).`5esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn7:`3esn`)Assert [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where $`4esn`[usn2..]|$usn2[..$999][..#usn8]].@usn6?.``._usn4! Is Unique"), + octest_legacy:ct_string("Create Unique `2esn`=(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1}) With .9e0 Is Not Null,$`7esn` Contains .12e12,false Starts With 0 Starts With 2.9e1 As `4esn` Skip (:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]-(:_usn3{_usn3:010[..9e-1][..0X7]}) Starts With Case When $1000 Starts With {@usn6} Starts With $@usn5 Then `2esn` When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else 12[4.9e12..] End Starts With (_usn4 {`3esn`:.0e-0 In 12})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc}) Create `5esn`=(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}) Union All Create Allshortestpaths(((`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]})-[`1esn`?]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}))) Unwind Shortestpath((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5))[Allshortestpaths((#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}))] As `1esn` Foreach(usn1 In Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000)| With *,$999 Ends With `2esn` Ends With 12.0 As #usn8,All(usn1 In $@usn6 Is Null Is Null Where $`1esn`[4.9e12..][_usn3..])[..@usn5(Count(*)[Count ( * )][{0}],`4esn` =~010)] As `3esn` Load Csv From #usn7 Is Null Is Null As `2esn` Fieldterminator 's_str')"), + octest_legacy:ct_string("Drop Constraint On(``:`3esn`)Assert Exists([`6esn` In 010[{`1esn`}..] Where 9e-12[$7..]].`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[``:usn2]-()Assert Exists(Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0).`1esn`?)"), + octest_legacy:ct_string("Remove @usn6(07[{@usn5}..],$999[usn1..0e-0]).`1esn`?._usn4!._usn3?,[`7esn` In 0.12 Is Not Null Where 0X0123456789ABCDEF In false|_usn3 =~{7} =~123.654].`6esn`.@usn6.usn1,#usn8:`4esn`:usn2 Create @usn5=(((`2esn` :_usn3{usn1:5.9e-12 Is Null Is Null})-[`7esn`?:#usn7|:@usn5 *1000..]->(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]}))) Remove {usn2}.`7esn`?,(:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`2esn` *1000..{`2esn`:{@usn6} In 9e12}]->(:usn1{usn1:true In 0.0,@usn5:{`1esn`} Is Null})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]}).#usn8?.`3esn`!.`2esn`!,Case .12e12[..$123456789] When .12e-12[9e1] Then 1e-1[$`4esn`] When $`8esn` Then 999[..$@usn5][..``] Else $#usn8 Is Not Null Is Not Null End.usn2?.`6esn`._usn3? Union Return #usn8[..'s_str'][..'s_str'] As `2esn`,None(@usn6 In 9e12[..usn2][.._usn3] Where $7) Is Not Null Is Not Null Limit `7esn`[1.9e0..5.9e-12][9e0..@usn5] Foreach(`7esn` In {`5esn`}[01234567..][5.9e-12..]| Detach Delete .12e12[01..{1000}][8.1e1..Count ( * )] Return Distinct Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As @usn6,07 Ends With {1000} Ends With 01234567 Order By Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null) In `4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`) Desc Skip true Contains 0X7 Contains $#usn8) Union All Unwind {usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'} Contains Allshortestpaths((`8esn` :`2esn`:`4esn`)-[`2esn`?:``|:`7esn` *1000..]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})) Contains None(`6esn` In 010[{`1esn`}..] Where {``}[$usn2..00][{_usn3}..123.654]) As #usn7 Start `5esn`=Node:_usn4(@usn5={`4esn`}) Remove Case 9e-12 Starts With {1000} When `1esn`[Null][{@usn6}] Then {_usn3} Is Null Is Null When 10.12e12[usn2] Then $12 =~4.9e12 Else .9e12[6.0e0..][@usn5..] End.@usn5!"), + octest_legacy:ct_string("Create Constraint On(@usn6:`3esn`)Assert Exists(Reduce(usn2={`6esn`}[@usn5..{@usn6}],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|9e0[..{#usn7}][..`4esn`]).#usn8?)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`8esn`)Assert Single(`6esn` In 010[{`1esn`}..] Where {`8esn`}[@usn5][$`2esn`]).`4esn`?.usn2!.`4esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:`8esn`)Assert exists(Distinct .0e-0[..``][..$7],$`3esn` =~0x0)._usn3?._usn3? Is Unique"), + octest_legacy:ct_string("Create #usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2)))),(((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))) Remove Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`).`6esn`?._usn4?.#usn8,usn2(0Xa In 1.0 In $@usn5).usn2! Merge `2esn`=((`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[?:`2esn`|`5esn` *..123456789$1000]-({`1esn`:$`8esn` Is Null Is Null,`1esn`:0.12 =~2.9e1 =~9e1})-[usn2:`5esn`]-(:`4esn`:usn2{@usn5:`8esn`[.12e12..],usn1:$#usn8[$0..`3esn`][1e-1..$7]})) Union Return $#usn8 Starts With 9.1e-1 Starts With {#usn7} As `8esn`,$`1esn` Contains 1000 Contains $123456789 As _usn3 Order By 00[{1000}] Descending,'s_str'[$_usn3..][9.1e-1..] Desc,$_usn4 =~$#usn8 =~{`4esn`} Desc Skip $@usn6[...9e-1] Limit $#usn7[01..2.12][2.12..3.9e-1] Remove [usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null].`1esn`! Union All Merge ((`1esn` {@usn6:6.0e0[$#usn7..$1000]})) On Create Set `3esn` =9e0[`7esn`..][#usn8..],Shortestpath(((#usn7 :`1esn`:``)<-[?:`4esn`|:`2esn`]-(_usn3 :`4esn`:usn2)-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}))).usn1 =$_usn3[.0e-0..999],{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}.`6esn`? =$0[1e1][12e-12] On Match Set Shortestpath(((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(_usn3 :usn1))).usn2 =Count(*) Is Not Null Is Not Null,[`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 10.12e12[usn2]|9e0[`3esn`][0]].`6esn`? =3.9e-1[..$1000][..0.12] Foreach(`8esn` In {1000}[`2esn`...0e-0][9e-1..0X7]| Load Csv From usn2(Distinct $_usn3 =~'s_str' =~12) In (`` :usn1)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}) In Case When {_usn4}[{`6esn`}] Then 12e12 Is Not Null Is Not Null When #usn7 Is Null Is Null Then {`8esn`} Starts With .9e-1 Starts With 1000 End As usn2 ) Remove @usn5:`8esn`"), + octest_legacy:ct_string("Drop Constraint On()-[`7esn`:_usn4]->()Assert Exists(Shortestpath((`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[:`7esn`|usn1 *7]-(`8esn` :`5esn`:`7esn`{usn1:{``} Contains 0.0 Contains `4esn`})-[? *1000..{`1esn`:{`1esn`} Is Null}]->(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})).`1esn`?)"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn3:`4esn`]-()Assert Exists(exists(0[$usn1..])._usn4)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:_usn3)Assert Exists(None(usn2 In $`5esn`[{`4esn`}][{0}] Where 7.0e-0 Is Not Null).@usn5?.usn1?)"), + octest_legacy:ct_string("Drop Constraint On()-[@usn5:`3esn`]->()Assert Exists(`5esn`(Distinct $`7esn` Ends With 7.0e-0 Ends With $usn2).`4esn`?)"), + octest_legacy:ct_string("Delete .1e1 In 12.0 In $``,@usn6 Starts With #usn7,Any(@usn6 In 9e12[..usn2][.._usn3] Where 12e12[.9e12..07]) Ends With Shortestpath(((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))) Union Create ((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})),`4esn`=((`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[?$999]-(`8esn` :@usn6:_usn3)<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})) Union Foreach(@usn6 In 0.12 Ends With 7 Ends With 12| Delete 1.9e0[$`4esn`],07[..$`5esn`] Create Unique `2esn`=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))),((:`4esn`:usn2{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(_usn4 :usn2))) Match ``=(((#usn7 )-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(`2esn` :@usn5)<-[?:`2esn`|`5esn` *..123456789$1000]-({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}))) Where `4esn` Contains 0X0123456789ABCDEF Contains $usn2 Create Unique Allshortestpaths((((@usn6 :`5esn`:`7esn`)-[`8esn`{#usn8:.12e12[..7]}]-({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))))"), + octest_legacy:ct_string("With Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,999 Starts With 7.0e-0 Starts With true As _usn3 Order By 2.12[010..][{999}..] Descending Limit Shortestpath((:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})) Starts With {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF} Starts With Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})) Start `2esn`=Node:`8esn`('s_str') ,`1esn`=Rel:``({`4esn`}) With Distinct *,Any(usn2 In $`5esn`[{`4esn`}][{0}] Where .1e-1[2.9e1..][$`7esn`..]) Contains Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Contains Allshortestpaths((_usn3 :`4esn`:usn2)),9e1[...9e1][..$`6esn`] As `4esn`"), + octest_legacy:ct_string("Drop Constraint On(_usn3:#usn7)Assert Exists(Reduce(`1esn`=12.0[..Count ( * )][..@usn6],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|5.9e-12 Contains {12} Contains {#usn8}).``!.`2esn`!.#usn7?)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:#usn8)Assert None(usn1 In $@usn6 Is Null Is Null Where {7} Starts With 0x0 Starts With 9e1).#usn7!.`1esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`4esn`:usn2]-()Assert Exists(All(usn1 In {#usn7} =~.12e12 =~9e0 Where 0xabc[01234567][.12e-12]).@usn5!)"), + octest_legacy:ct_string("Using Periodic Commit 0X7 Load Csv From Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]) In (`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) In `4esn`($#usn7[01..2.12][2.12..3.9e-1]) As _usn3 Fieldterminator 's_str'"), + octest_legacy:ct_string("Merge `4esn`=Shortestpath(((`1esn` :`7esn`)<-[usn2:#usn8|:``]->({`6esn`:9e0[`4esn`..$_usn4][9.1e-1..0e0]}))) On Match Set Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where Count ( * ) Starts With 0.12).`7esn`.`2esn`? =12e12[{`4esn`}..`4esn`][999..{@usn6}],Reduce(`8esn`=.9e0 =~#usn7,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|#usn8 Is Null Is Null).#usn7? =00[..@usn6] On Match Set `6esn`(Distinct 1.0 In {usn1}).`5esn`! =.0e-0 Contains $1000,Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0).`1esn`! =`8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End,Reduce(`5esn`={``} Contains 0.0 Contains `4esn`,`2esn` In $@usn5 Is Not Null Is Not Null|0.0[`7esn`]).`2esn`.`8esn`!.`` =1.0 In {usn1} Optional Match ``=(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}) Using Scan `6esn`:#usn8 Using Index @usn5:@usn6(`5esn`) Union All Foreach(`` In `6esn`(00[$``],.1e1 Is Not Null Is Not Null)[`6esn`({usn2}[{999}..][9e12..],`4esn` Ends With 9e12 Ends With {`5esn`})..][exists(Distinct {`3esn`}[#usn7],@usn5 =~$#usn7 =~{usn1})..]| Delete $7 In 1.0 In 01234567 Create (((`1esn` :`3esn`{@usn6:$12 Is Null})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),((:`1esn`:``{@usn6:$`7esn` Ends With 7.0e-0 Ends With $usn2}))) Load Csv With Headers From 0X0123456789ABCDEF In .9e-1 In 123456789 As usn1 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Using Periodic Commit 0 Load Csv From $999[usn1..0e-0] As `1esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Create (_usn4 :`6esn`)<-[`2esn` *7]->(`4esn` :@usn5),_usn3=(_usn3 :`1esn`:``{`8esn`:{#usn8} In {12} In .9e12})<-[?:`3esn`|`3esn` *999..123456789{_usn3:$`4esn`[$@usn6...12e12]}]->(usn1 {#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}) Create Unique `7esn`=Shortestpath((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})-[:#usn7|:@usn5]-(:`1esn`:``{`8esn`:5.9e-12[0x0..]})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)),Allshortestpaths(((`` :`7esn`))) With Distinct Count(*)[Null..][01234567..] As `1esn`,{#usn7} Is Not Null As `7esn`,10.12e12[usn2]"), + octest_legacy:ct_string("Create Constraint On()-[usn2:`6esn`]-()Assert Exists(Reduce(`1esn`=.9e0[07..][4.9e12..],_usn3 In `8esn`[_usn4]|`3esn` =~$#usn7).`5esn`!)"), + octest_legacy:ct_string("Delete Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]) Is Null,Reduce(`5esn`=$7 =~01234567 =~12.0,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{`8esn`}[..999][.._usn3])[{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}..],Any(usn2 In $`5esn`[{`4esn`}][{0}] Where .1e-1[2.9e1..][$`7esn`..]) Contains Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Contains Allshortestpaths((_usn3 :`4esn`:usn2)) Unwind `8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End As @usn6 Union All Remove [usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`3esn`[0e-0]|'s_str' =~$usn2 =~{7}].@usn5 Foreach(@usn5 In 0.0 In .0e-0| With Distinct *,{usn1} Is Not Null,{`2esn`}[0x0..9e0] As `6esn` Limit Allshortestpaths((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))[usn1..])"), + octest_legacy:ct_string("Unwind .1e-1 Is Not Null As `3esn` Optional Match Shortestpath(((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(`4esn` :`8esn`{12})-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2))) Using Index `3esn`:usn2(`5esn`) Union All Unwind {`7esn`}[0.12] As usn2"), + octest_legacy:ct_string("Create Constraint On(`3esn`:_usn4)Assert {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}.``? Is Unique"), + octest_legacy:ct_string("Return Distinct #usn8[..'s_str'][..'s_str'] As `2esn`,None(@usn6 In 9e12[..usn2][.._usn3] Where $7) Is Not Null Is Not Null"), + octest_legacy:ct_string("Drop Constraint On(usn1:@usn5)Assert Case When .12e12[$usn1..][{@usn6}..] Then {1000}[..{usn1}][..1e-1] End._usn3! Is Unique"), + octest_legacy:ct_string("Remove Reduce(`8esn`=1e1[$_usn3],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e-0[..``][..$7]).`6esn`.`8esn`?,[`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1].`2esn`! Unwind {usn2} Ends With {@usn6} Ends With 1000 As `` Union All Detach Delete Case When `4esn` Contains 0X0123456789ABCDEF Contains $usn2 Then {1000} Starts With {`1esn`} End Starts With Case $`8esn`[0x0][.9e0] When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null Else $usn1 =~.0e0 =~{`4esn`} End Starts With .0e-0,Reduce(`5esn`={`8esn`}[..999][.._usn3],usn2 In $`5esn`[{`4esn`}][{0}]|`` Ends With 1.0 Ends With usn1) =~({@usn6:$@usn6 Is Null Is Null})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5),{`6esn`} Starts With @usn6 Create Unique _usn4=(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[:`6esn` *..0x0{``}]-(#usn8 :``{usn2:9e1 =~$`8esn` =~10.12e12}) Delete {999} =~$`6esn` =~$`6esn` Union All Match ``=(((@usn5 {@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))),`2esn`=Allshortestpaths((((#usn8 :`3esn`{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})-[? *0]-(:`3esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`})-[?:``|:`7esn` *12{#usn8:10.12e12 Contains .9e0,usn1:0xabc Contains {12} Contains {`6esn`}}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1})))) Using Scan @usn5:`8esn` Create Unique ((`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})),`8esn`=Shortestpath((_usn3 )-[usn2:_usn3 *0xabc..12]->(:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`))"), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv From Extract(`1esn` In $12 In {usn2} Where 2.9e1 =~Count(*) =~{123456789})[{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}..][123.654..] As @usn6 Fieldterminator 's_str' Load Csv From $@usn6 Is Null As `1esn` "), + octest_legacy:ct_string("Create Constraint On()-[``:_usn4]-()Assert Exists((:usn1{usn1:true In 0.0,@usn5:{`1esn`} Is Null})-[@usn6?:`4esn`|:`2esn`{`2esn`:Count ( * )[9e0..$``]}]-(:usn2{usn1:_usn4 Is Not Null Is Not Null}).usn2?.#usn8!)"), + octest_legacy:ct_string("Foreach(`` In 10.12e12[.0e0]| Create `7esn`=((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[_usn3?:`7esn`|usn1]-(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[usn2 *7]-(`8esn` :#usn7:`8esn`)) Load Csv From 12[11.12e-12..][`4esn`..] As @usn6 ) Union All Delete .0e0 =~Case $`6esn` Starts With 0.0 When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] End =~All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}]),`8esn`(Distinct 8.1e1 Contains .9e-1 Contains false,usn1 =~false =~{999}) In {12} In (usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12})<-[#usn8:`3esn`|`3esn` *1000..{#usn7}]-(:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[? *..00]->(:usn1{#usn8:2.9e1[{`2esn`}]}),Case .12e-12 Is Null When Count ( * )[_usn4..] Then 7.0e-0 Is Not Null When 2.12[{12}] Then {usn2} Ends With {@usn6} Ends With 1000 End[Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..])][({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})] Foreach(`8esn` In None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Contains (`8esn` :@usn6:_usn3{_usn4:{#usn7} =~$@usn6 =~$7})<-[`1esn`? *0{usn2:.9e12[6.0e0..][@usn5..]}]->(usn2 :@usn6:_usn3)-[usn1:#usn7|:@usn5 *999..123456789]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})| Unwind $`1esn` =~`8esn` As @usn5)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`4esn`)Assert Exists(Case When 01234567 Ends With .0e0 Ends With 12e12 Then {`4esn`}[{`3esn`}][$`2esn`] When `` Contains {`6esn`} Contains 123456789 Then 2.9e1[2.12..1.9e0] End.usn2)"), + octest_legacy:ct_string("Unwind {`8esn`}[.0e0..][999..] As `1esn` Union All Foreach(_usn3 In Null| Optional Match ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),_usn3=Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)))) Return *,$12 Is Null As #usn8 Order By ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[_usn3?:@usn5|:#usn7]->(`` :``)-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Starts With Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`) Ascending,{`8esn`} =~$#usn7 =~2.12 Desc,Count(*) Starts With 07 Starts With $#usn7 Desc Skip @usn6[true..] Create ({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12}),#usn8=Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))) Union All Foreach(`7esn` In 9e1[..@usn5][..$`5esn`]| Unwind $`5esn`[{@usn6}..{`7esn`}] As `8esn`) Merge ((({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[_usn3?:@usn5|:#usn7]->(@usn5 {`8esn`:123456789[#usn7..9e-1][10.12e12..{0}],@usn6:1.0 Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(`4esn` {`8esn`:5.9e-12[0x0..]}))) On Match Set [`6esn` In 010[{`1esn`}..] Where {`8esn`}[@usn5][$`2esn`]|$123456789[{usn1}][.12e-12]].@usn5?.`6esn`! =010[.0e-0..\"d_str\"][.9e0..123.654],_usn4 =0xabc[..Count(*)][..$`5esn`] With *,Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,Case \"d_str\"[0x0..{@usn6}][$@usn5..0] When 0e0 Contains {`2esn`} Then 0X0123456789ABCDEF[1e1..] Else .12e12 Starts With 5.9e-12 Starts With `4esn` End In {usn1:$#usn7[01..2.12][2.12..3.9e-1],`6esn`:.0e-0 Ends With $`2esn` Ends With `5esn`} Order By .9e12 Contains 5.9e-12 Contains 9e-1 Descending Skip $123456789[..$999][..`6esn`]"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:#usn7)Assert Exists(Allshortestpaths((@usn6 {usn1:0Xa In 1.0 In $@usn5})-[`5esn`?:`2esn`|`5esn`]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})).`4esn`!._usn3)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`2esn`)Assert Case When {usn2} Is Not Null Is Not Null Then false Contains {`7esn`} When {_usn3} Is Null Is Null Then .12e12 Ends With 07 Ends With 3.9e-1 End.#usn7! Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn6:`3esn`)Assert Exists(Reduce(`6esn`=.9e-12[.12e12..][0Xa..],#usn8 In 07[..$`5esn`]|.9e-12[.12e12..][0Xa..]).`5esn`?)"), + octest_legacy:ct_string("Using Periodic Commit 0Xa Load Csv From Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]) Is Not Null Is Not Null As #usn8 Create Unique @usn5=Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))),(@usn6 :_usn4:`2esn`)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:@usn5)Assert Exists(Case When {1000}[..`5esn`][..9e12] Then Count(*)[..{#usn7}] End.`3esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`1esn`)Assert Reduce(`3esn`={usn2} Is Not Null Is Not Null,`7esn` In 0.12 Is Not Null|$@usn5 =~{`3esn`}).`2esn`! Is Unique"), + octest_legacy:ct_string("Create Unique ((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})-[{``:{`3esn`}[01234567][{#usn7}],_usn4:999 Is Null Is Null}]->(usn2 {``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})),``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))) Match @usn5=Allshortestpaths((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``))),_usn4=(({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[#usn8? *0Xa..12]->(`7esn` {#usn8:2.9e1[{`2esn`}]})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]})) Using Scan @usn5:`5esn` Using Scan `1esn`:`2esn` Where .12e-12[@usn6..'s_str']"), + octest_legacy:ct_string("Foreach(`4esn` In 9e-12 Starts With {1000}| Unwind $`3esn`[..{`5esn`}] As @usn6 Match Shortestpath(((_usn3 :`7esn`{_usn4:$12[$`6esn`..][01..]})-[`4esn`{_usn3:010[..9e-1][..0X7]}]-(:`7esn`{#usn7:$999 =~false =~{`8esn`}})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3))),Allshortestpaths((:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[`7esn`?:`7esn`|usn1 *1000..{@usn6:#usn7 In 07,#usn8:$999[usn1..0e-0]}]->(#usn8 :`5esn`:`7esn`{usn2})-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})) Using Index #usn8:usn2(@usn5) Where {`6esn`} =~2.12 =~123.654) Match (:`4esn`:usn2{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[`3esn`?:`1esn`|:`1esn`]-(`7esn` :usn1)<-[:`4esn`|:`2esn`{usn1:3.9e-1 Contains $@usn5}]->(@usn6 {``:$`6esn` Starts With 0.0}) Load Csv With Headers From `2esn`[`7esn`][1000] As `2esn` Fieldterminator 's_str' Union Load Csv From Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where {7}[$@usn5..123456789][1e1..1.9e0]) Ends With (`3esn` :_usn3{@usn6:0.12 Is Not Null})-[#usn8:`5esn`]-({`6esn`:12[@usn6][{`2esn`}]}) As #usn8 Create Unique #usn7=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 ))) Delete $`4esn`[12e-12..$`1esn`][$`2esn`...9e12]"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:_usn3)Assert Allshortestpaths((`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[:`7esn`|usn1 *7]-(`8esn` :`5esn`:`7esn`{usn1:{``} Contains 0.0 Contains `4esn`})-[? *1000..{`1esn`:{`1esn`} Is Null}]->(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})).`8esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`6esn`)Assert `1esn`(true Is Null,$1000[..0e-0][..010]).#usn8!.usn1?.`3esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`1esn`:usn1]-()Assert Exists((#usn7 {#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})._usn4?)"), + octest_legacy:ct_string("Create Constraint On(@usn5:`8esn`)Assert Exists(usn1(.9e-12[.12e12..][0Xa..],$`6esn` =~$#usn7 =~$`4esn`).`7esn`?)"), + octest_legacy:ct_string("Unwind $@usn6 Is Null Is Null As _usn4 Detach Delete 1.9e0 In $@usn6 In $_usn3,$@usn5 =~{`3esn`} Load Csv With Headers From $`5esn` In $12 In `2esn` As usn1 Union Merge Shortestpath(((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))) On Create Set `6esn` =_usn4 On Create Set `4esn` =Single(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Is Not Null Detach Delete Single(_usn3 In `8esn`[_usn4] Where `3esn` Contains `2esn` Contains {_usn4}) In Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`) In {7},$usn2 Ends With 9e12 Ends With Count ( * ),$`5esn` =~Count(*) =~1.9e0 Union All Load Csv From {#usn8}[..@usn5] As `4esn` Foreach(`6esn` In Any(usn1 In $@usn6 Is Null Is Null Where 9e0[`3esn`][0]) Ends With None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[01234567][{#usn7}]) Ends With Any(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}])| Load Csv With Headers From 0[..{#usn7}][..$_usn3] As `7esn` Fieldterminator 's_str' Unwind `8esn`[0e-0.._usn3][Null..`6esn`] As `2esn`) Detach Delete 9e0[`1esn`..0e-0][00..`1esn`],.0e-0 Ends With $`2esn` Ends With `5esn`"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`3esn`)Assert Exists(None(#usn7 In .0e-0 In 12 Where $12 In {usn2}).usn1!.#usn8?.`3esn`!)"), + octest_legacy:ct_string("Unwind #usn7 Is Null Is Null As usn1 Foreach(`4esn` In 11.12e-12 In {usn1}| Match Shortestpath((@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?:`8esn`|:#usn8 *999..123456789]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})),`3esn`=(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0})-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[usn1?:`3esn`|`3esn`*..]-(`1esn` ) Using Scan ``:#usn8 Remove ``(.9e-1 Is Null Is Null,{`8esn`}[@usn5][$`2esn`]).`1esn`._usn4) Union Create Unique `7esn`=Shortestpath((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})-[:#usn7|:@usn5]-(:`1esn`:``{`8esn`:5.9e-12[0x0..]})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)),Allshortestpaths(((`` :`7esn`)))"), + octest_legacy:ct_string("Drop Constraint On()<-[usn2:`8esn`]-()Assert Exists(Shortestpath((({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]->(:`6esn`{`8esn`:{123456789} =~.9e1 =~$_usn3,#usn7:Count(*)[Null..][01234567..]}))).`4esn`?)"), + octest_legacy:ct_string("Create Constraint On(``:`3esn`)Assert Case .9e0 =~#usn7 When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 When 0e0 Contains {`2esn`} Then {1000}[0..] Else 2.9e1 Ends With `5esn` Ends With 1000 End.@usn6 Is Unique"), + octest_legacy:ct_string("Merge (`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})<-[`6esn`?:@usn6|:`4esn` *12{`6esn`:{12} Starts With $`` Starts With 0X0123456789ABCDEF,@usn6:0 Starts With `7esn` Starts With 9e0}]->({_usn3:.9e12 Contains 0 Contains $0})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]}) On Create Set #usn8:`8esn` With 1.9e0 =~.0e0 =~0X7 As #usn7,0 Ends With .0e-0 Ends With false As _usn4,0X0123456789ABCDEF In .9e-1 In 123456789 Order By Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Desc,[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1][Shortestpath((({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})))..Shortestpath(((:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12})-[``?:#usn7|:@usn5{``:$usn1 Ends With {`2esn`} Ends With $usn1}]->(:`5esn`:`7esn`$usn2)-[{#usn8:\"d_str\" Contains {@usn6}}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12})))] Descending,$@usn5[.9e-1] Descending Skip Case When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 Else 9e-12 Ends With {1000} End[Shortestpath((:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[`1esn`:`4esn`|:`2esn`{`5esn`:$_usn3[usn2..][usn1..]}]->(:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`}))..] Where 2.9e1[Count ( * )..]"), + octest_legacy:ct_string("Start `5esn`=Node:`1esn`(`4esn`={@usn5}) ,`2esn`=Rel( {_usn3}) Load Csv From {0}[.1e-1..][_usn4..] As `6esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Load Csv With Headers From 7.0e-0 Is Null Is Null As _usn3 Union All Remove {`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true}.#usn7!,@usn6:`1esn`:``"), + octest_legacy:ct_string("With Distinct 5.9e-12[01][`4esn`],$#usn8 Starts With 9.1e-1 Starts With {#usn7} As `8esn`,`5esn` Ends With 's_str' Ends With @usn5 As `1esn` Order By 's_str'[$_usn3..][9.1e-1..] Desc Where 1.0 Is Null Is Null Match (:#usn8:@usn6{@usn6:$_usn4 Ends With {#usn8},_usn4:0e0[12.0][{#usn7}]})<-[?{@usn5:@usn6[999][1000]}]->(`1esn` )<-[usn2:@usn5|:#usn7 *01{@usn6:.0e-0 In 12}]-(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]}),usn1=Allshortestpaths(((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})))) Load Csv With Headers From 0Xa In 1.0 In $@usn5 As @usn5 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Unwind Allshortestpaths((`` $999)<-[? *0X0123456789ABCDEF]->(`1esn` :_usn3)<-[#usn8?:#usn7|:@usn5]-(@usn5 :#usn7:`8esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true}))[All(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Is Null Is Null)..][Allshortestpaths((({@usn6:01 Contains 9e-12 Contains $7})))..] As @usn5 Merge Allshortestpaths(((@usn6 :`5esn`:`7esn`)-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)-[`3esn`:`6esn` *..0x0]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}))) On Match Set `2esn`+=9e1[0.0],#usn8+=.12e-12[@usn6..'s_str'],{`6esn`:4.9e12 Is Not Null Is Not Null,_usn4:`4esn`[9e-12..true]}.#usn8._usn3? =Shortestpath((((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))))[None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0.0[`7esn`])..Single(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])][`5esn`(Distinct .9e1[$`1esn`..][$``..])..Case When 12e12 Ends With `5esn` Ends With .0e0 Then .9e0 In 8.1e1 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else .9e1 Ends With 0x0 End] On Create Set @usn6+=00 =~`4esn` =~.9e-12,`3esn` =$123456789,[usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF].`5esn`! =.0e-0 Ends With $`2esn` Ends With `5esn`"), + octest_legacy:ct_string("Return Distinct _usn4[$_usn4] As _usn4,`3esn` Starts With 9.1e-1 Starts With .9e-1 As `8esn` Order By $`5esn`[{@usn6}..{`7esn`}] Ascending Skip [usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0|4.9e12 Is Not Null Is Not Null] =~Case {_usn3} In $#usn8 In $12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else 0[..{0}][..true] End =~Case Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else $_usn3 Starts With 010 End Create Shortestpath((_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})),Shortestpath(((@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})-[@usn5:`6esn` *..00]->(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Create ``=Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))) Union All Detach Delete {_usn3} Is Null Is Null,Case {#usn7} =~.12e12 =~9e0 When `1esn`[{usn1}..] Then false =~$7 When 7 In 1e1 In {``} Then {0}[.0e-0][$`2esn`] End[`4esn`(Distinct \"d_str\" In usn2 In $`7esn`)],usn2[..$0][..`3esn`] Union All Merge @usn6=(({usn2:01[`4esn`..]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})-[`1esn`?:`3esn`|`3esn` *..00]-(`1esn` :usn2)) On Match Set `6esn`+=01[$`1esn`..$`7esn`][{usn2}..12.0],[usn1 In {#usn7} =~.12e12 =~9e0 Where $`4esn`[12e-12..$`1esn`][$`2esn`...9e12]|$`1esn`[4.9e12..][_usn3..]].#usn7 =9.1e-1[..Null][..#usn8] Return *,{`7esn`} =~\"d_str\" =~{``} Skip $_usn4 Ends With {#usn8} Limit $12 Is Not Null Is Not Null"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:#usn7)Assert ({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[usn2:_usn3 *0xabc..12]-(:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null}).`5esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`1esn`:#usn8)Assert Case When $`5esn` =~Count(*) =~1.9e0 Then .1e-1 Starts With @usn6 Starts With _usn3 When $_usn3[0X0123456789ABCDEF..][0x0..] Then #usn8 =~{@usn5} Else 1e1[$_usn3] End.`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:usn2)Assert Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where $7[.1e-1..{@usn6}][$7..{`1esn`}]).`7esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`5esn`)Assert All(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`).usn1 Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[``:@usn5]-()Assert Exists(Shortestpath((({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]->(:`6esn`{`8esn`:{123456789} =~.9e1 =~$_usn3,#usn7:Count(*)[Null..][01234567..]}))).`8esn`.`4esn`!)"), + octest_legacy:ct_string("Create Constraint On(``:`1esn`)Assert Exists(Case {0} In {`1esn`} When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] End.`7esn`._usn3?.@usn5?)"), + octest_legacy:ct_string("Using Periodic Commit 12 Load Csv From 6.0e0 In 9e-1 In 123456789 As `4esn` Remove `2esn`:`3esn`,(`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->(:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[ *1000..{`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]->(`` ).#usn8!"), + octest_legacy:ct_string("Return Distinct $`8esn`[..12][..9e12] As @usn5,_usn4[{`3esn`}][00] As usn2 Skip 0X0123456789ABCDEF Is Not Null Is Not Null Remove Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0[..{#usn7}][..$_usn3]).#usn7?,($12)<-[#usn8?{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(usn1 {@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}).#usn7!.@usn5._usn3? Remove Case #usn7[$`8esn`][{`3esn`}] When Count(*) =~01234567 =~.1e-1 Then 1000[{123456789}][usn1] End.`1esn`!,Reduce(`7esn`=12e12 Contains {0},`1esn` In $12 In {usn2}|{``} Is Null Is Null).@usn5"), + octest_legacy:ct_string("Return [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,$`7esn` In $`4esn` As `8esn`,Extract(`1esn` In $12 In {usn2} Where 2.9e1 =~Count(*) =~{123456789})[{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}..][123.654..] Order By 0x0[{`6esn`}..] Descending Limit usn1 =~false =~{999} Remove Allshortestpaths((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}})).``!"), + octest_legacy:ct_string("Create ``=Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))) With Distinct 0.0[$`4esn`] As `4esn` Order By 9e1 Ends With `7esn` Ends With 2.12 Descending,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null Asc,{0} =~{999} Desc Skip 6.0e0[None(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0)..][[_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]]..] Limit [usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]] With *,_usn4['s_str'][8.1e1] Order By 999 Starts With 07 Ascending Where 1.0 Is Not Null Union Optional Match (:usn2)<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:#usn8|:``{#usn8:{_usn4} In 0X7 In 0e0,`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]-(@usn5 ) Union Return *,Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,Case \"d_str\"[0x0..{@usn6}][$@usn5..0] When 0e0 Contains {`2esn`} Then 0X0123456789ABCDEF[1e1..] Else .12e12 Starts With 5.9e-12 Starts With `4esn` End In {usn1:$#usn7[01..2.12][2.12..3.9e-1],`6esn`:.0e-0 Ends With $`2esn` Ends With `5esn`} Order By .9e12 Contains 5.9e-12 Contains 9e-1 Descending Skip $123456789[..$999][..`6esn`]"), + octest_legacy:ct_string("Drop Constraint On(_usn3:@usn5)Assert Exists(Allshortestpaths(((_usn4 )-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]}))).`5esn`)"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn5:`3esn`]-()Assert Exists(_usn3(Distinct 9e1 Starts With $@usn6 Starts With 0e-0,0.12 =~`6esn` =~.9e-1).`8esn`)"), + octest_legacy:ct_string("With `4esn` =~_usn4 =~0e-0 As `3esn`,$12[$`6esn`..][01..] Order By [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]][None(#usn7 In .0e-0 In 12 Where $12 In {usn2})..{`1esn`:{0} Is Null Is Null}][Extract(#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12|{`5esn`} Is Not Null Is Not Null)..Reduce(`7esn`=`7esn` Ends With 10.12e12,usn2 In $`5esn`[{`4esn`}][{0}]|@usn5[9e-1..{`1esn`}])] Descending,$usn2 Contains $`3esn` Contains 6.0e0 Asc Optional Match ``=Shortestpath((`1esn` :`2esn`:`4esn`)<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})),@usn5=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))) Where 01234567[10.12e12][0Xa] With $0 =~{@usn5} =~1e1,.1e-1[$@usn6] As `3esn` Order By {7} Is Not Null Descending Skip [`6esn` In 010[{`1esn`}..] Where {`4esn`}[00..]][Case $123456789[{usn1}][.12e-12] When .12e-12[9e1] Then 2.9e1[2.9e1..][`4esn`..] Else 00 =~`4esn` =~.9e-12 End..[usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF]]"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`6esn`)Assert Exists(Reduce(`7esn`=$usn2 Starts With $999 Starts With .0e0,@usn6 In 9e12[..usn2][.._usn3]|$@usn6 Is Null Is Null).`8esn`?.usn2!)"), + octest_legacy:ct_string("Remove {usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}.#usn7?,All(`` In `7esn` =~#usn8 =~\"d_str\" Where {12} Starts With $`` Starts With 0X0123456789ABCDEF)._usn4?.`6esn` Create @usn5=(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]}),((`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})<-[_usn4?:`8esn`|:#usn8 *01234567..]->(`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(usn2 {`7esn`:.9e12 Contains 0 Contains $0})) Union With Distinct 0.0[$999][`6esn`] Order By $`2esn`[`8esn`..] Descending,({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}) Contains Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Contains All(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]) Descending Limit $`5esn` =~Count(*) =~1.9e0 Where $12 =~4.9e12 Start #usn7=Node:``('s_str') Foreach(`7esn` In {`6esn`} =~2.12 =~123.654| Remove [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where @usn6[true..]|.0e0['s_str'..][0Xa..]].usn2!,(usn2 :@usn5{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})<-[`7esn`{`7esn`:6.0e0 =~12.0 =~9e1}]-({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}).#usn8?.``?,All(usn1 In \"d_str\" Contains {@usn6} Where 0.0[00..][0xabc..]).`3esn`?)"), + octest_legacy:ct_string("Unwind Allshortestpaths(((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}))) Is Null Is Null As usn2 Merge Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))) On Match Set Case .12e12 Ends With 07 Ends With 3.9e-1 When 0.12 In $`` Then 0e-0 In 0X0123456789ABCDEF In `3esn` When 01 Ends With .0e0 Ends With 7.0e-0 Then $`6esn`[@usn6...9e-12] End.`1esn`.`1esn` =1e-1 Starts With .1e1 Starts With 12.0 Delete false,$`6esn`[@usn6...9e-12],$`4esn` Contains `4esn` Contains .0e-0 Union All With Distinct 0.0[$`4esn`] As `4esn` Order By All(usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]) In Allshortestpaths(((`5esn` :`4esn`:usn2{_usn4:Count ( * ) Is Not Null Is Not Null,#usn8:`1esn`[{usn1}..]}))) In Filter(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Asc,{usn1}[9e-1][{@usn5}] Ascending,(`8esn` :@usn6:_usn3{`2esn`:#usn7 =~$@usn5 =~{7},`2esn`:{`3esn`}[..{`4esn`}][..usn2]})-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})[[`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where Count(*)[$7]|01[`6esn`..][0e0..]]..] Asc Skip 0X0123456789ABCDEF In $`2esn` In .9e-12 Limit $0 Ends With $usn1 Ends With {``} Create Unique Allshortestpaths((:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[`7esn`?:`7esn`|usn1 *1000..{@usn6:#usn7 In 07,#usn8:$999[usn1..0e-0]}]->(#usn8 :`5esn`:`7esn`{usn2})-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})) Optional Match (usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[``:`1esn`|:`1esn`{@usn5:999[..$@usn5][..``],@usn5:0xabc[..Count(*)][..$`5esn`]}]-(`1esn` :``{_usn4:$@usn5 =~{`3esn`}}) Using Scan `8esn`:`4esn` Where .9e12 Contains 0 Contains $0 Union Start usn2=Relationship(999,010,07,123456789) ,`7esn`=Node:`6esn`(@usn6='s_str')Where 123.654 Ends With {1000} Ends With 9e12"), + octest_legacy:ct_string("Create Allshortestpaths(((:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))),`6esn`=Shortestpath((((:`6esn`{`3esn`:9e12[..usn2][.._usn3]})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})<-[_usn4 *010..0{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}]-(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})))) Start `1esn`=Node( {`5esn`}) ,usn2=Node:_usn3(`7esn`='s_str')Where $12[$`6esn`..][01..]"), + octest_legacy:ct_string("Drop Constraint On(#usn7:usn2)Assert usn2({`1esn`} Is Null).`8esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(``:#usn7)Assert Exists(Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0e-0[..$usn2]).#usn7?._usn4!)"), + octest_legacy:ct_string("Foreach(@usn6 In ({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})-[`8esn`?:_usn3]->(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Ends With {_usn3:{123456789} Starts With `6esn`} Ends With {usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}| Unwind $`6esn` =~$#usn7 =~$`4esn` As usn1) Load Csv From Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)) Is Not Null Is Not Null As `1esn` Merge `8esn`=((`8esn` :`6esn`)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(@usn5 :@usn6:_usn3)) On Create Set ``+=12e12 Contains {0},`4esn`+=$`2esn` Contains {`4esn`} Union All Delete 9e12 Is Not Null Is Not Null,.9e1 Is Null Is Null Remove {@usn6:6.0e0[$#usn7..$1000]}.`8esn`?,{`3esn`:9e0[`3esn`][0],usn2:$`5esn` Is Not Null}.`8esn` Merge `2esn`=((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0})) On Create Set `2esn`+=9e1[0.0],#usn8+=.12e-12[@usn6..'s_str'],{`6esn`:4.9e12 Is Not Null Is Not Null,_usn4:`4esn`[9e-12..true]}.#usn8._usn3? =Shortestpath((((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))))[None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0.0[`7esn`])..Single(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])][`5esn`(Distinct .9e1[$`1esn`..][$``..])..Case When 12e12 Ends With `5esn` Ends With .0e0 Then .9e0 In 8.1e1 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else .9e1 Ends With 0x0 End] Union Return *,\"d_str\" In usn2 In $`7esn` As `5esn`,12[11.12e-12..][`4esn`..] Order By Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Is Null Ascending,'s_str'[$`8esn`..$999] Descending,$`2esn`[`8esn`..] Descending Remove Case 2.9e1 Ends With `5esn` Ends With 1000 When @usn6[999][1000] Then .0e0 =~0 =~.0e0 When {`4esn`} In 1000 In {@usn5} Then 123456789[_usn4..`1esn`][$`6esn`..{@usn6}] Else .12e12 Is Not Null End.`2esn`? Delete (usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..])"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`4esn`)Assert Exists([usn1 In $@usn6 Is Null Is Null].@usn6!)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`6esn`)Assert Exists(Reduce(`7esn`=11.12e-12 Contains usn1,_usn3 In `8esn`[_usn4]|#usn7 =~$@usn5 =~{7}).`6esn`.`1esn`?.`5esn`!)"), + octest_legacy:ct_string("Return Distinct *"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`5esn`)Assert Case When usn2[..$0][..`3esn`] Then $0 Contains $7 End.`3esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`4esn`)Assert Exists(Extract(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1]|'s_str' =~$usn2 =~{7}).`3esn`!)"), + octest_legacy:ct_string("Detach Delete Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null,(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])],.1e1 Is Null Is Null With Distinct 0.0[$`4esn`] As `4esn` Order By All(usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]) In Allshortestpaths(((`5esn` :`4esn`:usn2{_usn4:Count ( * ) Is Not Null Is Not Null,#usn8:`1esn`[{usn1}..]}))) In Filter(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Asc,{usn1}[9e-1][{@usn5}] Ascending,(`8esn` :@usn6:_usn3{`2esn`:#usn7 =~$@usn5 =~{7},`2esn`:{`3esn`}[..{`4esn`}][..usn2]})-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})[[`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where Count(*)[$7]|01[`6esn`..][0e0..]]..] Asc Skip 0X0123456789ABCDEF In $`2esn` In .9e-12 Limit $0 Ends With $usn1 Ends With {``} Merge ``=Shortestpath(((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[ *..123456789{@usn5:1e-1[$`4esn`]}]->(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0}))) On Match Set `3esn` ={`4esn`:12e12 Is Not Null Is Not Null} Contains Case When {_usn4}[{`6esn`}] Then 12e12 Is Not Null Is Not Null When #usn7 Is Null Is Null Then {`8esn`} Starts With .9e-1 Starts With 1000 End"), + octest_legacy:ct_string("Drop Constraint On(usn2:@usn6)Assert Extract(usn1 In \"d_str\" Contains {@usn6} Where $`` =~.1e-1|$`3esn` =~0x0).`7esn`.`6esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[#usn7:@usn5]->()Assert Exists(Reduce(_usn3=1.9e0[.12e-12][9e-12],`2esn` In $@usn5 Is Not Null Is Not Null|9e-12 Ends With 9e1 Ends With 4.9e12).``.`1esn`?)"), + octest_legacy:ct_string("Create Constraint On(@usn6:``)Assert Exists(Any(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]).`5esn`!.`7esn`!.#usn7)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`1esn`)Assert Exists({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12}.`7esn`)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:usn1)Assert Exists(Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`3esn`[0e-0]).usn2?.`8esn`)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`8esn`)Assert Exists((`6esn` :`4esn`:usn2)<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]-(`7esn` :#usn8:@usn6{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}).`6esn`)"), + octest_legacy:ct_string("Create Unique _usn4=Allshortestpaths(((`5esn` :_usn3)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}))),((`8esn` :`2esn`:`4esn`)-[?:#usn7|:@usn5 *12]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})) Load Csv From `4esn`[..7][..$usn2] As _usn4 Unwind Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1) Starts With Case 7.0e-0[$`6esn`..] When \"d_str\"[0x0..{@usn6}][$@usn5..0] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else $`5esn`[{`4esn`}][{0}] End Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`) As @usn6"), + octest_legacy:ct_string("Drop Constraint On()<-[`5esn`:@usn5]-()Assert Exists({usn1:0Xa In 1.0 In $@usn5}.@usn5.`8esn`)"), + octest_legacy:ct_string("Remove (@usn5 :@usn6:_usn3{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`3esn`:`6esn` *..0x0]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}).`3esn`,count($`8esn`).@usn6 Create Shortestpath(((usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})-[{#usn7:1e-1[$`4esn`]}]->(_usn4 :`1esn`:``{`3esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}))) Detach Delete Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`) Is Null Is Null,6.0e0[$#usn7..$1000],$12 Is Not Null Is Not Null Union Remove `7esn`:`4esn`:usn2,Filter(usn2 In .12e-12 Ends With `2esn` Where $7).usn1.#usn7!.`5esn` Start `8esn`=Node( {`4esn`}) ,`3esn`=Node( {1000}) Union All Remove Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `6esn` Ends With 1e1 Ends With $#usn7).`8esn`!.`2esn`!.`1esn`!,Case When 0e-0[$``..10.12e12] Then 3.9e-1[{@usn6}..][01234567..] End.@usn5.`4esn`?.`3esn` With *,$123456789[..$999][..`6esn`] As @usn5,Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07)[Case 9e-12 Ends With 9e1 Ends With 4.9e12 When `3esn` =~$#usn7 Then $@usn5 Starts With #usn7 When {`4esn`}[{`3esn`}][$`2esn`] Then #usn7[$`8esn`][{`3esn`}] Else 9e0[`4esn`..$_usn4][9.1e-1..0e0] End][[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]] Skip @usn5[9e-1..{`1esn`}] Limit 11.12e-12 Contains usn1"), + octest_legacy:ct_string("Merge `6esn`=Shortestpath((`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})) On Match Set _usn4+=01234567[10.12e12][0Xa],Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01).#usn7!.`2esn`.@usn6! =4.9e12 Ends With $@usn6,`3esn`+=.1e-1 Is Not Null On Create Set _usn3+=Count ( * ) =~123456789 =~{@usn5} Load Csv From {@usn6:3.9e-1[..$1000][..0.12]}[All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000)] As `3esn` Union Remove Reduce(`3esn`={0} Is Not Null,`` In `7esn` =~#usn8 =~\"d_str\"|01234567[\"d_str\"..][$`4esn`..])._usn4.@usn6 Delete 2.9e1 Ends With 12e12 Ends With .9e12,{123456789} Contains $0,$12 Is Null Unwind [_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12] As _usn3 Union Unwind Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null As @usn5 Detach Delete Case .12e-12 Is Null When Count ( * )[_usn4..] Then 7.0e-0 Is Not Null When 2.12[{12}] Then {usn2} Ends With {@usn6} Ends With 1000 End[Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..])][({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})],{`1esn`}[7.0e-0..9e-1][01234567..{`4esn`}],1e-1 Starts With .1e1 Starts With 12.0 Detach Delete 's_str'[`3esn`..0x0],0xabc Contains 12 Contains Null"), + octest_legacy:ct_string("Drop Constraint On()-[`8esn`:#usn7]->()Assert Exists({#usn8:7[..123456789][..true]}.`2esn`.usn2.`8esn`!)"), + octest_legacy:ct_string("Unwind {`6esn`} In {_usn4} In $12 As `1esn`"), + octest_legacy:ct_string("Create Constraint On(@usn6:#usn8)Assert Extract(usn1 In $@usn6 Is Null Is Null Where Count(*)[Count ( * )][{0}]|2.9e1[Count ( * )..]).`8esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:`6esn`)Assert usn2($12 =~4.9e12).`4esn`! Is Unique"), + octest_legacy:ct_string("Create Unique `1esn`=Allshortestpaths(((:usn1{`6esn`:$_usn3[usn2..][usn1..],#usn7:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}))),#usn8=Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789})) Remove Reduce(#usn7={`4esn`} In 1000 In {@usn5},usn2 In .12e-12 Ends With `2esn`|false Starts With 0 Starts With 2.9e1).usn1!,None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 12e12 Ends With `5esn` Ends With .0e0).`5esn`?,All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where $`4esn`[usn2..]).`2esn`! Union Merge ((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[ *..123456789{@usn5:1e-1[$`4esn`]}]->(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})) Start @usn5=Rel:`8esn`(usn1={#usn7}) ,``=Relationship:@usn6(#usn8='s_str')Where 12e-12 In .9e0 Union Merge `7esn`=(({_usn4:1e-1[$`4esn`]})) Create Unique (`1esn` {usn2:.9e-12[.12e12..][0Xa..]}),@usn6=Allshortestpaths(((`5esn` :_usn3)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}))) Match Shortestpath(((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1))),(((usn2 :`4esn`:usn2)<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})-[usn1?:#usn8|:`` *0xabc..12{usn2:01234567[10.12e12][0Xa]}]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}))) Using Join On @usn5,`1esn`"), + octest_legacy:ct_string("Drop Constraint On()-[`2esn`:`3esn`]->()Assert Exists(Shortestpath((((#usn8 :`4esn`:usn2{#usn7:{`3esn`}[#usn7],`4esn`:010[..9e-1][..0X7]})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]})-[?:@usn5|:#usn7 *0]->(`7esn` :`8esn`)))).usn1?)"), + octest_legacy:ct_string("Create Constraint On()<-[`4esn`:`8esn`]-()Assert Exists({@usn6:$@usn5 Starts With #usn7,@usn6:$@usn5[.9e-1]}.@usn5)"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv With Headers From #usn8 Is Null Is Null As _usn4 With *,$999 Ends With `2esn` Ends With 12.0 As #usn8,All(usn1 In $@usn6 Is Null Is Null Where $`1esn`[4.9e12..][_usn3..])[..@usn5(Count(*)[Count ( * )][{0}],`4esn` =~010)] As `3esn` With (`2esn` :`4esn`:usn2{`8esn`:.9e-1 Contains .9e0 Contains ``,_usn4:8.1e1 Contains .9e-1 Contains false})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Is Null Is Null As `1esn`,00 Is Not Null Is Not Null As `6esn`,{`5esn`} Ends With $`7esn` Ends With {@usn5} Order By {@usn6} =~Count ( * ) =~1.0 Desc,$`6esn` Contains All(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) Descending,`6esn`[0X0123456789ABCDEF..][`8esn`..] Ascending Limit None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Contains (`8esn` :@usn6:_usn3{_usn4:{#usn7} =~$@usn6 =~$7})<-[`1esn`? *0{usn2:.9e12[6.0e0..][@usn5..]}]->(usn2 :@usn6:_usn3)-[usn1:#usn7|:@usn5 *999..123456789]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})"), + octest_legacy:ct_string("Match `1esn`=(`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[ *0X0123456789ABCDEF]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]}))) Load Csv From usn2 Starts With $usn1 Starts With 10.12e12 As `3esn` Fieldterminator 's_str' Union Start `7esn`=Node:`5esn`({0}) ,usn2=Relationship:#usn8(usn2={@usn5})Where $`6esn`[0..{@usn6}][@usn5..1000] Foreach(`6esn` In {`5esn`} Is Not Null Is Not Null| Load Csv From {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]} Is Not Null As `6esn` Fieldterminator 's_str') Union All Merge `1esn`=({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})-[`4esn`{_usn3:010[..9e-1][..0X7]}]->(#usn7 :`1esn`:``) Start `2esn`=Rel:usn1('s_str') Where 9e1 Starts With $@usn6 Starts With 0e-0 Create Unique (((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))),`4esn`=(((`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})-[?:_usn3]->(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})-[:`2esn`|`5esn` *01]-(@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0})))"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`2esn`)Assert Shortestpath((@usn5 :_usn4:`2esn`{@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})).`4esn`? Is Unique"), + octest_legacy:ct_string("Return {12}[6.0e0..{usn2}][{_usn3}..{#usn7}] As _usn4,usn1 =~0Xa =~0 As @usn5 Limit $usn2 Ends With 9e12 Ends With Count ( * ) Union All Return $`7esn` Is Null Is Null,$`5esn`[{0}][1.9e0],Reduce(`3esn`=`7esn`[1.9e0..5.9e-12][9e0..@usn5],`` In `7esn` =~#usn8 =~\"d_str\"|{_usn3}[{0}...9e-1][9e-1...0e0]) Ends With None(usn1 In $@usn6 Is Null Is Null Where $999 =~false =~{`8esn`}) Ends With Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})))) As `` Order By 123.654 Ends With {1000} Ends With 9e12 Descending,{`6esn`} Starts With 12e12 Starts With {`2esn`} Descending Limit Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`) Is Null Is Null Union All Return Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End In (:usn1)<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}) In [_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|usn2 Ends With $123456789 Ends With {999}] As _usn4 Skip $_usn3 Contains 1.0 Contains 0.12 Create Unique (`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]}),@usn6=Shortestpath((@usn6 :`5esn`:`7esn`)) Merge Allshortestpaths(((`4esn` :#usn7:`8esn`)<-[:`8esn`|:#usn8{_usn4:$#usn7 Ends With {`5esn`} Ends With 01}]-({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[usn1:#usn7|:@usn5 *999..123456789]->(`5esn` :``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})))"), + octest_legacy:ct_string("Merge `2esn`=Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}})<-[?{@usn5:@usn6[999][1000]}]-(:usn1{#usn8:2.9e1[{`2esn`}]})) Load Csv From $@usn5 Starts With #usn7 As usn2 Return Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]|@usn5 =~$#usn7 =~{usn1}) In Case 9.1e-1 Contains {`3esn`} Contains $12 When {@usn6} In 9e12 Then 01[$`1esn`..$`7esn`][{usn2}..12.0] When {#usn8} In {12} In .9e12 Then @usn6 Starts With #usn7 End In All(usn1 In $@usn6 Is Null Is Null Where {7} Starts With 0x0 Starts With 9e1) As usn1 Skip Any(#usn8 In 07[..$`5esn`] Where .9e0[07..][4.9e12..]) =~_usn3 =~(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``) Union All Create `4esn`=(({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)) Load Csv From $`8esn` Starts With {`7esn`} As `8esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Drop Constraint On(usn2:_usn3)Assert Exists(0.12.usn1)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:@usn6)Assert Exists(All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {`3esn`}[999..$`4esn`])._usn4!.@usn5!.#usn7!)"), + octest_legacy:ct_string("Drop Constraint On()-[usn2:@usn5]->()Assert Exists(Any(#usn7 In .0e-0 In 12 Where {#usn8}[..@usn5]).`8esn`)"), + octest_legacy:ct_string("Detach Delete (`4esn` :`8esn`{12})<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:`6esn`]-({`6esn`:1000[{`1esn`}..][$`3esn`..]}) =~[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Is Not Null Is Not Null] =~Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true),$12 Contains false Contains {`1esn`} Union Merge Shortestpath((#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7})<-[_usn3?{`8esn`:{usn2} Is Not Null Is Not Null}]->(`7esn` {@usn5:Count ( * )[_usn4..]})<-[?:`3esn`|`3esn` *0X7..0Xa{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}]->(#usn8 :`8esn`)) On Match Set `6esn`(Distinct 1.0 In {usn1}).`5esn`! =.0e-0 Contains $1000,Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0).`1esn`! =`8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End,Reduce(`5esn`={``} Contains 0.0 Contains `4esn`,`2esn` In $@usn5 Is Not Null Is Not Null|0.0[`7esn`]).`2esn`.`8esn`!.`` =1.0 In {usn1} On Create Set ``+=12e12 Contains {0},`4esn`+=$`2esn` Contains {`4esn`} Union Unwind $`7esn` Ends With 7.0e-0 Ends With $usn2 As `5esn` With Distinct 0.0[$`4esn`] As `4esn` Order By 9e1 Ends With `7esn` Ends With 2.12 Descending,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null Asc,{0} =~{999} Desc Skip 6.0e0[None(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0)..][[_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]]..] Limit [usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]]"), + octest_legacy:ct_string("Create Constraint On()<-[`8esn`:_usn3]-()Assert Exists(Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 9e12 Is Null Is Null).`6esn`)"), + octest_legacy:ct_string("Create `4esn`=((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})<-[ *01234567..{usn1:{12} Contains `8esn` Contains @usn5}]->(usn1 :@usn6:_usn3)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})),(:`3esn`{@usn5:9e12[..usn2][.._usn3]})<-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]->(:`5esn`:`7esn`{`1esn`:{1000}[..`5esn`][..9e12]})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1}) Detach Delete Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,{``:01234567[10.12e12][0Xa]} Is Null Is Null Union Return Distinct _usn3($0 Ends With 9e-12 Ends With $_usn4) Is Null Is Null As `4esn`,1.9e0 In 2.12 As usn2,$#usn7[$``..999][$usn2..$usn2] Order By Any(`1esn` In $12 In {usn2} Where @usn6[true..]) Contains Any(usn2 In .12e-12 Ends With `2esn` Where 9e12 Ends With 9e-1 Ends With 9e1) Contains (`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3) Desc,`1esn`({12} Starts With $`` Starts With 0X0123456789ABCDEF,3.9e-1 Contains $@usn5)[..Case 01 =~{_usn3} =~01 When .12e12[..7] Then $_usn4[..$999] End] Desc,01234567 Ends With .0e0 Ends With 12e12 Ascending Skip 1e-1 =~$`7esn` =~1e1 Limit $999 =~0x0 Create Allshortestpaths(((:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))),((usn2 :`2esn`:`4esn`)<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]->(_usn4 :`6esn`$_usn3)-[usn2?*]->(@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})) Create Allshortestpaths((:`8esn`$@usn5))"), + octest_legacy:ct_string("Drop Constraint On()-[`8esn`:@usn5]-()Assert Exists(None(#usn7 In .0e-0 In 12 Where 0xabc[..{usn1}][..\"d_str\"]).usn1)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:@usn6)Assert Case When 0X0123456789ABCDEF Ends With {1000} Then {0} Is Not Null When .12e12 Is Not Null Then {`6esn`} Starts With .12e-12 Else 7[{`4esn`}..] End.@usn6! Is Unique"), + octest_legacy:ct_string("Create Unique (_usn4 {#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12})"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`8esn`)Assert [#usn7 In .0e-0 In 12 Where .0e-0 Ends With $`2esn` Ends With `5esn`|{usn1} Contains `4esn`]._usn4?._usn3!.`7esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:`2esn`)Assert `2esn`($12 Is Not Null Is Not Null,12e12[usn2..$`6esn`]).`2esn`? Is Unique"), + octest_legacy:ct_string("Optional Match @usn5=(((`1esn` :usn2{`8esn`:12.0[...0e0]})-[`5esn`?:@usn5|:#usn7{`4esn`:9e-12[$7..]}]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]}))),Shortestpath((`6esn` :``)<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})) Where $@usn6 Is Null Optional Match (:_usn4:`2esn`{`8esn`:12.0[...0e0]}),(`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Using Join On @usn6,usn1,`5esn` Using Index @usn5:`3esn`(`8esn`) Create Unique ((`3esn` :#usn8:@usn6)) Union All Foreach(_usn3 In Null| Optional Match ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),_usn3=Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)))) Return *,$12 Is Null As #usn8 Order By ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[_usn3?:@usn5|:#usn7]->(`` :``)-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Starts With Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`) Ascending,{`8esn`} =~$#usn7 =~2.12 Desc,Count(*) Starts With 07 Starts With $#usn7 Desc Skip @usn6[true..] Create ({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12}),#usn8=Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))) Union Remove All(#usn7 In .0e-0 In 12 Where 0xabc =~123456789).@usn6.#usn8!.`7esn`,Case {_usn3} In $#usn8 In $12 When `3esn` Starts With 9.1e-1 Starts With .9e-1 Then $1000[_usn4][{@usn5}] Else 12[@usn6][{`2esn`}] End._usn3!.#usn8?.`7esn`?,Case 010[...12e-12] When .9e1[$`1esn`..][$``..] Then Count ( * ) Starts With 0.12 End.`8esn`!.#usn8 Remove Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}).`8esn`!._usn3!._usn3!,Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))).`5esn`?.`8esn`?.@usn5?,[usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-12[010..{#usn7}][{123456789}..7]|Count(*)[..{#usn7}]]._usn4! Load Csv From \"d_str\" Contains {@usn6} As `3esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Start `5esn`=Relationship:#usn8(@usn5={@usn6}) Where 0.12 =~`6esn` =~.9e-1 Load Csv From #usn7[.9e0..`3esn`][{`6esn`}..1000] As _usn3 Delete All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0)[..(_usn4 {`3esn`:.0e-0 In 12})-[`4esn`{_usn3:010[..9e-1][..0X7]}]-(@usn5 :`8esn`{12})-[_usn3:`6esn`]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})]"), + octest_legacy:ct_string("Unwind (:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 )[Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..][(#usn8 :`4esn`:usn2)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})..] As `3esn` Return Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999|{`6esn`} Starts With {`5esn`} Starts With 2.9e1) Is Not Null Is Not Null Foreach(`1esn` In {usn1} In Count ( * ) In 12e12| Return Distinct 01 Starts With 12 Starts With $`2esn` As usn1,{`8esn`} In {_usn3} In 6.0e0 Order By {`4esn`} Ends With Count(*) Asc,.0e0[{`5esn`}..3.9e-1] Descending,$999 Ends With `2esn` Ends With 12.0 Ascending) Union All Merge `3esn`=(usn1 :#usn8:@usn6) On Create Set (`3esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[?:`4esn`|:`2esn` *01]-(`` :``).`1esn`.@usn5! =None(`` In `7esn` =~#usn8 =~\"d_str\" Where $`4esn` In {999}) Starts With ({usn1:12[..$`5esn`]})-[:`1esn`|:`1esn` *999..123456789{@usn5:$999 Ends With `2esn` Ends With 12.0}]->(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}) Starts With Case When $#usn8 Is Not Null Is Not Null Then $#usn8[$0..`3esn`][1e-1..$7] When $`` Starts With $`4esn` Starts With `3esn` Then .12e12[$usn1..][{@usn6}..] End,Reduce(`7esn`=123.654[01..][Count(*)..],`6esn` In 010[{`1esn`}..]|0.0[$`4esn`]).`6esn` ={_usn4} Starts With `2esn`(Distinct .1e-1[..$_usn3][..0]) Starts With #usn7(Distinct usn1 =~false =~{999},{`3esn`} =~$@usn5 =~`2esn`) Unwind exists(usn1 Ends With 11.12e-12 Ends With 5.9e-12)[All(`7esn` In 0.12 Is Not Null Where 0X0123456789ABCDEF In false)..] As _usn4 Merge `3esn`=(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})<-[?:`5esn`]-($12)<-[?:@usn5|:#usn7 *0]-(`7esn` :`5esn`:`7esn`)"), + octest_legacy:ct_string("Create Unique (({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})),`2esn`=(((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}))) Remove Extract(#usn8 In 07[..$`5esn`] Where $usn2[..$999][..#usn8])._usn3?,Single(`` In `7esn` =~#usn8 =~\"d_str\" Where 9e1 Ends With 9e12 Ends With 0x0).`5esn`!,usn2({`6esn`} In .0e0 In $0,0X0123456789ABCDEF Is Not Null Is Not Null).``? Union All Remove (`` :`8esn`)-[#usn7? *..00{_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}]->(:`3esn`)-[usn1?:usn1|usn2]->(#usn7 :@usn5).usn1,{12}.`6esn`? Create Unique #usn8=((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) Merge (((`1esn` :#usn8:@usn6{`7esn`:.1e-1 Contains .12e-12,`2esn`:.1e1 Ends With #usn7 Ends With {#usn7}})-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5)-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5))) On Match Set Allshortestpaths((:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})).@usn6! =12 Is Not Null Is Not Null On Create Set Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})).`5esn`!._usn3!._usn3? =$`1esn` Ends With 1000,(`8esn` :usn1)<-[usn2 *7]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})-[ *01{usn1:false[..usn2][..999]}]-(_usn3 ).#usn7!.`` =4.9e12 Ends With $@usn6,usn2 =10.12e12[.0e0] Union All Remove Case #usn8[\"d_str\"..usn2] When $12[$`6esn`..][01..] Then $`4esn`[$@usn6...12e12] End.`7esn`!.``!.`7esn`?,All(`6esn` In 010[{`1esn`}..] Where `3esn` Starts With 9.1e-1 Starts With .9e-1).#usn8.`3esn`! Merge `4esn`=Allshortestpaths((usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) Unwind ``[$7..$_usn4] As ``"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`6esn`)Assert Exists(Extract(usn2 In .12e-12 Ends With `2esn` Where $999 Ends With `2esn` Ends With 12.0|{_usn3} Is Null Is Null).`3esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:usn2)Assert Single(usn2 In .12e-12 Ends With `2esn` Where $999 Ends With `2esn` Ends With 12.0).`1esn`?.``! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:`3esn`]-()Assert Exists({usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`}._usn3!)"), + octest_legacy:ct_string("Optional Match `4esn`=Shortestpath(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))),((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))"), + octest_legacy:ct_string("Drop Constraint On()<-[#usn8:`6esn`]-()Assert Exists(Single(usn2 In .12e-12 Ends With `2esn`)._usn3!)"), + octest_legacy:ct_string("Create `2esn`=(({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})) Detach Delete None(`` In `7esn` =~#usn8 =~\"d_str\" Where $`4esn` In {999}) Starts With ({usn1:12[..$`5esn`]})-[:`1esn`|:`1esn` *999..123456789{@usn5:$999 Ends With `2esn` Ends With 12.0}]->(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}) Starts With Case When $#usn8 Is Not Null Is Not Null Then $#usn8[$0..`3esn`][1e-1..$7] When $`` Starts With $`4esn` Starts With `3esn` Then .12e12[$usn1..][{@usn6}..] End,{123456789} Contains $0,Filter(#usn7 In .0e-0 In 12 Where 00[$``])[[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $`4esn`[usn2..]|3.9e-1 Contains $@usn5]] Union All Unwind Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Is Null As #usn8"), + octest_legacy:ct_string("Start _usn4=Rel:`4esn`({7}) Foreach(`3esn` In {`8esn`} Ends With true Ends With {`3esn`}| Create (`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]}))))"), + octest_legacy:ct_string("Create Constraint On(usn2:_usn4)Assert Reduce(_usn4=5.9e-12 Contains {12} Contains {#usn8},`7esn` In 0.12 Is Not Null|{`5esn`}[.1e-1..1e-1][999..{_usn3}]).#usn8.``? Is Unique"), + octest_legacy:ct_string("Match Shortestpath(((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999}))),_usn3=(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}) Using Join On `4esn`,`5esn`,@usn6 Where #usn8 =~{@usn5} Unwind {7} Is Not Null As _usn3 Union All Optional Match `5esn`=Shortestpath(((`8esn` :`8esn`)-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`8esn`*]-(`7esn` :``{usn2:$7}))),`3esn`=Allshortestpaths((((`4esn` :`3esn`)<-[@usn5?*..]->(:_usn3{_usn3:010[..9e-1][..0X7]})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)))) Using Index `5esn`:#usn8(_usn3) Return Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] As #usn8,[`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]),{`7esn`} Is Not Null Is Not Null As `1esn` Order By 00[{1000}] Descending,'s_str'[$_usn3..][9.1e-1..] Desc,$_usn4 =~$#usn8 =~{`4esn`} Desc Skip $``[9e12..] Limit Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[`8esn`(0X0123456789ABCDEF Is Not Null Is Not Null,{usn1} Is Not Null Is Not Null)..][{usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}..] Union All Foreach(`6esn` In $_usn4[..01234567][..$`6esn`]| Match ((`4esn` {@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})) Using Index `5esn`:`4esn`(_usn3) Using Join On #usn7,`7esn`)"), + octest_legacy:ct_string("Create Constraint On(usn1:usn2)Assert Exists(Reduce(#usn8=$``[1.0..][_usn3..],`6esn` In 010[{`1esn`}..]|{1000} =~4.9e12 =~9e1).`6esn`.@usn6!)"), + octest_legacy:ct_string("Return 9e1[12] Order By 0xabc[01234567][.12e-12] Ascending,Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Asc Foreach(`4esn` In 7.0e-0[true]| Unwind None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Starts With {@usn5:999 Ends With {#usn8},_usn4:Null In {7}} As `5esn` Create #usn7=(`8esn` :`7esn`)-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``),((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))) With $`1esn`[..12e-12][...9e12] As `7esn` Order By .12e12[01..{1000}][8.1e1..Count ( * )] Asc,{12} Starts With $`` Starts With 0X0123456789ABCDEF Asc,$_usn3[0x0][{0}] Descending Skip 9e1[..{usn1}] Union Create `6esn`=((:#usn7:`8esn`{usn2:`1esn` =~{12} =~{999}})),`5esn`=(:usn2{`6esn`:9e12[..usn2][.._usn3],`1esn`:01[`6esn`..][0e0..]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}) Load Csv From 010[{`1esn`}..] As #usn7 "), + octest_legacy:ct_string("Using Periodic Commit 01 Load Csv With Headers From None(`6esn` In 010[{`1esn`}..] Where 0 In 2.9e1 In 7) Ends With [@usn6 In 9e12[..usn2][.._usn3] Where .12e12 Ends With 07 Ends With 3.9e-1|$@usn5 Is Null Is Null] As _usn3 Create (({`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654})-[$#usn8]->({usn2:01[`4esn`..]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1})),@usn6=((:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[?:`5esn`]-(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}))"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:#usn8]->()Assert Exists(Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`|01 =~07).`2esn`!)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:usn2)Assert [`1esn` In $12 In {usn2} Where {usn1} Is Not Null]._usn4!.`8esn`!.`6esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`6esn`)Assert (:`1esn`:``{`8esn`:0X0123456789ABCDEF Ends With {1000}})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`6esn` :`4esn`:usn2).`5esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:`1esn`]-()Assert Exists(Case $@usn5[``..] When `6esn`[0X0123456789ABCDEF..][`8esn`..] Then `2esn`[`7esn`][1000] When {`6esn`} Starts With .12e-12 Then $`8esn` =~{`1esn`} =~$7 End.#usn7?)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`2esn`)Assert Exists(Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0e-0[..$usn2]).@usn6)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`5esn`)Assert Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When $1000[_usn4][{@usn5}] Then 4.9e12[{_usn4}..] End.@usn6?.#usn8! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:`1esn`]-()Assert Exists(Single(`` In `7esn` =~#usn8 =~\"d_str\" Where 6.0e0[{`2esn`}..$``]).`1esn`!)"), + octest_legacy:ct_string("Merge _usn4=((_usn3 :`6esn`)<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})) On Create Set `7esn`+=$``[Count(*)..{12}],@usn5 =All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))]"), + octest_legacy:ct_string("Create Constraint On(_usn3:usn1)Assert Shortestpath(((`8esn` :`8esn`)<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))).@usn5! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:`8esn`)Assert Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 0xabc[01234567][.12e-12]|{123456789} Starts With $_usn4 Starts With 0x0).``.`` Is Unique"), + octest_legacy:ct_string("Merge Shortestpath((usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})) On Create Set `7esn` ={`1esn`}[7.0e-0..9e-1][01234567..{`4esn`}],`7esn`+=$`` =~$_usn3,`2esn` =[usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF] Is Null Is Null On Match Set Any(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])._usn4._usn3!.usn1! ={usn1} Is Not Null Optional Match (:`3esn`{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}),(:usn1{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`) Using Index `3esn`:`2esn`(`7esn`) Using Index usn2:`1esn`(`3esn`) Merge (({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})<-[usn2:`4esn`|:`2esn` *0X7..0Xa]-(#usn7 :#usn7:`8esn`)) Union All Load Csv With Headers From Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] As `7esn` Start `4esn`=Node(0x0) "), + octest_legacy:ct_string("Unwind Allshortestpaths(((@usn6 :@usn6:_usn3))) Is Null Is Null As `2esn` Start @usn6=Relationship:#usn8(usn2={12}) ,@usn5=Rel:usn2({`1esn`}) Return Distinct 2.9e1 =~{123456789} =~01 As usn1,.9e12 Is Not Null Is Not Null,12e12[usn2..$`6esn`] As usn1 Order By [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..] Asc,Case When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else {123456789} Starts With `6esn` End =~Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where `4esn` Contains 0X0123456789ABCDEF Contains $usn2) =~Allshortestpaths((`7esn` :``{usn2:$7})) Descending Skip Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End In (:usn1)<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}) In [_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|usn2 Ends With $123456789 Ends With {999}] Limit $`6esn`[$_usn3..{1000}] Union Unwind Single(`6esn` In 010[{`1esn`}..] Where {`4esn`} In 1000 In {@usn5}) Starts With Any(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01234567 Ends With .0e0 Ends With 12e12) As `1esn` Return Distinct 4.9e12[{_usn4}..],{`5esn`} Ends With $`7esn` Ends With {@usn5} Skip 00[{`4esn`}..] Limit false Contains {`7esn`} Merge `6esn`=(((`8esn` :usn2)-[@usn5:`2esn`|`5esn` *7]->(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})-[? *12{@usn6:$`` =~.1e-1}]->(:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}}))) On Match Set {usn1:{123456789} Starts With $_usn4 Starts With 0x0,`3esn`:$`4esn` Is Null Is Null}.`7esn`?.`7esn`?.#usn7 =1.9e0 In 2.12,Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where {0}[.1e-1..][_usn4..]).`6esn`.usn1.`7esn`? =12e-12 Ends With $999 Ends With ``,Extract(#usn8 In 07[..$`5esn`] Where 123.654 Ends With {1000} Ends With 9e12|$usn1[..$999][..0e0])._usn3! ={1000} Starts With {`1esn`}"), + octest_legacy:ct_string("Create Constraint On(usn1:usn1)Assert None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 1000[{`1esn`}..][$`3esn`..]).#usn8? Is Unique"), + octest_legacy:ct_string("With *,Reduce(#usn7=$usn1 Ends With {`2esn`} Ends With $usn1,`6esn` In 010[{`1esn`}..]|.9e-12[.12e12..][0Xa..])[#usn7(8.1e1 Contains $@usn6,$12[$`6esn`..][01..])..Reduce(@usn5=`1esn` In 6.0e0 In 12,`` In `7esn` =~#usn8 =~\"d_str\"|$`6esn` =~$#usn7 =~$`4esn`)] Order By Allshortestpaths(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0}))[Reduce(@usn6=10.12e12 Starts With $`4esn` Starts With 0e0,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$1000 Contains $123456789 Contains #usn8)..Case 7[..123456789][..true] When $1000[..0e-0][..010] Then 999 Starts With 7.0e-0 Starts With true End][[`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]]..Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When 0.12[Count ( * )..Count ( * )][$999..`5esn`] Then $123456789[..$999][..`6esn`] Else 7[{`4esn`}..] End] Asc,{`3esn`} =~$`` =~$`8esn` Ascending Skip Reduce(`1esn`={`5esn`}[01234567..][5.9e-12..],usn1 In {#usn7} =~.12e12 =~9e0|$`6esn`[..01][..{_usn3}]) Ends With (`2esn` :usn1)<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-(_usn3 :`1esn`:``) Ends With {usn1:{12}[6.0e0..{usn2}][{_usn3}..{#usn7}]} Limit {`3esn`}[...1e1][..0] Where $7[.1e-1..{@usn6}][$7..{`1esn`}] Start ``=Node(00) ,`2esn`=Rel(07,0Xa) Union All With @usn5[{`1esn`}..][Count ( * )..] As `8esn` Limit Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Contains (:`2esn`:`4esn`{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``) Contains {@usn6:10.12e12 Contains .9e0,`3esn`:`6esn` =~999 =~$999} Where {`1esn`}[..$_usn4] Union Delete Filter(@usn6 In 9e12[..usn2][.._usn3] Where 1.9e0[..0][.._usn3]) Ends With {`6esn`:9e12 Ends With \"d_str\" Ends With 0X7,`3esn`:0X0123456789ABCDEF[1e1..]} Ends With Reduce(@usn5=`` Contains {`6esn`} Contains 123456789,`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|00[$``]) Foreach(`5esn` In 0 Contains {`2esn`}| Optional Match Allshortestpaths((:`3esn`)) Using Index `6esn`:usn1(`3esn`) Where {``} Is Null Is Null)"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:`3esn`]->()Assert Exists(Filter(#usn8 In 07[..$`5esn`] Where 2.9e1 =~Count(*) =~{123456789}).`5esn`._usn4?)"), + octest_legacy:ct_string("Load Csv From #usn8(Distinct 12e12[{`4esn`}..`4esn`][999..{@usn6}])[Any(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1])..{``:9e1[0.0]}] As `7esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:#usn8]->()Assert Exists(None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .9e12 Is Not Null Is Not Null)._usn3!.``.usn1?)"), + octest_legacy:ct_string("Load Csv With Headers From $999 =~false =~{`8esn`} As @usn6 Fieldterminator 's_str' Merge @usn5=(_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]}) On Match Set `7esn`+=$_usn3[0x0][{0}],Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}}))._usn3 =9e0[{7}...0e-0][Null..@usn5],usn1+=Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null"), + octest_legacy:ct_string("Optional Match ((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})) Using Index usn1:#usn8(``) Remove Case {0}[.0e-0][$`2esn`] When Count(*)[$7] Then $12 Ends With {_usn4} Ends With $`8esn` End.`6esn`,Shortestpath(((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))).``?,None(`2esn` In $@usn5 Is Not Null Is Not Null Where `6esn`[3.9e-1..`8esn`][12.0..0.0]).`7esn`! Create `6esn`=Shortestpath((@usn5 :_usn4:`2esn`{@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})),`2esn`=Shortestpath(((`1esn` :`7esn`{usn1:3.9e-1 Starts With .9e0 Starts With {#usn7}})<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]}))) Union Create Unique _usn4=((:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)),#usn8=(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]}) Unwind {7} Is Not Null As _usn3 Remove {``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}._usn3?"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`1esn`)Assert Exists(Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End.`1esn`?)"), + octest_legacy:ct_string("Drop Constraint On(usn1:#usn8)Assert Exists(Extract(@usn6 In 9e12[..usn2][.._usn3]|01234567[1000..][$`8esn`..])._usn4!.usn1!.``!)"), + octest_legacy:ct_string("Optional Match #usn8=({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)}),((:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]})-[``:usn1|usn2{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]}]-(`7esn` {@usn5:Count ( * )[_usn4..]})-[usn2:_usn3 *0xabc..12]->(:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})) Using Scan ``:#usn8 Using Scan #usn7:`8esn` Match `3esn`=({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}),((:#usn7:`8esn`{@usn6:123456789[_usn4..`1esn`][$`6esn`..{@usn6}]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}})) Using Index `5esn`:`4esn`(_usn3) Union Delete Filter(@usn6 In 9e12[..usn2][.._usn3] Where 1.9e0[..0][.._usn3]) Ends With {`6esn`:9e12 Ends With \"d_str\" Ends With 0X7,`3esn`:0X0123456789ABCDEF[1e1..]} Ends With Reduce(@usn5=`` Contains {`6esn`} Contains 123456789,`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|00[$``]) Foreach(`5esn` In 0 Contains {`2esn`}| Optional Match Allshortestpaths((:`3esn`)) Using Index `6esn`:usn1(`3esn`) Where {``} Is Null Is Null)"), + octest_legacy:ct_string("Drop Constraint On()-[#usn8:`2esn`]->()Assert Exists(Reduce(#usn8=$``[1.0..][_usn3..],`6esn` In 010[{`1esn`}..]|{1000} =~4.9e12 =~9e1)._usn4)"), + octest_legacy:ct_string("Create Constraint On()-[#usn7:usn2]->()Assert Exists(Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})).`4esn`?.`2esn`?)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:#usn7)Assert Exists(Reduce(`5esn`={@usn6} In 1.0,_usn3 In `8esn`[_usn4]|@usn6 Starts With #usn7).`5esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[`7esn`:_usn4]-()Assert Exists(#usn8(Distinct `6esn`[3.9e-1..`8esn`][12.0..0.0],@usn5 In Null).`7esn`!)"), + octest_legacy:ct_string("Create Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))),@usn6=((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})) Foreach(`8esn` In {1000}[`2esn`...0e-0][9e-1..0X7]| Load Csv From usn2(Distinct $_usn3 =~'s_str' =~12) In (`` :usn1)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}) In Case When {_usn4}[{`6esn`}] Then 12e12 Is Not Null Is Not Null When #usn7 Is Null Is Null Then {`8esn`} Starts With .9e-1 Starts With 1000 End As usn2 ) Load Csv With Headers From $0[.9e12..] As `1esn` "), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv With Headers From $999 =~false =~{`8esn`} As @usn6 Fieldterminator 's_str' Foreach(usn2 In 's_str'[$_usn3..][9.1e-1..]| Start `7esn`=Node( {999}) ,`5esn`=Node:_usn4(@usn5={`4esn`})Where $#usn7)"), + octest_legacy:ct_string("Drop Constraint On(usn1:`6esn`)Assert Exists(Case $`3esn` =~0x0 When `3esn` Is Null Is Null Then $@usn6 Starts With 0xabc Starts With {`7esn`} Else Count(*)[Null..][01234567..] End._usn4!)"), + octest_legacy:ct_string("Delete {#usn7} Ends With 999 Ends With 12,\"d_str\"[0x0..{@usn6}][$@usn5..0],{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1] Optional Match `2esn`=Allshortestpaths(((:#usn8:@usn6{`3esn`:$#usn7}))) Using Join On `5esn`,`8esn`,#usn7 Using Join On usn1,`1esn`,_usn4 Where {@usn5}[10.12e12..] Union All Remove (_usn3 :#usn7:`8esn`)<-[? *0X7..0Xa]->(`1esn` ).`6esn`!.@usn5 Remove {`1esn`:$#usn7 Starts With $123456789,`4esn`:{_usn3}[{0}...9e-1][9e-1...0e0]}.`1esn`?.@usn6?.`8esn`!"), + octest_legacy:ct_string("Return Distinct $usn2[{`1esn`}] As `5esn`,[usn1 In $@usn6 Is Null Is Null Where 9e0[`4esn`..$_usn4][9.1e-1..0e0]][Any(`` In `7esn` =~#usn8 =~\"d_str\" Where 9e-12 Ends With 9e1 Ends With 4.9e12)][(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]})] As _usn3,0e0[2.9e1..][.12e-12..] As `2esn` Order By `6esn`[0X0123456789ABCDEF..][`8esn`..] Ascending,[usn2 In .12e-12 Ends With `2esn` Where @usn5 In Null|false =~{`8esn`} =~00][Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where Count ( * ) =~123456789 =~{@usn5})..Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)] Descending,usn2($usn1 =~.0e0 =~{`4esn`}) Contains Allshortestpaths(((#usn8 :@usn5)<-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 )<-[?:`1esn`|:`1esn`{`5esn`:9e1[0.0]}]->(`8esn` ))) Ascending Limit {`8esn`}[.0e0..][999..] Create Unique `1esn`=((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})),`1esn`=((_usn4 )-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]}))"), + octest_legacy:ct_string("Match `4esn`=(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0}) Start `5esn`=Node:`8esn`('s_str') "), + octest_legacy:ct_string("Drop Constraint On(usn1:`4esn`)Assert Reduce(`6esn`={usn1} Contains `4esn`,`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$usn1[9e1][{999}]).`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`4esn`:usn1]->()Assert Exists({_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999}.`7esn`)"), + octest_legacy:ct_string("Create Constraint On(@usn5:`7esn`)Assert (:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(`2esn` :@usn5)-[`8esn`:_usn4|:`1esn`]->({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`}).#usn7 Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:`2esn`]-()Assert Exists((#usn8 {usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]}).`1esn`!)"), + octest_legacy:ct_string("Start `2esn`=Relationship(0) Where $12 Ends With 12.0 Ends With $`4esn` Union All With *,$_usn3[.0e-0..999],0 In 2.9e1 In 7 As usn2 Skip #usn8 Contains 7 Contains {`4esn`} Limit Allshortestpaths((((@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[``? *..00{@usn5:$`8esn` =~{`1esn`} =~$7,#usn7:.12e-12 Starts With .12e-12}]->({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]})-[:`8esn`|:#usn8 *01]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))))[..Case When {#usn7} Ends With 999 Ends With 12 Then {`3esn`}[999..$`4esn`] End] Load Csv With Headers From $`1esn`[4.9e12..][_usn3..] As `2esn` Fieldterminator 's_str' Start `5esn`=Node:`1esn`(`4esn`={@usn5}) Where {`8esn`} In {_usn3} In 6.0e0 Union Unwind 9e0 Is Null As ``"), + octest_legacy:ct_string("Return Distinct 0.0 Starts With 0X0123456789ABCDEF,{123456789} =~.9e1 =~$_usn3,Case When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 Else $12 Is Not Null Is Not Null End Starts With usn1(Distinct .9e1[$`1esn`..][$``..]) Starts With Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End Order By Null Ends With `4esn` Ends With `3esn` Descending,None(`6esn` In 010[{`1esn`}..] Where 0 In 2.9e1 In 7) Ends With [@usn6 In 9e12[..usn2][.._usn3] Where .12e12 Ends With 07 Ends With 3.9e-1|$@usn5 Is Null Is Null] Ascending,Case When true In 0.0 Then {`4esn`}[{`3esn`}][$`2esn`] Else @usn6 Starts With #usn7 End =~{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}} =~{_usn3:010[..9e-1][..0X7]} Descending Union All Remove `5esn`:`6esn`,[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01|_usn4 Ends With {`8esn`} Ends With usn2].usn1.`7esn`.@usn6 Match (((:`6esn`)-[? *0Xa..12{`4esn`:9e-12[$7..]}]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(usn2 {`7esn`:.9e12 Contains 0 Contains $0}))),@usn6=Shortestpath((:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})) Using Index `6esn`:usn1(#usn8) Using Scan `1esn`:#usn8"), + octest_legacy:ct_string("Create Constraint On(`6esn`:``)Assert All(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 999 Starts With 7.0e-0 Starts With true).`7esn`!.usn2?.`6esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[usn2:_usn4]-()Assert Exists(Any(usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]).`4esn`!.@usn5!)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`5esn`)Assert Extract(#usn8 In 07[..$`5esn`] Where 07[{@usn5}..]|9e-1 Contains 3.9e-1).`3esn`?.usn1 Is Unique"), + octest_legacy:ct_string("With Distinct *,0X0123456789ABCDEF In .9e-1 In 123456789 Limit 1.9e0 =~.0e0 =~0X7"), + octest_legacy:ct_string("Create Shortestpath((`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})),((_usn3 :`7esn`{@usn6:$`4esn` Ends With .12e12 Ends With 123.654})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)<-[#usn7? *0xabc..12]-(:`3esn`)) With {`2esn`}[0x0..9e0] As `6esn`,{`8esn`} Ends With true Ends With {`3esn`} As `2esn` Skip {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null) Where 2.9e1 Ends With `5esn` Ends With 1000"), + octest_legacy:ct_string("Drop Constraint On()<-[`3esn`:``]-()Assert Exists(Reduce(`8esn`=Count(*)[$7],`2esn` In $@usn5 Is Not Null Is Not Null|$@usn5 Contains _usn3).`6esn`!)"), + octest_legacy:ct_string("Match ``=Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))),`7esn`=Shortestpath(((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})))) Where 0X0123456789ABCDEF[1e1..]"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`5esn`)Assert Case When `4esn` =~010 Then {7}[$@usn5..123456789][1e1..1.9e0] Else 1e-1 =~$`7esn` =~1e1 End.usn1? Is Unique"), + octest_legacy:ct_string("Load Csv From $`6esn`[0..{@usn6}][@usn5..1000] As _usn3 Fieldterminator \"d_str\" Union All Delete `2esn` In .9e0 In ``,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Unwind 9e1[0.0] As @usn5 Remove {``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}._usn3? Union All Load Csv With Headers From Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null As @usn5 Fieldterminator \"d_str\" Foreach(`3esn` In Reduce(`7esn`=#usn7 Contains .0e0 Contains $@usn6,`6esn` In 010[{`1esn`}..]|00 Is Not Null Is Not Null)[$7..]| Load Csv From {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null) As @usn6 Start `5esn`=Node:usn2(_usn4='s_str') ) Return {0}[.1e-1..][_usn4..] As _usn3,9e0[{7}...0e-0][Null..@usn5] As `` Limit $_usn3 Is Null"), + octest_legacy:ct_string("Create Unique `4esn`=Shortestpath(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))),((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))"), + octest_legacy:ct_string("Detach Delete $usn1 =~9e1 =~$1000 Union Optional Match `3esn`=({#usn8:_usn4[$_usn4]})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7}) Where .12e12[..$123456789] Detach Delete Reduce(`1esn`={`5esn`}[01234567..][5.9e-12..],usn1 In {#usn7} =~.12e12 =~9e0|$`6esn`[..01][..{_usn3}]) Ends With (`2esn` :usn1)<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-(_usn3 :`1esn`:``) Ends With {usn1:{12}[6.0e0..{usn2}][{_usn3}..{#usn7}]},{7}[0x0][1e1],$1000 Is Null"), + octest_legacy:ct_string("Delete true[..{`2esn`}],Allshortestpaths(({usn1:12[..$`5esn`]})<-[:`4esn`|:`2esn`{`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]}]-(#usn8 :usn2))[..`1esn`][..Case .12e-12 Starts With .12e-12 When 0xabc Starts With {`3esn`} Starts With {``} Then {usn2} Is Not Null Is Not Null Else {`4esn`} Ends With Count(*) End],$`4esn` Contains `4esn` Contains .0e-0 Load Csv From [usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0|4.9e12 Is Not Null Is Not Null] =~Case {_usn3} In $#usn8 In $12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else 0[..{0}][..true] End =~Case Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else $_usn3 Starts With 010 End As #usn7 Load Csv With Headers From 12 Ends With 12e12 As usn1 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Drop Constraint On(`2esn`:usn2)Assert [`` In `7esn` =~#usn8 =~\"d_str\" Where 2.12 =~$999].@usn5? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`3esn`:@usn6]-()Assert Exists(Reduce(@usn5=0xabc[..Count(*)][..$`5esn`],usn1 In \"d_str\" Contains {@usn6}|123456789[#usn7..9e-1][10.12e12..{0}]).`2esn`!.`3esn`)"), + octest_legacy:ct_string("Create ((`5esn` :#usn8:@usn6))"), + octest_legacy:ct_string("Unwind `6esn`[0X0123456789ABCDEF..][`8esn`..] As `1esn` Foreach(_usn3 In 12e12 Is Not Null Is Not Null| Remove [`3esn` In 8.1e1 Contains .9e-1 Contains false Where 07 Ends With {1000} Ends With 01234567|$`5esn` Ends With 's_str' Ends With $`6esn`].`2esn`,{`2esn`:0xabc[01234567][.12e-12],`1esn`:{`3esn`}[#usn7]}._usn4?,(_usn3 )<-[:`8esn`|:#usn8 *0X7..0Xa]->(`4esn` :`8esn`{12}).`8esn`!._usn3? Return *,@usn5[{`1esn`}..][Count ( * )..] As `8esn` Order By {_usn3:.0e-0[..``][..$7]}[..(`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`)][..@usn5] Descending Skip $999[9e0] Limit false =~{`8esn`} =~00) Union All Detach Delete {`8esn`}[9e-12..0],`` Ends With 1.0 Ends With usn1 Remove Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With ``).`5esn`,{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}._usn3.`2esn`!,Reduce(`8esn`=@usn6[999][1000],#usn8 In 07[..$`5esn`]|{`8esn`}[9e12..][{_usn4}..]).`4esn`? Detach Delete {`1esn`} Contains 1.0 Contains 4.9e12,{999}[..`6esn`],{`3esn`} =~$`` =~$`8esn` Union All Foreach(_usn3 In Null| Optional Match ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),_usn3=Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)))) Return *,$12 Is Null As #usn8 Order By ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[_usn3?:@usn5|:#usn7]->(`` :``)-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Starts With Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`) Ascending,{`8esn`} =~$#usn7 =~2.12 Desc,Count(*) Starts With 07 Starts With $#usn7 Desc Skip @usn6[true..] Create ({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12}),#usn8=Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]})))"), + octest_legacy:ct_string("Drop Constraint On(_usn3:_usn3)Assert Exists([@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 1.9e0 In $@usn6 In $_usn3].`7esn`)"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:`7esn`]->()Assert Exists(({``:true Is Null,_usn3:$12 Ends With 7.0e-0 Ends With 9e-12})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(:`6esn`{`2esn`:`5esn` Ends With Count(*)}).usn2)"), + octest_legacy:ct_string("With Distinct All(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`]) Ends With Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e-12[9e1]),9e0[`3esn`][0] As #usn7,`1esn`[..$1000] As _usn3 Load Csv From (usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[_usn3?:@usn5|:#usn7]->(`2esn` :usn1)<-[?:usn1|usn2{#usn8:'s_str'[`2esn`][12.0]}]->(_usn3 :``)[[usn2 In .12e-12 Ends With `2esn` Where .9e0[07..][4.9e12..]|12.0[...0e0]]] As _usn4 Fieldterminator \"d_str\""), + octest_legacy:ct_string("With Distinct *,Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null Skip 0xabc Contains 12 Contains Null Limit $123456789 Contains 07 Contains 0.0 Load Csv From {_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}[Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)][[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1]] As `5esn` Fieldterminator 's_str' Union All Start `7esn`=Node:usn1(\"d_str\") ,`5esn`=Relationship(999,010,07,123456789) Union All Start #usn7=Node( {``}) Where $`6esn`[..01][..{_usn3}] Optional Match `7esn`=(@usn5 :@usn5{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6})-[usn2?:`1esn`|:`1esn` *..123456789]-(:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[:_usn3]-(`3esn` ),(({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 {#usn7:$999 =~false =~{`8esn`}})) Where {#usn7} Starts With .1e-1"), + octest_legacy:ct_string("Create Constraint On(`1esn`:_usn3)Assert Exists(Allshortestpaths(((_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null})<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))).`3esn`?.usn2?)"), + octest_legacy:ct_string("Load Csv From Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As #usn8 Optional Match `2esn`=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))) Using Join On _usn3,usn2 Using Index _usn4:`1esn`(@usn5) Where 0e0 Contains {`2esn`} Start @usn6=Relationship:usn2({usn2}) ,usn2=Node:`2esn`(_usn4={#usn7})Where `7esn`[1.9e0..5.9e-12][9e0..@usn5] Union Start _usn3=Rel:usn2(#usn7='s_str') ,_usn3=Node( {usn2}) Union All With *,$_usn3[.0e-0..999],0 In 2.9e1 In 7 As usn2 Skip #usn8 Contains 7 Contains {`4esn`} Limit Allshortestpaths((((@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[``? *..00{@usn5:$`8esn` =~{`1esn`} =~$7,#usn7:.12e-12 Starts With .12e-12}]->({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]})-[:`8esn`|:#usn8 *01]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))))[..Case When {#usn7} Ends With 999 Ends With 12 Then {`3esn`}[999..$`4esn`] End] Load Csv With Headers From $`1esn`[4.9e12..][_usn3..] As `2esn` Fieldterminator 's_str' Start `5esn`=Node:`1esn`(`4esn`={@usn5}) Where {`8esn`} In {_usn3} In 6.0e0"), + octest_legacy:ct_string("Return *,$`3esn`[..{`5esn`}],$_usn3 Contains 1.0 Contains 0.12 As `` Skip 5.9e-12[..9e0] Union With Distinct 4.9e12 Starts With {``} Where $0 Ends With 9e-12 Ends With $_usn4"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv From {`8esn`:`1esn` In 6.0e0 In 12} =~Case 7 Starts With 9e-12 When .9e12 Is Not Null Is Not Null Then 1000[{`1esn`}..][$`3esn`..] Else {`6esn`}[6.0e0..9e0][.9e1..12e12] End As `5esn` Merge Allshortestpaths(((_usn4 {_usn3:.0e-0[..``][..$7]}))) On Match Set @usn5+=Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null Return Distinct *,{``}[$usn2..00][{_usn3}..123.654],`5esn` Ends With 's_str' Ends With @usn5 Skip Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn`) Contains (`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) Contains Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}) Limit (`1esn` :`5esn`:`7esn`)-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})[[#usn8 In 07[..$`5esn`] Where `8esn`[_usn4]]..Reduce(`7esn`=$@usn5 Is Null Is Null,`2esn` In $@usn5 Is Not Null Is Not Null|{`1esn`}[..$_usn4])][Case When `4esn` =~010 Then {7}[$@usn5..123456789][1e1..1.9e0] Else 1e-1 =~$`7esn` =~1e1 End..#usn7(Distinct usn1 =~false =~{999},{`3esn`} =~$@usn5 =~`2esn`)]"), + octest_legacy:ct_string("Foreach(@usn6 In {`6esn`} Starts With 12e12 Starts With {`2esn`}| Delete {123456789} Contains $#usn7 Contains {#usn8} Load Csv From None(`1esn` In $12 In {usn2})[..Reduce(usn2=.9e0 In 8.1e1,`3esn` In 8.1e1 Contains .9e-1 Contains false|$_usn3 Is Not Null)] As #usn7 Fieldterminator 's_str')"), + octest_legacy:ct_string("Match Allshortestpaths((`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`)) Using Index usn1:``(@usn5) Union Unwind {`8esn`}[.0e0..][999..] As `1esn` Union All Remove All(`` In `7esn` =~#usn8 =~\"d_str\" Where 9e12 Ends With 9e-1 Ends With 9e1)._usn4?.`2esn`,#usn8({`4esn`} Ends With Count(*),`6esn`[3.9e-1..`8esn`][12.0..0.0]).`3esn`!.`6esn`? Remove Allshortestpaths(((`7esn` {#usn8:2.9e1[{`2esn`}]})-[?:`1esn`|:`1esn` *..0x0{@usn6:.0e-0 In 12}]-(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0})-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]-(`1esn` :_usn4:`2esn`))).`2esn`?.`7esn`.`5esn`,Shortestpath((`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]}))._usn3.`3esn`.`1esn`!,#usn7(Distinct \"d_str\" Is Not Null Is Not Null,$`6esn`[$_usn3..{1000}])._usn3!.#usn7?"), + octest_legacy:ct_string("Load Csv From $@usn5 =~{`3esn`} As `8esn` Fieldterminator 's_str' Foreach(`` In 07 Ends With {1000} Ends With 01234567| Remove `8esn`:`1esn`:``,[usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000|{#usn8} In {12} In .9e12].`5esn`!.`8esn`._usn4?,{`7esn`:.9e12 Contains 0 Contains $0}.`3esn`!.@usn5?.usn1 Unwind Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null As @usn5) Union Delete @usn5[@usn6],{`5esn`}[{usn2}..$`1esn`] Foreach(#usn8 In usn2 Starts With $usn1 Starts With 10.12e12| With {1000} Starts With 10.12e12 Starts With .0e-0 As `8esn`,Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) As _usn4 Skip Count ( * ) Starts With 0.12 Limit Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Create ``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))))"), + octest_legacy:ct_string("Create Unique #usn7=Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)),#usn7=((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})) Union With Case false =~{`8esn`} =~00 When usn2 Starts With $usn1 Starts With 10.12e12 Then usn2 Starts With $usn1 Starts With 10.12e12 When {1000} =~4.9e12 =~9e1 Then `3esn` =~$#usn7 End Ends With All(usn2 In $`5esn`[{`4esn`}][{0}] Where 0e0 Contains {`2esn`}) Ends With [#usn7 In .0e-0 In 12 Where Count ( * ) Is Not Null Is Not Null|$`7esn` Starts With 's_str'] As #usn7,{`8esn`:{usn2}[{999}..][9e12..]}[(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[`3esn` *..0x0]-(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:_usn4|:`1esn` *01]-(`4esn` {`3esn`:{`7esn`} =~\"d_str\" =~{``},`3esn`:{`1esn`} Contains 1.0 Contains 4.9e12})][Reduce(`7esn`=123.654[01..][Count(*)..],`6esn` In 010[{`1esn`}..]|0.0[$`4esn`])] As `7esn`,`4esn`[12.0..][9.1e-1..] As `4esn` Order By 1.9e0 In 2.12 Asc,usn1 =~false =~{999} Desc Where 0[..12][..{`8esn`}] With Distinct 4.9e12 Is Not Null Is Not Null,$`7esn` In $0 Order By Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $#usn7[01..2.12][2.12..3.9e-1]) =~_usn3(.0e-0 Ends With $`2esn` Ends With `5esn`,$usn1 =~.9e12 =~`6esn`) =~Reduce(_usn3=5.9e-12 Is Null Is Null,_usn3 In `8esn`[_usn4]|2.9e1[Count ( * )..]) Asc Limit 0[10.12e12] Where .12e12 Starts With 5.9e-12 Starts With `4esn` Delete [usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]][`5esn`(Distinct $@usn5[`8esn`][12e12])..][``(Distinct $1000 Is Null,1e-1[$`4esn`])..],$`4esn` Is Null Is Null Union All Foreach(_usn3 In Case When $12 Ends With 12.0 Ends With $`4esn` Then `8esn`[.12e12..] End[Single(`6esn` In 010[{`1esn`}..] Where _usn4 Ends With {`8esn`} Ends With usn2)][Filter(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 1.9e0[`6esn`][`7esn`])]| Remove #usn7(Distinct \"d_str\" Is Not Null Is Not Null,$`6esn`[$_usn3..{1000}])._usn3!.#usn7?,[usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $12 Is Null Is Null].``.`3esn`?) Create Unique `1esn`=(`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}) Start @usn5=Node:_usn4({_usn3}) ,`3esn`=Node(0xabc,7,0Xa,01234567)Where {123456789} Contains $0"), + octest_legacy:ct_string("Detach Delete 0.12[Count ( * )..Count ( * )][$999..`5esn`],123.654 Contains true Contains 7.0e-0 Unwind 9e12[..usn2][.._usn3] As @usn5 Union All Match `2esn`=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))),((:`4esn`:usn2{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(_usn4 :usn2)) Using Join On `5esn`,`8esn`,#usn7"), + octest_legacy:ct_string("Remove Shortestpath(({@usn6:`3esn` Contains 01 Contains 01})<-[#usn8?]->(#usn8 {usn2:$0 Ends With 9e-12 Ends With $_usn4,`5esn`:0e-0[{@usn6}]})).`5esn`!.`5esn`?,{`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}.``!.`6esn`?,{`1esn`:{123456789} =~.9e1 =~$_usn3,#usn8:`5esn` Contains 0 Contains $12}.#usn8!.#usn8!.`1esn`? Union All Match `1esn`=((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})),`1esn`=((_usn4 )-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})) Remove Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where Null In {7}).#usn7?,Single(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).usn1!"), + octest_legacy:ct_string("Drop Constraint On(``:`5esn`)Assert Exists(Allshortestpaths(((#usn8 :usn2)<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))).`8esn`)"), + octest_legacy:ct_string("Create Constraint On(@usn5:usn2)Assert Case Count ( * ) =~123456789 =~{@usn5} When 0e0 Contains {`2esn`} Then $`8esn`[..12][..9e12] When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End.`8esn`! Is Unique"), + octest_legacy:ct_string("Create Unique `3esn`=(`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999})-[`3esn`?:`1esn`|:`1esn`]-(#usn8 {``:@usn6 Starts With #usn7,@usn6:7[..123456789][..true]})<-[?:`1esn`|:`1esn`]-(`1esn` :#usn8:@usn6{`7esn`:.1e-1 Contains .12e-12,`2esn`:.1e1 Ends With #usn7 Ends With {#usn7}}),`2esn`=((`8esn` :`5esn`:`7esn`)-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})<-[#usn8?:_usn3 *..123456789]->(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})) Foreach(`7esn` In [`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0|2.12[`4esn`][.9e-1]][Reduce(usn2={_usn4} Ends With {0} Ends With `1esn`,`` In `7esn` =~#usn8 =~\"d_str\"|$123456789 Is Not Null Is Not Null)]| With Distinct {_usn3} Is Null Is Null As #usn8,None(`` In `7esn` =~#usn8 =~\"d_str\" Where 1e-1 =~$`7esn` =~1e1) Is Not Null Is Not Null As @usn5,Null[{999}..$usn2] As `7esn` Order By 7.0e-0 Starts With {123456789} Starts With @usn6 Asc,9.1e-1 In {`1esn`} Asc,Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] Ascending Load Csv With Headers From 0xabc Starts With `2esn` Starts With 10.12e12 As usn2 ) Create Unique (((`8esn` :`8esn`)<-[usn1?{`5esn`:$0 Ends With 9e-12 Ends With $_usn4}]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})-[?:_usn3]->(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]}))),((`` :`7esn`)) Union All Unwind 9e0 In {usn2} In {@usn6} As @usn5 Start `2esn`=Relationship:_usn4(@usn6=\"d_str\") Union All Load Csv From $12 Contains false Contains {`1esn`} As usn1 Fieldterminator \"d_str\" Remove Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When $1000[_usn4][{@usn5}] Then 4.9e12[{_usn4}..] End.@usn6?.#usn8! Unwind {`8esn`} Contains $@usn5 As _usn4"), + octest_legacy:ct_string("Start ``=Rel:_usn3({7}) ,`1esn`=Rel:#usn8(`8esn`={123456789}) Merge ((`8esn` :`8esn`)-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`8esn`*]-(`7esn` :``{usn2:$7})) Unwind 0e-0[{12}] As #usn8 Union All Foreach(`7esn` In Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End =~{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}| Remove {`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}.`5esn`!) Unwind 9e12[..usn2][.._usn3] As @usn5 Load Csv From \"d_str\" Contains {@usn6} As `3esn` Fieldterminator 's_str' Union All Optional Match (`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5) Using Index _usn3:usn2(`4esn`) Using Index @usn5:`3esn`(`8esn`) Where $0 Contains $123456789 Contains {`3esn`} Return *,{`4esn`} In 1000 In {@usn5} Order By .0e-0[010..] Asc,6.0e0 In 9e-1 In 123456789 Ascending,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) Desc Limit Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}])"), + octest_legacy:ct_string("Return {_usn4}[{`6esn`}],true In 0.0 As #usn7 Skip 0.12[{@usn6}..{#usn7}] Limit (`1esn` :`5esn`:`7esn`)-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})[[#usn8 In 07[..$`5esn`] Where `8esn`[_usn4]]..Reduce(`7esn`=$@usn5 Is Null Is Null,`2esn` In $@usn5 Is Not Null Is Not Null|{`1esn`}[..$_usn4])][Case When `4esn` =~010 Then {7}[$@usn5..123456789][1e1..1.9e0] Else 1e-1 =~$`7esn` =~1e1 End..#usn7(Distinct usn1 =~false =~{999},{`3esn`} =~$@usn5 =~`2esn`)]"), + octest_legacy:ct_string("Load Csv With Headers From 11.12e-12 Starts With 1.0 Starts With 12.0 As `4esn` Fieldterminator \"d_str\" Union Unwind Shortestpath(((`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))[All(_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null)] As #usn8 Create `1esn`=Allshortestpaths((usn2 :@usn5{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})),@usn6=Shortestpath((_usn4 )) Unwind 1000[{12}..][0e0..] As `5esn`"), + octest_legacy:ct_string("Drop Constraint On()-[usn1:`6esn`]-()Assert Exists(Extract(`6esn` In 010[{`1esn`}..] Where {`4esn`}[00..]|`6esn` =~999 =~$999).`3esn`?)"), + octest_legacy:ct_string("Load Csv With Headers From 0Xa In 1.0 In $@usn5 As @usn5 Fieldterminator \"d_str\" Union All Unwind {`6esn`} In 11.12e-12 In 2.9e1 As `5esn` Union All Create Unique (:usn1$1000)"), + octest_legacy:ct_string("Merge `3esn`=Shortestpath(((`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})<-[usn2? *0xabc..12{`6esn`:`8esn`[_usn4]}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]}))) On Create Set Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0[..{#usn7}][..$_usn3]).#usn7? ={@usn5}[10.12e12..],[`1esn` In $12 In {usn2} Where 9e-1[1.9e0]]._usn4!.`4esn`? ={`8esn`}[@usn5][$`2esn`],`1esn` ={@usn6:$12 Is Null} In (`4esn` {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}) On Create Set #usn7 =usn1 =~false =~{999},Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}).`2esn`! =9e12 Is Null Is Null,`2esn`+=Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`}) Ends With Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))) Ends With Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1)"), + octest_legacy:ct_string("Start #usn7=Node:@usn6(#usn8='s_str') ,_usn4=Rel:`5esn`(@usn5=\"d_str\") Merge (@usn5 :`6esn`{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]})-[:usn1|usn2]->(`8esn` :`5esn`:`7esn`)-[:usn1|usn2{#usn7:{`3esn`}[#usn7],`4esn`:010[..9e-1][..0X7]}]-(_usn3 {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}) On Match Set Reduce(usn1={usn1} Contains `4esn`,_usn3 In `8esn`[_usn4]|{`8esn`}[..999][.._usn3]).`2esn` =Case When 9e-12[010..{#usn7}][{123456789}..7] Then $999 =~false =~{`8esn`} When {0}[.0e-0][$`2esn`] Then 12e12 Is Not Null Is Not Null Else false[..usn2][..999] End[Allshortestpaths(((({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(@usn6 :@usn5)-[`2esn`? *7{`5esn`:false[..usn2][..999]}]-(`4esn` :@usn6:_usn3))))..All(usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null)][.9e0..`4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`)],Reduce(_usn4=5.9e-12 Contains {12} Contains {#usn8},`7esn` In 0.12 Is Not Null|{`5esn`}[.1e-1..1e-1][999..{_usn3}]).#usn8.``? =$usn2[{`1esn`}],`5esn` =0[4.9e12] Return Distinct *,$12 Is Null Is Null As #usn8 Skip {@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] Union All With Distinct *,(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[`3esn` *..0x0]-(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:_usn4|:`1esn` *01]-(`4esn` {`3esn`:{`7esn`} =~\"d_str\" =~{``},`3esn`:{`1esn`} Contains 1.0 Contains 4.9e12}) =~Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 9e12 Is Null Is Null) =~(:@usn5{#usn7:Null,`5esn`:{@usn5} Ends With 0Xa Ends With .12e-12})-[:`3esn`|`3esn` *1000..]-(@usn6 ),(`2esn` :`4esn`:usn2{`8esn`:.9e-1 Contains .9e0 Contains ``,_usn4:8.1e1 Contains .9e-1 Contains false})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Is Null Is Null As `1esn` Skip _usn4['s_str'][8.1e1] Match `2esn`=(((:`7esn`{`4esn`:@usn5 =~$#usn7 =~{usn1}})<-[?:`1esn`|:`1esn`]-(usn2 :``{#usn7:1e-1 =~$`7esn` =~1e1,`7esn`:{0}[`4esn`..{`8esn`}]})<-[:`6esn` *1000..{#usn7:`2esn`,`7esn`:$@usn5 Is Not Null Is Not Null}]->(@usn5 {`8esn`:123456789[#usn7..9e-1][10.12e12..{0}],@usn6:1.0 Is Not Null}))),#usn7=Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)) Where 7[..123456789][..true] Start `4esn`=Node( {``}) ,@usn5=Relationship:``(`4esn`='s_str') Union All With *,$123456789[..$999][..`6esn`] As @usn5,Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07)[Case 9e-12 Ends With 9e1 Ends With 4.9e12 When `3esn` =~$#usn7 Then $@usn5 Starts With #usn7 When {`4esn`}[{`3esn`}][$`2esn`] Then #usn7[$`8esn`][{`3esn`}] Else 9e0[`4esn`..$_usn4][9.1e-1..0e0] End][[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]] Skip @usn5[9e-1..{`1esn`}] Limit 11.12e-12 Contains usn1 Delete $999 =~false =~{`8esn`},{0}[`4esn`..{`8esn`}],usn2[..$0][..`3esn`]"), + octest_legacy:ct_string("Merge #usn7=Allshortestpaths(((_usn4 :`6esn`$_usn3)-[`8esn`? *0X7..0Xa{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}]-(:``{usn2:00 Is Not Null Is Not Null})<-[? *999..123456789]->(usn2 :@usn5{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Union All Foreach(`` In Shortestpath(((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(_usn3 :usn1)))[..{_usn4:.9e-1 Ends With .0e-0 Ends With {_usn3},_usn4:9e1 Ends With 9e12 Ends With 0x0}][..Reduce(#usn8=`8esn`[_usn4],`1esn` In $12 In {usn2}|$`4esn` Is Not Null)]| Start #usn7=Relationship:#usn8(usn2={12}) Where 01234567 Ends With .0e0 Ends With 12e12 Unwind `6esn`[0X0123456789ABCDEF..][`8esn`..] As _usn4) Merge ((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})) On Create Set Case When 01234567 Ends With .0e0 Ends With 12e12 Then 00[$``] End.`1esn` ={1000} Ends With .12e12 Ends With 010 Optional Match `6esn`=((`3esn` :#usn8:@usn6)) Using Join On `6esn`,`1esn`"), + octest_legacy:ct_string("Detach Delete All(_usn3 In `8esn`[_usn4] Where 5.9e-12[0x0..])[(`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})][Reduce(`8esn`=#usn7 =~$@usn5 =~{7},usn2 In $`5esn`[{`4esn`}][{0}]|{@usn5}[10.12e12..])] Return {#usn7}[.12e-12] As `1esn`,5.9e-12[\"d_str\"..][{`6esn`}..] As #usn7 Limit Case When #usn7 Contains .0e0 Contains $@usn6 Then .12e-12[@usn6..'s_str'] Else {0}[`4esn`..{`8esn`}] End Is Not Null Is Not Null Merge `2esn`=Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) On Create Set Case 0xabc[..Count(*)][..$`5esn`] When `6esn`[0X0123456789ABCDEF..][`8esn`..] Then `2esn`[`7esn`][1000] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} Else 12e12[{`4esn`}..`4esn`][999..{@usn6}] End.``!.#usn8! =Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})),(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})-[_usn4:_usn3{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]}).#usn7! =8.1e1 Contains .9e-1 Contains false,`5esn` =false Is Not Null Is Not Null"), + octest_legacy:ct_string("Create Constraint On()<-[`8esn`:`8esn`]-()Assert Exists({``:01234567[10.12e12][0Xa]}._usn3)"), + octest_legacy:ct_string("Merge Shortestpath((`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[:`1esn`|:`1esn` *0{`8esn`:2.12[{12}],`7esn`:$@usn6[``..][3.9e-1..]}]->(:`2esn`:`4esn`{usn2:$@usn6[.1e-1][9e12],`5esn`:12e12 Is Not Null Is Not Null})-[`5esn`?:#usn7|:@usn5{usn2:#usn7[123.654][{12}]}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})) On Create Set _usn3+=Case {`4esn`} Ends With Count(*) When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] When $#usn7 Contains 3.9e-1 Then 123.654[10.12e12..$12][6.0e0..{#usn8}] Else $usn1[0e0...9e-12] End[Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))..][Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})..],#usn7+=[`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|01[$`1esn`..$`7esn`][{usn2}..12.0]][(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]-(:_usn3{_usn3:010[..9e-1][..0X7]})..][[`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 0X0123456789ABCDEF Is Not Null Is Not Null]..],Case When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else `6esn`[3.9e-1..`8esn`][12.0..0.0] End.`7esn`?.`5esn`?.#usn8! =7.0e-0 Is Not Null Create `1esn`=Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))),usn2=((:`7esn`{`4esn`:@usn5 =~$#usn7 =~{usn1}})-[`8esn`{#usn8:.12e12[..7]}]-({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`1esn`? *0{@usn6:true Is Null}]-(_usn4 ))"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`8esn`)Assert All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]).#usn7!.`1esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:#usn8)Assert Allshortestpaths((`2esn` )-[ *..123456789{@usn5:$`8esn`}]-(:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})).usn1? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[#usn7:#usn8]->()Assert Exists(Allshortestpaths(((usn2 :``{#usn7:1e-1 =~$`7esn` =~1e1,`7esn`:{0}[`4esn`..{`8esn`}]})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(_usn4 :`1esn`:``{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}})<-[_usn3? *..123456789{`6esn`:.0e-0[..``][..$7],usn2:{usn2} Ends With {@usn6} Ends With 1000}]-(`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})))._usn4!)"), + octest_legacy:ct_string("Foreach(usn2 In {#usn7}[.12e-12]| With $`7esn` In $@usn5,{999} =~$`6esn` =~$`6esn` As `1esn`,12[4.9e12..] As #usn8 Skip [@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null] Starts With Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789) Starts With All(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0) Where {_usn4} In 0X7 In 0e0 With $`1esn`[..12e-12][...9e12] As `7esn` Order By .12e12[01..{1000}][8.1e1..Count ( * )] Asc,{12} Starts With $`` Starts With 0X0123456789ABCDEF Asc,$_usn3[0x0][{0}] Descending Skip 9e1[..{usn1}]) Union Merge Shortestpath(((`7esn` {@usn5:Count ( * )[_usn4..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))) On Match Set Case 0xabc[..Count(*)][..$`5esn`] When `6esn`[0X0123456789ABCDEF..][`8esn`..] Then `2esn`[`7esn`][1000] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} Else 12e12[{`4esn`}..`4esn`][999..{@usn6}] End.``!.#usn8! =Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})),(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})-[_usn4:_usn3{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]}).#usn7! =8.1e1 Contains .9e-1 Contains false,`5esn` =false Is Not Null Is Not Null On Match Set @usn5+=Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null"), + octest_legacy:ct_string("Create Constraint On(@usn5:_usn4)Assert Exists(Any(#usn7 In .0e-0 In 12 Where .0e-0 Ends With $`2esn` Ends With `5esn`).``.@usn6?)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:`6esn`)Assert `8esn`(Distinct 12e12 Contains {0}).`4esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(@usn5:``)Assert [#usn7 In .0e-0 In 12 Where `8esn`[.12e12..]].usn1._usn3.`8esn` Is Unique"), + octest_legacy:ct_string("With Distinct *,$usn1[..$999][..0e0] As #usn7,.9e-12[{@usn5}] As `7esn` Limit 999 Ends With {#usn8} Union All Create Allshortestpaths((`1esn` :`5esn`:`7esn`)-[{``:{`3esn`}[01234567][{#usn7}],_usn4:999 Is Null Is Null}]->(usn2 {``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})) Optional Match Shortestpath((@usn6 :@usn5)) Where `3esn` Is Null Is Null"), + octest_legacy:ct_string("Drop Constraint On()-[@usn5:`4esn`]->()Assert Exists(Reduce(`1esn`=12.0[..Count ( * )][..@usn6],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|5.9e-12 Contains {12} Contains {#usn8}).`8esn`)"), + octest_legacy:ct_string("Load Csv With Headers From 2.9e1 In {``} As `7esn` Unwind {`7esn`}[0.12] As usn2"), + octest_legacy:ct_string("Load Csv From {`5esn`}[.1e-1..1e-1][999..{_usn3}] As _usn3 Fieldterminator 's_str' Match `2esn`=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))),Shortestpath((((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[`8esn`*]-(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)))) Using Scan #usn8:`8esn` Using Scan `4esn`:#usn7 Where 2.9e1 =~Count(*) =~{123456789} Union All Start _usn3=Relationship:`3esn`(#usn7={_usn3}) ,`1esn`=Rel:``({`4esn`})"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:#usn7]->()Assert Exists(None(usn1 In {#usn7} =~.12e12 =~9e0 Where {1000} Starts With 10.12e12 Starts With .0e-0).`7esn`?.usn2.`8esn`?)"), + octest_legacy:ct_string("Create Constraint On(usn1:@usn6)Assert {@usn5:999 Ends With {#usn8},_usn4:Null In {7}}.`7esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`4esn`:_usn4)Assert Reduce(`7esn`=#usn7 =~$@usn5 =~{7},usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|3.9e-1[..$1000][..0.12]).`8esn`?.@usn6 Is Unique"), + octest_legacy:ct_string("Optional Match @usn5=Allshortestpaths(((:usn1{#usn8:2.9e1[{`2esn`}]}))) Using Scan #usn7:`` Using Index #usn8:usn2(@usn5) Where 10.12e12 Contains .9e0"), + octest_legacy:ct_string("Merge ``=Shortestpath((`1esn` {`6esn`:{`5esn`},usn1:$`4esn` Ends With {999}})) On Match Set Shortestpath((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})-[`3esn`? *..07]-(#usn7 {_usn4:$12[$`6esn`..][01..]})).@usn6! =Single(usn1 In $@usn6 Is Null Is Null Where 0X0123456789ABCDEF Ends With {1000}) In (`1esn` :#usn8:@usn6{usn1:#usn8 Is Null Is Null,_usn3:{`4esn`} In 1000 In {@usn5}})-[``:``|:`7esn`*{#usn8:{#usn7}[.12e-12],`3esn`:1.9e0[`6esn`][`7esn`]}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})-[usn1?:`3esn`|`3esn`*..]->(:usn1) In Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1),Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When $1000[_usn4][{@usn5}] Then 4.9e12[{_usn4}..] End._usn3! =7[..123456789][..true] On Create Set `3esn` =$7[.1e-1..{@usn6}][$7..{`1esn`}],None(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {0}[.1e-1..][_usn4..]).usn2 =$`7esn` In $`4esn`,usn1+=$`4esn` Ends With {999}"), + octest_legacy:ct_string("With Distinct *,$`5esn` Ends With 's_str' Ends With $`6esn` As usn1 Order By {`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]} In Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}))) In Extract(_usn3 In `8esn`[_usn4] Where 0[..{#usn7}][..$_usn3]|0x0 Ends With #usn8 Ends With .9e-1) Descending,$12 Contains false Contains {`1esn`} Descending,\"d_str\" Starts With .1e-1 Asc Skip $`1esn`[..12e-12][...9e12] Where 0X7[#usn7..][$@usn5..] Load Csv From {usn1:$usn1[9e1][{999}],#usn8:0e-0[$``..10.12e12]}[Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End] As `8esn` Union Load Csv From $_usn3[usn2..][usn1..] As @usn5 Fieldterminator 's_str' Merge usn1=Allshortestpaths(((:`4esn`:usn2{usn2:$usn2 Ends With 00 Ends With 9e12,_usn4:{`5esn`}})-[?:``|:`7esn` *12{#usn8:10.12e12 Contains .9e0,usn1:0xabc Contains {12} Contains {`6esn`}}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))) On Create Set Single(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`).usn2!.`5esn`.`2esn`! =11.12e-12 Contains usn1,(_usn4 :`1esn`:``{`3esn`})-[:`5esn` *01234567..{`2esn`:{usn1} Contains {`2esn`},#usn7:`4esn`[9e-12..true]}]-(:`5esn`:`7esn`{`1esn`:{1000}[..`5esn`][..9e12]}).`3esn`?.usn2!.`6esn` =Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})),`5esn`+=[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12][All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3])..][Case When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else @usn5[9e-1..{`1esn`}] End..] On Match Set {usn2:.9e-12[.12e12..][0Xa..]}.usn2.#usn8.usn2! =.9e1 Ends With 0x0 Load Csv From Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] As `8esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Merge _usn4=(`8esn` :`4esn`:usn2)-[#usn8?:`8esn`|:#usn8 *999..123456789]->(#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Match #usn7=((:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}})<-[usn2? *0X0123456789ABCDEF]-($12)) Using Scan `1esn`:#usn8 Delete 1.9e0[$`4esn`],07[..$`5esn`] Union All Load Csv From {@usn6} In 9e12 As usn2 Union Unwind 123.654 =~12 =~{_usn3} As `7esn`"), + octest_legacy:ct_string("Optional Match Allshortestpaths((((:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})-[`7esn`:`1esn`|:`1esn` *0Xa..12]-(`8esn` :`7esn`)<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})))),#usn7=((`1esn` :usn2{`8esn`:12.0[...0e0]})) Using Scan #usn8:_usn3 Using Index @usn5:@usn5(_usn4) Where {`6esn`}[@usn5..{@usn6}] Return *,_usn4[{``}..{`6esn`}][$7..$_usn3] Order By 9e0 Ends With {7} Desc,`4esn` =~_usn4 =~0e-0 Descending Union All Optional Match `6esn`=((`1esn` :`8esn`)<-[:usn1|usn2]-(`` :`4esn`:usn2)<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``)) Using Index usn1:#usn8(``) Using Join On `4esn`,`2esn`,`` Where 0.0[$`4esn`] Load Csv With Headers From Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) As usn2 Union Merge `6esn`=(((`8esn` :usn2)-[@usn5:`2esn`|`5esn` *7]->(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})-[? *12{@usn6:$`` =~.1e-1}]->(:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}}))) On Match Set `7esn`+=$_usn3[0x0][{0}],Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}}))._usn3 =9e0[{7}...0e-0][Null..@usn5],usn1+=Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null On Match Set _usn4+=01234567[10.12e12][0Xa],Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01).#usn7!.`2esn`.@usn6! =4.9e12 Ends With $@usn6,`3esn`+=.1e-1 Is Not Null"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:usn2)Assert Reduce(`3esn`=.9e0[$#usn8][Count ( * )],#usn7 In .0e-0 In 12|Count(*) Starts With 07 Starts With $#usn7).`6esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[_usn4:`5esn`]-()Assert Exists(Case $`3esn`[0e-0] When $12[$@usn5] Then $_usn4 Ends With {#usn8} When {0} In {`1esn`} Then 1.9e0[`6esn`][`7esn`] Else 12e12 Ends With `5esn` Ends With .0e0 End._usn4.`2esn`?.`7esn`)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:@usn5)Assert Exists(Any(usn1 In \"d_str\" Contains {@usn6} Where $`8esn`)._usn4)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:#usn8)Assert Exists(@usn5(`4esn` Contains 0X0123456789ABCDEF Contains $usn2,{@usn5}[10.12e12..]).`1esn`!)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`2esn`)Assert Reduce(``=$`3esn` =~#usn8 =~0x0,usn2 In $`5esn`[{`4esn`}][{0}]|_usn3 =~{7} =~123.654).usn1! Is Unique"), + octest_legacy:ct_string("Optional Match `5esn`=({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}),`6esn`=(((`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn2 *7]-(`8esn` {_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`})))"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`5esn`)Assert Filter(`6esn` In 010[{`1esn`}..] Where `6esn` Ends With 1e1 Ends With $#usn7).@usn5! Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[`4esn`:`1esn`]-()Assert Exists(Case `1esn` In 6.0e0 In 12 When 2.9e1[2.12..1.9e0] Then {`1esn`}[{usn2}] Else 12e12 Ends With `5esn` Ends With .0e0 End.`8esn`.usn1)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:#usn8)Assert Exists(Any(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])._usn4._usn3!.usn1!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:usn2)Assert Filter(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1]).`5esn`!._usn3! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`5esn`:@usn5]-()Assert Exists([#usn7 In .0e-0 In 12 Where `8esn`[.12e12..]].usn1._usn3.`8esn`)"), + octest_legacy:ct_string("Start ``=Node:`7esn`({#usn7}) Where 01234567[1000..][$`8esn`..] Match Shortestpath(((:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(`2esn` :_usn3)<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(:#usn7:`8esn`))),_usn4=((`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})) Using Scan #usn8:`1esn` Where $`4esn`[$@usn6...12e12] Return Distinct {@usn5} Ends With 0Xa Ends With .12e-12 As @usn6,_usn4['s_str'][8.1e1] Order By 1.9e0[$`4esn`] Descending"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:`3esn`]->()Assert Exists((:`3esn`)-[`1esn`]->(`3esn` :`6esn`{_usn3:.12e-12 Ends With `2esn`,usn1:Null[#usn7..][9.1e-1..]})-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->({#usn8:_usn4[$_usn4]}).`8esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:`1esn`]-()Assert Exists(Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where 3.9e-1 Starts With .9e0 Starts With {#usn7}).@usn6!)"), + octest_legacy:ct_string("With Distinct #usn8[..'s_str'][..'s_str'] As `2esn`,None(@usn6 In 9e12[..usn2][.._usn3] Where $7) Is Not Null Is Not Null Limit `7esn`[1.9e0..5.9e-12][9e0..@usn5] Create Unique (((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})-[`2esn`?:@usn6|:`4esn` *010..0{`4esn`:Null[$`3esn`..][`1esn`..],_usn3:6.0e0[$#usn7..$1000]}]-(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]}))) Merge ((:_usn3{@usn6:$1000 Starts With {@usn6} Starts With $@usn5})<-[{`3esn`:Count ( * )[_usn4..]}]->(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})) On Create Set `4esn` =$@usn6 Is Null Is Null,#usn7 ={`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]} Is Null Is Null"), + octest_legacy:ct_string("Remove Reduce(usn2=12e12[{`4esn`}..`4esn`][999..{@usn6}],`1esn` In $12 In {usn2}|$`8esn`).`5esn`?,(`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})<-[_usn3?:`5esn`*..]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}).@usn5!"), + octest_legacy:ct_string("Create Constraint On(`6esn`:#usn8)Assert Exists(All(usn2 In $`5esn`[{`4esn`}][{0}] Where Null[$`3esn`..][`1esn`..]).#usn8!.#usn8.`7esn`)"), + octest_legacy:ct_string("Create ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]}) Foreach(usn2 In $`7esn` Is Null Is Null| Optional Match `4esn`=Allshortestpaths((:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[*{usn1:{`6esn`} In .0e0 In $0,usn1:07[..$`5esn`]}]-(:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})) Using Join On `6esn`,_usn3 Where {`3esn`}[#usn7] Return Distinct Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]|0e-0[{@usn6}])[Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3))][Case When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] When {123456789} Starts With $_usn4 Starts With 0x0 Then 9e0[`3esn`][0] End] As `3esn`,Extract(#usn8 In 07[..$`5esn`] Where $usn2[..$999][..#usn8]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )])[Case {#usn7}[.12e-12] When $`4esn`[$@usn6...12e12] Then .12e-12[@usn6..'s_str'] Else .12e-12 Starts With .12e-12 End..(`` :``)-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})][Reduce(`5esn`=Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|{usn2}[9e-1])..All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}])] As @usn5,({`7esn`:{`3esn`}[$#usn8..],`4esn`:{`8esn`}[..999][.._usn3]})-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Contains Reduce(``=0xabc Starts With 12 Starts With 0e-0,_usn3 In `8esn`[_usn4]|12.0 Starts With 00) Contains Any(@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null) Order By usn2($usn1 =~.0e0 =~{`4esn`}) Contains Allshortestpaths(((#usn8 :@usn5)<-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 )<-[?:`1esn`|:`1esn`{`5esn`:9e1[0.0]}]->(`8esn` ))) Ascending Skip $_usn4 Ends With {#usn8}) Merge Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))) On Match Set Case .12e12 Ends With 07 Ends With 3.9e-1 When 0.12 In $`` Then 0e-0 In 0X0123456789ABCDEF In `3esn` When 01 Ends With .0e0 Ends With 7.0e-0 Then $`6esn`[@usn6...9e-12] End.`1esn`.`1esn` =1e-1 Starts With .1e1 Starts With 12.0 Union Start usn1=Rel:`7esn`(`8esn`={`3esn`}) ,`5esn`=Node:usn2(_usn4='s_str')Where {@usn5}[10.12e12..]"), + octest_legacy:ct_string("Unwind Shortestpath(((`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))[All(_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null)] As #usn8 Create `1esn`=Allshortestpaths((usn2 :@usn5{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})),@usn6=Shortestpath((_usn4 )) Unwind 1000[{12}..][0e0..] As `5esn` Union Return Distinct 0.0[$999][`6esn`] Order By $`2esn`[`8esn`..] Descending,({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}) Contains Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Contains All(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]) Descending Limit $`5esn` =~Count(*) =~1.9e0 Start _usn3=Node:`5esn`({`2esn`}) ,usn2=Relationship:`8esn`(#usn8='s_str') Remove Allshortestpaths(((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))).`6esn`.`5esn`?,(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}})<-[:`8esn`|:#usn8{usn2:$0 Ends With 9e-12 Ends With $_usn4}]->(`4esn` {`8esn`:5.9e-12[0x0..]}).`5esn`?,[usn1 In \"d_str\" Contains {@usn6} Where .9e12[6.0e0..][@usn5..]].#usn7"), + octest_legacy:ct_string("Using Periodic Commit 01 Load Csv With Headers From {@usn5} As `8esn` "), + octest_legacy:ct_string("Unwind Single(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1])[Case When 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Then $#usn8 Is Not Null Is Not Null When \"d_str\" Starts With $`7esn` Starts With 999 Then \"d_str\"[0x0..{@usn6}][$@usn5..0] Else .0e-0[..01234567] End..] As `` Unwind \"d_str\" Is Not Null Is Not Null As `3esn` With *,Reduce(`4esn`={0} Is Not Null,#usn7 In .0e-0 In 12|12e12[{`4esn`}..`4esn`][999..{@usn6}]) Contains Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 0xabc[..{usn1}][..\"d_str\"]) Contains `3esn` As `5esn`,None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null) As _usn3 Order By {12}[true..][7..] Ascending,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Asc,({#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]})<-[`8esn`*]-(#usn8 )[..Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn`[0X0123456789ABCDEF..][`8esn`..]|$_usn3 =~'s_str' =~12)][..`1esn`(Distinct .9e1[$`1esn`..][$``..])] Ascending Skip 7[..123456789][..true] Where {#usn7}[.12e-12]"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`6esn`)Assert Single(#usn7 In .0e-0 In 12 Where 0.0[00..][0xabc..]).`1esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[``:usn2]->()Assert Exists([@usn6 In 9e12[..usn2][.._usn3] Where $0 Ends With 9e-12 Ends With $_usn4|{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1]].``.`5esn`!)"), + octest_legacy:ct_string("Unwind `3esn` Ends With $`` Ends With #usn7 As usn1 Remove Reduce(usn1=0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],#usn7 In .0e-0 In 12|{0} Is Not Null Is Not Null)._usn4!,Reduce(usn1=7[..123456789][..true],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|0xabc Starts With 12 Starts With 0e-0).#usn8! Remove [`6esn` In 010[{`1esn`}..] Where `6esn` Ends With 1e1 Ends With $#usn7|2.9e1 =~Count(*) =~{123456789}].`5esn`?.usn2!,Reduce(`4esn`=9e1[0.0],`6esn` In 010[{`1esn`}..]|01[$`1esn`..$`7esn`][{usn2}..12.0])._usn4! Union Optional Match `8esn`=Allshortestpaths(((:`4esn`:usn2{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(_usn4 :usn2))) Return Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0]) Is Null Is Null As _usn3,1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As usn2,false[9e12] Order By 0xabc[01234567][.12e-12] Ascending,Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`8esn`}[..999][.._usn3]) Starts With Reduce(``=$#usn7 Ends With 999 Ends With {12},`2esn` In $@usn5 Is Not Null Is Not Null|{`6esn`} Starts With .12e-12) Descending Skip 2.12[10.12e12][_usn4] Limit $`5esn` In $12 In `2esn` Optional Match ((:``{usn1:`4esn` Is Not Null})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})) Using Join On usn1,_usn4,`1esn` Where 7.0e-0[$`6esn`..] Union All Match #usn7=(`4esn` {#usn7:$usn1[0e0...9e-12]}) Where $`7esn` In $`4esn`"), + octest_legacy:ct_string("With @usn6 Ends With $`2esn` Ends With 1.0,(usn2 )-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(_usn4 :`1esn`:``{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}})-[:`2esn`|`5esn` *999..123456789{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]}]-(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}) =~Case When {`1esn`} Is Null Then .1e1[{@usn6}][true] When \"d_str\" Starts With $`7esn` Starts With 999 Then 07[..$`5esn`] Else 00[Null..usn2] End As usn2 Limit 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Start `3esn`=Rel:`7esn`(`8esn`={`3esn`}) ,`2esn`=Node( {`6esn`})Where $`6esn` Starts With 0.0 Foreach(_usn4 In \"d_str\" Contains {@usn6}| Remove Shortestpath((:usn1$1000)).@usn5? Create (`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5))"), + octest_legacy:ct_string("Merge usn1=Allshortestpaths(((:`4esn`:usn2{usn2:$usn2 Ends With 00 Ends With 9e12,_usn4:{`5esn`}})-[?:``|:`7esn` *12{#usn8:10.12e12 Contains .9e0,usn1:0xabc Contains {12} Contains {`6esn`}}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))) On Create Set Single(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`).usn2!.`5esn`.`2esn`! =11.12e-12 Contains usn1,(_usn4 :`1esn`:``{`3esn`})-[:`5esn` *01234567..{`2esn`:{usn1} Contains {`2esn`},#usn7:`4esn`[9e-12..true]}]-(:`5esn`:`7esn`{`1esn`:{1000}[..`5esn`][..9e12]}).`3esn`?.usn2!.`6esn` =Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})),`5esn`+=[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12][All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3])..][Case When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else @usn5[9e-1..{`1esn`}] End..] On Match Set {usn2:.9e-12[.12e12..][0Xa..]}.usn2.#usn8.usn2! =.9e1 Ends With 0x0 Union All Start _usn3=Relationship(0x0) Create Unique @usn6=Allshortestpaths(((#usn8 :usn2)<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))),usn1=Allshortestpaths((`6esn` :`5esn`:`7esn`)-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 {`2esn`:5.9e-12[0x0..]})) Merge @usn6=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) On Match Set usn2+=Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null),#usn8 =None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..])"), + octest_legacy:ct_string("With Distinct $`8esn` Is Not Null Is Not Null As _usn3 Order By Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Descending,\"d_str\" In 7.0e-0 Desc Skip Reduce(_usn3=7.0e-0[$`6esn`..],`7esn` In 0.12 Is Not Null|false Starts With 0 Starts With 2.9e1) =~Case $`3esn` =~0x0 When $12[$@usn5] Then 11.12e-12 In {usn1} When 4.9e12[{_usn4}..] Then $@usn5 Contains _usn3 Else .12e-12 Starts With .12e-12 End =~Reduce(_usn4=_usn4 Is Not Null Is Not Null,`2esn` In $@usn5 Is Not Null Is Not Null|7.0e-0 Is Not Null) Limit {_usn3:.0e-0[..``][..$7]}[..(`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`)][..@usn5]"), + octest_legacy:ct_string("Create Unique `2esn`=Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}})<-[?{@usn5:@usn6[999][1000]}]-(:usn1{#usn8:2.9e1[{`2esn`}]})),(((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(`2esn` :_usn3)<-[_usn3?{``:{1000} Starts With {`1esn`}}]->(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))) Foreach(`5esn` In {`6esn`} Contains 1e1 Contains ``| Unwind `8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End As @usn6 With Distinct 0.0[$999][`6esn`] Order By $`2esn`[`8esn`..] Descending,({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}) Contains Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Contains All(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]) Descending Limit $`5esn` =~Count(*) =~1.9e0) Union All Delete $1000[$`2esn`..] Detach Delete \"d_str\"[0x0..{@usn6}][$@usn5..0] Create Unique `7esn`=(`3esn` :usn2),#usn8=(({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[ *12{#usn8:0e0 =~{12} =~{1000}}]-(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})) Union Merge Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) On Match Set `6esn` =_usn4 Remove ``({1000}[..`5esn`][..9e12]).`4esn`!,Reduce(usn2=0xabc =~123456789,#usn8 In 07[..$`5esn`]|8.1e1[..9.1e-1][...9e1]).`6esn`.`1esn`?,None(`` In `7esn` =~#usn8 =~\"d_str\" Where {12} Starts With $`` Starts With 0X0123456789ABCDEF).@usn6!.``?"), + octest_legacy:ct_string("Start ``=Node:_usn3({0}) ,usn2=Rel:``(_usn3='s_str')Where {1000}[`2esn`...0e-0][9e-1..0X7]"), + octest_legacy:ct_string("Create Constraint On()<-[_usn3:`5esn`]-()Assert Exists(usn1(.9e-12[.12e12..][0Xa..],$`6esn` =~$#usn7 =~$`4esn`).`7esn`?)"), + octest_legacy:ct_string("Remove Case When $usn2 Ends With 00 Ends With 9e12 Then $#usn7 Ends With 999 Ends With {12} Else 0e0 =~{12} =~{1000} End.@usn6.usn1?,None(@usn6 In 9e12[..usn2][.._usn3] Where {`8esn`}[@usn5][$`2esn`])._usn3!"), + octest_legacy:ct_string("Start `4esn`=Node:@usn6(\"d_str\") Where $usn2 Is Not Null Is Not Null Optional Match `3esn`=((:`1esn`:``{@usn6:$`7esn` Ends With 7.0e-0 Ends With $usn2})),#usn8=((`` {_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})) Using Join On usn2,`1esn` Where 12.0[...0e0] Remove {`6esn`:.12e-12 Ends With `2esn`}.usn2,(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}})<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})<-[usn1?:`3esn`|`3esn`*..]->(:usn1{#usn8:$`8esn` Is Not Null Is Not Null,`5esn`:3.9e-1 Starts With .9e0 Starts With {#usn7}}).`8esn`!.usn1?,Case .9e-1 Ends With .0e-0 Ends With {_usn3} When $12 Is Not Null Is Not Null Then {``}[$usn2..00][{_usn3}..123.654] When .1e-1 Starts With @usn6 Starts With _usn3 Then 9e0[{7}...0e-0][Null..@usn5] Else $12 =~4.9e12 End._usn4!"), + octest_legacy:ct_string("Start _usn4=Relationship:@usn6(\"d_str\") Where $`4esn` Is Null Is Null Return Distinct [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,$`7esn` In $`4esn` As `8esn`,Extract(`1esn` In $12 In {usn2} Where 2.9e1 =~Count(*) =~{123456789})[{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}..][123.654..] Order By Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}])[{usn1:\"d_str\"[0x0..{@usn6}][$@usn5..0],`6esn`:.9e-12[usn2]}][Reduce(`2esn`=$1000 Contains $123456789 Contains #usn8,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$1000 Contains {`2esn`} Contains {`8esn`})] Desc,$12 Ends With 7.0e-0 Ends With 9e-12 Descending,$`4esn`[$@usn6...12e12] Descending Limit 9.1e-1 In 9e1 Union All Merge #usn7=(:`5esn`:`7esn`) On Match Set @usn5:@usn5 Load Csv With Headers From Filter(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}]) Starts With Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3)) Starts With {@usn5:$123456789 Is Not Null Is Not Null} As `4esn` With .0e0 Starts With 1.0 Starts With $12 As `7esn`,Case When 9e-12[010..{#usn7}][{123456789}..7] Then $999 =~false =~{`8esn`} When {0}[.0e-0][$`2esn`] Then 12e12 Is Not Null Is Not Null Else false[..usn2][..999] End[Allshortestpaths(((({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(@usn6 :@usn5)-[`2esn`? *7{`5esn`:false[..usn2][..999]}]-(`4esn` :@usn6:_usn3))))..All(usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null)][.9e0..`4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`)],@usn5[{`1esn`}..][Count ( * )..] Order By None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null) Asc,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Ascending,8.1e1 Contains .9e-1 Contains false Descending Limit 0x0 Ends With #usn8 Ends With .9e-1 Where {`3esn`}[..{`4esn`}][..usn2]"), + octest_legacy:ct_string("Using Periodic Commit Load Csv From $@usn6[``..][3.9e-1..] As usn1 "), + octest_legacy:ct_string("Start `1esn`=Node:_usn4(`5esn`={usn1}) Where $usn2 Contains $`3esn` Contains 6.0e0 Merge `2esn`=(`3esn` :`2esn`:`4esn`) On Match Set `3esn`(Count ( * )[_usn4..],`2esn`).usn1!._usn4 =`1esn` In 010 In 1e-1,Any(#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null).`2esn`! =Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null,usn2+=8.1e1[$``] On Match Set @usn5:`1esn`:`` Union Match `5esn`=((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})) Using Index usn2:``(`3esn`) Where 0e-0[..7.0e-0][..{`8esn`}] Start _usn4=Relationship:`7esn`({123456789}) Where 3.9e-1[..$1000][..0.12] Remove `2esn`:_usn3,Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $usn1 Contains 4.9e12 Contains $`2esn`).usn2?.`1esn`!,`1esn`:`5esn`:`7esn`"), + octest_legacy:ct_string("Detach Delete Filter(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}]) Starts With Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3)) Starts With {@usn5:$123456789 Is Not Null Is Not Null},9e1 Starts With $`8esn` Starts With `3esn`,Reduce(_usn3=`4esn`[9e-12..true],`8esn` In {usn1}[7.0e-0..][3.9e-1..]|999 Starts With 7.0e-0 Starts With true) Starts With None(`2esn` In $@usn5 Is Not Null Is Not Null Where {12} Ends With $`3esn` Ends With 0xabc) Starts With Allshortestpaths((usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[`8esn`*]-(`7esn` :``{usn2:$7})) Foreach(@usn6 In 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))]| Remove Single(`2esn` In $@usn5 Is Not Null Is Not Null Where false =~$7).`7esn`!.`5esn`?,Reduce(#usn7={`5esn`},`2esn` In $@usn5 Is Not Null Is Not Null|`1esn` =~{12} =~{999})._usn4! Remove (#usn8 )<-[:_usn4|:`1esn`{@usn5:.0e-0 In 12}]-(:_usn4:`2esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1})-[`3esn`? *..07]-(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}).`7esn`?,Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[..0][.._usn3]).usn1) Union All Unwind $999[usn1..0e-0] As `8esn` Match `5esn`=Shortestpath((`5esn` :``{_usn3:$_usn4[..$999],`7esn`:0X0123456789ABCDEF Ends With {1000}})-[*{@usn5:`6esn` =~999 =~$999}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})),`1esn`=Allshortestpaths(((:usn1{`6esn`:$_usn3[usn2..][usn1..],#usn7:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}))) Using Join On `6esn`,``,usn2 Using Join On @usn5,`5esn` Where .12e12[$usn1..][{@usn6}..]"), + octest_legacy:ct_string("Start `1esn`=Relationship:_usn4(`5esn`={usn1}) ,`7esn`=Relationship:usn2(`8esn`=\"d_str\") Detach Delete 00 =~`4esn` =~.9e-12 Match #usn7=((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})),`5esn`=(`` $999)<-[? *0X0123456789ABCDEF]->(`1esn` :_usn3)<-[#usn8?:#usn7|:@usn5]-(@usn5 :#usn7:`8esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true}) Using Scan `3esn`:`` Using Scan ``:#usn8"), + octest_legacy:ct_string("Delete 1.0 Is Null Is Null,None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Contains (`8esn` :@usn6:_usn3{_usn4:{#usn7} =~$@usn6 =~$7})<-[`1esn`? *0{usn2:.9e12[6.0e0..][@usn5..]}]->(usn2 :@usn6:_usn3)-[usn1:#usn7|:@usn5 *999..123456789]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7}) Remove @usn6:`3esn` Union All With Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] As #usn8,[`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]),{`7esn`} Is Not Null Is Not Null As `1esn` Order By 1000 Ends With 0x0 Asc Union Create Allshortestpaths((`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`)),Allshortestpaths(((`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]})-[_usn4*{`3esn`:{``} Is Null Is Null}]-({`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))) Return *,1.9e0[$`4esn`],Null In {7} As usn2 Order By 0xabc[..{usn1}][..\"d_str\"] Asc Limit $`6esn` Contains All(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) Create Unique usn1=((`` :`7esn`))"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`7esn`)Assert `2esn`(Distinct 9e-12 Ends With {1000},{`1esn`} Contains 1.0 Contains 4.9e12).``! Is Unique"), + octest_legacy:ct_string("Return Distinct Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null)[#usn7(`1esn`[..$1000])..][Reduce(`5esn`=$@usn5 =~{`3esn`},`1esn` In $12 In {usn2}|$`5esn` Ends With 's_str' Ends With $`6esn`)..] Skip @usn5[{`1esn`}..][Count ( * )..] Union All Create Unique usn1=((`4esn` :_usn4:`2esn`{#usn8:\"d_str\" Contains {@usn6}})<-[?{@usn5:@usn6[999][1000]}]->(`1esn` )) Union All Delete 9e12 Is Not Null Is Not Null,.9e1 Is Null Is Null Remove {@usn6:6.0e0[$#usn7..$1000]}.`8esn`?,{`3esn`:9e0[`3esn`][0],usn2:$`5esn` Is Not Null}.`8esn` Merge `2esn`=((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0})) On Create Set `2esn`+=9e1[0.0],#usn8+=.12e-12[@usn6..'s_str'],{`6esn`:4.9e12 Is Not Null Is Not Null,_usn4:`4esn`[9e-12..true]}.#usn8._usn3? =Shortestpath((((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))))[None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0.0[`7esn`])..Single(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])][`5esn`(Distinct .9e1[$`1esn`..][$``..])..Case When 12e12 Ends With `5esn` Ends With .0e0 Then .9e0 In 8.1e1 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else .9e1 Ends With 0x0 End]"), + octest_legacy:ct_string("Create `3esn`=(`4esn` :`3esn`)-[`3esn`?:`1esn`|:`1esn`]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}),@usn6=Allshortestpaths(({_usn3:.9e12 Contains 0 Contains $0})) Union Foreach(`3esn` In {`8esn`} Ends With true Ends With {`3esn`}| Create (`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})))) Unwind 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As `1esn` Union All Return Distinct *,7[..123456789][..true] Limit Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Is Null Remove Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0).`8esn`!,Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0).``? Start @usn5=Node:usn1(_usn3={@usn6}) ,@usn5=Rel:#usn7(\"d_str\")Where .1e1 Ends With #usn7 Ends With {#usn7}"), + octest_legacy:ct_string("Create Constraint On(usn1:usn1)Assert Reduce(_usn4={`8esn`} Is Not Null Is Not Null,usn1 In $@usn6 Is Null Is Null|$`3esn` =~#usn8 =~0x0).#usn8._usn4 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:`8esn`)Assert Exists({#usn8:{``}[usn1..][{`8esn`}..]}.@usn6?)"), + octest_legacy:ct_string("Remove Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .12e12 Starts With 5.9e-12 Starts With `4esn`).`7esn`? Create (((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(`2esn` :_usn3)<-[_usn3?{``:{1000} Starts With {`1esn`}}]->(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))) Start `7esn`=Rel( {`8esn`}) ,`6esn`=Node:@usn6({999})Where `1esn`[{@usn5}..][{_usn4}..]"), + octest_legacy:ct_string("Load Csv With Headers From Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null)[#usn7(`1esn`[..$1000])..][Reduce(`5esn`=$@usn5 =~{`3esn`},`1esn` In $12 In {usn2}|$`5esn` Ends With 's_str' Ends With $`6esn`)..] As `7esn` With *,_usn4['s_str'][8.1e1] Order By 999 Starts With 07 Ascending Where 1.0 Is Not Null"), + octest_legacy:ct_string("Drop Constraint On(_usn3:_usn3)Assert _usn3(Distinct 9e1 Starts With $@usn6 Starts With 0e-0,0.12 =~`6esn` =~.9e-1).usn2? Is Unique"), + octest_legacy:ct_string("With Distinct *,7 Starts With 9e-12 As #usn7,$_usn3 In `2esn` In `3esn` Order By Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null Desc,0X7 Contains $12 Contains 0e0 Descending,{@usn5:5.9e-12 Is Null Is Null} Ends With Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where _usn4['s_str'][8.1e1]|0.12 =~2.9e1 =~9e1) Ends With All(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12) Descending Where {`1esn`} Contains 1.0 Contains 4.9e12"), + octest_legacy:ct_string("Create Constraint On()<-[`7esn`:@usn5]-()Assert Exists(({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000})<-[`7esn`{`7esn`:6.0e0 =~12.0 =~9e1}]-({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})-[:`8esn`|:#usn8 *01]-(usn2 :`2esn`:`4esn`).`6esn`!)"), + octest_legacy:ct_string("Unwind $@usn6[``..][3.9e-1..] As `3esn` Match @usn5=Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))) Using Index _usn3:usn2(`4esn`) Where 0.12[Count ( * )..Count ( * )][$999..`5esn`]"), + octest_legacy:ct_string("Create @usn5=((#usn7 :`7esn`)-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)})),(((`1esn` :`3esn`{@usn6:$12 Is Null})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))) Start ``=Relationship:@usn6(#usn8='s_str') ,_usn3=Node:`8esn`(#usn8='s_str')Where {`3esn`}[..0xabc][..{`6esn`}]"), + octest_legacy:ct_string("Create Constraint On(`3esn`:``)Assert Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[..{0}][..true]|$`4esn` Is Null Is Null).`3esn`? Is Unique"), + octest_legacy:ct_string("With Distinct *,#usn8[\"d_str\"..usn2] Order By {`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]} Starts With [`6esn` In 010[{`1esn`}..] Where `3esn` Starts With 9.1e-1 Starts With .9e-1] Starts With Case {`6esn`} In {_usn4} In $12 When {0} Is Not Null Then $12 In {usn2} Else $999 =~false =~{`8esn`} End Descending,Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Asc,{#usn8} Starts With {`2esn`} Ascending Skip Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) Return Distinct false Contains {`7esn`},{0} Is Not Null As `` Order By [usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`|{#usn8}[..@usn5]][Case When .9e1 In {#usn7} In .9e-12 Then #usn7 Is Null Is Null End..] Asc,Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] Asc,(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[`3esn`?:`1esn`|:`1esn`]-({_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})[{@usn5:07[..$`5esn`]}..][$#usn8..] Descending Skip $7[.1e-1..{@usn6}][$7..{`1esn`}] Limit {``} Is Null Is Null With Distinct 999 Ends With {#usn8},9e1[..@usn5][..$`5esn`],$@usn6[...9e-1] As `2esn` Limit $123456789 Is Not Null Is Not Null Where $7 Union All Create Unique ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})),``=Shortestpath((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) Start @usn5=Rel:`8esn`(usn1={#usn7}) ,``=Node:`7esn`({#usn7})Where 00[$``] Load Csv With Headers From Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] As usn1 "), + octest_legacy:ct_string("Create Constraint On(usn1:`5esn`)Assert (`2esn` :_usn3)-[? *..0x0{usn2:Null[$`3esn`..][`1esn`..],`2esn`:\"d_str\" Contains {@usn6}}]-(`8esn` :usn1)-[`8esn`?:_usn3]->(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}}).`4esn`?.@usn6.`5esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn1:`5esn`)Assert Exists({`4esn`:$`1esn`[..1000][..\"d_str\"],#usn7:{`5esn`}[.1e-1..1e-1][999..{_usn3}]}.#usn7)"), + octest_legacy:ct_string("Create Unique Shortestpath((`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[:`1esn`|:`1esn` *0{`8esn`:2.12[{12}],`7esn`:$@usn6[``..][3.9e-1..]}]->(:`2esn`:`4esn`{usn2:$@usn6[.1e-1][9e12],`5esn`:12e12 Is Not Null Is Not Null})-[`5esn`?:#usn7|:@usn5{usn2:#usn7[123.654][{12}]}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})),((:`7esn`{`4esn`:@usn5 =~$#usn7 =~{usn1}})-[`8esn`{#usn8:.12e12[..7]}]-({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`1esn`? *0{@usn6:true Is Null}]-(_usn4 )) Union All Load Csv With Headers From 9.1e-1 In 9e1 As @usn5 "), + octest_legacy:ct_string("Create Constraint On(`7esn`:usn1)Assert count(01234567 =~12e12 =~.0e-0,$999 Is Not Null).@usn6?.`1esn`.`8esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:usn2)Assert Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 9e-1 Is Not Null|$123456789 Is Not Null Is Not Null).usn2! Is Unique"), + octest_legacy:ct_string("Create Unique Allshortestpaths(((@usn6 :@usn6:_usn3))),Allshortestpaths(((@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1}))) Union All Create Allshortestpaths(((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))),`8esn`=Allshortestpaths(((:`4esn`:usn2{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(_usn4 :usn2))) Union Unwind $`8esn`[...1e-1] As usn2 Match Shortestpath(((`` :`7esn`))),Allshortestpaths((:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[*{usn1:{`6esn`} In .0e0 In $0,usn1:07[..$`5esn`]}]-(:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})) Using Index @usn5:usn1(`4esn`) Where {0}[.1e-1..][_usn4..] Optional Match `5esn`=Shortestpath((({_usn3:.9e12 Contains 0 Contains $0}))),usn2=(`8esn` :@usn6:_usn3)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Where 010[...12e-12]"), + octest_legacy:ct_string("Create Unique @usn5=Shortestpath((`7esn` {#usn8:2.9e1[{`2esn`}]})<-[usn2:#usn8|:``]->({`6esn`:9e0[`4esn`..$_usn4][9.1e-1..0e0]})),(usn1 :`3esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 )<-[_usn4{`5esn`:9e0[..{#usn7}][..`4esn`]}]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}) Remove [#usn7 In .0e-0 In 12 Where $999 Is Not Null].`8esn`.@usn6!.`1esn`,Extract(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1]|0[$usn1..])._usn3!.usn2.`8esn`! Union All With Distinct (`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` Ends With 10.12e12) As `8esn` Order By 9e-12[010..{#usn7}][{123456789}..7] Desc Limit 7.0e-0 Ends With {123456789} Ends With @usn6"), + octest_legacy:ct_string("Return Distinct @usn6[Reduce(`5esn`=_usn4['s_str'][8.1e1],_usn3 In `8esn`[_usn4]|$_usn3 =~'s_str' =~12)..][(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[`7esn`?]-(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})..],9e0 In {usn2} In {@usn6} As `8esn` Order By None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) Desc,0e-0[..$usn2] Descending Limit $`5esn` Starts With 4.9e12 Starts With 0e-0 With {#usn7}[..\"d_str\"][..#usn8] As `3esn`,Any(_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12)[(`5esn` :`8esn`{`1esn`:{`8esn`} Starts With .9e-1 Starts With 1000,@usn5:10.12e12 In Null In .12e12})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})..] As usn1,$999 Ends With `2esn` Ends With 12.0 As @usn6 Skip $`1esn` Limit {7}[.1e-1] Where `4esn`[9e-12..true] Union Remove `2esn`:`2esn`:`4esn`,Single(usn1 In {#usn7} =~.12e12 =~9e0 Where {1000} Starts With 10.12e12 Starts With .0e-0).usn2 Start `3esn`=Node(0xabc,7,0Xa,01234567) Where $`8esn` Is Not Null Is Not Null Union All Unwind Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] As `1esn` Create Unique Allshortestpaths(({`6esn`:8.1e1 Contains .9e-1 Contains false})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})),@usn6=((`` {_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})) Load Csv With Headers From 2.12[10.12e12][_usn4] As `1esn` "), + octest_legacy:ct_string("Drop Constraint On()-[_usn3:`5esn`]-()Assert Exists({_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}.`1esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[@usn5:usn2]-()Assert Exists((`6esn` :usn2{`6esn`:{usn1}[7.0e-0..][3.9e-1..]})<-[#usn7?:_usn3 *999..123456789{@usn5:$12 In {usn2},usn1:5.9e-12 Is Null Is Null}]-(`3esn` :#usn7:`8esn`{`4esn`:$`5esn`[$_usn3][$12],#usn8:`8esn`[.12e12..]}).#usn7!)"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:_usn3)Assert Case 9e0[{7}...0e-0][Null..@usn5] When {`6esn`}[@usn5..{@usn6}] Then 1.9e0 In $@usn6 In $_usn3 Else $`8esn` =~{`6esn`} =~12 End.`5esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(_usn3:#usn7)Assert Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[..{0}][..true]|$`4esn` Is Null Is Null).`3esn`? Is Unique"), + octest_legacy:ct_string("Remove None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]).#usn8!.`6esn`.``?,`8esn`({0} In {`1esn`},.9e-1 Ends With .0e-0 Ends With {_usn3}).`6esn`!,None(`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0).`8esn`! Union Load Csv With Headers From Filter(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}]) Starts With Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3)) Starts With {@usn5:$123456789 Is Not Null Is Not Null} As `4esn` Load Csv From {`1esn`}[{usn2}] As @usn5 Fieldterminator 's_str' Union All Remove Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {#usn8}[..@usn5]|{0}[.0e-0][$`2esn`]).@usn6?.``?,(`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[?:`1esn`|:`1esn`]-(:@usn5{`1esn`:$999 =~0e0 =~0X7})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12}).`7esn`,{_usn4:$7}.@usn5 Return Distinct 0.12[{@usn6}..{#usn7}] Order By Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) Ascending,Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Descending,.9e-1[`1esn`][7] Ascending Limit {`4esn`}[{`3esn`}][$`2esn`]"), + octest_legacy:ct_string("Create Constraint On(#usn7:_usn4)Assert Case When {`8esn`} Starts With .9e-1 Starts With 1000 Then $`6esn`[$_usn3..{1000}] When 3.9e-1 Starts With .9e0 Starts With {#usn7} Then .0e-0 Ends With $`2esn` Ends With `5esn` Else _usn4[$_usn4] End.usn2! Is Unique"), + octest_legacy:ct_string("Merge ``=((@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})-[@usn5:`6esn` *..00]->(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) On Create Set @usn5+=Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null"), + octest_legacy:ct_string("Foreach(usn1 In $usn1 In 4.9e12 In ``| Create Unique ``=(((@usn5 {@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})))) Union Merge Shortestpath(((@usn6 :`2esn`:`4esn`{@usn6:$12[10.12e12][.1e1],`8esn`:@usn5 In Null})<-[`3esn`?:`6esn`{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(@usn5 :usn1{`4esn`:$12 Is Null,`8esn`:\"d_str\" Starts With ``})<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) Return Distinct Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null) In `4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`),9e-1 Contains 3.9e-1 As `7esn`,All(#usn8 In 07[..$`5esn`] Where $@usn6 Starts With 0xabc Starts With {`7esn`}) As `6esn` Limit Any(`7esn` In 0.12 Is Not Null Where $0 Contains $7) Is Not Null Is Not Null Load Csv From Reduce(`6esn`=$`5esn`[$_usn3][$12],`2esn` In $@usn5 Is Not Null Is Not Null|1.9e0 In $@usn6 In $_usn3)[{``:.12e-12 Is Null}..][Case When $1000 Starts With {@usn6} Starts With $@usn5 Then `2esn` When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else 12[4.9e12..] End..] As #usn7 "), + octest_legacy:ct_string("Remove Shortestpath(((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}))).`5esn`?._usn3?,$7.@usn6.`1esn` Merge `2esn`=Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) On Create Set Case 0xabc[..Count(*)][..$`5esn`] When `6esn`[0X0123456789ABCDEF..][`8esn`..] Then `2esn`[`7esn`][1000] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} Else 12e12[{`4esn`}..`4esn`][999..{@usn6}] End.``!.#usn8! =Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})),(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})-[_usn4:_usn3{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]}).#usn7! =8.1e1 Contains .9e-1 Contains false,`5esn` =false Is Not Null Is Not Null With 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Order By $1000 Is Null Descending,7.0e-0 Ends With {123456789} Ends With @usn6 Descending Limit 1000[{`1esn`}..][$`3esn`..]"), + octest_legacy:ct_string("Start `2esn`=Node:``(#usn8=\"d_str\") ,`2esn`=Relationship:``(`1esn`=\"d_str\") With Distinct *,{usn1} Is Not Null,{`2esn`}[0x0..9e0] As `6esn` Limit Allshortestpaths((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))[usn1..] Optional Match #usn8=Allshortestpaths((usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[`3esn`:#usn8|:``{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}]->(:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})) Using Join On _usn4,usn2,`` Using Join On `7esn` Where $_usn3 In `2esn` In `3esn` Union Return Distinct Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null],7 Starts With 9e-12 As #usn7 Order By All(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12)[usn1({#usn7} Ends With 999 Ends With 12)] Descending,$`1esn` In 0Xa Desc,10.12e12[.0e0] Desc Skip Case {1000}[..{usn1}][..1e-1] When {@usn5}[10.12e12..] Then 1.0 Is Null Is Null When {`3esn`} Is Not Null Is Not Null Then .1e1 Contains 1e-1 Contains #usn8 Else $`5esn`[{`4esn`}][{0}] End[..{usn1:1.9e0[..0][.._usn3],`7esn`:1.9e0[.12e-12][9e-12]}][..{`1esn`:{0} Is Null Is Null}]"), + octest_legacy:ct_string("Create Unique usn1=((@usn6 :`5esn`:`7esn`)-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)-[`3esn`:`6esn` *..0x0]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})),Shortestpath((:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[:`6esn` *999..123456789]->(:_usn3{@usn5:`2esn`[`7esn`][1000]})) Remove Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 6.0e0 =~12.0 =~9e1|1.9e0[..0][.._usn3]).``,{`6esn`:12e12[usn2..$`6esn`]}.`3esn`?,{#usn7:$12[10.12e12][.1e1],`1esn`:{1000} Starts With {`1esn`}}.`5esn` Delete {``:$`8esn`[..5.9e-12][..`8esn`]}[[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .9e12[6.0e0..][@usn5..]|2.9e1[2.9e1..][`4esn`..]]..][Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End..],010[...12e-12]"), + octest_legacy:ct_string("Start #usn8=Node(07,0Xa) Where 123456789[_usn4..`1esn`][$`6esn`..{@usn6}] Return 0Xa[999],Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)) Is Not Null Is Not Null As `8esn` Order By 10.12e12 Contains .9e0 Ascending,0e0[2.9e1..][.12e-12..] Ascending Skip {0} In {`1esn`} Limit `6esn` =~999 =~$999 Union Load Csv From {usn1:$usn1[9e1][{999}],#usn8:0e-0[$``..10.12e12]}[Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End] As `8esn` Merge `2esn`=Shortestpath(((`4esn` :`3esn`))) Merge Shortestpath(((`5esn` :#usn8:@usn6{``:Count(*) Starts With {usn2} Starts With `2esn`,`1esn`:12e12[{`4esn`}..`4esn`][999..{@usn6}]})<-[?:`2esn`|`5esn` *..123456789$1000]-({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]}))) On Match Set `1esn` ={`2esn`}[0x0..9e0],Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]).`8esn`? ={123456789} Contains $#usn7 Contains {#usn8},`5esn` =Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End Ends With Reduce(``={`3esn`}[$#usn8..],usn1 In {#usn7} =~.12e12 =~9e0|2.9e1[{`2esn`}]) Ends With [`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}|$`` =~$_usn3] On Match Set `2esn` =7[{`4esn`}..],usn2 =$@usn5 Contains _usn3 Union All Unwind Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {12} Ends With $`3esn` Ends With 0xabc)[Case When {0} Is Null Is Null Then $``[1.0..][_usn3..] Else 999[..$@usn5][..``] End..] As @usn5 Optional Match ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})),``=Shortestpath((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) Where 7[{`4esn`}..] Return *,0xabc Starts With `2esn` Starts With 10.12e12,`1esn` In 010 In 1e-1 As usn2 Skip Case false =~$7 When 999 Ends With {#usn8} Then `1esn` =~{12} =~{999} Else @usn5 In Null End[..Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $#usn8[$0..`3esn`][1e-1..$7])] Limit 12e12 Starts With {``}"), + octest_legacy:ct_string("Delete {`4esn`} In 1000 In {@usn5} Unwind [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..] As `2esn`"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`5esn`)Assert Exists((:#usn8:@usn6{`3esn`:$#usn7})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]->(@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0}).``?.#usn8)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:#usn7)Assert Exists([`2esn` In $@usn5 Is Not Null Is Not Null Where {`3esn`} =~$@usn5 =~`2esn`].`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On(usn2:#usn8)Assert Exists(`8esn`(Distinct 8.1e1 Contains $@usn6,{0}[`4esn`..{`8esn`}]).usn2!.#usn7!)"), + octest_legacy:ct_string("Start `3esn`=Rel:`7esn`(`8esn`={`3esn`}) ,`2esn`=Node( {`6esn`})Where $`6esn` Starts With 0.0 Union Return usn2($12 =~4.9e12) Ends With Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Ends With Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End As `7esn` Skip `5esn` Is Not Null Is Not Null Limit .1e1 Is Null Is Null Merge usn2=(`8esn` :@usn6:_usn3)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) On Match Set usn1 ={`6esn`} In 11.12e-12 In 2.9e1,#usn8+={@usn5} Contains .1e1 Contains {`5esn`},@usn6+={`3esn`}[#usn7] On Match Set Reduce(`1esn`=12.0[..Count ( * )][..@usn6],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|5.9e-12 Contains {12} Contains {#usn8}).usn2? =5.9e-12[..9e0] Create ((#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[@usn6?{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})),`6esn`=Allshortestpaths(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0}))"), + octest_legacy:ct_string("Create Constraint On()-[`3esn`:`5esn`]-()Assert Exists({_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}.``)"), + octest_legacy:ct_string("Load Csv From 8.1e1['s_str'..] As #usn7 Fieldterminator 's_str' Remove Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where `6esn` Ends With 1e1 Ends With $#usn7).usn2 Unwind Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null)[#usn7(`1esn`[..$1000])..][Reduce(`5esn`=$@usn5 =~{`3esn`},`1esn` In $12 In {usn2}|$`5esn` Ends With 's_str' Ends With $`6esn`)..] As `4esn` Union Unwind 0.0[$`4esn`] As `8esn`"), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv From Count(*)[Null..][01234567..] As usn1 Fieldterminator \"d_str\" Create Allshortestpaths((`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`)),Allshortestpaths(((`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]})-[_usn4*{`3esn`:{``} Is Null Is Null}]-({`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})))"), + octest_legacy:ct_string("Create Constraint On()<-[#usn8:`4esn`]-()Assert Exists(12.@usn5.``!.`8esn`)"), + octest_legacy:ct_string("Return `7esn` In _usn4 In $`7esn` Skip 's_str'[`3esn`..0x0] Union Detach Delete $7[999..10.12e12][$`1esn`..{usn1}]"), + octest_legacy:ct_string("Using Periodic Commit 0x0 Load Csv From {`5esn`} As usn1 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Drop Constraint On()-[@usn5:usn2]-()Assert Exists({usn1:.9e-1 Is Null Is Null}.usn1.usn2?)"), + octest_legacy:ct_string("Merge (usn1 :#usn8:@usn6) On Match Set usn1 ={`8esn`}[..`5esn`][..01],usn2+={#usn7} Ends With 999 Ends With 12 On Create Set _usn4+={``} Ends With @usn5 Ends With $_usn3,Reduce(#usn7=9e1[0.0],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|0.0[$`4esn`]).#usn8!.`1esn`!.`1esn`? =$`4esn` Ends With .12e12 Ends With 123.654,`5esn` =$usn2 Starts With $999 Starts With .0e0 Remove Case When {usn2} Is Not Null Is Not Null Then false Contains {`7esn`} When {_usn3} Is Null Is Null Then .12e12 Ends With 07 Ends With 3.9e-1 End.#usn7!,Reduce(#usn8={`6esn`} =~2.12 =~123.654,`` In `7esn` =~#usn8 =~\"d_str\"|usn2 Contains `2esn` Contains {1000}).`5esn`,Reduce(usn2=.9e1[$`1esn`..][$``..],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|`3esn` Contains 01 Contains 01).#usn7! Union Delete Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where usn2[..$0][..`3esn`]|{0}[`4esn`..{`8esn`}])[Reduce(``=Null,`7esn` In 0.12 Is Not Null|{#usn7} Starts With .1e-1)..][Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1)..],{`6esn`} Starts With 12e12 Starts With {`2esn`} Foreach(usn2 In usn2 Contains `2esn` Contains {1000}| Load Csv From 9e-1 Contains .12e-12 Contains $0 As `6esn` With Distinct 12e12[usn2..$`6esn`] As usn1,0Xa Contains 12e-12,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As #usn7 Order By 9e12 Ends With \"d_str\" Ends With 0X7 Desc Skip {12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1] Where $@usn6 Is Null) Optional Match _usn3=(((`4esn` )-[{#usn7:1e-1[$`4esn`]}]->(`1esn` :`2esn`:`4esn`)-[?:#usn8|:``{usn2:{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],usn1:\"d_str\"[0x0..{@usn6}][$@usn5..0]}]-(:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12}))),`1esn`=Allshortestpaths((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[?$999]-(`4esn` {#usn7:$usn1[0e0...9e-12]})-[:`5esn` *01234567..{`2esn`:{usn1} Contains {`2esn`},#usn7:`4esn`[9e-12..true]}]-(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})) Union Return Distinct *,Case Count ( * ) =~123456789 =~{@usn5} When 0[10.12e12] Then 12.0 Starts With 00 Else 2.9e1 In {``} End[..Case $`8esn`[0x0][.9e0] When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null Else $usn1 =~.0e0 =~{`4esn`} End][..Extract(#usn8 In 07[..$`5esn`] Where 07[{@usn5}..]|9e-1 Contains 3.9e-1)] As `4esn`,(`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3)[Case When 3.9e-1 Ends With {usn1} Ends With {`5esn`} Then 5.9e-12 Is Null Is Null When 9e1 Ends With 9e12 Ends With 0x0 Then .9e0 =~#usn7 Else 0 Starts With `7esn` Starts With 9e0 End..Filter(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null)] As _usn4 Skip 00[$``]"), + octest_legacy:ct_string("Create Constraint On(`5esn`:usn2)Assert Exists({_usn4:#usn8 =~{@usn5}}.`6esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[#usn8:@usn6]->()Assert Exists(Case 12e12 When {#usn7} =~$@usn6 =~$7 Then 6.0e0 =~12.0 =~9e1 When 0.0[00..][0xabc..] Then .9e1[$`1esn`..][$``..] Else `5esn` Is Not Null Is Not Null End.`6esn`?)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:usn1)Assert [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[01234567][{#usn7}]|$`8esn`[..5.9e-12][..`8esn`]].usn2.`2esn`!._usn3? Is Unique"), + octest_legacy:ct_string("Delete .9e12 Is Not Null Is Not Null,12.0 In `7esn` Delete .12e-12[{`1esn`}][`1esn`]"), + octest_legacy:ct_string("Drop Constraint On(``:@usn5)Assert exists(`3esn` Starts With 9.1e-1 Starts With .9e-1,{#usn8} Starts With {`2esn`}).``! Is Unique"), + octest_legacy:ct_string("Create Unique @usn5=(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})<-[{usn1:$_usn3 Starts With 010}]-(#usn8 :`8esn`) Create @usn5=Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))),usn1=Allshortestpaths(((:`4esn`:usn2{usn2:$usn2 Ends With 00 Ends With 9e12,_usn4:{`5esn`}})-[?:``|:`7esn` *12{#usn8:10.12e12 Contains .9e0,usn1:0xabc Contains {12} Contains {`6esn`}}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))) Union Return Distinct .9e12 Is Not Null Is Not Null,Shortestpath((:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})) Starts With {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF} Starts With Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})),.9e12 Contains 0 Contains $0 As #usn7 Order By .0e-0 Ends With $`2esn` Ends With `5esn` Descending Limit 12e-12 =~$_usn3"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:usn2)Assert Allshortestpaths(({@usn6:12e12[{`4esn`}..`4esn`][999..{@usn6}]})-[#usn8?:_usn3 *..123456789]-({#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]})-[_usn3?:``|:`7esn` *0X0123456789ABCDEF]-(#usn7 {usn2:0X7[#usn7..][$@usn5..]})).usn2 Is Unique"), + octest_legacy:ct_string("Load Csv With Headers From `4esn` Is Not Null As _usn4 Fieldterminator 's_str' Remove `7esn`:`4esn`:usn2,Filter(usn2 In .12e-12 Ends With `2esn` Where $7).usn1.#usn7!.`5esn` Union All Load Csv With Headers From $`1esn`[9e0..$12] As #usn7 Fieldterminator \"d_str\" Union All Return Distinct *,`1esn`[..$1000] As _usn3 Order By $@usn5 =~{`3esn`} Descending,_usn4['s_str'][8.1e1] Descending Limit $`8esn` Is Null Is Null Match `1esn`=(((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))) Using Join On _usn4,usn1,`` Using Index usn2:``(`3esn`) Where .0e0['s_str'..][0Xa..]"), + octest_legacy:ct_string("Unwind 1000[{123456789}][usn1] As `7esn` Create Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))),@usn6=((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})) Union All Remove (`` :`8esn`)-[#usn7? *..00{_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}]->(:`3esn`)-[usn1?:usn1|usn2]->(#usn7 :@usn5).usn1,{12}.`6esn`? Create Unique #usn8=((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) Merge (((`1esn` :#usn8:@usn6{`7esn`:.1e-1 Contains .12e-12,`2esn`:.1e1 Ends With #usn7 Ends With {#usn7}})-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5)-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5))) On Match Set Allshortestpaths((:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})).@usn6! =12 Is Not Null Is Not Null On Create Set Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})).`5esn`!._usn3!._usn3? =$`1esn` Ends With 1000,(`8esn` :usn1)<-[usn2 *7]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})-[ *01{usn1:false[..usn2][..999]}]-(_usn3 ).#usn7!.`` =4.9e12 Ends With $@usn6,usn2 =10.12e12[.0e0] Union All Create Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}})) Return (usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[_usn3?:@usn5|:#usn7]->(`2esn` :usn1)<-[?:usn1|usn2{#usn8:'s_str'[`2esn`][12.0]}]->(_usn3 :``)[[usn2 In .12e-12 Ends With `2esn` Where .9e0[07..][4.9e12..]|12.0[...0e0]]] As `1esn`,$_usn4 =~$#usn8 =~{`4esn`} Order By $1000 Is Null Desc,9e-12 Is Not Null Is Not Null Desc,{`1esn`} In 0 Asc Unwind 12e-12 Starts With $`7esn` As usn2"), + octest_legacy:ct_string("Drop Constraint On(@usn6:``)Assert Any(_usn3 In `8esn`[_usn4] Where $1000[_usn4][{@usn5}]).``?.`1esn`.usn1? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:@usn5)Assert (`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})<-[#usn8?:#usn7|:@usn5]-(`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}).usn1! Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:usn2)Assert Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`} In .0e0 In $0).`4esn`.#usn8?.`3esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:`4esn`]-()Assert Exists(Shortestpath((:`3esn`{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]})).usn2!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:@usn5)Assert Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))).`6esn`? Is Unique"), + octest_legacy:ct_string("Create `5esn`=Allshortestpaths((({`6esn`:8.1e1 Contains .9e-1 Contains false}))),(:usn1{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`) Delete Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}) Ends With ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[ *12{#usn8:0e0 =~{12} =~{1000}}]->(:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}) Ends With Case When $@usn5[``..] Then `3esn` Is Null When $7[.1e-1..{@usn6}][$7..{`1esn`}] Then 0xabc[0Xa..] Else 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] End,$12[$@usn5],`2esn`[.9e12..] Start `2esn`=Rel( {_usn3}) Where $_usn4 =~$#usn8 =~{`4esn`} Union Delete $`6esn` In 999 In {_usn3},0[.9e-1..0e0][.1e1.._usn4],\"d_str\" Is Not Null Is Not Null Delete {`3esn`}[..{`4esn`}][..usn2],`1esn`({`4esn`} Ends With Count(*),$usn1 Contains 4.9e12 Contains $`2esn`) Is Not Null Is Not Null,Single(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1])[Case When 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Then $#usn8 Is Not Null Is Not Null When \"d_str\" Starts With $`7esn` Starts With 999 Then \"d_str\"[0x0..{@usn6}][$@usn5..0] Else .0e-0[..01234567] End..] Merge @usn6=((`2esn` :usn1)<-[_usn3:@usn5|:#usn7 *..07]-({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2)) Union Create ((`4esn` :``{_usn4:$_usn3[0x0][{0}],@usn6:9e-12 Is Not Null Is Not Null})<-[usn2:_usn3 *0xabc..12]-(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]})),``=Shortestpath((:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})<-[`3esn` *..0x0]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})-[`6esn`?:@usn5|:#usn7{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}]-(`4esn` {@usn5:5.9e-12[12e-12][$`8esn`],`5esn`:{123456789} Contains $0}))"), + octest_legacy:ct_string("Load Csv With Headers From Case When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 Else $12 Is Not Null Is Not Null End Starts With usn1(Distinct .9e1[$`1esn`..][$``..]) Starts With Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End As @usn6 Merge `4esn`=((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})<-[ *01234567..{usn1:{12} Contains `8esn` Contains @usn5}]->(usn1 :@usn6:_usn3)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) On Create Set {``:`6esn` =~999 =~$999}.`3esn`! =.1e1 In $999 In {#usn8},{`1esn`:$usn2 Is Not Null Is Not Null,`8esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}.#usn8 =7.0e-0 Ends With {123456789} Ends With @usn6,usn1 =$#usn7 Ends With {`5esn`} Ends With 01 On Create Set Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})).`5esn`!._usn3!._usn3? =$`1esn` Ends With 1000,(`8esn` :usn1)<-[usn2 *7]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})-[ *01{usn1:false[..usn2][..999]}]-(_usn3 ).#usn7!.`` =4.9e12 Ends With $@usn6,usn2 =10.12e12[.0e0] Create Unique `5esn`=Shortestpath((({_usn3:.9e12 Contains 0 Contains $0})))"), + octest_legacy:ct_string("Drop Constraint On(@usn6:``)Assert Exists(None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0xabc[..{usn1}][..\"d_str\"]).`1esn`?)"), + octest_legacy:ct_string("Remove Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])._usn3 Start `1esn`=Node(0x0) ,``=Node( {#usn7})Where 00[Null..usn2]"), + octest_legacy:ct_string("Drop Constraint On()<-[``:_usn4]-()Assert Exists(Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e-1 Is Null Is Null).#usn8)"), + octest_legacy:ct_string("Create Constraint On(#usn7:`6esn`)Assert Case When {1000}[..`5esn`][..9e12] Then Count(*)[..{#usn7}] End.`3esn`! Is Unique"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv From None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) As `6esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Remove (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}).`7esn`!._usn4.usn1,[@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`4esn`} Ends With Count(*)|$0 Ends With $usn1 Ends With {``}].`7esn`?.``!.`3esn`,Reduce(@usn5=0xabc[..Count(*)][..$`5esn`],usn1 In \"d_str\" Contains {@usn6}|123456789[#usn7..9e-1][10.12e12..{0}])._usn4.`7esn`!.`8esn`? Match `2esn`=Allshortestpaths((`6esn` :`6esn`)-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5)-[``:``|:`7esn`*{#usn8:{#usn7}[.12e-12],`3esn`:1.9e0[`6esn`][`7esn`]}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})),(((:`1esn`:``{`8esn`:5.9e-12[0x0..]})<-[`1esn` *010..0]->(@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[{usn2:{1000}[..{usn1}][..1e-1]}]->(`4esn` {`6esn`}))) Using Index #usn7:`2esn`(`8esn`) Foreach(`4esn` In Single(`2esn` In $@usn5 Is Not Null Is Not Null Where {_usn3} Is Null Is Null) =~Reduce(``=Null,`7esn` In 0.12 Is Not Null|{#usn7} Starts With .1e-1)| With Distinct {usn1} Contains {`2esn`},[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]],`6esn`[0X0123456789ABCDEF..][`8esn`..] As #usn8 Limit Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null Where $usn2 Contains $`3esn` Contains 6.0e0)"), + octest_legacy:ct_string("Create Constraint On()-[`4esn`:@usn5]-()Assert Exists(({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]})<-[usn1?{`5esn`:$0 Ends With 9e-12 Ends With $_usn4}]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})-[?:_usn3]->(_usn3 :`1esn`:``).`1esn`)"), + octest_legacy:ct_string("Return *,$123456789[..$999][..`6esn`] As @usn5,Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07)[Case 9e-12 Ends With 9e1 Ends With 4.9e12 When `3esn` =~$#usn7 Then $@usn5 Starts With #usn7 When {`4esn`}[{`3esn`}][$`2esn`] Then #usn7[$`8esn`][{`3esn`}] Else 9e0[`4esn`..$_usn4][9.1e-1..0e0] End][[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]] Skip @usn5[9e-1..{`1esn`}] Limit 11.12e-12 Contains usn1 Load Csv From false =~{`8esn`} =~00 As `7esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Drop Constraint On(`8esn`:#usn8)Assert Exists((`8esn` :usn1)<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12}).#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:`6esn`)Assert Exists(Any(`6esn` In 010[{`1esn`}..] Where `6esn` Ends With 1e1 Ends With $#usn7).`5esn`?)"), + octest_legacy:ct_string("Create Allshortestpaths((`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`)) Create Unique `6esn`=(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})<-[?$999]-(`4esn` {#usn7:$usn1[0e0...9e-12]})-[:`8esn`|:#usn8 *01]-(:#usn7:`8esn`{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}),_usn3=(((`4esn` )-[{#usn7:1e-1[$`4esn`]}]->(`1esn` :`2esn`:`4esn`)-[?:#usn8|:``{usn2:{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],usn1:\"d_str\"[0x0..{@usn6}][$@usn5..0]}]-(:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12}))) Union Detach Delete 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))],{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1] Create Unique _usn4=(#usn8 :`5esn`:`7esn`{usn2}) Delete {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null),0.0[$`4esn`] Union Remove Reduce(`3esn`={123456789} =~.9e1 =~$_usn3,`8esn` In {_usn4} Ends With {0} Ends With `1esn`|{usn1}[`7esn`..Count(*)]).usn2.`6esn`?"), + octest_legacy:ct_string("Unwind 9e0 In {usn2} In {@usn6} As @usn5 Start `2esn`=Relationship:_usn4(@usn6=\"d_str\") Union All Start `7esn`=Node:@usn6(`3esn`={``}) Start `3esn`=Node(0xabc,7,0Xa,01234567) Where $`8esn` Is Not Null Is Not Null Union Create Unique `7esn`=Shortestpath(((usn1 :_usn4:`2esn`)<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[?{#usn7:`2esn`,`7esn`:$@usn5 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))) Optional Match (({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 {#usn7:$999 =~false =~{`8esn`}})),(((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}))) Using Scan `4esn`:`1esn` Using Index `6esn`:`8esn`(`3esn`) Where $#usn7[01..2.12][2.12..3.9e-1]"), + octest_legacy:ct_string("Remove Extract(`7esn` In 0.12 Is Not Null Where {`1esn`}[{usn2}]|9e1 Ends With `7esn` Ends With 2.12).`2esn`?.`1esn`.usn2!,Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where {`3esn`} =~$@usn5 =~`2esn`|$1000 Starts With {@usn6} Starts With $@usn5).`3esn`?.`3esn`?.`4esn`? Delete 1e1[$_usn3],9e-1[0],$#usn8 Starts With 9.1e-1 Starts With {#usn7} Detach Delete $@usn6[.1e-1][9e12]"), + octest_legacy:ct_string("With $#usn7 Contains 3.9e-1 Order By Count(*)[{12}..{#usn8}] Asc Where 2.12[{12}] Union With Distinct $`8esn` Is Not Null Is Not Null As _usn3 Order By Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Descending,\"d_str\" In 7.0e-0 Desc Skip Reduce(_usn3=7.0e-0[$`6esn`..],`7esn` In 0.12 Is Not Null|false Starts With 0 Starts With 2.9e1) =~Case $`3esn` =~0x0 When $12[$@usn5] Then 11.12e-12 In {usn1} When 4.9e12[{_usn4}..] Then $@usn5 Contains _usn3 Else .12e-12 Starts With .12e-12 End =~Reduce(_usn4=_usn4 Is Not Null Is Not Null,`2esn` In $@usn5 Is Not Null Is Not Null|7.0e-0 Is Not Null) Limit {_usn3:.0e-0[..``][..$7]}[..(`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`)][..@usn5] Union All Foreach(`` In true[0Xa..]| With *,0e0[12.0][{#usn7}] As `8esn`,Extract(#usn8 In 07[..$`5esn`] Where $usn2[..$999][..#usn8])[..Extract(`1esn` In $12 In {usn2} Where {123456789} =~.9e1 =~$_usn3|9e1 =~$`8esn` =~10.12e12)][..Reduce(`8esn`=.1e1[{@usn6}][true],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|0X7 Is Not Null Is Not Null)] As `3esn` Order By .0e-0[..01234567] Descending,Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null) Ascending Skip 9e1[...9e1][..$`6esn`] Limit 9e-1[0] Where Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Return *,Reduce(`2esn`=$@usn5[``..],`7esn` In 0.12 Is Not Null|$`4esn` Is Not Null) =~Any(_usn3 In `8esn`[_usn4] Where {`6esn`} In {_usn4} In $12) =~Reduce(`1esn`=false =~{`8esn`} =~00,`2esn` In $@usn5 Is Not Null Is Not Null|`1esn`[{@usn5}..][{_usn4}..]),1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Skip .12e-12 Starts With .12e-12 Limit (@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(:`6esn`{`2esn`:`5esn` Ends With Count(*)})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12}) In Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}) In Single(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str') Start #usn7=Rel:@usn6({1000}) "), + octest_legacy:ct_string("Detach Delete 9.1e-1 Starts With .9e0,Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null,Case 9e1 In $1000 When 999 Starts With 7.0e-0 Starts With true Then {usn2}[{999}..][9e12..] End[Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End..][Any(`1esn` In $12 In {usn2} Where @usn6[true..])..]"), + octest_legacy:ct_string("Merge Shortestpath(((`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(`1esn` {@usn6:6.0e0[$#usn7..$1000]}))) On Match Set {usn1:1.0 Is Not Null}.usn1? ={123456789} Contains $0,usn1+=01 Is Not Null,usn1 ={999} =~$`6esn` =~$`6esn` With Distinct {usn1} Contains {`2esn`},[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]],`6esn`[0X0123456789ABCDEF..][`8esn`..] As #usn8 Limit Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null Where $usn2 Contains $`3esn` Contains 6.0e0 Unwind $usn1[0e0...9e-12] As usn1 Union Return Distinct {`5esn`} Ends With $`7esn` Ends With {@usn5} As `4esn`,{#usn8} Is Not Null As `6esn`,{`3esn`}[...1e1][..0] Order By usn1 Ends With 11.12e-12 Ends With 5.9e-12 Descending,.1e-1 Is Not Null Ascending,Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}] Descending Skip 9e0[{7}...0e-0][Null..@usn5] Limit $`5esn` =~Count(*) =~1.9e0 Create Unique _usn4=((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})) Merge Allshortestpaths(((`8esn` :`7esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 )))"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`3esn`)Assert Exists(Reduce(`2esn`={1000}[..{usn1}][..1e-1],_usn3 In `8esn`[_usn4]|Count(*)[$7]).@usn5?)"), + octest_legacy:ct_string("Merge Allshortestpaths(({`4esn`:{7}[0x0][1e1]})) On Create Set #usn8 =Null In {7} Match (((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))),Shortestpath(((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1))) Using Join On ``,usn1,`2esn` Using Index #usn7:`2esn`(`8esn`) Remove Case When 0.12 Is Not Null Then $`` =~$_usn3 When 00[$_usn4][$`1esn`] Then {#usn7}[.12e-12] End.usn2!.`3esn`! Union All Load Csv From false[9e12] As `2esn` With *,Allshortestpaths((_usn4 {`3esn`:.0e-0 In 12})) Is Null Is Null,{@usn6} Is Null As `5esn` Skip Shortestpath((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))[[`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`}[@usn5..{@usn6}]|{1000}[..`5esn`][..9e12]]..][{_usn4:`8esn`[.12e12..]}..] Where {@usn5}[10.12e12..] Optional Match `7esn`=(@usn5 :@usn5{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6})-[usn2?:`1esn`|:`1esn` *..123456789]-(:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[:_usn3]-(`3esn` ),(({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 {#usn7:$999 =~false =~{`8esn`}})) Where {#usn7} Starts With .1e-1 Union Create Unique _usn4=(((`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]}))) Unwind Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) As @usn6"), + octest_legacy:ct_string("Unwind Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Contains (:`2esn`:`4esn`{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``) Contains {@usn6:10.12e12 Contains .9e0,`3esn`:`6esn` =~999 =~$999} As `2esn` Union All Optional Match Shortestpath(((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})))),_usn3=Allshortestpaths((((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999})<-[``?:@usn5|:#usn7 *..00{#usn8:$`8esn`[...1e-1]}]->(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]})))) Using Index `3esn`:`8esn`(`5esn`) Where .12e12 Ends With 07 Ends With 3.9e-1 Foreach(`8esn` In 2.9e1 In {``}| Create Shortestpath(((`7esn` {@usn5:Count ( * )[_usn4..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))) Unwind Allshortestpaths(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0}))[Reduce(@usn6=10.12e12 Starts With $`4esn` Starts With 0e0,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$1000 Contains $123456789 Contains #usn8)..Case 7[..123456789][..true] When $1000[..0e-0][..010] Then 999 Starts With 7.0e-0 Starts With true End][[`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]]..Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When 0.12[Count ( * )..Count ( * )][$999..`5esn`] Then $123456789[..$999][..`6esn`] Else 7[{`4esn`}..] End] As @usn6)"), + octest_legacy:ct_string("Foreach(`2esn` In [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01|_usn4 Ends With {`8esn`} Ends With usn2][Any(usn1 In $@usn6 Is Null Is Null Where `3esn` Is Null)..]| Unwind .12e12[01..{1000}][8.1e1..Count ( * )] As `2esn` With 4.9e12[{_usn4}..],{`5esn`} Ends With $`7esn` Ends With {@usn5} Skip {999}[..`6esn`]) Optional Match _usn4=(((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))) Using Scan `3esn`:`` Where $`5esn` =~Count(*) =~1.9e0 Union All Remove #usn7(Distinct \"d_str\" Is Not Null Is Not Null,$`6esn`[$_usn3..{1000}])._usn3!.#usn7?,[usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $12 Is Null Is Null].``.`3esn`? Remove Case #usn8[\"d_str\"..usn2] When $`5esn`[$_usn3][$12] Then 0[$usn1..] End.`6esn`?,Case When `5esn` Contains 0 Contains $12 Then true In 0.0 Else 9e12 Ends With \"d_str\" Ends With 0X7 End._usn4"), + octest_legacy:ct_string("Create Constraint On(``:`2esn`)Assert Exists({_usn3:12.0[..Count ( * )][..@usn6]}.``!)"), + octest_legacy:ct_string("Match `3esn`=({`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}),((:#usn7:`8esn`{@usn6:123456789[_usn4..`1esn`][$`6esn`..{@usn6}]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}})) Using Index `5esn`:`4esn`(_usn3) Merge (`1esn` :@usn5{@usn6:$`7esn` Ends With 7.0e-0 Ends With $usn2}) On Create Set `` =$`3esn` =~$123456789 =~`3esn`,Reduce(#usn7=4.9e12 Starts With {``},usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|3.9e-1 Contains $@usn5).`7esn`?.#usn7.`1esn`? =12 Ends With {#usn8} Ends With $_usn4,(_usn3 )<-[:`8esn`|:#usn8 *0X7..0Xa]->(`4esn` :`8esn`{12}).`8esn`!._usn3? =Filter(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Starts With (#usn7 :``)-[`3esn`{`4esn`:12e12[.9e12..07]}]-(`1esn` :``{_usn4:$@usn5 =~{`3esn`}})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]}) Starts With Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12) On Match Set Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999}).`5esn`.#usn8!.`3esn`? =$12 In {usn2},`4esn`(Distinct .9e0[07..][4.9e12..]).`4esn`! =Reduce(#usn7=#usn8[\"d_str\"..usn2],#usn7 In .0e-0 In 12|`` Ends With 1.0 Ends With usn1) Ends With [_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3]] Ends With Shortestpath((((:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[`2esn`?:`8esn`|:#usn8]->(`` )<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)))),`5esn`+=7 Starts With 9e-12 Unwind $@usn5 =~{`3esn`} As `5esn` Union All Create Unique (((:`5esn`:`7esn`{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[#usn8:usn2]->({`6esn`:12[@usn6][{`2esn`}]})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(`5esn` {_usn4:0xabc[..Count(*)][..$`5esn`]}))),Shortestpath((_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn2 *7]-(`` )) With Distinct 00[..@usn6] As `6esn`,{`3esn`}[...1e1][..0],Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null As `2esn` Skip $usn2 Ends With 9e12 Ends With Count ( * ) Limit 0xabc Starts With {`3esn`} Starts With {``} Where 123456789[_usn4..`1esn`][$`6esn`..{@usn6}] Union Return *,None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12)[Case When .12e12 Is Not Null Then {`6esn`} Starts With .12e-12 When .1e-1 Starts With @usn6 Starts With _usn3 Then $`5esn` Ends With 's_str' Ends With $`6esn` End..][Extract(usn1 In $@usn6 Is Null Is Null Where $999 =~false =~{`8esn`}|$@usn6[``..][3.9e-1..])..],@usn6[true..] As _usn4 Order By $`4esn` Ends With .12e12 Ends With 123.654 Desc,Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) =~usn2({`1esn`} Is Null) =~Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 1.9e0 In $@usn6 In $_usn3) Descending Skip $`7esn` Is Null Limit Reduce(`5esn`=$usn1[..$999][..0e0],`2esn` In $@usn5 Is Not Null Is Not Null|``[$#usn7]) Starts With [`6esn` In 010[{`1esn`}..] Where 9e-12[$7..]] Starts With Any(_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12) Optional Match @usn5=(((`1esn` :usn2{`8esn`:12.0[...0e0]})-[`5esn`?:@usn5|:#usn7{`4esn`:9e-12[$7..]}]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]}))),Shortestpath((`6esn` :``)<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})) Where $@usn6 Is Null With Distinct *,Case Count ( * ) =~123456789 =~{@usn5} When 0[10.12e12] Then 12.0 Starts With 00 Else 2.9e1 In {``} End[..Case $`8esn`[0x0][.9e0] When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null Else $usn1 =~.0e0 =~{`4esn`} End][..Extract(#usn8 In 07[..$`5esn`] Where 07[{@usn5}..]|9e-1 Contains 3.9e-1)] As `4esn`,(`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3)[Case When 3.9e-1 Ends With {usn1} Ends With {`5esn`} Then 5.9e-12 Is Null Is Null When 9e1 Ends With 9e12 Ends With 0x0 Then .9e0 =~#usn7 Else 0 Starts With `7esn` Starts With 9e0 End..Filter(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null)] As _usn4 Skip 00[$``] Where @usn6 Ends With $`2esn` Ends With 1.0"), + octest_legacy:ct_string("Drop Constraint On(_usn4:usn1)Assert Exists(Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`6esn`} =~2.12 =~123.654|`6esn` Ends With 1e1 Ends With $#usn7).@usn5!.``!)"), + octest_legacy:ct_string("Unwind 0.0[..9e1][..2.12] As _usn4 With Distinct Any(`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]) In Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Skip {usn2} Contains {0} Union All With Distinct $_usn3 Contains 1.0 Contains 0.12 As ``,0x0 Ends With #usn8 Ends With .9e-1 As _usn4 Order By All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where _usn4[{``}..{`6esn`}][$7..$_usn3]) In Allshortestpaths((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]}))) In (`1esn` :`2esn`:`4esn`)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[#usn8]->(`2esn` :_usn3{`6esn`:_usn4[{``}..{`6esn`}][$7..$_usn3],`6esn`:$`4esn` Ends With {999}}) Descending Skip Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) Where 9e1 =~$`8esn` =~10.12e12 Remove Filter(`6esn` In 010[{`1esn`}..] Where Count(*) Starts With {usn2} Starts With `2esn`).`4esn`?,Case {`6esn`}[@usn5..{@usn6}] When _usn4 Ends With {`8esn`} Ends With usn2 Then $`8esn` Is Not Null Is Not Null When $999 =~0e0 =~0X7 Then $`7esn` Starts With 's_str' End.@usn5?.`7esn`!"), + octest_legacy:ct_string("Optional Match (((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(`2esn` :_usn3)<-[_usn3?{``:{1000} Starts With {`1esn`}}]->(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))) Using Scan #usn8:`1esn` Using Scan #usn7:`4esn` Where `4esn` Ends With 9e12 Ends With {`5esn`} Merge `7esn`=Shortestpath(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) Foreach(#usn7 In 0.12[{@usn6}..{#usn7}]| With *,Case 9e1 In $1000 When 999 Starts With 7.0e-0 Starts With true Then {usn2}[{999}..][9e12..] End[Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End..][Any(`1esn` In $12 In {usn2} Where @usn6[true..])..] As usn2 Order By {`7esn`} =~\"d_str\" =~{``} Desc,`2esn` In .9e0 In `` Ascending,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) Desc Skip 10.12e12 Contains .9e0 Limit Count(*)[{12}..{#usn8}]) Union Foreach(`8esn` In None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Contains (`8esn` :@usn6:_usn3{_usn4:{#usn7} =~$@usn6 =~$7})<-[`1esn`? *0{usn2:.9e12[6.0e0..][@usn5..]}]->(usn2 :@usn6:_usn3)-[usn1:#usn7|:@usn5 *999..123456789]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})| Unwind $`1esn` =~`8esn` As @usn5) Load Csv With Headers From ({`4esn`:#usn8[\"d_str\"..usn2],`1esn`:12.0[..Count ( * )][..@usn6]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ) =~Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End =~{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} As #usn7 Start `7esn`=Node:#usn7(usn1={`6esn`}) Where false[..usn2][..999] Union All With Distinct [`1esn` In $12 In {usn2} Where 12e-12 Starts With $`7esn`][{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}..] As `5esn`,{`3esn`}[..{`4esn`}][..usn2] As #usn8 Skip Case When .9e1 In .1e-1 Then $7 =~01234567 =~12.0 When {`8esn`} Is Not Null Is Not Null Then $12 =~4.9e12 Else {#usn7}[.12e-12] End[..Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`}))] Limit #usn7[123.654][{12}] Foreach(usn2 In {usn1:12[..$`5esn`]}[None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..])]| Optional Match Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))),(((usn1 :@usn6:_usn3)<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->(:usn1)<-[:``|:`7esn`{@usn6:{#usn8}[..@usn5],@usn6:$1000 Contains $123456789 Contains #usn8}]->(`1esn` :@usn6:_usn3{#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12}))) Create Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))),@usn6=((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})))"), + octest_legacy:ct_string("Match @usn6=((({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(@usn6 :@usn5)-[`2esn`? *7{`5esn`:false[..usn2][..999]}]-(`4esn` :@usn6:_usn3))),(#usn7 :`6esn`{usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[`2esn`?:``|:`7esn` *1000..]-(:_usn3{@usn5:`2esn`[`7esn`][1000]}) Using Scan `3esn`:_usn3 Using Index `6esn`:`8esn`(`2esn`) Union Return Distinct .0e0[{#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]}][All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0)],$123456789[{usn1}][.12e-12] As `3esn`,Reduce(`2esn`=$@usn5[``..],`7esn` In 0.12 Is Not Null|$`4esn` Is Not Null) =~Any(_usn3 In `8esn`[_usn4] Where {`6esn`} In {_usn4} In $12) =~Reduce(`1esn`=false =~{`8esn`} =~00,`2esn` In $@usn5 Is Not Null Is Not Null|`1esn`[{@usn5}..][{_usn4}..]) As @usn6 Limit {``} Is Null Is Null Remove Extract(usn2 In .12e-12 Ends With `2esn` Where `3esn` Contains 01 Contains 01|.9e0[$#usn8][Count ( * )]).`4esn`,Reduce(#usn8={12} Contains `8esn` Contains @usn5,usn1 In \"d_str\" Contains {@usn6}|$12 =~4.9e12).``?,Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}}))).`2esn`?.`` Detach Delete Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] Union All Start `1esn`=Rel:`5esn`(@usn5=\"d_str\") ,`5esn`=Node:@usn6(#usn8='s_str') With Distinct 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Skip {usn1:$1000 Is Null}[Shortestpath((:usn1$1000))..][Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true)..] Where `3esn` Starts With 9.1e-1 Starts With .9e-1 Match ((`4esn` :`6esn`)<-[{``:7.0e-0 Is Not Null}]->(:#usn7:`8esn`{@usn5:{0} In {`1esn`}})-[``?{``:{#usn7} =~$@usn6 =~$7}]-(`3esn` :@usn5)) Using Join On #usn8"), + octest_legacy:ct_string("Merge `1esn`=(((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))) On Match Set `6esn` =(`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Is Not Null Is Not Null On Match Set `2esn` =7[{`4esn`}..],usn2 =$@usn5 Contains _usn3"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:usn2]-()Assert Exists([_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|{`3esn`}[...1e1][..0]].usn2!._usn3!._usn3!)"), + octest_legacy:ct_string("Merge `4esn`=((_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[`3esn`?:usn2]-(:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})) On Create Set Case $`8esn` Is Not Null Is Not Null When #usn8[\"d_str\"..usn2] Then .12e-12 Is Null End.`1esn`?.`7esn`?.usn2? =Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End[(`4esn` :#usn7:`8esn`)-[_usn3?:@usn6|:`4esn`{_usn4:$12 Ends With 12.0 Ends With $`4esn`}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2)..][Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1)..] Remove Case $`8esn` Is Not Null Is Not Null When #usn8[\"d_str\"..usn2] Then .12e-12 Is Null End.@usn6? Union Merge ((:`1esn`:``{`8esn`:5.9e-12[0x0..]})) On Create Set #usn7 =usn1 =~false =~{999},Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}).`2esn`! =9e12 Is Null Is Null,`2esn`+=Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`}) Ends With Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))) Ends With Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1) On Create Set `3esn` =$7[.1e-1..{@usn6}][$7..{`1esn`}],None(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {0}[.1e-1..][_usn4..]).usn2 =$`7esn` In $`4esn`,usn1+=$`4esn` Ends With {999}"), + octest_legacy:ct_string("Return *,\"d_str\" In usn2 In $`7esn` As `5esn`,12[11.12e-12..][`4esn`..] Order By Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Is Null Ascending,'s_str'[$`8esn`..$999] Descending,$`2esn`[`8esn`..] Descending Remove Case 2.9e1 Ends With `5esn` Ends With 1000 When @usn6[999][1000] Then .0e0 =~0 =~.0e0 When {`4esn`} In 1000 In {@usn5} Then 123456789[_usn4..`1esn`][$`6esn`..{@usn6}] Else .12e12 Is Not Null End.`2esn`? Delete (usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..])"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`2esn`)Assert All(`7esn` In 0.12 Is Not Null Where 4.9e12 Starts With {``}).`7esn`? Is Unique"), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv With Headers From 1e-1 =~$`7esn` =~1e1 As @usn5 Fieldterminator 's_str' With None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0) As usn2 Skip Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])[..(#usn7 {`5esn`:.12e12 Is Not Null,@usn5:.12e12 Is Not Null})-[#usn8:`7esn`|usn1 *0X7..0Xa{usn1:_usn4 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})][..Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`)] Where 0Xa In 1.0 In $@usn5 Match `2esn`=(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1}),``=Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))) Where 7[{`4esn`}..]"), + octest_legacy:ct_string("Delete (`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[`3esn` *..0x0]-(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:_usn4|:`1esn` *01]-(`4esn` {`3esn`:{`7esn`} =~\"d_str\" =~{``},`3esn`:{`1esn`} Contains 1.0 Contains 4.9e12}) =~Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 9e12 Is Null Is Null) =~(:@usn5{#usn7:Null,`5esn`:{@usn5} Ends With 0Xa Ends With .12e-12})-[:`3esn`|`3esn` *1000..]-(@usn6 )"), + octest_legacy:ct_string("Using Periodic Commit 7 Load Csv With Headers From (@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[`8esn`?:_usn3 *12{usn1:#usn7[.9e0..`3esn`][{`6esn`}..1000],_usn4:$usn2 In #usn7 In #usn7}]-(_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(usn2 :`2esn`:`4esn`)[..Reduce(`2esn`={1000}[..{usn1}][..1e-1],_usn3 In `8esn`[_usn4]|Count(*)[$7])][..{_usn3}] As `2esn` "), + octest_legacy:ct_string("Optional Match ((:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})<-[*..{`4esn`:{1000} Starts With 10.12e12 Starts With .0e-0,`2esn`:$#usn7 Ends With {`5esn`} Ends With 01}]-({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})) Create Shortestpath((#usn8 :`5esn`:`7esn`{usn2})),((usn1 :@usn6:_usn3)-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})) Union Detach Delete [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,00[..@usn6] Load Csv With Headers From #usn8[$`2esn`] As `6esn` With Distinct 999 Ends With {#usn8},9e1[..@usn5][..$`5esn`],$@usn6[...9e-1] As `2esn` Limit $123456789 Is Not Null Is Not Null Where $7 Union Load Csv From `4esn`[..7][..$usn2] As _usn4 Return Distinct Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] As `7esn`,$#usn8[$0..`3esn`][1e-1..$7],_usn3 =~{7} =~123.654 As @usn6 Order By {`8esn`}[.0e0..][999..] Asc,#usn8(Distinct 12e12[{`4esn`}..`4esn`][999..{@usn6}])[Any(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1])..{``:9e1[0.0]}] Descending Skip Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07)[Case 9e-12 Ends With 9e1 Ends With 4.9e12 When `3esn` =~$#usn7 Then $@usn5 Starts With #usn7 When {`4esn`}[{`3esn`}][$`2esn`] Then #usn7[$`8esn`][{`3esn`}] Else 9e0[`4esn`..$_usn4][9.1e-1..0e0] End][[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]] Return Distinct None(`1esn` In $12 In {usn2})[..Reduce(usn2=.9e0 In 8.1e1,`3esn` In 8.1e1 Contains .9e-1 Contains false|$_usn3 Is Not Null)] As @usn5 Skip $`3esn` =~$123456789 =~`3esn`"), + octest_legacy:ct_string("Create ((:`8esn`{`2esn`:0[..{#usn7}][..$_usn3],#usn8:.9e-1 Is Null Is Null})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]-(`7esn` :#usn8:@usn6{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[usn2?:`2esn`|`5esn`{``:{#usn7} =~$@usn6 =~$7}]->(:`1esn`:``{`1esn`:{@usn5}[10.12e12..]})),usn2=Shortestpath((_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn2 *7]-(`` )) Union All Delete {#usn7} Is Not Null Create _usn4=((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})),`4esn`=(({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)) Match usn2=((({`5esn`:`1esn` In 010 In 1e-1})-[_usn3:`6esn`]-(`5esn` :#usn8:@usn6{``:Count(*) Starts With {usn2} Starts With `2esn`,`1esn`:12e12[{`4esn`}..`4esn`][999..{@usn6}]})<-[:``|:`7esn`{@usn6:{#usn8}[..@usn5],@usn6:$1000 Contains $123456789 Contains #usn8}]->(`1esn` :@usn6:_usn3{#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12}))) Where @usn5[{`1esn`}..][Count ( * )..]"), + octest_legacy:ct_string("With Distinct *,1.9e0[$`4esn`],All(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`]) Ends With Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e-12[9e1]) Merge ((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})) On Create Set (`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[? *..123456789{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:`7esn`{`5esn`:{`8esn`} Starts With .9e-1 Starts With 1000})._usn3._usn3?.`6esn`! =(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}) Is Not Null,#usn8 =0[4.9e12] Optional Match `7esn`=Shortestpath(((usn1 :_usn4:`2esn`)<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[?{#usn7:`2esn`,`7esn`:$@usn5 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))),Allshortestpaths((:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[_usn3?:`5esn`*..]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]})) Using Join On `5esn`,usn1,`7esn` Using Scan #usn8:`1esn` Where 8.1e1[..9.1e-1][...9e1] Union All Return Distinct false Contains {`7esn`},{0} Is Not Null As `` Order By [usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`|{#usn8}[..@usn5]][Case When .9e1 In {#usn7} In .9e-12 Then #usn7 Is Null Is Null End..] Asc,Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] Asc,(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[`3esn`?:`1esn`|:`1esn`]-({_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})[{@usn5:07[..$`5esn`]}..][$#usn8..] Descending Skip $7[.1e-1..{@usn6}][$7..{`1esn`}] Limit {``} Is Null Is Null Merge #usn8=Allshortestpaths((usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) On Match Set {#usn7:.9e1 In .1e-1,_usn4:{12}}.`8esn`!.@usn6!._usn4 =$`5esn` In $12 In `2esn`,`8esn` =Case When $123456789 Is Not Null Is Not Null Then $`5esn` Is Not Null End Ends With {_usn3:$12 Is Not Null Is Not Null} Ends With [`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 6.0e0 =~12.0 =~9e1|@usn6 Ends With $`2esn` Ends With 1.0] Start @usn5=Relationship:_usn3({`7esn`}) Where `5esn` Ends With Count(*)"), + octest_legacy:ct_string("Start `3esn`=Relationship:usn2({usn2}) ,`1esn`=Rel:`5esn`(@usn5=\"d_str\")Where {`8esn`} Contains $@usn5 Foreach(`8esn` In $`5esn` Starts With 4.9e12 Starts With 0e-0| Create Unique `6esn`=(({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[_usn4? *999..123456789{@usn6:$`4esn` Ends With .12e12 Ends With 123.654}]->(#usn8 {usn2:$0 Ends With 9e-12 Ends With $_usn4,`5esn`:0e-0[{@usn6}]})-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]-(`1esn` :_usn4:`2esn`))) Foreach(#usn8 In 9e12 Is Null| Unwind Allshortestpaths(((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}))) Is Null Is Null As usn2 Remove Filter(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12).`3esn`?.`7esn`?,Allshortestpaths((((`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})-[`8esn`:`4esn`|:`2esn`]->(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})))).`3esn`) Union All Create @usn5=Shortestpath(((:#usn8:@usn6{@usn6:$_usn4 Ends With {#usn8},_usn4:0e0[12.0][{#usn7}]})-[:#usn8|:``*{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]->(:``{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Start ``=Node:`7esn`({#usn7}) Where 01234567[1000..][$`8esn`..]"), + octest_legacy:ct_string("With Distinct 9e1 Ends With 9e12 Ends With 0x0 As #usn8,``(Distinct $999[usn1..0e-0]) Ends With {`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]} Ends With {`1esn`:$@usn5 Contains _usn3,usn2:9e12 Ends With \"d_str\" Ends With 0X7} Order By 0e0 Is Null Is Null Asc,usn1 =~false =~{999} Desc Where Count ( * )[9e0..$``] Create Unique Shortestpath((`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})),((_usn3 :`7esn`{@usn6:$`4esn` Ends With .12e12 Ends With 123.654})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)<-[#usn7? *0xabc..12]-(:`3esn`)) Unwind 12e-12 Starts With $`7esn` As usn2"), + octest_legacy:ct_string("Foreach(`2esn` In .1e-1[..$_usn3][..0]| Remove All(usn1 In $@usn6 Is Null Is Null Where _usn4 Is Not Null Is Not Null).`7esn`!.@usn5?) Union Remove Extract(usn1 In \"d_str\" Contains {@usn6} Where $`` =~.1e-1|$`3esn` =~0x0).@usn6.``!,Case When .9e1 In .1e-1 Then $7 =~01234567 =~12.0 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else $`7esn` In $@usn5 End.#usn8,(`2esn` {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`` $999)-[#usn8?:`8esn`|:#usn8 *999..123456789]->(`3esn` :usn2).#usn8.@usn5? Foreach(`5esn` In Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}]| Load Csv From 7 In 1e1 In {``} As `2esn` Fieldterminator \"d_str\") Load Csv From false[9e12] As `2esn` "), + octest_legacy:ct_string("Create Unique Allshortestpaths((`2esn` :_usn3{usn1:5.9e-12 Is Null Is Null})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(:`5esn`:`7esn`{`4esn`:2.9e1[{`2esn`}]})-[ *..123456789{@usn5:$`8esn`}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})),((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})) Create Unique usn1=((`` :`7esn`)) Foreach(@usn5 In Shortestpath(((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)))[..Any(#usn7 In .0e-0 In 12)]| Load Csv From [usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0|4.9e12 Is Not Null Is Not Null] =~Case {_usn3} In $#usn8 In $12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else 0[..{0}][..true] End =~Case Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else $_usn3 Starts With 010 End As #usn7 ) Union All Merge `5esn`=((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})) On Match Set (:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12}).`3esn`! =0x0[{`6esn`}..],_usn3+=Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`|.9e-12[.12e12..][0Xa..])[{#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}..],`4esn` ={`8esn`}[.0e0..][999..] Create Unique Shortestpath((@usn6 :@usn5)),@usn6=(({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)) Create (_usn4 :`6esn`)<-[`2esn` *7]->(`4esn` :@usn5),_usn3=(_usn3 :`1esn`:``{`8esn`:{#usn8} In {12} In .9e12})<-[?:`3esn`|`3esn` *999..123456789{_usn3:$`4esn`[$@usn6...12e12]}]->(usn1 {#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]})"), + octest_legacy:ct_string("Match ``=(#usn7 {#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})<-[@usn5?:#usn7|:@usn5]->(:`8esn`{`2esn`:0[..{#usn7}][..$_usn3],#usn8:.9e-1 Is Null Is Null})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}) Using Join On `4esn`,`5esn`,@usn6 Using Index usn2:`1esn`(`3esn`) Detach Delete [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,00[..@usn6] Union Load Csv From 12e12[usn2..$`6esn`] As usn2 Foreach(usn2 In (`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End]| Start _usn4=Relationship( {#usn8}) ,`4esn`=Node:usn2(usn1={_usn3}))"), + octest_legacy:ct_string("Create Unique (((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})-[`2esn`?:@usn6|:`4esn` *010..0{`4esn`:Null[$`3esn`..][`1esn`..],_usn3:6.0e0[$#usn7..$1000]}]-(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]}))) Unwind .9e12 Is Not Null Is Not Null As _usn3 Start usn1=Node:`2esn`({_usn3}) Where {usn1} Is Not Null"), + octest_legacy:ct_string("Drop Constraint On(usn1:`6esn`)Assert Exists(Reduce(`2esn`=$1000 Contains $123456789 Contains #usn8,`` In `7esn` =~#usn8 =~\"d_str\"|_usn4 Is Not Null Is Not Null).`4esn`)"), + octest_legacy:ct_string("Create Constraint On(@usn5:#usn8)Assert Exists(Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[10.12e12]|$usn2[..$999][..#usn8]).`6esn`!.#usn7!)"), + octest_legacy:ct_string("Merge (:``)-[`3esn`?:`1esn`|:`1esn`]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12}) On Create Set `8esn` =[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]] On Match Set @usn5:@usn5 Union All Create Unique ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})),``=Shortestpath((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) Start @usn5=Rel:`8esn`(usn1={#usn7}) ,``=Node:`7esn`({#usn7})Where 00[$``] Load Csv With Headers From Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] As usn1 Union All Create `4esn`=(({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)) Load Csv From $`8esn` Starts With {`7esn`} As `8esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Start @usn6=Relationship:`5esn`({0}) "), + octest_legacy:ct_string("Create Constraint On(`3esn`:`6esn`)Assert _usn3(Distinct .12e12 Is Not Null,.9e0[07..][4.9e12..]).`2esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`2esn`:`3esn`]->()Assert Exists(Reduce(#usn7=`1esn`[{@usn5}..][{_usn4}..],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|{usn2} Is Not Null Is Not Null).usn1)"), + octest_legacy:ct_string("Drop Constraint On()<-[#usn7:`6esn`]-()Assert Exists(usn1(Distinct 6.0e0[$#usn7..$1000],_usn4 Is Not Null Is Not Null).``?)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`1esn`)Assert Single(_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null).`4esn`? Is Unique"), + octest_legacy:ct_string("Delete 2.9e1 Ends With `5esn` Ends With 1000"), + octest_legacy:ct_string("Create Constraint On()<-[#usn8:`1esn`]-()Assert Exists({@usn6:$`` =~.1e-1}.usn1?)"), + octest_legacy:ct_string("Delete .1e-1[2.9e1..][$`7esn`..],$1000[..0e-0][..010] Create (#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null}) Unwind Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn`) Contains (`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) Contains Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}) As `8esn` Union All Return Distinct usn2[12e-12..{`8esn`}][.12e12..{123456789}] As #usn8,Case When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] When {123456789} Starts With $_usn4 Starts With 0x0 Then 9e0[`3esn`][0] End[{`3esn`:false Starts With 0 Starts With 2.9e1,@usn6:9e-12 Ends With {1000}}..{`8esn`:_usn3[{#usn7}]}] As usn1 Skip Allshortestpaths((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))[usn1..] Limit usn2 Ends With $123456789 Ends With {999} Load Csv With Headers From [`6esn` In 010[{`1esn`}..] Where $`4esn` Is Null Is Null][..Case $`8esn`[0x0][.9e0] When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null Else $usn1 =~.0e0 =~{`4esn`} End][..Case When $`6esn` =~$#usn7 =~$`4esn` Then 2.9e1[2.12..1.9e0] When {`3esn`}[#usn7] Then 2.12[`4esn`][.9e-1] End] As usn2 Merge ({`1esn`:$`8esn` Is Null Is Null,`1esn`:0.12 =~2.9e1 =~9e1}) On Create Set _usn3+=Count ( * ) =~123456789 =~{@usn5} Union All Return Distinct *,{`3esn`}[#usn7] As _usn3 Skip {usn2}[..{@usn6}][..@usn5] Limit All(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Delete Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[..None(#usn7 In .0e-0 In 12 Where 0xabc =~123456789)][..11.12e-12],12e12[{`4esn`}..`4esn`][999..{@usn6}] Detach Delete .9e12 Ends With #usn8 Ends With {#usn7},2.9e1[2.12..1.9e0],.0e-0 In 12"), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv With Headers From Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000 As `` Start `5esn`=Node:usn1(\"d_str\") Where $usn2 In #usn7 In #usn7 Remove Case $999 Is Not Null When 0e0 =~{12} =~{1000} Then $#usn8[$0..`3esn`][1e-1..$7] When `3esn` Contains 01 Contains 01 Then 9e-1 Contains 3.9e-1 Else ``[$#usn7] End.`7esn`!,_usn4:@usn5"), + octest_legacy:ct_string("Merge usn2=(@usn6 {usn1:0Xa In 1.0 In $@usn5})-[#usn8?:`8esn`|:#usn8 *999..123456789]->(`3esn` :usn2) Start ``=Node( {#usn7}) With 1.0 In {usn1} As `5esn` Limit Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12) Is Null"), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv From Filter(usn1 In $@usn6 Is Null Is Null Where {`3esn`}[#usn7]) Is Null Is Null As _usn4 Fieldterminator 's_str' Delete `4esn` =~usn1 =~Count(*) Optional Match Shortestpath((@usn6 :@usn5)) Where `3esn` Is Null Is Null"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:@usn6)Assert Exists(Any(`1esn` In $12 In {usn2} Where {usn1} Is Not Null).@usn6?.usn2?)"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`3esn`)Assert Exists(Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `6esn` Ends With 1e1 Ends With $#usn7).`8esn`!.`2esn`!.`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:_usn4)Assert (`` :``)-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]})<-[`4esn`?]-(:usn1{#usn8:2.9e1[{`2esn`}]}).`3esn`!.@usn6!.@usn6! Is Unique"), + octest_legacy:ct_string("Unwind @usn5[#usn7..] As usn1 With Distinct 0Xa Starts With 9e0 Starts With Count(*) Skip \"d_str\" Is Not Null Is Not Null Limit {`4esn`}[{`3esn`}][$`2esn`] Where 3.9e-1[{@usn6}..][01234567..] With $_usn3 Contains 1.0 Contains 0.12 As ``,0x0 Ends With #usn8 Ends With .9e-1 As _usn4 Order By 01234567 Ends With .0e0 Ends With 12e12 Ascending,usn1(Distinct {usn1}[7.0e-0..][3.9e-1..]) Asc,.0e-0[..01234567] Descending Union Optional Match #usn7=Shortestpath(({`5esn`:`1esn` In 010 In 1e-1})<-[?:@usn6|:`4esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]-(`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})) Using Scan `6esn`:#usn8 Using Scan #usn7:`8esn` Remove Allshortestpaths((_usn3 {#usn7:$999 =~false =~{`8esn`}})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})).#usn8,Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0).`8esn`! Load Csv With Headers From usn2[12e-12..{`8esn`}][.12e12..{123456789}] As _usn3 Fieldterminator 's_str' Union With 12e-12 Starts With $`7esn` As `5esn`,10.12e12[usn2] As _usn4,$999 Ends With `2esn` Ends With 12.0 As #usn8 Order By #usn8(Distinct 12e12[{`4esn`}..`4esn`][999..{@usn6}])[Any(`6esn` In 010[{`1esn`}..] Where {`3esn`}[_usn4][2.9e1])..{``:9e1[0.0]}] Descending,{`8esn`}[..`5esn`][..01] Asc,9e1 Starts With $`8esn` Starts With `3esn` Ascending Return Distinct *,9e1[12] As usn1 Limit 9.1e-1[..Null][..#usn8]"), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:``]-()Assert Exists((:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})-[`3esn`? *..07]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]})._usn4?)"), + octest_legacy:ct_string("Create Constraint On(_usn3:`1esn`)Assert {@usn6:$_usn3 Starts With 010}.`4esn` Is Unique"), + octest_legacy:ct_string("Start `2esn`=Rel:`6esn`(`4esn`=\"d_str\") ,`8esn`=Relationship:`8esn`(#usn7='s_str')Where 0e-0 In 0X0123456789ABCDEF In `3esn` Create _usn4=((:@usn5{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null})) Match `7esn`=Allshortestpaths((`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})<-[_usn3? *..123456789{`6esn`:.0e-0[..``][..$7],usn2:{usn2} Ends With {@usn6} Ends With 1000}]-(`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(#usn8 :_usn4:`2esn`{`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})) Using Index ``:@usn5(usn1) Using Scan `1esn`:_usn3"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`5esn`)Assert Case #usn7 Is Null Is Null When $`8esn` Is Null Is Null Then _usn4[{``}..{`6esn`}][$7..$_usn3] When {`3esn`}[999..$`4esn`] Then \"d_str\" In usn2 In $`7esn` End.``? Is Unique"), + octest_legacy:ct_string("Detach Delete {`1esn`} Contains 1.0 Contains 4.9e12,{999}[..`6esn`],{`3esn`} =~$`` =~$`8esn` Union Merge `8esn`=Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})) On Match Set Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where {0}[.1e-1..][_usn4..]).`6esn`.usn1.`7esn`? =0xabc Starts With `2esn` Starts With 10.12e12,`8esn` =[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]] Merge (#usn7 :@usn5)-[:`8esn`|:#usn8 *0X7..0Xa]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(_usn4 :`5esn`:`7esn`{_usn4:$_usn3[.0e-0..999]}) On Create Set usn2+=Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null),#usn8 =None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) Create (#usn7 :`6esn`{usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[`2esn`?:``|:`7esn` *1000..]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})"), + octest_legacy:ct_string("Merge Allshortestpaths((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})) Merge `7esn`=Shortestpath(((`6esn` :``)<-[`8esn`*]-(#usn8 )-[`3esn`?:`1esn`|:`1esn`]-(@usn6 :`4esn`:usn2))) On Match Set Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where .0e-0[..``][..$7]).``!.`8esn`? ={1000} Starts With {`1esn`},``:`1esn`:``,(#usn7 {usn1:2.12[{12}]})-[:usn1|usn2]->(`8esn` :`5esn`:`7esn`).@usn6! =false =~{`8esn`} =~00 On Match Set `7esn`+=Reduce(_usn3=5.9e-12 Is Null Is Null,_usn3 In `8esn`[_usn4]|2.9e1[Count ( * )..]) Is Null,#usn8 =0e0 Ends With .9e0 Ends With 01234567 Unwind `6esn`[0X0123456789ABCDEF..][`8esn`..] As _usn4"), + octest_legacy:ct_string("Foreach(`8esn` In $`5esn` Starts With 4.9e12 Starts With 0e-0| Create Unique `6esn`=(({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[_usn4? *999..123456789{@usn6:$`4esn` Ends With .12e12 Ends With 123.654}]->(#usn8 {usn2:$0 Ends With 9e-12 Ends With $_usn4,`5esn`:0e-0[{@usn6}]})-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]-(`1esn` :_usn4:`2esn`))) Remove Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0).`8esn`!,Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where .9e0 Ends With $0).``? Union Create ``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))),``=Allshortestpaths(((@usn6 :@usn5))) Create Unique (((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))),`4esn`=(((`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})-[?:_usn3]->(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})-[:`2esn`|`5esn` *01]-(@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0})))"), + octest_legacy:ct_string("Delete $7 In 1.0 In 01234567 Foreach(#usn8 In usn2 Starts With $usn1 Starts With 10.12e12| With {1000} Starts With 10.12e12 Starts With .0e-0 As `8esn`,Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) As _usn4 Skip Count ( * ) Starts With 0.12 Limit Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Create ``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0})))) Create Unique Shortestpath((:`7esn`{#usn7:$999 =~false =~{`8esn`}})-[:`6esn` *12{#usn7:`3esn` =~$#usn7,`8esn`:0e-0[{@usn6}]}]->(@usn5 :@usn6:_usn3)<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]-(usn2 :`5esn`:`7esn`{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})),`6esn`=((:#usn7:`8esn`{usn2:`1esn` =~{12} =~{999}})) Union With *,Extract(#usn8 In 07[..$`5esn`] Where $usn2[..$999][..#usn8]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )])[Case {#usn7}[.12e-12] When $`4esn`[$@usn6...12e12] Then .12e-12[@usn6..'s_str'] Else .12e-12 Starts With .12e-12 End..(`` :``)-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})][Reduce(`5esn`=Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|{usn2}[9e-1])..All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}])] As `8esn` Limit $`5esn`[..{0}][..7.0e-0]"), + octest_legacy:ct_string("Optional Match #usn7=((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})) Using Join On #usn8 Using Join On _usn4"), + octest_legacy:ct_string("Create Constraint On(_usn4:usn1)Assert Exists(Any(#usn8 In 07[..$`5esn`] Where .9e0[07..][4.9e12..]).`8esn`.`6esn`.`5esn`?)"), + octest_legacy:ct_string("Return Distinct *,Filter(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn` =~999 =~$999) In All(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]) In Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`) As `1esn` Order By 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] Asc Skip $_usn3 Contains 1.0 Contains 0.12 Union All Foreach(@usn5 In 01 Starts With 12 Starts With $`2esn`| Load Csv With Headers From $`8esn` Starts With {`7esn`} As #usn8 Fieldterminator \"d_str\") Start usn1=Rel:_usn4(@usn5={`4esn`}) ,`1esn`=Rel:`5esn`(@usn5=\"d_str\")Where @usn6[true..]"), + octest_legacy:ct_string("Drop Constraint On(@usn5:@usn5)Assert Exists([`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $`4esn`[usn2..]].`8esn`._usn4!)"), + octest_legacy:ct_string("Create Constraint On(usn1:`6esn`)Assert Exists([`` In `7esn` =~#usn8 =~\"d_str\" Where $`4esn` In {999}|{1000} Is Null].usn2!)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:#usn8)Assert Exists([_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|$7].@usn5!.usn2?)"), + octest_legacy:ct_string("Unwind {`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]} Contains Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 12e12 Ends With `5esn` Ends With .0e0) As usn1 Union All Merge Shortestpath((@usn5 :_usn4:`2esn`{@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})) Union All Delete `1esn`(Distinct) Contains All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 123.654 Ends With {1000} Ends With 9e12) Contains Case $0 Contains $7 When 9e0[`4esn`..$_usn4][9.1e-1..0e0] Then .1e1 Is Not Null Is Not Null When usn2[12e-12..{`8esn`}][.12e12..{123456789}] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else {usn1} In Count ( * ) In 12e12 End,{12} Ends With $`3esn` Ends With 0xabc,{0}[...9e1] Delete {``:$`8esn`[..5.9e-12][..`8esn`]}[[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .9e12[6.0e0..][@usn5..]|2.9e1[2.9e1..][`4esn`..]]..][Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End..],010[...12e-12] With Distinct Count ( * )[`5esn`..\"d_str\"][01234567..{1000}],$`8esn` Contains {@usn6} Contains `7esn`,5.9e-12[..9e0] As #usn8 Order By $`7esn` Contains .12e12 Ascending,Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where {7}[$@usn5..123456789][1e1..1.9e0]) Ends With (`3esn` :_usn3{@usn6:0.12 Is Not Null})-[#usn8:`5esn`]-({`6esn`:12[@usn6][{`2esn`}]}) Desc,$usn1[..$999][..0e0] Ascending Where $`6esn`[$_usn3..{1000}]"), + octest_legacy:ct_string("Create (@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})<-[#usn7?:_usn3 *999..123456789{@usn5:$12 In {usn2},usn1:5.9e-12 Is Null Is Null}]->(`` {`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654}) Match `6esn`=(:`3esn`{@usn5:9e12[..usn2][.._usn3]}) Using Scan `5esn`:usn1 Using Join On `5esn`,usn1,`7esn` Where $@usn5 Contains _usn3 Load Csv With Headers From #usn7({12} Starts With $`` Starts With 0X0123456789ABCDEF)[Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where .12e-12[9e1])..] As @usn5 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Load Csv From 12[11.12e-12..][`4esn`..] As @usn6 Union Remove Reduce(`3esn`={0} Is Not Null,`` In `7esn` =~#usn8 =~\"d_str\"|01234567[\"d_str\"..][$`4esn`..])._usn4.@usn6 Delete 2.9e1 Ends With 12e12 Ends With .9e12,{123456789} Contains $0,$12 Is Null Unwind [_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12] As _usn3 Union All Create `5esn`=((`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})-[ *..123456789{@usn5:1e-1[$`4esn`]}]->(#usn7 {usn1:2.12[{12}]})<-[`3esn`?*{`7esn`:.9e12 Contains 0 Contains $0}]->(:@usn5{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]})),Shortestpath((((`4esn` :`3esn`)<-[@usn5?*..]->(:_usn3{_usn3:010[..9e-1][..0X7]})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)))) Return Distinct $`` Ends With #usn7 Ends With _usn3 As _usn3,{@usn6:2.9e1[{`2esn`}],usn1:01 Contains 9e-12 Contains $7} Is Null Is Null As @usn6 Order By `6esn`[..$0][..{7}] Asc,Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null) In `4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`) Ascending,{123456789} =~@usn5 Asc Limit Single(_usn3 In `8esn`[_usn4] Where `3esn` Contains `2esn` Contains {_usn4}) In Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`) In {7} Create Unique Shortestpath(((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}))),usn2=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})))"), + octest_legacy:ct_string("Drop Constraint On()-[`4esn`:#usn8]->()Assert Exists(Case When 's_str'[`2esn`][12.0] Then `8esn`[_usn4] Else .12e12 Starts With 5.9e-12 Starts With `4esn` End.`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:``)Assert Exists(@usn5(Count ( * ) Starts With 0.12,$123456789).`6esn`?.`6esn`?)"), + octest_legacy:ct_string("Return Distinct *,$999 =~0e0 =~0X7 As `1esn` Skip {7} Is Not Null Create `6esn`=Shortestpath((((:`6esn`{`3esn`:9e12[..usn2][.._usn3]})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})<-[_usn4 *010..0{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}]-(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})))),Allshortestpaths((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})) With $usn1 Ends With {`2esn`} Ends With $usn1 Order By 123.654 Ends With {1000} Ends With 9e12 Descending,{`6esn`} Starts With 12e12 Starts With {`2esn`} Descending Union Start `2esn`=Relationship:_usn4(@usn6=\"d_str\") ,``=Node:``(`1esn`=\"d_str\")Where $`6esn`[..01][..{_usn3}] Remove Case usn1 Ends With 11.12e-12 Ends With 5.9e-12 When 01 Ends With .0e0 Ends With 7.0e-0 Then $`7esn` Starts With 's_str' Else true Is Null End.`5esn`!.`5esn`,Reduce(usn1=`7esn`[1.9e0..5.9e-12][9e0..@usn5],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$`` =~$_usn3).#usn7! Foreach(`7esn` In `1esn`[{usn1}..]| Remove None(#usn7 In .0e-0 In 12 Where `8esn`[.12e12..]).`5esn`!,Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0X0123456789ABCDEF Ends With {1000})._usn4?)"), + octest_legacy:ct_string("Drop Constraint On()<-[_usn4:@usn5]-()Assert Exists([#usn7 In .0e-0 In 12 Where 0xabc[..{usn1}][..\"d_str\"]|0.12 =~`6esn` =~.9e-1]._usn3?.@usn6!)"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:`1esn`]->()Assert Exists(Case When {`3esn`}[01234567][{#usn7}] Then $#usn8[$0..`3esn`][1e-1..$7] When #usn8[$`2esn`] Then 3.9e-1 Starts With .9e0 Starts With {#usn7} End.``)"), + octest_legacy:ct_string("Match #usn8=Allshortestpaths((usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[`3esn`:#usn8|:``{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}]->(:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})) Using Index `7esn`:``(`8esn`) Where {#usn7} =~$@usn6 =~$7 Unwind Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1) Starts With Case 7.0e-0[$`6esn`..] When \"d_str\"[0x0..{@usn6}][$@usn5..0] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else $`5esn`[{`4esn`}][{0}] End Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`) As @usn6 Load Csv From #usn8 =~{@usn5} As #usn8 Fieldterminator 's_str' Union All Load Csv With Headers From Shortestpath(((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(_usn3 :usn1)))[..{_usn4:.9e-1 Ends With .0e-0 Ends With {_usn3},_usn4:9e1 Ends With 9e12 Ends With 0x0}][..Reduce(#usn8=`8esn`[_usn4],`1esn` In $12 In {usn2}|$`4esn` Is Not Null)] As `1esn` Fieldterminator 's_str' Union Merge (((@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[`7esn`?:`2esn`|`5esn` *0]->({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000}))) Start _usn3=Node( {123456789}) Where {`3esn`}[$#usn8..] Delete $7 =~01234567 =~12.0,9e1 Starts With $@usn6 Starts With 0e-0"), + octest_legacy:ct_string("With *,$#usn8[$0..`3esn`][1e-1..$7] As `5esn`,(usn1 :usn1{#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[`3esn`?:_usn4|:`1esn`]->(`6esn` :`4esn`:usn2)[Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {@usn6} In 9e12)][(`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})] As #usn7 Skip $`4esn`[$@usn6...12e12] Limit Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]) Where 0e-0 In 0X0123456789ABCDEF In `3esn` Create Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}})) Create Unique Allshortestpaths(({`6esn`:8.1e1 Contains .9e-1 Contains false})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})),@usn6=((`` {_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})) Union All Create Unique `6esn`=((`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]})) With *,usn2($12 =~4.9e12) Ends With Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Ends With Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End,0Xa Starts With 9e0 Starts With Count(*) As `2esn` Order By 0e-0[..7.0e-0][..{`8esn`}] Ascending,$`` Ends With 1e-1 Ends With $@usn6 Desc Limit {#usn8} Starts With .1e-1 Starts With 9e1 Where 0e-0 In 0X0123456789ABCDEF In `3esn` Foreach(`5esn` In $`5esn` Is Null| Remove Single(`2esn` In $@usn5 Is Not Null Is Not Null Where {`3esn`} =~$@usn5 =~`2esn`).`4esn`! Create usn2=(`8esn` :usn2)-[:`1esn`|:`1esn` *0{`8esn`:2.12[{12}],`7esn`:$@usn6[``..][3.9e-1..]}]->(:`2esn`:`4esn`{usn2:$@usn6[.1e-1][9e12],`5esn`:12e12 Is Not Null Is Not Null}))"), + octest_legacy:ct_string("Foreach(`4esn` In 123.654 Contains true Contains 7.0e-0| Return `3esn` Starts With 9.1e-1 Starts With .9e-1 As `8esn`,Any(usn1 In $@usn6 Is Null Is Null)[Case {_usn3}[{0}...9e-1][9e-1...0e0] When 010[..9e-1][..0X7] Then $0 Ends With $usn1 Ends With {``} End..Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]})))] Skip 9e0[`1esn`..0e-0][00..`1esn`]) Delete {#usn7} Is Not Null Load Csv With Headers From Case 12.0[...0e0] When {#usn8}[..@usn5] Then `3esn` Is Null End Is Null Is Null As `5esn` Fieldterminator 's_str' Union All Create Allshortestpaths((((:`7esn`{usn2:00 Is Not Null Is Not Null})<-[`8esn`? *..123456789{@usn6:5.9e-12[\"d_str\"..][{`6esn`}..],`7esn`:{@usn5}[10.12e12..]}]->(:`3esn`{usn2:01234567[10.12e12][0Xa]})<-[ *1000..{`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]->(`` )))) Remove {usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}.#usn7?,All(`` In `7esn` =~#usn8 =~\"d_str\" Where {12} Starts With $`` Starts With 0X0123456789ABCDEF)._usn4?.`6esn` Load Csv From 3.9e-1[{@usn6}..][01234567..] As `7esn` "), + octest_legacy:ct_string("Detach Delete (`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3)[Case When 3.9e-1 Ends With {usn1} Ends With {`5esn`} Then 5.9e-12 Is Null Is Null When 9e1 Ends With 9e12 Ends With 0x0 Then .9e0 =~#usn7 Else 0 Starts With `7esn` Starts With 9e0 End..Filter(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null)],2.9e1 =~Count(*) =~{123456789},.12e12[..7] Union All Remove [`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn`[0X0123456789ABCDEF..][`8esn`..]].usn1,`8esn`:@usn6:_usn3 Merge @usn6=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) On Match Set usn2+=Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null),#usn8 =None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) With Distinct $`8esn`[{`2esn`}..11.12e-12][{`7esn`}..@usn5],{999} Contains $12 Contains 00 As usn2 Order By {`8esn`}[..`5esn`][..01] Asc,[@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..] Asc Where {#usn7} Is Not Null Union All Foreach(`7esn` In (:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 )[Extract(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..][(#usn8 :`4esn`:usn2)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})..]| Optional Match `5esn`=Shortestpath((({_usn3:.9e12 Contains 0 Contains $0}))),usn2=(`8esn` :@usn6:_usn3)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Where 010[...12e-12] Detach Delete 0X0123456789ABCDEF In .9e-1 In 123456789,`8esn`[0e-0.._usn3][Null..`6esn`]) Load Csv With Headers From 2.9e1[2.12..1.9e0] As `6esn` "), + octest_legacy:ct_string("Using Periodic Commit 0 Load Csv With Headers From `2esn` As `4esn` Fieldterminator 's_str' Remove Allshortestpaths((_usn3 {#usn7:$999 =~false =~{`8esn`}})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})).#usn8,Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0).`8esn`!"), + octest_legacy:ct_string("Unwind $`5esn`[..{0}][..7.0e-0] As `8esn`"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`7esn`)Assert Shortestpath(((:`1esn`:``{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`}))).`7esn`? Is Unique"), + octest_legacy:ct_string("With *,Allshortestpaths((_usn4 {`3esn`:.0e-0 In 12})) Is Null Is Null,{@usn6} Is Null As `5esn` Skip Shortestpath((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))[[`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`}[@usn5..{@usn6}]|{1000}[..`5esn`][..9e12]]..][{_usn4:`8esn`[.12e12..]}..] Where $12 Is Not Null Is Not Null Foreach(@usn5 In {`6esn`} Starts With 12e12 Starts With {`2esn`}| Load Csv With Headers From $`3esn` =~0x0 As usn1 Remove #usn7:`1esn`:``) Foreach(`4esn` In \"d_str\" In 7.0e-0| Delete Null[{999}..$usn2],{123456789}[...9e-1][..1.0]) Union Foreach(`3esn` In {`8esn`} Ends With true Ends With {`3esn`}| Create (`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})))) Unwind 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As `1esn` Union All Unwind (`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End] As `7esn` Start `4esn`=Rel:@usn5(_usn4='s_str') ,`4esn`=Node:@usn6(\"d_str\")"), + octest_legacy:ct_string("Detach Delete \"d_str\" Starts With .1e-1,Reduce(`2esn`=$@usn5[``..],`7esn` In 0.12 Is Not Null|$`4esn` Is Not Null) =~Any(_usn3 In `8esn`[_usn4] Where {`6esn`} In {_usn4} In $12) =~Reduce(`1esn`=false =~{`8esn`} =~00,`2esn` In $@usn5 Is Not Null Is Not Null|`1esn`[{@usn5}..][{_usn4}..]),{`2esn`:`5esn` Ends With Count(*)}[..`8esn`({#usn7}[.12e-12],$`` =~.1e-1)][..Allshortestpaths(((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})))] Foreach(usn1 In Single(_usn3 In `8esn`[_usn4] Where $_usn3[usn2..][usn1..])[{`6esn`:Count(*) =~01234567 =~.1e-1}..[usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]]]| Create ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),(`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})) Union Optional Match Shortestpath((`4esn` :_usn3)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})),#usn7=((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})) Using Join On @usn6,usn1,`5esn` Using Join On `2esn`,@usn5 Detach Delete `1esn`[Null][{@usn6}]"), + octest_legacy:ct_string("Delete 9e0 Is Null,1e-1 Ends With {@usn5} Ends With {usn2} Start `1esn`=Rel:`5esn`(@usn5=\"d_str\") ,usn1=Rel:`7esn`(`8esn`={`3esn`})Where {usn1} In Count ( * ) In 12e12 Start #usn8=Relationship:usn2(usn1={_usn3}) Union Start @usn5=Rel:#usn7(\"d_str\") ,`2esn`=Node(0X7,123456789,123456789,0X7)Where 999 Is Null Is Null Foreach(_usn4 In 1e1 Ends With $_usn3 Ends With .1e1| Detach Delete Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`) Is Null Is Null,6.0e0[$#usn7..$1000],$12 Is Not Null Is Not Null) Unwind `4esn`($@usn5[.9e-1],00[{1000}]) Ends With Reduce(`7esn`=0.0[00..][0xabc..],usn1 In {#usn7} =~.12e12 =~9e0|10.12e12 In Null In .12e12) As @usn6"), + octest_legacy:ct_string("Create Unique @usn6=(:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5}) Union All Foreach(usn2 In 1e-1[$#usn8]| Create Shortestpath(((usn2 :`4esn`:usn2)-[?:#usn7|:@usn5 *..00]-(:@usn5{`7esn`:01234567[\"d_str\"..][$`4esn`..]})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))),`2esn`=Shortestpath((@usn6 :@usn5)) Create `2esn`=Allshortestpaths((:`3esn`{@usn5:9e12[..usn2][.._usn3]})),``=Shortestpath((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[ *0X0123456789ABCDEF]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Optional Match (`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5) Using Index _usn3:usn2(`4esn`) Using Index @usn5:`3esn`(`8esn`) Where $0 Contains $123456789 Contains {`3esn`} Match ((`4esn` :`6esn`)<-[{``:7.0e-0 Is Not Null}]->(:#usn7:`8esn`{@usn5:{0} In {`1esn`}})-[``?{``:{#usn7} =~$@usn6 =~$7}]-(`3esn` :@usn5)) Using Index usn1:#usn8(``) Using Index @usn5:@usn5(_usn4)"), + octest_legacy:ct_string("Delete false,$`6esn`[@usn6...9e-12],$`4esn` Contains `4esn` Contains .0e-0 Return Distinct `7esn`[1.9e0..5.9e-12][9e0..@usn5] As `5esn`,#usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]),None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0) As usn2 Skip {`1esn`}[7.0e-0..9e-1][01234567..{`4esn`}] Limit Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where .0e-0 In 12|10.12e12 Contains .9e0) Contains (`` {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})-[usn2:#usn8|:``]->(:`3esn`{@usn5:9e12[..usn2][.._usn3]})<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains Any(usn1 In $@usn6 Is Null Is Null) With Distinct (`3esn` :#usn8:@usn6)<-[`8esn`? *..123456789{@usn6:5.9e-12[\"d_str\"..][{`6esn`}..],`7esn`:{@usn5}[10.12e12..]}]->(#usn7 :`7esn`)[None(usn2 In .12e-12 Ends With `2esn` Where `7esn`[1.9e0..5.9e-12][9e0..@usn5])..][usn1(`8esn`[.12e12..],usn2[12e-12..{`8esn`}][.12e12..{123456789}])..] As _usn4 Order By [_usn3 In `8esn`[_usn4] Where {#usn7} Starts With .1e-1|`3esn` Is Null] Contains `5esn`({#usn8} Ends With _usn3 Ends With `2esn`,.9e0 =~#usn7) Asc,{`5esn`}[{usn2}..$`1esn`] Descending Where 999 Is Null Is Null Union All Foreach(`3esn` In _usn3($`5esn`[$_usn3][$12])[None(#usn8 In 07[..$`5esn`])..][All(`` In `7esn` =~#usn8 =~\"d_str\" Where 12e12 Is Not Null Is Not Null)..]| Start usn2=Rel:`4esn`({7}) ) Union Start #usn7=Node:``('s_str') "), + octest_legacy:ct_string("Merge (#usn7 {#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})<-[@usn5?:#usn7|:@usn5]->(:`8esn`{`2esn`:0[..{#usn7}][..$_usn3],#usn8:.9e-1 Is Null Is Null})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}) Start `2esn`=Relationship(0) Where $12 Ends With 12.0 Ends With $`4esn` Return .9e0 Ends With $0 As @usn6,$0[1e1][12e-12] As _usn3 Skip .12e12 Is Not Null Limit 0e-0 In 0X0123456789ABCDEF In `3esn`"), + octest_legacy:ct_string("Using Periodic Commit 0 Load Csv From Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000 As `4esn` "), + octest_legacy:ct_string("Unwind $@usn5 =~{`3esn`} As `5esn` Union All Start #usn8=Relationship:``({7}) Union All Create Unique (({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`2esn` *7]->(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})),Allshortestpaths((:#usn7:`8esn`{`3esn`:0.12 In $``})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})<-[:#usn8|:`` *0]->({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})) Foreach(#usn7 In Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}])| Unwind 1e1 =~{@usn5} =~`7esn` As #usn8) Detach Delete 0.12[8.1e1..0Xa][Count ( * )..{_usn3}],7 Starts With `` Starts With usn2"), + octest_legacy:ct_string("Remove Shortestpath((({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))).@usn5.`1esn`?,{@usn5:{0} In {`1esn`}}.#usn7?.`4esn`!"), + octest_legacy:ct_string("Create Constraint On(`4esn`:`2esn`)Assert Exists(Allshortestpaths((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]}))).``!.`5esn`!.#usn8!)"), + octest_legacy:ct_string("Load Csv From _usn4['s_str'][8.1e1] As `` Union Optional Match `5esn`=Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))),#usn7=((`1esn` :`5esn`:`7esn`)) Using Index _usn4:`1esn`(@usn5) Where usn2[12e-12..{`8esn`}][.12e12..{123456789}] Union All With Distinct .1e-1[2.9e1..][$`7esn`..] As #usn8,Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Not Null Is Not Null As #usn8,07[9e-1..][1e1..] As `4esn` Skip {`4esn`} Contains 4.9e12 Match `2esn`=(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1}) Using Join On _usn3,usn2 Where Null With $#usn8[$0..`3esn`][1e-1..$7] As `5esn`,{0} Is Not Null As `` Limit $_usn3 In `2esn` In `3esn` Where _usn3[{#usn7}]"), + octest_legacy:ct_string("Using Periodic Commit 12 Load Csv From {123456789} Starts With `6esn` As @usn6 "), + octest_legacy:ct_string("Create Constraint On()-[`4esn`:#usn8]-()Assert Exists(`3esn`(Distinct $@usn5 Contains _usn3,{`1esn`} Contains 1.0 Contains 4.9e12).`2esn`!)"), + octest_legacy:ct_string("Delete 0X0123456789ABCDEF,$usn1 =~9e1 =~$1000,{``} Contains $1000 Remove [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 01234567[1000..][$`8esn`..]|.9e-1 Is Not Null Is Not Null].@usn5!.``?.usn2!,Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))).`5esn`?.`8esn`?.@usn5?,Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null).@usn6! Detach Delete Reduce(`6esn`=`2esn`[`7esn`][1000],usn2 In .12e-12 Ends With `2esn`|010[..9e-1][..0X7]) Contains `7esn` Contains Case When 9e1 Ends With 9e12 Ends With 0x0 Then {12} Ends With 1e1 Else `4esn` Contains 0X0123456789ABCDEF Contains $usn2 End Union Unwind Extract(`1esn` In $12 In {usn2} Where 12e12[{`4esn`}..`4esn`][999..{@usn6}])[None(#usn8 In 07[..$`5esn`] Where 01234567 Ends With .0e0 Ends With 12e12)..{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}][Reduce(#usn7=12[..$`5esn`],usn1 In $@usn6 Is Null Is Null|12e12 Ends With `5esn` Ends With .0e0)..[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 0.12 Is Not Null]] As `1esn` Foreach(`3esn` In Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Not Null Is Not Null| Unwind {usn1} Contains {`2esn`} As `8esn`) With *,Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null) As `2esn` Limit `4esn` Is Not Null Where $@usn6 Starts With 0xabc Starts With {`7esn`}"), + octest_legacy:ct_string("With *,Single(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1])[Case When 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] Then $#usn8 Is Not Null Is Not Null When \"d_str\" Starts With $`7esn` Starts With 999 Then \"d_str\"[0x0..{@usn6}][$@usn5..0] Else .0e-0[..01234567] End..] Order By {123456789} Starts With $_usn4 Starts With 0x0 Descending,9e-12 Ends With 9e1 Ends With 4.9e12 Ascending,$@usn6[.1e-1][9e12] Asc Load Csv With Headers From $`8esn` Contains _usn4 As #usn8 Union With Distinct 4.9e12 Starts With {``} Where $0 Ends With 9e-12 Ends With $_usn4 Union All Foreach(#usn8 In 9e12 Is Null| Unwind Allshortestpaths(((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}))) Is Null Is Null As usn2 Remove Filter(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12).`3esn`?.`7esn`?,Allshortestpaths((((`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})-[`8esn`:`4esn`|:`2esn`]->(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})))).`3esn`) Detach Delete [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End,8.1e1[$``] Remove (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)}).`8esn`.`3esn`?,@usn6:usn2"), + octest_legacy:ct_string("Create Constraint On(@usn5:`7esn`)Assert Exists((`3esn` {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(:`5esn`:`7esn`{`4esn`:2.9e1[{`2esn`}]})._usn3!)"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:`3esn`]->()Assert Exists(12.@usn5.``!.`8esn`)"), + octest_legacy:ct_string("Drop Constraint On(usn1:usn2)Assert Exists({``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}.`1esn`!.`6esn`?)"), + octest_legacy:ct_string("Remove [#usn7 In .0e-0 In 12 Where 0.0[00..][0xabc..]|0xabc[0Xa..]]._usn4.`1esn`!.`7esn`? Create @usn5=(`8esn` :#usn7:`8esn`) Merge @usn6=(({usn2:01[`4esn`..]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})-[`1esn`?:`3esn`|`3esn` *..00]-(`1esn` :usn2)) On Match Set `6esn`+=01[$`1esn`..$`7esn`][{usn2}..12.0],[usn1 In {#usn7} =~.12e12 =~9e0 Where $`4esn`[12e-12..$`1esn`][$`2esn`...9e12]|$`1esn`[4.9e12..][_usn3..]].#usn7 =9.1e-1[..Null][..#usn8] Union All Create (`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[{`3esn`:Count ( * )[_usn4..]}]->(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}),@usn5=Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]}))) Return Distinct *,$12 Is Null Is Null As #usn8 Skip {@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] Merge ``=Allshortestpaths(((`8esn` :@usn6:_usn3)-[#usn8? *0X7..0Xa{`7esn`:{123456789} Contains $0,#usn8:{`3esn`}[$#usn8..]}]-({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`}))) On Create Set `` =6.0e0[$12..0.12],#usn7+=7 In 1e1 In {``}"), + octest_legacy:ct_string("Load Csv With Headers From 0X0123456789ABCDEF In .9e-1 In 123456789 As _usn3 Load Csv With Headers From $`3esn` =~#usn8 =~0x0 As `3esn` Foreach(`3esn` In `5esn` Contains 0 Contains $12| Load Csv From [usn2 In .12e-12 Ends With `2esn` Where @usn5 In Null|false =~{`8esn`} =~00][Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where Count ( * ) =~123456789 =~{@usn5})..Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)] As @usn6 Remove usn1:@usn6:_usn3,Reduce(usn1=0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],#usn7 In .0e-0 In 12|{0} Is Not Null Is Not Null).`2esn`!.`4esn`!) Union Return Distinct _usn4[$_usn4] As _usn4,`3esn` Starts With 9.1e-1 Starts With .9e-1 As `8esn` Order By $`5esn`[{@usn6}..{`7esn`}] Ascending Skip [usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0|4.9e12 Is Not Null Is Not Null] =~Case {_usn3} In $#usn8 In $12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else 0[..{0}][..true] End =~Case Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else $_usn3 Starts With 010 End Create Shortestpath((_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})),Shortestpath(((@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})-[@usn5:`6esn` *..00]->(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Create ``=Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))) Union Detach Delete $@usn6[.1e-1][9e12] Remove count(Distinct 0e-0[..$usn2],12e12[{`4esn`}..`4esn`][999..{@usn6}]).`3esn`.`6esn`.`1esn`,[@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1|$`5esn` Ends With 's_str' Ends With $`6esn`].usn1?.#usn8?.usn1,{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1}.`3esn`!"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:`3esn`]->()Assert Exists(Any(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $usn1[..$999][..0e0]).`2esn`!)"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`8esn`)Assert All(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..]).usn2 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`3esn`:usn1)Assert Exists(Shortestpath(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})).#usn7.``)"), + octest_legacy:ct_string("Drop Constraint On()-[#usn8:usn1]->()Assert Exists(Case #usn8 Is Null Is Null When $1000[..0e-0][..010] Then 010 Starts With 9e12 Starts With 1000 End.`8esn`!)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:``)Assert {#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}._usn4! Is Unique"), + octest_legacy:ct_string("Optional Match #usn8=Allshortestpaths((usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})),Allshortestpaths((:``{usn1:`4esn` Is Not Null})-[ *01{usn1:false[..usn2][..999]}]-(_usn3 )) Using Join On `1esn`,@usn6,usn1 Load Csv With Headers From Reduce(`3esn`=2.12[`4esn`][.9e-1],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{`8esn`} In {_usn3} In 6.0e0)[`3esn`(Distinct)..[`` In `7esn` =~#usn8 =~\"d_str\" Where $`4esn` In {999}|0e-0[$``..10.12e12]]][Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`6esn`} =~2.12 =~123.654|{`8esn`} Contains $@usn5)..`5esn`(Distinct $`7esn` Ends With 7.0e-0 Ends With $usn2)] As #usn8 With .0e-0 Ends With $`2esn` Ends With `5esn`,Case {`4esn`} Ends With Count(*) When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] When $#usn7 Contains 3.9e-1 Then 123.654[10.12e12..$12][6.0e0..{#usn8}] Else $usn1[0e0...9e-12] End[Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))..][Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})..] As `2esn`,true In 0.0 As @usn5 Order By 0 Ends With .0e-0 Ends With false Descending,Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where .9e1[$`1esn`..][$``..]) Ascending,Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] Asc Limit [`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..])"), + octest_legacy:ct_string("Start `2esn`=Relationship:@usn5({`4esn`}) Where 07 Ends With $_usn3 Ends With $#usn8"), + octest_legacy:ct_string("Unwind Single(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str') =~{``:01234567[10.12e12][0Xa]} As @usn6"), + octest_legacy:ct_string("Create Constraint On(_usn3:`7esn`)Assert Reduce(`6esn`={`8esn`}[..999][.._usn3],`3esn` In 8.1e1 Contains .9e-1 Contains false|{123456789} Ends With 11.12e-12 Ends With 00).`8esn`!.#usn7!.``! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:@usn5)Assert Exists(@usn6(Distinct 0e0 Contains {`2esn`}).`7esn`.`3esn`?._usn4?)"), + octest_legacy:ct_string("Start @usn5=Node:``(`1esn`=\"d_str\") Where {`2esn`} Contains 0xabc Return Distinct `1esn` In 6.0e0 In 12 Limit {12} Starts With 01 Starts With $1000"), + octest_legacy:ct_string("Foreach(`6esn` In Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}]| Return Distinct 00[..@usn6] As `6esn`,{`3esn`}[...1e1][..0],Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null As `2esn` Skip $usn2 Ends With 9e12 Ends With Count ( * ) Limit 0xabc Starts With {`3esn`} Starts With {``}) Start `1esn`=Node( {`8esn`}) Union Merge usn1=({`1esn`:01 =~{_usn3} =~01,`8esn`:{#usn7} Ends With 999 Ends With 12})-[_usn4]-(#usn8 )-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}) Remove Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where .9e0 =~#usn7).`3esn`,`7esn`:`8esn` Remove Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where 2.12[{12}]|$`4esn` Contains `4esn` Contains .0e-0).``,None(usn1 In {#usn7} =~.12e12 =~9e0 Where {`1esn`} Is Null).#usn8!.``?._usn3!,Case 0X0123456789ABCDEF[1e1..] When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] End.@usn6!.`` Union Return {`8esn`}[@usn5][$`2esn`],$`6esn` In 999 In {_usn3},Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] As _usn4 Order By $12 Is Not Null Desc,`7esn`[1.9e0..5.9e-12][9e0..@usn5] Asc Skip $`5esn` Is Not Null Match `7esn`=Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)),`8esn`=Allshortestpaths((((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(#usn7 :`8esn`)))) Start `2esn`=Rel( {_usn3}) ,_usn3=Relationship(0x0)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:``)Assert Exists(Shortestpath((((:`1esn`:``{`8esn`:5.9e-12[0x0..]})-[?:`1esn`|:`1esn` *999..123456789]-(usn2 :@usn6:_usn3)<-[_usn4:`2esn`|`5esn` *7{`2esn`:999 Ends With {#usn8},#usn8:.12e12 Is Not Null}]-(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})))).`7esn`)"), + octest_legacy:ct_string("Create Constraint On(`2esn`:`5esn`)Assert Exists(Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 999 Starts With 7.0e-0 Starts With true).@usn5?)"), + octest_legacy:ct_string("Match ({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`}) Using Scan @usn5:usn1 Using Scan `4esn`:`1esn` Where usn2 Starts With $usn1 Starts With 10.12e12 Optional Match `4esn`=(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0}) Where 2.9e1 Ends With `5esn` Ends With 1000"), + octest_legacy:ct_string("Drop Constraint On(_usn3:_usn4)Assert None(usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null).#usn8! Is Unique"), + octest_legacy:ct_string("Return Count(*) Starts With {usn2} Starts With `2esn` As `3esn`,0.12 Ends With 7 Ends With 12,`5esn`({`5esn`}[01234567..][5.9e-12..],5.9e-12 Is Null Is Null)[Reduce(#usn7={12} Ends With $`3esn` Ends With 0xabc,usn1 In $@usn6 Is Null Is Null|`1esn`[Null][{@usn6}])..@usn5(`3esn` Contains `2esn` Contains {_usn4},2.9e1 In {``})][Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789}))..Any(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`)] As usn2 Order By $#usn7[$``..999][$usn2..$usn2] Ascending,{usn1:12[..$`5esn`]}[None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..])] Ascending,0.12 =~2.9e1 =~9e1 Ascending Skip [usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1][Shortestpath((({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})))..Shortestpath(((:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12})-[``?:#usn7|:@usn5{``:$usn1 Ends With {`2esn`} Ends With $usn1}]->(:`5esn`:`7esn`$usn2)-[{#usn8:\"d_str\" Contains {@usn6}}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12})))] Limit Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where Count ( * ) Starts With 0.12|{`3esn`} =~$`` =~$`8esn`) Ends With Case {`5esn`} Is Not Null Is Not Null When {``} Is Null Is Null Then {usn2} Ends With {@usn6} Ends With 1000 When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Union All With Distinct $`` =~.1e-1,#usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]),$999 Ends With `2esn` Ends With 12.0 As #usn8 Limit \"d_str\" In 7.0e-0 Where {`3esn`}[999..$`4esn`] Create Unique ((`1esn` :`8esn`)<-[:usn1|usn2]-(`` :`4esn`:usn2)<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``)),Allshortestpaths(({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)})) Union Remove (`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[?:@usn5|:#usn7 *0]->(_usn3 {`2esn`:5.9e-12[0x0..]}).usn2?"), + octest_legacy:ct_string("Unwind Shortestpath((_usn3 :usn2{`2esn`:$@usn5[.9e-1]})<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5))[Allshortestpaths((#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}))] As `1esn` Union All Load Csv With Headers From $`1esn`[9e0..$12] As #usn7 Fieldterminator \"d_str\""), + octest_legacy:ct_string("With {`2esn`}[0x0..9e0] As `6esn`,{`8esn`} Ends With true Ends With {`3esn`} As `2esn` Skip {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null) Where 2.9e1 Ends With `5esn` Ends With 1000 Create `2esn`=(:@usn6:_usn3),(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})<-[`1esn`:#usn7|:@usn5 *..123456789]-({#usn7:{7}[0x0][1e1]}) Union All Merge usn1=Shortestpath((`1esn` :`7esn`{usn1:3.9e-1 Starts With .9e0 Starts With {#usn7}})<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`6esn` :`4esn`:usn2)-[`1esn`]-(`2esn` :`2esn`:`4esn`{#usn7:0 Starts With `7esn` Starts With 9e0})) On Match Set `1esn`+=[_usn3 In `8esn`[_usn4] Where {#usn7} Starts With .1e-1|`3esn` Is Null] Contains `5esn`({#usn8} Ends With _usn3 Ends With `2esn`,.9e0 =~#usn7),@usn6 =[`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0|{`4esn`} In 1000 In {@usn5}] Is Null,{`1esn`:$999 Is Not Null}.`6esn`? =Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) On Match Set `6esn`+=\"d_str\" Starts With ``,[usn1 In \"d_str\" Contains {@usn6} Where $`8esn`|$usn1 =~.0e0 =~{`4esn`}].`4esn`! =.9e0 Is Not Null,usn2 =Case When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else {123456789} Starts With `6esn` End =~Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where `4esn` Contains 0X0123456789ABCDEF Contains $usn2) =~Allshortestpaths((`7esn` :``{usn2:$7})) Merge Shortestpath(((:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})-[?:`4esn`|:`2esn`{usn1:{123456789} Starts With `6esn`,@usn5:9e1 Ends With 9e12 Ends With 0x0}]-(`2esn` :usn1))) On Create Set `3esn`+=12 Ends With 12e12,usn1+=Case 0e-0[$``..10.12e12] When $usn2 In #usn7 In #usn7 Then \"d_str\" In usn2 In $`7esn` When {`3esn`}[_usn4][2.9e1] Then `6esn` =~999 =~$999 End Ends With None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn5 Starts With #usn7) Ends With [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0X0123456789ABCDEF Ends With {1000}|Count ( * )[_usn4..]],`1esn` =0x0 Contains 7.0e-0 On Match Set `6esn` =(`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Is Not Null Is Not Null"), + octest_legacy:ct_string("Foreach(_usn3 In 5.9e-12 =~{12} =~{`2esn`}| Optional Match `4esn`=Allshortestpaths((_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})) Using Join On usn1,usn2 Using Join On usn1) Load Csv From Allshortestpaths((`4esn` :`3esn`)-[`3esn`?:`1esn`|:`1esn`]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})) Is Not Null Is Not Null As `5esn` Fieldterminator \"d_str\" Union Create `5esn`=(:`4esn`:usn2)-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})-[:`1esn`|:`1esn` *0{`8esn`:2.12[{12}],`7esn`:$@usn6[``..][3.9e-1..]}]-(#usn8 :@usn5) Union Remove ({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}).#usn8? Unwind ({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})-[`8esn`?:_usn3]->(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Ends With {_usn3:{123456789} Starts With `6esn`} Ends With {usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]} As _usn4"), + octest_legacy:ct_string("Drop Constraint On()-[`3esn`:_usn3]-()Assert Exists({`5esn`:$usn1[9e1][{999}]}.#usn7?)"), + octest_legacy:ct_string("Load Csv With Headers From 2.9e1[2.12..1.9e0] As `6esn` Unwind {@usn5} As `5esn` Create Unique (({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})),`2esn`=(((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}))) Union Create Unique Allshortestpaths((:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[`7esn`?:`7esn`|usn1 *1000..{@usn6:#usn7 In 07,#usn8:$999[usn1..0e-0]}]->(#usn8 :`5esn`:`7esn`{usn2})-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})) Union Remove {usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}.#usn7!,Any(#usn7 In .0e-0 In 12 Where {`6esn`}[6.0e0..9e0][.9e1..12e12]).`6esn`?.`2esn`? Match (:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[_usn3?:`5esn`*..]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}),`1esn`=Shortestpath((:usn2{`6esn`:9e12[..usn2][.._usn3],`1esn`:01[`6esn`..][0e0..]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})) Using Index @usn5:`4esn`(usn1) Where $`` =~$_usn3 Start `4esn`=Rel:usn2(#usn7='s_str') ,`3esn`=Node:`6esn`(#usn7={_usn4})Where 9e12 Ends With \"d_str\" Ends With 0X7"), + octest_legacy:ct_string("Remove All(usn1 In $@usn6 Is Null Is Null Where _usn4 Is Not Null Is Not Null).`7esn`!.@usn5? Union Load Csv From .0e0 =~Case $`6esn` Starts With 0.0 When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] End =~All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}]) As #usn8 Match ((#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]})<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})) Using Index usn2:@usn6(@usn6) Create Unique Shortestpath(((@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})<-[? *999..123456789]->(@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1}))),Allshortestpaths((_usn3 {#usn7:$999 =~false =~{`8esn`}})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})) Union Delete $@usn5 Starts With #usn7,999 Starts With 7.0e-0 Starts With true,{`8esn`}[..999][.._usn3]"), + octest_legacy:ct_string("Using Periodic Commit 07 Load Csv With Headers From usn2[..$0][..`3esn`] As `` Foreach(`7esn` In {123456789} =~.9e1 =~$_usn3| Start @usn6=Node:`2esn`(#usn7={`4esn`}) With *,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null,{#usn8} Ends With _usn3 Ends With `2esn` Order By $`6esn`[{`4esn`}..][{#usn8}..] Ascending,$#usn8 Starts With 9.1e-1 Starts With {#usn7} Asc Skip Case When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 Else $12 Is Not Null Is Not Null End Starts With usn1(Distinct .9e1[$`1esn`..][$``..]) Starts With Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End)"), + octest_legacy:ct_string("Unwind _usn4[{`3esn`}][00] As _usn3 Union Merge ((:`1esn`:``{`8esn`:5.9e-12[0x0..]})) On Create Set #usn7 =usn1 =~false =~{999},Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}).`2esn`! =9e12 Is Null Is Null,`2esn`+=Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`}) Ends With Shortestpath(((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))) Ends With Reduce(_usn3=$`4esn` Is Null Is Null,usn2 In $`5esn`[{`4esn`}][{0}]|9e-1 Contains 3.9e-1) On Create Set `3esn` =$7[.1e-1..{@usn6}][$7..{`1esn`}],None(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {0}[.1e-1..][_usn4..]).usn2 =$`7esn` In $`4esn`,usn1+=$`4esn` Ends With {999} Union All Return *,$123456789[..$999][..`6esn`] As @usn5,Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 01 =~07)[Case 9e-12 Ends With 9e1 Ends With 4.9e12 When `3esn` =~$#usn7 Then $@usn5 Starts With #usn7 When {`4esn`}[{`3esn`}][$`2esn`] Then #usn7[$`8esn`][{`3esn`}] Else 9e0[`4esn`..$_usn4][9.1e-1..0e0] End][[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]] Skip @usn5[9e-1..{`1esn`}] Limit 11.12e-12 Contains usn1 Load Csv From false =~{`8esn`} =~00 As `7esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Using Periodic Commit 12 Load Csv From #usn7(Distinct $`8esn`[..5.9e-12][..`8esn`],{`3esn`}[01234567][{#usn7}]) =~Case When {`8esn`} Starts With .9e-1 Starts With 1000 Then $`6esn`[$_usn3..{1000}] When 3.9e-1 Starts With .9e0 Starts With {#usn7} Then .0e-0 Ends With $`2esn` Ends With `5esn` Else _usn4[$_usn4] End =~Single(#usn7 In .0e-0 In 12 Where #usn7[123.654][{12}]) As `1esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Return 01234567[1000..][$`8esn`..],Count ( * ) Is Not Null Is Not Null As _usn3,3.9e-1[..$1000][..0.12] As `` Limit {999} =~$`6esn` =~$`6esn` Unwind #usn7 In 07 As ``"), + octest_legacy:ct_string("Create Constraint On(@usn6:`3esn`)Assert [@usn6 In 9e12[..usn2][.._usn3]|$1000[_usn4][{@usn5}]].#usn8 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`5esn`)Assert Exists(All(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn5 Starts With #usn7)._usn4!)"), + octest_legacy:ct_string("Merge #usn7=(`8esn` :`7esn`)-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``) On Create Set None(`2esn` In $@usn5 Is Not Null Is Not Null Where {#usn8}[..@usn5]).usn2 =`1esn` In 6.0e0 In 12,`4esn`:_usn4:`2esn` On Create Set Single(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where `4esn` Ends With 9e12 Ends With {`5esn`})._usn3?.@usn6!.#usn8 =0[..12][..{`8esn`}],#usn8 =.1e1 In $999 In {#usn8},_usn3 =[usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]|{12} Contains `8esn` Contains @usn5] Contains Shortestpath(((({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(@usn6 :@usn5)-[`2esn`? *7{`5esn`:false[..usn2][..999]}]-(`4esn` :@usn6:_usn3)))) Contains (:usn1{#usn8:$`8esn` Is Not Null Is Not Null,`5esn`:3.9e-1 Starts With .9e0 Starts With {#usn7}})-[:#usn8|:`` *..07{@usn5:01234567[\"d_str\"..][$`4esn`..],`6esn`:$usn1 Ends With {`2esn`} Ends With $usn1}]-(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[? *0X7..0Xa]->(`1esn` )"), + octest_legacy:ct_string("Create Constraint On(`2esn`:usn2)Assert {`5esn`:`3esn` Starts With 9.1e-1 Starts With .9e-1}._usn3 Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[_usn4:`5esn`]-()Assert Exists(Extract(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).@usn5!)"), + octest_legacy:ct_string("Merge usn1=Allshortestpaths(((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) On Create Set `5esn`+=Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] Detach Delete Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})[Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})<-[`5esn`?:`7esn`|usn1{@usn5:9e0[`3esn`][0]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )))..][Case When $#usn7 Contains 3.9e-1 Then .12e12 Starts With 5.9e-12 Starts With `4esn` When {1000}[`2esn`...0e-0][9e-1..0X7] Then 010[...12e-12] End..]"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:`5esn`]->()Assert Exists({@usn5:`5esn` Ends With Count(*),usn1:$12[$@usn5]}.usn2!)"), + octest_legacy:ct_string("Detach Delete $`5esn`[$_usn3][$12],.1e1 Ends With #usn7 Ends With {#usn7} Union All Merge `1esn`=Allshortestpaths(((:usn1{`6esn`:$_usn3[usn2..][usn1..],#usn7:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}))) On Create Set `7esn`+={`3esn`} =~$@usn5 =~`2esn` On Match Set {#usn8:$#usn7[01..2.12][2.12..3.9e-1],``:.9e0[$#usn8][Count ( * )]}.usn2! =Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]) Is Not Null Is Not Null Load Csv With Headers From 0e0 Contains {`2esn`} As `2esn` Fieldterminator \"d_str\" Merge `6esn`=(`4esn` :_usn3)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}) On Create Set @usn5 =Count(*)[$7] On Create Set usn1:`6esn`,{`7esn`:{#usn7}[.12e-12]}.@usn6!.#usn7?.`6esn`! ={12} Contains `8esn` Contains @usn5 Union All Merge `6esn`=(({`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654})-[$#usn8]->({usn2:01[`4esn`..]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1})) On Match Set `5esn` =({`4esn`:#usn8[\"d_str\"..usn2],`1esn`:12.0[..Count ( * )][..@usn6]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ) =~Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End =~{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} On Match Set @usn5 =$@usn5[`8esn`][12e12] Foreach(usn2 In Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Null Is Null| With Distinct *,$`1esn`[4.9e12..][_usn3..],Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End =~{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]} Order By Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) Descending,5.9e-12[01][`4esn`] Descending,[`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] Descending Skip Count(*) Is Not Null Is Not Null Limit 12e-12 =~$_usn3 Where false Contains {`7esn`} Create @usn6=(#usn7 {usn1:2.12[{12}]}))"), + octest_legacy:ct_string("Create Constraint On()-[@usn6:`3esn`]-()Assert Exists(Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where 3.9e-1 Starts With .9e0 Starts With {#usn7}).#usn8!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:``)Assert ({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]})-[:`6esn` *12{#usn7:`3esn` =~$#usn7,`8esn`:0e-0[{@usn6}]}]->(usn1 :#usn7:`8esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})-[``? *..00{@usn5:$`8esn` =~{`1esn`} =~$7,#usn7:.12e-12 Starts With .12e-12}]->({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}).usn2! Is Unique"), + octest_legacy:ct_string("Detach Delete (@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(:`6esn`{`2esn`:`5esn` Ends With Count(*)})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12}) In Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}) In Single(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str') Union All With $0 In {`5esn`:.9e-1 Contains .9e0 Contains ``} In {`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12} As `7esn`,.9e0 Ends With $0 As @usn6 Limit $`5esn` In $12 In `2esn` Union Create ((:#usn7:`8esn`{@usn5:{0} In {`1esn`}})),((`3esn` :#usn8:@usn6))"), + octest_legacy:ct_string("Create Constraint On()-[@usn5:`3esn`]->()Assert Exists(All(#usn7 In .0e-0 In 12 Where 123.654 Ends With {1000} Ends With 9e12).`6esn`.`6esn`?)"), + octest_legacy:ct_string("Create Constraint On()-[`3esn`:_usn4]-()Assert Exists({usn2:\"d_str\" Starts With ``}.`7esn`!)"), + octest_legacy:ct_string("Start _usn4=Relationship:@usn6(\"d_str\") Where 07[{@usn5}..] Union All Unwind \"d_str\" In usn2 In $`7esn` As @usn6 Remove Filter(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12).`3esn`?.`7esn`?,Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0xabc[01234567][.12e-12]).`8esn`,Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`]).usn1 Union Load Csv From None(usn1 In \"d_str\" Contains {@usn6} Where $`5esn` =~Count(*) =~1.9e0) In [_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]] As @usn5 Fieldterminator \"d_str\" Start `4esn`=Rel:#usn8(usn2='s_str') "), + octest_legacy:ct_string("Create Constraint On()<-[_usn4:`1esn`]-()Assert Exists((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]})-[_usn4*{`3esn`:{``} Is Null Is Null}]-({`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}).`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`8esn`)Assert Case 01[`6esn`..][0e0..] When {0}[`4esn`..{`8esn`}] Then \"d_str\" In usn2 In $`7esn` When `8esn`[_usn4] Then $`4esn`[usn2..] End.#usn7! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`4esn`)Assert Allshortestpaths(((`1esn` :#usn8:@usn6{usn1:#usn8 Is Null Is Null,_usn3:{`4esn`} In 1000 In {@usn5}})<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654}))).`3esn`.@usn6? Is Unique"), + octest_legacy:ct_string("Return usn2[..$0][..`3esn`],{``:01234567[10.12e12][0Xa]} Is Null Is Null As #usn7,false Contains {`7esn`} Skip 0.0[$`4esn`] Limit (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])] Union All Detach Delete .12e12 Ends With 07 Ends With 3.9e-1 Foreach(usn2 In usn2[12e-12..{`8esn`}][.12e12..{123456789}]| Unwind {`7esn`}[0.12] As `6esn` Match `2esn`=Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}}))) Where $123456789[..$999][..`6esn`]) Union Load Csv With Headers From Shortestpath((`6esn` :``)) Contains Case When $@usn6[``..][3.9e-1..] Then 7[..123456789][..true] When `4esn` Contains 0X0123456789ABCDEF Contains $usn2 Then 12e12[{`4esn`}..`4esn`][999..{@usn6}] End As `6esn` Fieldterminator 's_str' Unwind {`8esn`}[9e12..][{_usn4}..] As #usn8"), + octest_legacy:ct_string("With @usn6[Reduce(`5esn`=_usn4['s_str'][8.1e1],_usn3 In `8esn`[_usn4]|$_usn3 =~'s_str' =~12)..][(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[`7esn`?]-(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})..],9e0 In {usn2} In {@usn6} As `8esn` Skip {#usn8:$`6esn`[..01][..{_usn3}]} Starts With Shortestpath(((`1esn` :`8esn`)-[`7esn`?:`2esn`|`5esn` *0]->(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))) Limit Single(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`)[(#usn7 {`2esn`:`8esn`[.12e12..],_usn3:usn1 =~0Xa =~0})<-[? *1000..]->({usn1:true In 0.0,@usn5:{`1esn`} Is Null})-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0})][Reduce(`2esn`=.9e0[07..][4.9e12..],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$``[9e0..][5.9e-12..])] Where {`4esn`} Ends With Count(*) With Distinct (`2esn` :`4esn`:usn2{`8esn`:.9e-1 Contains .9e0 Contains ``,_usn4:8.1e1 Contains .9e-1 Contains false})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}) Is Null Is Null As `1esn`,00 Is Not Null Is Not Null As `6esn`,{`5esn`} Ends With $`7esn` Ends With {@usn5} Order By {@usn6} =~Count ( * ) =~1.0 Desc,$`6esn` Contains All(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) Descending,`6esn`[0X0123456789ABCDEF..][`8esn`..] Ascending Limit None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Contains (`8esn` :@usn6:_usn3{_usn4:{#usn7} =~$@usn6 =~$7})<-[`1esn`? *0{usn2:.9e12[6.0e0..][@usn5..]}]->(usn2 :@usn6:_usn3)-[usn1:#usn7|:@usn5 *999..123456789]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7}) Where 4.9e12[{_usn4}..] Delete `1esn` Ends With 0.0 Ends With {`1esn`},Single(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Is Not Null Union With Distinct $7 In 1.0 In 01234567,.12e12[$`1esn`..0x0] As `4esn` Order By Filter(#usn7 In .0e-0 In 12 Where #usn7[123.654][{12}])[[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]..Reduce(`1esn`=`2esn`,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|.9e0 =~#usn7)] Desc,{0} =~{999} Desc,$999 =~0x0 Desc Skip `1esn`[..$1000] Limit 0e-0[#usn7..999]"), + octest_legacy:ct_string("Drop Constraint On()<-[`8esn`:`4esn`]-()Assert Exists({`6esn`:12[@usn6][{`2esn`}]}.@usn5!)"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:``]-()Assert Exists(Single(#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0).usn1)"), + octest_legacy:ct_string("Foreach(@usn6 In {`1esn`}[{usn2}]| Load Csv From All(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Ends With Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789 Is Not Null Is Not Null|{`8esn`}[@usn5][$`2esn`]) Ends With (#usn8 :`5esn`:`7esn`{usn2})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )-[_usn4? *..0x0{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null}) As `` Fieldterminator 's_str') Remove _usn4(Distinct).`6esn`?.`4esn`?,Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 999 Starts With 7.0e-0 Starts With true).``? Merge Allshortestpaths(((@usn6 :`5esn`:`7esn`)-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)-[`3esn`:`6esn` *..0x0]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}))) On Match Set `2esn`+=9e1[0.0],#usn8+=.12e-12[@usn6..'s_str'],{`6esn`:4.9e12 Is Not Null Is Not Null,_usn4:`4esn`[9e-12..true]}.#usn8._usn3? =Shortestpath((((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))))[None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0.0[`7esn`])..Single(usn1 In {#usn7} =~.12e12 =~9e0 Where @usn6[true..])][`5esn`(Distinct .9e1[$`1esn`..][$``..])..Case When 12e12 Ends With `5esn` Ends With .0e0 Then .9e0 In 8.1e1 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else .9e1 Ends With 0x0 End] On Create Set @usn6+=00 =~`4esn` =~.9e-12,`3esn` =$123456789,[usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF].`5esn`! =.0e-0 Ends With $`2esn` Ends With `5esn`"), + octest_legacy:ct_string("Drop Constraint On(#usn7:usn2)Assert Exists(Extract(usn2 In .12e-12 Ends With `2esn` Where $`4esn` Ends With .12e12 Ends With 123.654|0X7 Is Not Null Is Not Null).usn1?)"), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv With Headers From 4.9e12[{_usn4}..] As _usn4 Fieldterminator \"d_str\" Foreach(`8esn` In {1000}[`2esn`...0e-0][9e-1..0X7]| Load Csv From usn2(Distinct $_usn3 =~'s_str' =~12) In (`` :usn1)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}) In Case When {_usn4}[{`6esn`}] Then 12e12 Is Not Null Is Not Null When #usn7 Is Null Is Null Then {`8esn`} Starts With .9e-1 Starts With 1000 End As usn2 ) Unwind 01 =~{_usn3} =~01 As _usn4"), + octest_legacy:ct_string("Start #usn8=Node(7,0X7,0,01) ,#usn8=Relationship:_usn4(@usn6=\"d_str\") Start `6esn`=Rel(7,0X7,0,01) ,@usn5=Rel:usn1({usn2})Where 11.12e-12 Ends With 's_str' Union Remove usn2(.9e-12[usn2]).``,[@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e0 In 8.1e1|9e-1 Is Not Null].`4esn`? Union With Distinct [`1esn` In $12 In {usn2} Where $`8esn` Is Not Null Is Not Null|8.1e1 Contains $@usn6] In All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..]) In Extract(`7esn` In 0.12 Is Not Null Where .12e-12[@usn6..'s_str']) As @usn6,1.9e0 =~.0e0 =~0X7 As @usn6,{`3esn`}[$#usn8..] Order By $`` =~.1e-1 Asc,9e1[..@usn5][..$`5esn`] Descending,$#usn7 Ends With 999 Ends With {12} Descending Skip 3.9e-1 Contains 2.9e1 Contains `5esn` Where 01 Contains 9e-12 Contains $7 Merge `6esn`=(`4esn` :_usn3)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}) On Create Set @usn5 =Count(*)[$7] On Create Set usn1:`6esn`,{`7esn`:{#usn7}[.12e-12]}.@usn6!.#usn7?.`6esn`! ={12} Contains `8esn` Contains @usn5"), + octest_legacy:ct_string("Delete @usn5[#usn7..],(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]-(:_usn3{_usn3:010[..9e-1][..0X7]}) Starts With Case When $1000 Starts With {@usn6} Starts With $@usn5 Then `2esn` When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else 12[4.9e12..] End Starts With (_usn4 {`3esn`:.0e-0 In 12})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc}) Union All Foreach(`2esn` In `6esn` =~999 =~$999| Detach Delete Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789)[..All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 1e1 =~{@usn5} =~`7esn`)][..Case 07[..$`5esn`] When 00[$_usn4][$`1esn`] Then {#usn7}[.12e-12] Else `5esn` Contains 0 Contains $12 End] Create Shortestpath(((`4esn` {`6esn`})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})))) Foreach(_usn3 In {usn1:12[..$`5esn`]}[None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..])]| Create Unique #usn8=Allshortestpaths((:usn1{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`))) Union All Return {12}[6.0e0..{usn2}][{_usn3}..{#usn7}] As _usn4,usn1 =~0Xa =~0 As @usn5 Limit $usn2 Ends With 9e12 Ends With Count ( * )"), + octest_legacy:ct_string("Start `2esn`=Rel( {``}) Where .9e1[$`1esn`..][$``..]"), + octest_legacy:ct_string("With Distinct * Where $123456789[{usn1}][.12e-12]"), + octest_legacy:ct_string("Match `3esn`=((_usn4 :_usn4:`2esn`{`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[_usn4]-(#usn8 )) Using Join On ``,`4esn`,_usn4 Unwind .12e-12[@usn6..'s_str'] As `7esn` Return Distinct 0xabc[..Count(*)][..$`5esn`],{12} Ends With 1e1 As `8esn`,{`4esn`} In 1000 In {@usn5} Order By {7} Ends With 999 Asc,_usn3 =~{`4esn`} Desc Skip [`1esn` In $12 In {usn2} Where 12e-12 Starts With $`7esn`][{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}..] Union All Load Csv From Reduce(`6esn`=$`5esn`[$_usn3][$12],`2esn` In $@usn5 Is Not Null Is Not Null|1.9e0 In $@usn6 In $_usn3)[{``:.12e-12 Is Null}..][Case When $1000 Starts With {@usn6} Starts With $@usn5 Then `2esn` When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else 12[4.9e12..] End..] As #usn7 Create (((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})))"), + octest_legacy:ct_string("Load Csv With Headers From [usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0|4.9e12 Is Not Null Is Not Null] =~Case {_usn3} In $#usn8 In $12 When 9e12 Ends With 9e-1 Ends With 9e1 Then {`4esn`}[00..] Else 0[..{0}][..true] End =~Case Count ( * )[`5esn`..\"d_str\"][01234567..{1000}] When $_usn3 =~'s_str' =~12 Then .12e12[..$123456789] Else $_usn3 Starts With 010 End As `3esn` Match `8esn`=((@usn6 :@usn6:_usn3)),Allshortestpaths((((:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})-[`7esn`:`1esn`|:`1esn` *0Xa..12]-(`8esn` :`7esn`)<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})))) Using Scan #usn7:`3esn` Using Index `6esn`:`3esn`(``)"), + octest_legacy:ct_string("Create Constraint On(#usn8:`8esn`)Assert Exists(Reduce(`8esn`={0}[`4esn`..{`8esn`}],#usn8 In 07[..$`5esn`]|12e12 Contains {0}).`5esn`!.`6esn`)"), + octest_legacy:ct_string("Delete `8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End,Any(_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12)[(`5esn` :`8esn`{`1esn`:{`8esn`} Starts With .9e-1 Starts With 1000,@usn5:10.12e12 In Null In .12e12})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})..],Reduce(#usn7=$usn1 Ends With {`2esn`} Ends With $usn1,`6esn` In 010[{`1esn`}..]|.9e-12[.12e12..][0Xa..])[#usn7(8.1e1 Contains $@usn6,$12[$`6esn`..][01..])..Reduce(@usn5=`1esn` In 6.0e0 In 12,`` In `7esn` =~#usn8 =~\"d_str\"|$`6esn` =~$#usn7 =~$`4esn`)] Merge `1esn`=Shortestpath((({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[`8esn`*]->(#usn7 :#usn7:`8esn`))) On Match Set `3esn`(Count ( * )[_usn4..],`2esn`).usn1!._usn4 =`1esn` In 010 In 1e-1,Any(#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null).`2esn`! =Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))) Is Not Null Is Not Null,usn2+=8.1e1[$``] Union Return usn2[12e-12..{`8esn`}][.12e12..{123456789}] As #usn8,Case When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] When {123456789} Starts With $_usn4 Starts With 0x0 Then 9e0[`3esn`][0] End[{`3esn`:false Starts With 0 Starts With 2.9e1,@usn6:9e-12 Ends With {1000}}..{`8esn`:_usn3[{#usn7}]}] As usn1 Skip Allshortestpaths((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))[usn1..] Limit usn2 Ends With $123456789 Ends With {999}"), + octest_legacy:ct_string("Load Csv From `4esn`($@usn5[.9e-1],00[{1000}]) Ends With Reduce(`7esn`=0.0[00..][0xabc..],usn1 In {#usn7} =~.12e12 =~9e0|10.12e12 In Null In .12e12) As `5esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Merge @usn5=(usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[?$999]-(`4esn` {#usn7:$usn1[0e0...9e-12]})-[:`5esn` *01234567..{`2esn`:{usn1} Contains {`2esn`},#usn7:`4esn`[9e-12..true]}]-(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null}) On Create Set #usn8:`8esn` On Create Set #usn7+={_usn4} Ends With {0} Ends With `1esn`"), + octest_legacy:ct_string("With $123456789[{usn1}][.12e-12] As `3esn`,1.9e0 =~.0e0 =~0X7 As #usn7,9e1 Ends With 9e12 Ends With 0x0 As #usn8 Order By $@usn5 Is Null Is Null Ascending,`1esn` Is Not Null Is Not Null Desc Limit {`8esn`} Ends With true Ends With {`3esn`} Where $usn1[9e1][{999}] Unwind @usn5[#usn7..] As usn1 Create ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})),`6esn`=(usn1 :#usn8:@usn6) Union All Delete [usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]][`5esn`(Distinct $@usn5[`8esn`][12e12])..][``(Distinct $1000 Is Null,1e-1[$`4esn`])..],$`4esn` Is Null Is Null Create Unique ((:@usn5{`1esn`:$999 =~0e0 =~0X7})<-[usn2:_usn3 *0xabc..12]-(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]})<-[{usn1:$_usn3 Starts With 010}]-(_usn3 :usn1)),(usn2 :@usn5{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}) Detach Delete `7esn`[1.9e0..5.9e-12][9e0..@usn5]"), + octest_legacy:ct_string("Create Constraint On()-[usn1:usn2]-()Assert Exists(Reduce(#usn8=1e1 Ends With $_usn3 Ends With .1e1,`7esn` In 0.12 Is Not Null|true[1.9e0..]).`7esn`)"), + octest_legacy:ct_string("Return Distinct *,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) As #usn8,Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``}) In (_usn4 :_usn3)<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-({#usn7:12e12[.9e12..07]}) In @usn5({1000}[0..]) Unwind .1e-1 Is Not Null As `3esn`"), + octest_legacy:ct_string("With Distinct 0e0 Is Null Is Null As `2esn`,{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]} In Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}))) In Extract(_usn3 In `8esn`[_usn4] Where 0[..{#usn7}][..$_usn3]|0x0 Ends With #usn8 Ends With .9e-1) As ``,$`6esn` In 999 In {_usn3} As usn2 Order By 010 =~9.1e-1 =~{`8esn`} Desc Skip false[9e12] Limit 0e-0[..7.0e-0][..{`8esn`}] Union Remove None(@usn6 In 9e12[..usn2][.._usn3] Where 01[`4esn`..]).#usn8?,Case When `5esn` Contains 0 Contains $12 Then true In 0.0 Else 9e12 Ends With \"d_str\" Ends With 0X7 End._usn4,0.0.@usn6!"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`4esn`)Assert Exists(Reduce(_usn3={123456789}[...9e-1][..1.0],@usn6 In 9e12[..usn2][.._usn3]|\"d_str\" Is Not Null Is Not Null).@usn6?)"), + octest_legacy:ct_string("Return Reduce(#usn7=#usn8[\"d_str\"..usn2],#usn7 In .0e-0 In 12|`` Ends With 1.0 Ends With usn1) Ends With [_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3]] Ends With Shortestpath((((:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[`2esn`?:`8esn`|:#usn8]->(`` )<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)))),Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As usn1 Limit Case Null[#usn7..][9.1e-1..] When 12.0[..Count ( * )][..@usn6] Then {0} In {`1esn`} When 4.9e12 Starts With {``} Then $`8esn` Is Null Is Null Else $#usn7 Contains 3.9e-1 End Contains None(#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null) Contains [usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]] Detach Delete $`5esn`[..{0}][..7.0e-0],`8esn` Contains usn2,usn2[12e-12..{`8esn`}][.12e12..{123456789}] Optional Match `4esn`=(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0}) Where 2.9e1 Ends With `5esn` Ends With 1000 Union Start `3esn`=Node:#usn8(usn2='s_str') Where $`6esn` =~$#usn7 =~$`4esn` Merge #usn7=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 ))) On Create Set #usn8:`8esn` On Match Set `8esn`+=Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null],@usn5+=Reduce(@usn6=0X0123456789ABCDEF Ends With {1000},usn1 In $@usn6 Is Null Is Null|.0e0 =~0 =~.0e0) Starts With None(`6esn` In 010[{`1esn`}..] Where _usn4 Ends With {`8esn`} Ends With usn2) Starts With Case When 01234567 Ends With .0e0 Ends With 12e12 Then @usn6 Starts With #usn7 Else .12e12 Ends With 07 Ends With 3.9e-1 End,#usn7 =$_usn3[0X0123456789ABCDEF..][0x0..] Optional Match #usn8=(`6esn` :`4esn`:usn2),(((:`3esn`)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))) Using Join On `5esn`,`8esn`,#usn7 Where $12[10.12e12][.1e1] Union All Foreach(`6esn` In 9e-12[{`1esn`}..]| Optional Match Shortestpath(((`7esn` {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))) Using Join On `2esn`,`6esn` Using Join On `4esn`,`2esn`,`` Where #usn8 Is Null Is Null) Start @usn5=Rel:`8esn`(usn1={#usn7}) ,usn1=Node:usn1(usn2='s_str')Where .12e12[..$123456789] Delete $@usn6 Is Null,{`1esn`} Is Null,{@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null)"), + octest_legacy:ct_string("Using Periodic Commit 0Xa Load Csv From {0} Is Null Is Null As `5esn` Fieldterminator 's_str' Unwind _usn4 As _usn3 Detach Delete \"d_str\" Starts With .1e-1,Reduce(`2esn`=$@usn5[``..],`7esn` In 0.12 Is Not Null|$`4esn` Is Not Null) =~Any(_usn3 In `8esn`[_usn4] Where {`6esn`} In {_usn4} In $12) =~Reduce(`1esn`=false =~{`8esn`} =~00,`2esn` In $@usn5 Is Not Null Is Not Null|`1esn`[{@usn5}..][{_usn4}..]),{`2esn`:`5esn` Ends With Count(*)}[..`8esn`({#usn7}[.12e-12],$`` =~.1e-1)][..Allshortestpaths(((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})))]"), + octest_legacy:ct_string("With *,Extract(#usn8 In 07[..$`5esn`] Where $usn2[..$999][..#usn8]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )])[Case {#usn7}[.12e-12] When $`4esn`[$@usn6...12e12] Then .12e-12[@usn6..'s_str'] Else .12e-12 Starts With .12e-12 End..(`` :``)-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})][Reduce(`5esn`=Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|{usn2}[9e-1])..All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}])] As `8esn` Limit $`5esn`[..{0}][..7.0e-0]"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`4esn`)Assert Exists(Case 6.0e0[$#usn7..$1000] When 1e-1 =~$`7esn` =~1e1 Then {`1esn`} Is Null When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] Else Null In {7} End.`8esn`)"), + octest_legacy:ct_string("Drop Constraint On(usn2:`3esn`)Assert Exists(@usn6(Distinct)._usn4?.usn2?)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:usn2)Assert Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..]).@usn5 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn8:@usn6)Assert Exists(Reduce(``=`2esn`[`7esn`][1000],usn2 In $`5esn`[{`4esn`}][{0}]|{123456789} Ends With 11.12e-12 Ends With 00).@usn5._usn3.@usn5)"), + octest_legacy:ct_string("Foreach(usn1 In 4.9e12 Is Not Null Is Not Null| Unwind Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[..None(#usn7 In .0e-0 In 12 Where 0xabc =~123456789)][..11.12e-12] As @usn5) Start usn2=Node:`2esn`(_usn4={#usn7}) ,`5esn`=Rel:`6esn`(`4esn`='s_str')Where 12[..$`5esn`] Remove Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[01234567][{#usn7}]|00 =~`4esn` =~.9e-12).`5esn`.`3esn`! Union All Delete $12 Contains 's_str',`4esn` Ends With 9e12 Ends With {`5esn`},$1000[_usn4][{@usn5}] Start @usn5=Relationship:_usn3({`7esn`}) Union Foreach(_usn3 In {usn2} Ends With {@usn6} Ends With 1000| Load Csv With Headers From 123.654[..999] As `8esn` Fieldterminator \"d_str\") Match (`8esn` :@usn6:_usn3)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})-[`3esn`? *..07]-(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}) Using Index `5esn`:#usn8(_usn3) Where 9e-12 Is Not Null Is Not Null Create ({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})<-[_usn3? *0xabc..12]->(_usn3 {#usn7:$999 =~false =~{`8esn`}})"), + octest_legacy:ct_string("Create Constraint On()-[_usn4:`7esn`]->()Assert Exists(Single(`6esn` In 010[{`1esn`}..] Where usn2[12e-12..{`8esn`}][.12e12..{123456789}]).#usn8?)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`7esn`)Assert None(`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`}[@usn5..{@usn6}]).@usn6.usn1? Is Unique"), + octest_legacy:ct_string("Foreach(`8esn` In `6esn` =~999 =~$999| Match (((`7esn` :usn1)<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})<-[`3esn`?:@usn6|:`4esn`]-(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))),``=((:_usn4:`2esn`{@usn5:1e-1[$`4esn`]})<-[? *0]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})) Using Scan ``:`1esn`) Unwind Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) As `4esn` Union All Foreach(`4esn` In .0e-0[..01234567]| Start _usn3=Relationship(0x0) ,``=Relationship( {@usn5})Where 0Xa In 1.0 In $@usn5 With Distinct {`6esn`} Starts With {`5esn`} Starts With 2.9e1 As _usn3,Case #usn8 Is Null Is Null When {`1esn`} Contains 1.0 Contains 4.9e12 Then 7 Is Null Is Null End[..Reduce(usn2=1.0 Is Null Is Null,`3esn` In 8.1e1 Contains .9e-1 Contains false|{`6esn`} =~2.12 =~123.654)][..{`3esn`:Count ( * )[_usn4..]}] As #usn8 Where 9e-1 Contains 3.9e-1)"), + octest_legacy:ct_string("Drop Constraint On()<-[`2esn`:_usn4]-()Assert Exists(Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0|$#usn7 Starts With $123456789)._usn3!)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:#usn8)Assert Exists(Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 999 Starts With 7.0e-0 Starts With true).`2esn`)"), + octest_legacy:ct_string("Load Csv With Headers From (`1esn` {`2esn`})-[@usn6:`3esn`|`3esn` *0X7..0Xa]->(_usn4 :#usn8:@usn6)[Allshortestpaths((`3esn` :`6esn`{_usn3:.12e-12 Ends With `2esn`,usn1:Null[#usn7..][9.1e-1..]})-[_usn3?:@usn5|:#usn7]->(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]}))][Filter(usn2 In .12e-12 Ends With `2esn` Where 0.12 =~2.9e1 =~9e1)] As @usn6 "), + octest_legacy:ct_string("Create Constraint On(`2esn`:`6esn`)Assert Exists((:#usn7:`8esn`{@usn5:{0} In {`1esn`}})<-[$#usn8]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]})<-[`3esn`?:`6esn`{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(:`1esn`:``{`8esn`:5.9e-12[0x0..]}).``?)"), + octest_legacy:ct_string("Load Csv With Headers From $`1esn`[4.9e12..][_usn3..] As `2esn` Fieldterminator 's_str' Detach Delete $`8esn` Contains _usn4,[usn1 In \"d_str\" Contains {@usn6} Where 5.9e-12[0x0..]|4.9e12 Ends With $@usn6] =~(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) =~(`3esn` :#usn8:@usn6)-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[:`2esn`|`5esn` *01]-({@usn6:{_usn4} In 0X7 In 0e0}),``(Distinct $1000 Is Null,1e-1[$`4esn`])[None(_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3])][[usn1 In \"d_str\" Contains {@usn6} Where 5.9e-12[0x0..]|4.9e12 Ends With $@usn6]] Match `2esn`=(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1}) Using Join On _usn3,usn2 Where Null"), + octest_legacy:ct_string("With $`5esn`[{@usn6}..{`7esn`}] As `2esn`,`8esn`[.12e12..],'s_str'[`3esn`..0x0] As @usn5 Order By Shortestpath(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2)))[[`` In `7esn` =~#usn8 =~\"d_str\"|{@usn6} =~Count ( * ) =~1.0]..Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $``[9e12..])] Asc Skip `3esn` Is Null Union With $`5esn` =~Count(*) =~1.9e0 As @usn6,.9e12[6.0e0..][@usn5..],07[9e-1..][1e1..] As `4esn` Order By Reduce(`1esn`=#usn7[$`8esn`][{`3esn`}],#usn8 In 07[..$`5esn`]|7[{`4esn`}..]) =~Case 3.9e-1[..$1000][..0.12] When 0.12 Is Not Null Then $`` =~$_usn3 Else 1e-1 =~$`7esn` =~1e1 End Desc,{usn1} Desc Skip ({`4esn`:#usn8[\"d_str\"..usn2],`1esn`:12.0[..Count ( * )][..@usn6]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ) =~Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End =~{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Limit ``(Distinct $1000 Is Null,1e-1[$`4esn`])[..{`8esn`:{`3esn`}[..{`4esn`}][..usn2]}]"), + octest_legacy:ct_string("Foreach(usn2 In 9e0[..{#usn7}][..`4esn`]| Start _usn4=Relationship:usn2({usn1}) ,_usn4=Relationship:`4esn`(\"d_str\")) Union Create (({usn1:#usn7[.9e0..`3esn`][{`6esn`}..1000],_usn4:$usn2 In #usn7 In #usn7})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[``? *0Xa..12{@usn5:01 Ends With .0e0 Ends With 7.0e-0,_usn3:0.0[00..][0xabc..]}]-(`7esn` :`7esn`)),`4esn`=Allshortestpaths(((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null}))) Detach Delete $`8esn` =~{`1esn`} =~$7,010[{7}..][{`1esn`}..] Union Load Csv With Headers From $@usn5[.9e-1] As `7esn` Return Distinct $#usn7 Contains 3.9e-1,{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}} Starts With Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999|$`1esn`[..12e-12][...9e12]) Starts With (`4esn` :`8esn`{12})<-[`2esn`?:`4esn`|:`2esn`]-(`4esn` {`8esn`:5.9e-12[0x0..]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}) Skip {@usn6:{7} Starts With 0x0 Starts With 9e1}[Reduce(`5esn`=$999 Ends With `2esn` Ends With 12.0,_usn3 In `8esn`[_usn4]|_usn3 =~{7} =~123.654)..None(usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-1[1.9e0])] Limit Allshortestpaths(((#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[@usn6?{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}))) In All(`` In `7esn` =~#usn8 =~\"d_str\" Where {#usn7} =~$@usn6 =~$7) In Case When 999[..$@usn5][..``] Then {#usn8} In {12} In .9e12 When $0 Ends With $usn1 Ends With {``} Then 4.9e12 Ends With $@usn6 Else 0[..{0}][..true] End"), + octest_legacy:ct_string("Create Constraint On()<-[_usn4:``]-()Assert Exists(Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0).@usn5?)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:``)Assert Exists(Case When .9e1 In .1e-1 Then $7 =~01234567 =~12.0 When $usn2[..$999][..#usn8] Then #usn7 Contains .0e0 Contains $@usn6 Else $`7esn` In $@usn5 End.#usn8)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:usn2)Assert Exists({@usn6:{123456789} Starts With `6esn`}.`2esn`?)"), + octest_legacy:ct_string("Using Periodic Commit 0X0123456789ABCDEF Load Csv From 0x0[{`6esn`}..] As usn1 Fieldterminator 's_str'"), + octest_legacy:ct_string("Create Unique (((`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(`3esn` $0)<-[usn2:#usn8|:``]->(`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0}))) Remove Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]).`6esn`!,Allshortestpaths((:`3esn`{usn2:01234567[10.12e12][0Xa]})).`1esn`? Union All Create Unique _usn4=((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})),`4esn`=(({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)) Detach Delete $usn1[..$999][..0e0],`4esn`[9e-12..true],{@usn5} Contains .1e1 Contains {`5esn`} Union All Load Csv From Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}] As @usn6 Fieldterminator 's_str'"), + octest_legacy:ct_string("Unwind Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) As @usn6 Union All Optional Match (({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})) Using Index usn1:#usn7(usn1) Remove Reduce(`3esn`={0} Is Not Null,`` In `7esn` =~#usn8 =~\"d_str\"|01234567[\"d_str\"..][$`4esn`..])._usn4.@usn6"), + octest_legacy:ct_string("Create Unique `8esn`=(({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})) Return Distinct `4esn`[12.0..][9.1e-1..] As `4esn`,true In 0.0 As `5esn` Order By $7 In 1.0 In 01234567 Ascending,@usn5 =~$#usn7 =~{usn1} Ascending Skip #usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Union Create Shortestpath(((({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(_usn4 :`1esn`:``{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}})-[?:@usn5|:#usn7 *0]->({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})))) Start _usn4=Relationship( {#usn8}) ,`4esn`=Node:usn2(usn1={_usn3}) Optional Match (((`8esn` :`5esn`:`7esn`{usn1:{``} Contains 0.0 Contains `4esn`})-[`2esn`?:`4esn`|:`2esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]->(@usn5 {`8esn`:123456789[#usn7..9e-1][10.12e12..{0}],@usn6:1.0 Is Not Null})-[#usn8?:usn2*..]->(:``{usn2:00 Is Not Null Is Not Null}))) Using Join On #usn8,_usn3,`6esn` Using Join On `1esn`,usn1,`7esn`"), + octest_legacy:ct_string("Merge ``=((:`7esn`{`1esn`:$`8esn` Is Null Is Null,`1esn`:0.12 =~2.9e1 =~9e1})-[:#usn8|:``*{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]->(:``{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) On Match Set Reduce(`4esn`=.12e12[..$123456789],usn1 In $@usn6 Is Null Is Null|2.9e1 Ends With `5esn` Ends With 1000).#usn7.usn1 =Count(*)[@usn5..],_usn3 =0.12 Ends With 7 Ends With 12 On Create Set (:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}).usn2 =Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] Delete Filter(@usn6 In 9e12[..usn2][.._usn3] Where 1.9e0[..0][.._usn3]) Ends With {`6esn`:9e12 Ends With \"d_str\" Ends With 0X7,`3esn`:0X0123456789ABCDEF[1e1..]} Ends With Reduce(@usn5=`` Contains {`6esn`} Contains 123456789,`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|00[$``]),12.0 Starts With 00,Case #usn8 Is Null Is Null When {`1esn`} Contains 1.0 Contains 4.9e12 Then 7 Is Null Is Null End[..Reduce(usn2=1.0 Is Null Is Null,`3esn` In 8.1e1 Contains .9e-1 Contains false|{`6esn`} =~2.12 =~123.654)][..{`3esn`:Count ( * )[_usn4..]}]"), + octest_legacy:ct_string("Return *,Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789)[..All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 1e1 =~{@usn5} =~`7esn`)][..Case 07[..$`5esn`] When 00[$_usn4][$`1esn`] Then {#usn7}[.12e-12] Else `5esn` Contains 0 Contains $12 End],1.0 Is Null Is Null Order By [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End Ascending,{`7esn`}[0.12] Descending Skip Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12])[Reduce(@usn5=1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$0 Ends With 9e-12 Ends With $_usn4)..] Detach Delete $#usn7 Contains 3.9e-1 Match ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})),`6esn`=(usn1 :#usn8:@usn6) Union All Match (((`7esn` :usn1)<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})<-[`3esn`?:@usn6|:`4esn`]-(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))),``=((:_usn4:`2esn`{@usn5:1e-1[$`4esn`]})<-[? *0]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})) Using Scan ``:`1esn` Merge Shortestpath(((:_usn3{_usn3:010[..9e-1][..0X7]}))) On Match Set `3esn`+=Case .12e-12 Is Null When Count ( * )[_usn4..] Then 7.0e-0 Is Not Null When 2.12[{12}] Then {usn2} Ends With {@usn6} Ends With 1000 End[Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..])][({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})],_usn4+=Single(_usn3 In `8esn`[_usn4] Where $_usn3[usn2..][usn1..])[{`6esn`:Count(*) =~01234567 =~.1e-1}..[usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]]],`2esn`+=0X0123456789ABCDEF In false Union All Unwind 's_str'[`2esn`][12.0] As `4esn`"), + octest_legacy:ct_string("Merge @usn6=((`1esn` :`8esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})) On Create Set {usn1:{123456789} Starts With $_usn4 Starts With 0x0,`3esn`:$`4esn` Is Null Is Null}.`7esn`?.`7esn`?.#usn7 =1.9e0 In 2.12,Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where {0}[.1e-1..][_usn4..]).`6esn`.usn1.`7esn`? =12e-12 Ends With $999 Ends With ``,Extract(#usn8 In 07[..$`5esn`] Where 123.654 Ends With {1000} Ends With 9e12|$usn1[..$999][..0e0])._usn3! ={1000} Starts With {`1esn`} On Match Set `7esn`+=Reduce(_usn3=5.9e-12 Is Null Is Null,_usn3 In `8esn`[_usn4]|2.9e1[Count ( * )..]) Is Null,#usn8 =0e0 Ends With .9e0 Ends With 01234567 Union All Start `8esn`=Relationship:`7esn`({`4esn`}) Where 's_str'[`2esn`][12.0] Load Csv From {_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}[Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)][[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1]] As `5esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Drop Constraint On(@usn6:``)Assert Single(`6esn` In 010[{`1esn`}..] Where {`3esn`} Is Not Null Is Not Null)._usn4 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`2esn`)Assert Exists(Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $`4esn`[usn2..]|{`6esn`}[6.0e0..9e0][.9e1..12e12]).`2esn`)"), + octest_legacy:ct_string("Create Constraint On(`1esn`:_usn4)Assert Reduce(`7esn`={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],@usn6 In 9e12[..usn2][.._usn3]|10.12e12[usn2])._usn4! Is Unique"), + octest_legacy:ct_string("Using Periodic Commit 0X0123456789ABCDEF Load Csv With Headers From Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As `` Fieldterminator \"d_str\" Load Csv From $`8esn`[..5.9e-12][..`8esn`] As `` Fieldterminator 's_str' Detach Delete [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..],{123456789} Contains $#usn7 Contains {#usn8}"), + octest_legacy:ct_string("Remove Shortestpath(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})).`7esn`?,All(`1esn` In $12 In {usn2} Where {`3esn`}[..0xabc][..{`6esn`}]).`8esn`? Create Unique Shortestpath((_usn4 :usn2)-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})),Shortestpath(((@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})-[@usn5:`6esn` *..00]->(`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Foreach(@usn6 In {`1esn`}[{usn2}]| Load Csv From All(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Ends With Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789 Is Not Null Is Not Null|{`8esn`}[@usn5][$`2esn`]) Ends With (#usn8 :`5esn`:`7esn`{usn2})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )-[_usn4? *..0x0{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null}) As `` Fieldterminator 's_str') Union Optional Match `1esn`=((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})),`7esn`=Allshortestpaths(((:`7esn`)<-[#usn7?:_usn3 *999..123456789{@usn5:$12 In {usn2},usn1:5.9e-12 Is Null Is Null}]->(`` {`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654})-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:`8esn`{#usn8:2.9e1[2.12..1.9e0],#usn8:@usn6[true..]}))) Using Scan `4esn`:`1esn` Using Join On _usn4,usn1,`` Where 4.9e12 Ends With $@usn6"), + octest_legacy:ct_string("Merge Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))) On Match Set `6esn` =.1e-1[$@usn6],#usn7 =7.0e-0 Is Not Null On Create Set `1esn`+=[_usn3 In `8esn`[_usn4] Where {#usn7} Starts With .1e-1|`3esn` Is Null] Contains `5esn`({#usn8} Ends With _usn3 Ends With `2esn`,.9e0 =~#usn7),@usn6 =[`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0xabc Starts With 12 Starts With 0e-0|{`4esn`} In 1000 In {@usn5}] Is Null,{`1esn`:$999 Is Not Null}.`6esn`? =Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) Return 0.0[$999][`6esn`] Order By $`2esn`[`8esn`..] Descending,({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})<-[`3esn`? *1000..]-(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null}) Contains Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Contains All(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]) Descending Limit $`5esn` =~Count(*) =~1.9e0 Start `1esn`=Rel:`5esn`(@usn5=\"d_str\") ,`5esn`=Node:@usn6(#usn8='s_str') Union With {`2esn`}[0x0..9e0] As `6esn`,{`8esn`} Ends With true Ends With {`3esn`} As `2esn` Skip {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null) Where 2.9e1 Ends With `5esn` Ends With 1000 Create `2esn`=(:@usn6:_usn3),(`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})<-[`1esn`:#usn7|:@usn5 *..123456789]-({#usn7:{7}[0x0][1e1]})"), + octest_legacy:ct_string("Create Allshortestpaths((:`3esn`{usn2:01234567[10.12e12][0Xa]})),Shortestpath((@usn5 :_usn4:`2esn`{@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})) Foreach(`7esn` In 12.0[..Count ( * )][..@usn6]| Remove exists(usn1 =~false =~{999},.12e12[..$123456789]).`7esn`?,[`` In `7esn` =~#usn8 =~\"d_str\" Where @usn6 Starts With #usn7|$12 Is Null].`6esn`?,`4esn`(Distinct {`3esn`}[...1e1][..0]).usn2? Unwind .12e12[01..{1000}][8.1e1..Count ( * )] As `2esn`) Load Csv From $`5esn` Contains .9e12 As _usn4 "), + octest_legacy:ct_string("Drop Constraint On()-[`3esn`:``]->()Assert Exists([usn1 In $@usn6 Is Null Is Null Where {`3esn`}[#usn7]|#usn7[$`8esn`][{`3esn`}]]._usn4!)"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:`7esn`]-()Assert Exists(Reduce(`1esn`=.9e1 Ends With 0x0,usn2 In .12e-12 Ends With `2esn`|_usn4 Is Not Null Is Not Null)._usn3!.@usn5!)"), + octest_legacy:ct_string("Create Unique ((`8esn` :`2esn`:`4esn`)-[?:#usn7|:@usn5 *12]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})) Create Unique usn2=(((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(#usn7 :`8esn`))),#usn7=Shortestpath((`1esn` :usn2{`8esn`:12.0[...0e0]})-[?:`1esn`|:`1esn` *..0x0{@usn6:.0e-0 In 12}]-(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})) Match ((:`1esn`:``{`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})),Allshortestpaths((`4esn` :`3esn`)-[`3esn`?:`1esn`|:`1esn`]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})) Using Index `2esn`:usn1(_usn3) Using Scan #usn8:`8esn` Union Remove `4esn`:#usn8:@usn6 Delete {_usn3} Is Null Is Null,$999 Starts With 0e-0 Starts With .9e12,0.12[{@usn6}..{#usn7}] Load Csv From None(`1esn` In $12 In {usn2})[..Reduce(usn2=.9e0 In 8.1e1,`3esn` In 8.1e1 Contains .9e-1 Contains false|$_usn3 Is Not Null)] As #usn7 Fieldterminator 's_str' Union All Load Csv From 12[11.12e-12..][`4esn`..] As @usn6 "), + octest_legacy:ct_string("Create Constraint On(#usn8:``)Assert Exists({``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}.#usn8?.@usn6?)"), + octest_legacy:ct_string("Unwind 00[{1000}] As usn1 Union Create `2esn`=Allshortestpaths((:`3esn`{@usn5:9e12[..usn2][.._usn3]})),``=Shortestpath((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[ *0X0123456789ABCDEF]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})) Optional Match `7esn`=(((:`3esn`{usn2:01234567[10.12e12][0Xa]})-[_usn3?{`8esn`:{usn2} Is Not Null Is Not Null}]->({`7esn`:.9e12 Is Not Null Is Not Null})-[#usn8?:`4esn`|:`2esn` *7{`6esn`:{0} Ends With 0Xa,usn1:.9e1 Is Null Is Null}]->({`1esn`:01 =~{_usn3} =~01,`8esn`:{#usn7} Ends With 999 Ends With 12}))) Using Scan #usn7:_usn3 Using Index #usn7:`4esn`(@usn5) Union All With Distinct *,$`4esn`[...0e-0] Skip [`6esn` In 010[{`1esn`}..] Where 7 Starts With 9e-12|Null[#usn7..][9.1e-1..]][None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`})..][`1esn`(@usn5[9e-1..{`1esn`}],$`4esn`[$@usn6...12e12])..] Limit 00 In {#usn7} In $usn1 Where $#usn7 Ends With 999 Ends With {12} Merge (:@usn5)"), + octest_legacy:ct_string("Drop Index On:`6esn`(`1esn`)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:@usn6)Assert Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $#usn7[01..2.12][2.12..3.9e-1]).`3esn`!.`8esn`? Is Unique"), + octest_legacy:ct_string("Return Distinct 01 Starts With 12 Starts With $`2esn` As usn1,{`8esn`} In {_usn3} In 6.0e0 Order By {`4esn`} Ends With Count(*) Asc,.0e0[{`5esn`}..3.9e-1] Descending,$999 Ends With `2esn` Ends With 12.0 Ascending Load Csv From {@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] As `5esn` Match `5esn`=(((`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[?:_usn3]->(`8esn` :usn1)-[?:`1esn`|:`1esn` *999..123456789]-(`8esn` :#usn7:`8esn`))),`5esn`=Shortestpath(((@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))) Using Scan `4esn`:#usn7 Using Scan `7esn`:`` Where .12e-12[@usn6..'s_str']"), + octest_legacy:ct_string("Optional Match @usn5=Allshortestpaths((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})-[`3esn`? *..07]-(#usn7 {_usn4:$12[$`6esn`..][01..]})),((({`1esn`:10.12e12 In Null In .12e12})<-[?:`1esn`|:`1esn`]-(`1esn` :#usn8:@usn6{`7esn`:.1e-1 Contains .12e-12,`2esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[:`4esn`|:`2esn`{usn1:3.9e-1 Contains $@usn5}]->(`7esn` ))) Using Index ``:@usn5(usn1) Using Index usn1:#usn7(usn1) Start _usn4=Node:`4esn`({12}) Union Delete $`1esn` Ends With 1000 Foreach(@usn6 In $`7esn` In $0| With *,{`1esn`} In 0 As _usn3 Order By @usn5[9e-1..0e0][{_usn3}..$usn1] Descending,2.12[`4esn`][.9e-1] Ascending,$`1esn` In 0Xa Desc Skip {1000}[12] Load Csv From 8.1e1['s_str'..] As #usn7 Fieldterminator 's_str') Create (_usn3 {#usn7:$999 =~false =~{`8esn`}})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0}) Union Merge (#usn8 :@usn5{`8esn`:0x0 Ends With #usn8 Ends With .9e-1}) With Distinct *,_usn4['s_str'][8.1e1] Order By $@usn6[.1e-1][9e12] Asc,Case When $999 =~false =~{`8esn`} Then 999 Is Null Is Null When {``} Contains 0.0 Contains `4esn` Then $999 Is Not Null End Contains Case $usn2 In #usn7 In #usn7 When {12} Ends With $`3esn` Ends With 0xabc Then $@usn5 Contains _usn3 End Contains None(usn1 In {#usn7} =~.12e12 =~9e0 Where 0xabc[01234567][.12e-12]) Asc Skip $`4esn`[{usn1}..] Limit {`6esn`} In .0e0 In $0 Foreach(`1esn` In {`7esn`:{`2esn`} Ends With 9e-1 Ends With .1e-1,`7esn`:{@usn6} In 9e12} =~Reduce(_usn3=$usn1[9e1][{999}],usn1 In \"d_str\" Contains {@usn6}|$@usn5 Contains _usn3)| Match `7esn`=(((#usn8 :``{usn2:9e1 =~$`8esn` =~10.12e12})-[_usn3:`6esn`]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}))) Using Index `3esn`:`8esn`(`5esn`) Using Index `3esn`:`8esn`(`5esn`) Create (`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))"), + octest_legacy:ct_string("Foreach(`7esn` In 01 Contains Reduce(usn2=$1000[_usn4][{@usn5}],`8esn` In {usn1}[7.0e-0..][3.9e-1..]|9e-12 Ends With 9e1 Ends With 4.9e12) Contains usn2(Distinct `7esn` In _usn4 In $`7esn`,999 Is Null Is Null)| Start `1esn`=Rel:``(#usn8=\"d_str\") ,#usn8=Rel:#usn8(usn2='s_str')Where $`4esn` Ends With .12e12 Ends With 123.654 Unwind 11.12e-12 =~Count ( * ) As `8esn`) Create (_usn4 {`3esn`:.0e-0 In 12}),Shortestpath((@usn6 :_usn4:`2esn`)) Union Match usn2=((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})),Shortestpath(({`6esn`:3.9e-1[..$1000][..0.12]})<-[:`4esn`|:`2esn`{`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]}]-({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]-({`5esn`:$`4esn` Ends With .12e12 Ends With 123.654,@usn6:{123456789} Contains $0})) Using Index usn1:#usn7(usn1) Union All Detach Delete 7.0e-0[$`6esn`..],`1esn` =~{12} =~{999},{_usn3} =~$12 =~$7 Load Csv With Headers From {#usn7} Starts With .1e-1 As `3esn` "), + octest_legacy:ct_string("Create Constraint On(_usn4:#usn7)Assert Exists(Shortestpath(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))).usn2!.``)"), + octest_legacy:ct_string("Match usn2=Allshortestpaths(((@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0}))) Using Scan `1esn`:`8esn` Where {usn1} Is Not Null Is Not Null Remove Allshortestpaths((((@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})-[:`3esn`|`3esn`]-(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(:`4esn`:usn2)))).`6esn`?"), + octest_legacy:ct_string("Foreach(`7esn` In $`` =~.1e-1| Unwind $123456789 As #usn7) With Distinct *,0 Contains {`2esn`} Union All With Distinct .12e-12[@usn6..'s_str'],Allshortestpaths((((@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[``? *..00{@usn5:$`8esn` =~{`1esn`} =~$7,#usn7:.12e-12 Starts With .12e-12}]->({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]})-[:`8esn`|:#usn8 *01]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))))[..Case When {#usn7} Ends With 999 Ends With 12 Then {`3esn`}[999..$`4esn`] End],5.9e-12[01][`4esn`] As _usn4 Skip Single(`` In `7esn` =~#usn8 =~\"d_str\")[Reduce(`3esn`=1e1[$_usn3],`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1[..9.1e-1][...9e1])][[#usn7 In .0e-0 In 12 Where \"d_str\"[0x0..{@usn6}][$@usn5..0]|{7}[$@usn5..123456789][1e1..1.9e0]]] Remove Extract(usn1 In \"d_str\" Contains {@usn6} Where $`` =~.1e-1|$`3esn` =~0x0).`7esn`.`6esn`!,Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $1000[_usn4][{@usn5}]).#usn8!,Reduce(`2esn`=$`4esn`[$@usn6...12e12],`1esn` In $12 In {usn2}|{12} Starts With $`` Starts With 0X0123456789ABCDEF).usn1!._usn3 Merge `4esn`=((:``{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[? *..00$_usn3]-({`5esn`:`1esn` In 010 In 1e-1})) On Match Set #usn7 =All(#usn8 In 07[..$`5esn`] Where $@usn6 Starts With 0xabc Starts With {`7esn`})"), + octest_legacy:ct_string("Create Constraint On(#usn7:usn1)Assert Exists(None(#usn8 In 07[..$`5esn`] Where .1e1 Ends With #usn7 Ends With {#usn7}).`1esn`)"), + octest_legacy:ct_string("Using Periodic Commit Load Csv From `4esn`($`6esn`[@usn6...9e-12],{12})[None(@usn6 In 9e12[..usn2][.._usn3] Where $7[999..10.12e12][$`1esn`..{usn1}])..Allshortestpaths((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})-[`5esn`?:`2esn`|`5esn`]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`))][usn1..Reduce(@usn5=`1esn` In 6.0e0 In 12,`` In `7esn` =~#usn8 =~\"d_str\"|$`6esn` =~$#usn7 =~$`4esn`)] As `` Remove `5esn`:usn1,Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 01234567[1000..][$`8esn`..]|07[..$`5esn`]).`6esn`.@usn5.usn1"), + octest_legacy:ct_string("Using Periodic Commit 0x0 Load Csv From 0.0[$`4esn`] As `` Fieldterminator 's_str' Unwind 12e-12 Starts With $`7esn` As usn2 Merge Shortestpath((((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *0X0123456789ABCDEF]->(`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})-[`2esn`?:@usn6|:`4esn` *010..0{`4esn`:Null[$`3esn`..][`1esn`..],_usn3:6.0e0[$#usn7..$1000]}]-(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]})))) On Create Set usn2 =0xabc Contains {12} Contains {`6esn`},`` =usn2($usn1 =~.0e0 =~{`4esn`}) Contains Allshortestpaths(((#usn8 :@usn5)<-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 )<-[?:`1esn`|:`1esn`{`5esn`:9e1[0.0]}]->(`8esn` ))),_usn3({1000} Is Null,123456789[#usn7..9e-1][10.12e12..{0}]).usn1.`2esn`._usn4 ={123456789} Is Not Null On Match Set Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}).`8esn`!._usn3!._usn3! =Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End Is Null Is Null,(`1esn` :`8esn`)<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})-[:#usn7|:@usn5]-(:`1esn`:``{`8esn`:5.9e-12[0x0..]}).`6esn`? =Any(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0xabc[..{usn1}][..\"d_str\"])[Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 0X0123456789ABCDEF Is Not Null Is Not Null)..None(#usn8 In 07[..$`5esn`] Where 8.1e1 Contains .9e-1 Contains false)][Case {0} Is Not Null Is Not Null When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End..[`` In `7esn` =~#usn8 =~\"d_str\"|$_usn4 Ends With {#usn8}]]"), + octest_legacy:ct_string("Drop Constraint On(usn2:#usn7)Assert Exists(Extract(usn1 In \"d_str\" Contains {@usn6}).`8esn`?.`1esn`?)"), + octest_legacy:ct_string("Create #usn7=(`4esn` {@usn5:5.9e-12[12e-12][$`8esn`],`5esn`:{123456789} Contains $0})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`) Union Create ((usn1 :@usn6:_usn3)-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})) Start `5esn`=Relationship:@usn6(#usn8='s_str') Where Count(*) Starts With 07 Starts With $#usn7 Create Allshortestpaths(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) Union Detach Delete 0.12[Count ( * )..Count ( * )][$999..`5esn`],Allshortestpaths(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0}))[Reduce(@usn6=10.12e12 Starts With $`4esn` Starts With 0e0,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$1000 Contains $123456789 Contains #usn8)..Case 7[..123456789][..true] When $1000[..0e-0][..010] Then 999 Starts With 7.0e-0 Starts With true End][[`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]]..Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When 0.12[Count ( * )..Count ( * )][$999..`5esn`] Then $123456789[..$999][..`6esn`] Else 7[{`4esn`}..] End] Create Unique Shortestpath(((:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(`3esn` $0)<-[`7esn`:#usn8|:`` *01234567..{`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7}]-(#usn8 :usn2))) Delete @usn5[@usn6],{`5esn`}[{usn2}..$`1esn`]"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:`1esn`)Assert Exists(Reduce(`5esn`=8.1e1 Contains $@usn6,#usn7 In .0e-0 In 12|{1000} Starts With 10.12e12 Starts With .0e-0).usn1!)"), + octest_legacy:ct_string("Create Constraint On()-[usn1:``]-()Assert Exists({@usn5:4.9e12 Ends With $@usn6,`2esn`:0e-0 In 0X0123456789ABCDEF In `3esn`}.`1esn`)"), + octest_legacy:ct_string("Using Periodic Commit 7 Load Csv From 0xabc[01234567][.12e-12] As `2esn` "), + octest_legacy:ct_string("Return Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0]) Is Null Is Null As _usn3,1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As usn2,false[9e12] Order By 0xabc[01234567][.12e-12] Ascending,Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`8esn`}[..999][.._usn3]) Starts With Reduce(``=$#usn7 Ends With 999 Ends With {12},`2esn` In $@usn5 Is Not Null Is Not Null|{`6esn`} Starts With .12e-12) Descending Skip 2.12[10.12e12][_usn4] Limit $`5esn` In $12 In `2esn`"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:``)Assert Single(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 00 =~`4esn` =~.9e-12).@usn6!.`4esn`? Is Unique"), + octest_legacy:ct_string("Match @usn6=((({@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})<-[:@usn5|:#usn7 *0X0123456789ABCDEF{`5esn`:9e-1 Contains 3.9e-1}]->(`6esn` $_usn3)<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),(((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`}))) Using Join On usn1,`1esn`,_usn4 Using Scan `8esn`:`2esn` Foreach(`3esn` In $7| With Distinct $`8esn` Is Not Null Is Not Null As _usn3 Order By Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Descending,\"d_str\" In 7.0e-0 Desc Skip Reduce(_usn3=7.0e-0[$`6esn`..],`7esn` In 0.12 Is Not Null|false Starts With 0 Starts With 2.9e1) =~Case $`3esn` =~0x0 When $12[$@usn5] Then 11.12e-12 In {usn1} When 4.9e12[{_usn4}..] Then $@usn5 Contains _usn3 Else .12e-12 Starts With .12e-12 End =~Reduce(_usn4=_usn4 Is Not Null Is Not Null,`2esn` In $@usn5 Is Not Null Is Not Null|7.0e-0 Is Not Null) Limit {_usn3:.0e-0[..``][..$7]}[..(`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`)][..@usn5] Load Csv With Headers From {`1esn`} Is Null As @usn6 Fieldterminator \"d_str\") Create (((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))),(usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[``:`1esn`|:`1esn`{@usn5:999[..$@usn5][..``],@usn5:0xabc[..Count(*)][..$`5esn`]}]-(`1esn` :``{_usn4:$@usn5 =~{`3esn`}}) Union All Remove Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {#usn8}[..@usn5]|{0}[.0e-0][$`2esn`]).@usn6?.``?,(`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[?:`1esn`|:`1esn`]-(:@usn5{`1esn`:$999 =~0e0 =~0X7})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12}).`7esn`,{_usn4:$7}.@usn5 Return Distinct 0.12[{@usn6}..{#usn7}] Order By Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) Ascending,Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Descending,.9e-1[`1esn`][7] Ascending Limit {`4esn`}[{`3esn`}][$`2esn`] Union With Distinct *,$`4esn`[#usn7][8.1e1] As `2esn` Skip .1e1 Contains 1e-1 Contains #usn8 Limit 9e1 Ends With `7esn` Ends With 2.12 Where .1e1 Is Not Null Is Not Null Detach Delete Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000),{`4esn`}[..{`2esn`}] Create Allshortestpaths(({`6esn`:8.1e1 Contains .9e-1 Contains false})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})),@usn6=Allshortestpaths(({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})<-[usn2:usn1|usn2]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null}))"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`6esn`)Assert All(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 1.9e0[.12e-12][9e-12])._usn3!.`4esn`?.#usn7! Is Unique"), + octest_legacy:ct_string("Create `5esn`=Shortestpath((((#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})))) Foreach(`2esn` In $#usn7 Ends With 999 Ends With {12}| Start `8esn`=Node( {`4esn`}) ,`7esn`=Rel:``('s_str')) Union Merge `4esn`=((`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[?$999]-(`8esn` :@usn6:_usn3)<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})) Start _usn3=Relationship:usn2(`8esn`=\"d_str\") Where $1000[..0e-0][..010] Create Unique (`1esn` {usn2:.9e-12[.12e12..][0Xa..]}),@usn6=Allshortestpaths(((`5esn` :_usn3)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}))) Union Delete {usn2}[9e-1],{`6esn`}[@usn5..{@usn6}] Merge Allshortestpaths(((`4esn` :@usn5)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[:`3esn`|`3esn` *1000..]->(`1esn` :`7esn`))) On Match Set usn2+=[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]][None(#usn7 In .0e-0 In 12 Where $12 In {usn2})..{`1esn`:{0} Is Null Is Null}][Extract(#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12|{`5esn`} Is Not Null Is Not Null)..Reduce(`7esn`=`7esn` Ends With 10.12e12,usn2 In $`5esn`[{`4esn`}][{0}]|@usn5[9e-1..{`1esn`}])] With (usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..]) As `2esn`,0.0[..9e1][..2.12] As `` Order By 01234567 Ends With .0e0 Ends With 12e12 Asc,{@usn6:{7} Starts With 0x0 Starts With 9e1}[Reduce(`5esn`=$999 Ends With `2esn` Ends With 12.0,_usn3 In `8esn`[_usn4]|_usn3 =~{7} =~123.654)..None(usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-1[1.9e0])] Ascending,$`6esn` Starts With 0.0 Desc Skip $12[{_usn3}..] Limit 9e0[{7}...0e-0][Null..@usn5] Where 12e12 Contains {0}"), + octest_legacy:ct_string("Foreach(`5esn` In {@usn5:$@usn5 Is Not Null Is Not Null} Contains None(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[..0xabc][..{`6esn`}])| Delete 9e-1[0.0..],7.0e-0 Ends With {123456789} Ends With @usn6,{`3esn`} Is Not Null Is Not Null Return Distinct 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )],0 In 2.9e1 In 7 As usn2 Limit Any(usn1 In $@usn6 Is Null Is Null)[Case {_usn3}[{0}...9e-1][9e-1...0e0] When 010[..9e-1][..0X7] Then $0 Ends With $usn1 Ends With {``} End..Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]})))]) Union Remove (`3esn` )<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(`7esn` )<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}).#usn8,#usn7(07[{@usn5}..],{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1])._usn3.`4esn`? Union Remove All(#usn7 In .0e-0 In 12 Where 0xabc =~123456789).@usn6.#usn8!.`7esn`,Case {_usn3} In $#usn8 In $12 When `3esn` Starts With 9.1e-1 Starts With .9e-1 Then $1000[_usn4][{@usn5}] Else 12[@usn6][{`2esn`}] End._usn3!.#usn8?.`7esn`?,Case 010[...12e-12] When .9e1[$`1esn`..][$``..] Then Count ( * ) Starts With 0.12 End.`8esn`!.#usn8 Remove Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}).`8esn`!._usn3!._usn3!,Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))).`5esn`?.`8esn`?.@usn5?,[usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-12[010..{#usn7}][{123456789}..7]|Count(*)[..{#usn7}]]._usn4! Load Csv From \"d_str\" Contains {@usn6} As `3esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Remove Case When {1000}[..`5esn`][..9e12] Then Count(*)[..{#usn7}] End.`3esn`? Match `1esn`=((`4esn` :`8esn`{12})) Using Join On `4esn`,`5esn`,@usn6 Using Join On @usn5,_usn4 Where #usn7 =~$@usn5 =~{7} Union All Foreach(`4esn` In [usn2 In $`5esn`[{`4esn`}][{0}] Where $usn2[..$999][..#usn8]][2.9e1..][None(usn2 In .12e-12 Ends With `2esn` Where `7esn`[1.9e0..5.9e-12][9e0..@usn5])..]| Load Csv From {usn2} In false As `6esn` ) Match Shortestpath((:`2esn`:`4esn`{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({#usn7:12e12[.9e12..07]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->()),(`4esn` :`8esn`{12})-[_usn3:`6esn`]-(`3esn` :#usn8:@usn6)-[`1esn`]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]}) Using Index `7esn`:``(`8esn`) Where $usn2 Starts With $999 Starts With .0e0 Foreach(`7esn` In `1esn`[{usn1}..]| Remove None(#usn7 In .0e-0 In 12 Where `8esn`[.12e12..]).`5esn`!,Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0X0123456789ABCDEF Ends With {1000})._usn4?) Union Foreach(`8esn` In 2.12 Is Not Null Is Not Null| Create Unique usn2=Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Optional Match ((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})) Using Index #usn7:`4esn`(@usn5) Using Join On `4esn`,`2esn`,`` Where {123456789} Starts With $_usn4 Starts With 0x0) Create `3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})),(:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[`7esn`?:`7esn`|usn1 *1000..{@usn6:#usn7 In 07,#usn8:$999[usn1..0e-0]}]->(#usn8 :`5esn`:`7esn`{usn2})-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})"), + octest_legacy:ct_string("Remove _usn3(Distinct 9e1 Starts With $@usn6 Starts With 0e-0,0.12 =~`6esn` =~.9e-1).usn2? Foreach(`4esn` In {0}[..`3esn`][..8.1e1]| Optional Match `7esn`=(@usn5 :@usn5{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6})-[usn2?:`1esn`|:`1esn` *..123456789]-(:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[:_usn3]-(`3esn` ),(({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 {#usn7:$999 =~false =~{`8esn`}})) Where {#usn7} Starts With .1e-1) Merge Allshortestpaths(((`8esn` :`7esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 ))) Union Create Unique (:`3esn`{@usn5:9e12[..usn2][.._usn3]}) Union All Delete {`5esn`}[01234567..][5.9e-12..]"), + octest_legacy:ct_string("Return Distinct @usn5[9e-1..{`1esn`}] As ``,`1esn` Is Not Null As `6esn`,Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) Ends With `2esn` As @usn5 Order By {@usn5}[10.12e12..] Asc,{@usn5}[10.12e12..] Asc Limit Reduce(``=$`3esn` =~#usn8 =~0x0,usn2 In $`5esn`[{`4esn`}][{0}]|_usn3 =~{7} =~123.654) Contains [usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF] Contains Allshortestpaths(((`8esn` :`7esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 )))"), + octest_legacy:ct_string("Unwind .9e12 Contains 5.9e-12 Contains 9e-1 As `7esn`"), + octest_legacy:ct_string("Drop Constraint On(usn1:_usn3)Assert Exists(All(`7esn` In 0.12 Is Not Null Where .12e-12[@usn6..'s_str']).`5esn`?.``!)"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:`3esn`)Assert Reduce(@usn6=7.0e-0[$`6esn`..],`6esn` In 010[{`1esn`}..]|$``[9e12..])._usn4 Is Unique"), + octest_legacy:ct_string("Foreach(`` In Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null)| Start `7esn`=Rel:``('s_str') Where Null[$`3esn`..][`1esn`..]) With 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Order By $1000 Is Null Descending,7.0e-0 Ends With {123456789} Ends With @usn6 Descending Limit 1000[{`1esn`}..][$`3esn`..] Load Csv From 1.0 Is Not Null As usn2 Union Unwind $12[$`6esn`..][01..] As @usn6 Union Return *,9e1[12] As usn1,Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``})[`3esn`(Distinct 0 Starts With `7esn` Starts With 9e0,$`4esn` Is Null Is Null)][`7esn`(Distinct $`4esn` Ends With .12e12 Ends With 123.654)] Order By Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1) Starts With Case 7.0e-0[$`6esn`..] When \"d_str\"[0x0..{@usn6}][$@usn5..0] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else $`5esn`[{`4esn`}][{0}] End Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`) Asc,Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``})[`3esn`(Distinct 0 Starts With `7esn` Starts With 9e0,$`4esn` Is Null Is Null)][`7esn`(Distinct $`4esn` Ends With .12e12 Ends With 123.654)] Desc,{`5esn`} Asc Foreach(_usn4 In {`5esn`:$`6esn`[@usn6...9e-12]}[{usn1:$_usn3[0x0][{0}]}..Filter(_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`])][Case When .12e12 Ends With 07 Ends With 3.9e-1 Then 01234567[\"d_str\"..][$`4esn`..] End..Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End]| Start @usn6=Node:usn1({usn2}) ,`7esn`=Node:`5esn`({0})Where #usn7[123.654][{12}]) Create ``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))),``=Allshortestpaths(((@usn6 :@usn5)))"), + octest_legacy:ct_string("Drop Constraint On(#usn8:@usn6)Assert Exists(None(#usn7 In .0e-0 In 12 Where $123456789).#usn8?)"), + octest_legacy:ct_string("Create Constraint On()<-[#usn7:`4esn`]-()Assert Exists(All(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[10.12e12]).usn1!)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`5esn`)Assert Exists(Extract(_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]|{``}[usn1..][{`8esn`}..]).`3esn`?)"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`8esn`)Assert Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where 9e1 Ends With 9e12 Ends With 0x0|`1esn` In 6.0e0 In 12).usn2! Is Unique"), + octest_legacy:ct_string("Remove Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]).`1esn`.#usn8!,Allshortestpaths(((`4esn` :`8esn`{12})))._usn3! Load Csv With Headers From usn1 =~false =~{999} As @usn6 Union All Delete $12[10.12e12][.1e1],{#usn7}[.9e-12][4.9e12] Start `4esn`=Node:@usn6(\"d_str\") Where $usn2 Is Not Null Is Not Null Remove Case When `2esn` Starts With 010 Starts With `` Then 00[$``] Else @usn6[0x0..][$_usn4..] End.`6esn`,All(usn2 In $`5esn`[{`4esn`}][{0}] Where $`8esn` Is Not Null Is Not Null)._usn4!._usn3?,Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})).`8esn`!"), + octest_legacy:ct_string("Drop Constraint On(`6esn`:``)Assert Exists(Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..])._usn4!)"), + octest_legacy:ct_string("With {usn2} In false As `1esn`,\"d_str\"[0x0..{@usn6}][$@usn5..0] Limit (:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})-[_usn4:_usn3{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]}) Ends With (`5esn` {`2esn`:00[Null..usn2],`2esn`:3.9e-1[..$1000][..0.12]})<-[#usn8]->(`2esn` :_usn3{`6esn`:_usn4[{``}..{`6esn`}][$7..$_usn3],`6esn`:$`4esn` Ends With {999}})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12}) Ends With Allshortestpaths((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) Return Distinct [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End As `5esn`,0[..12][..{`8esn`}] As usn1,{usn1} Is Not Null As `` Order By 0.0[00..][0xabc..] Ascending,.9e-12[.12e12..][0Xa..] Desc,Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) Asc Limit 123456789[_usn4..`1esn`][$`6esn`..{@usn6}]"), + octest_legacy:ct_string("Create Constraint On()-[``:`4esn`]-()Assert Exists((`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(`1esn` :#usn7:`8esn`).@usn6!)"), + octest_legacy:ct_string("Create Constraint On()<-[`1esn`:@usn5]-()Assert Exists([_usn3 In `8esn`[_usn4] Where 0[..{#usn7}][..$_usn3]|usn2 Contains `2esn` Contains {1000}].`3esn`!)"), + octest_legacy:ct_string("With $#usn8[$0..`3esn`][1e-1..$7] As `5esn`,{0} Is Not Null As `` Limit $_usn3 In `2esn` In `3esn` Where _usn3[{#usn7}] Start _usn4=Relationship:@usn6(\"d_str\") ,`8esn`=Rel:`1esn`(`1esn`={usn1}) Union All Load Csv With Headers From {_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}[Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)][[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1]] As usn2 Create _usn3=Shortestpath((`2esn` :`1esn`:``{usn2:{0}[.0e-0][$`2esn`],_usn4:@usn6 Ends With $`2esn` Ends With 1.0})-[`7esn`?:@usn5|:#usn7]->(`7esn` :@usn5)),Allshortestpaths((`6esn` :`4esn`:usn2)-[? *0Xa..12{`4esn`:9e-12[$7..]}]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:_usn4)Assert Exists(Reduce(_usn4=1e-1 =~$`7esn` =~1e1,usn2 In .12e-12 Ends With `2esn`|0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}]).usn2!)"), + octest_legacy:ct_string("Create Constraint On(_usn4:`5esn`)Assert None(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str').@usn5?.#usn7? Is Unique"), + octest_legacy:ct_string("Using Periodic Commit 0Xa Load Csv With Headers From $#usn7[01..2.12][2.12..3.9e-1] As usn2 Fieldterminator 's_str' Foreach(`` In [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01|_usn4 Ends With {`8esn`} Ends With usn2][Any(usn1 In $@usn6 Is Null Is Null Where `3esn` Is Null)..]| Return Distinct Count(*)[{12}..{#usn8}] As @usn6,$123456789 =~1e-1,`5esn`({`5esn`}[01234567..][5.9e-12..],5.9e-12 Is Null Is Null)[Reduce(#usn7={12} Ends With $`3esn` Ends With 0xabc,usn1 In $@usn6 Is Null Is Null|`1esn`[Null][{@usn6}])..@usn5(`3esn` Contains `2esn` Contains {_usn4},2.9e1 In {``})][Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789}))..Any(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`)] As _usn4 Order By ({`5esn`:$`4esn` Ends With .12e12 Ends With 123.654,@usn6:{123456789} Contains $0})-[`6esn`?:#usn7|:@usn5 *01234567..{`4esn`:`` Ends With 1.0 Ends With usn1,`7esn`:999[..$@usn5][..``]}]-(_usn3 {`2esn`:5.9e-12[0x0..]})-[`5esn`?:@usn5|:#usn7{`4esn`:9e-12[$7..]}]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})[[`6esn` In 010[{`1esn`}..] Where $12 Ends With 7.0e-0 Ends With 9e-12]..Reduce(`6esn`=$@usn5[``..],usn1 In {#usn7} =~.12e12 =~9e0|0xabc[..Count(*)][..$`5esn`])][Case When .1e1 Is Not Null Is Not Null Then @usn6 Starts With #usn7 When {1000}[`2esn`...0e-0][9e-1..0X7] Then $`8esn`[..12][..9e12] End..{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}] Desc Limit 12[11.12e-12..][`4esn`..]) Start `6esn`=Rel(7,0X7,0,01) "), + octest_legacy:ct_string("Using Periodic Commit 7 Load Csv From `8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End As `` Delete {`6esn`} =~2.12 =~123.654,$`5esn` In $12 In `2esn` Return Distinct *,Any(`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]) In Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4})"), + octest_legacy:ct_string("Load Csv From $`5esn` Contains .9e12 As _usn4 "), + octest_legacy:ct_string("Detach Delete Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] Match #usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2)))) Using Join On ``,usn1,`2esn` Where $@usn6[``..][3.9e-1..] Union Remove (`` {usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]})<-[?:`3esn`|`3esn` *999..123456789{_usn3:$`4esn`[$@usn6...12e12]}]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}).#usn8._usn3.@usn6? Union Load Csv From {`7esn`}[$12..123456789] As _usn4 Fieldterminator \"d_str\" Start `4esn`=Node:@usn6(\"d_str\") With {@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] As ``,2.12[010..][{999}..] Limit {0}[..`3esn`][..8.1e1]"), + octest_legacy:ct_string("Load Csv From .9e0 Is Null As `3esn` Start _usn4=Node:`1esn`(`4esn`={@usn5}) ,`2esn`=Rel:`6esn`(`4esn`=\"d_str\")Where $`1esn`[..12e-12][...9e12] Union Return Distinct $`` Ends With #usn7 Ends With _usn3 As _usn3,{@usn6:2.9e1[{`2esn`}],usn1:01 Contains 9e-12 Contains $7} Is Null Is Null As @usn6 Skip {`8esn`}[.0e0..][999..] Union Create Unique @usn6=((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))"), + octest_legacy:ct_string("Create Constraint On(@usn6:_usn4)Assert Case 0e-0[..7.0e-0][..{`8esn`}] When $`8esn`[0x0][.9e0] Then #usn8 =~{@usn5} End._usn3.`8esn`.#usn8! Is Unique"), + octest_legacy:ct_string("Create Index On:_usn3(`7esn`)"), + octest_legacy:ct_string("Create Shortestpath(((#usn7 :`1esn`:``)<-[?:`4esn`|:`2esn`]-(_usn3 :`4esn`:usn2)-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}))),usn2=((`4esn` :`8esn`{12})) Union Create Unique (`8esn` :`6esn`),`8esn`=(({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]})-[`2esn`?:@usn6|:`4esn` *010..0{`4esn`:Null[$`3esn`..][`1esn`..],_usn3:6.0e0[$#usn7..$1000]}]-(#usn7 :usn2{@usn6:12e-12 In .9e0,@usn6:0Xa[999]})-[`3esn`{`4esn`:12e12[.9e12..07]}]-(:`4esn`:usn2{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})) Return *,`4esn`[..7][..$usn2] As #usn8,Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $#usn7[01..2.12][2.12..3.9e-1]) =~_usn3(.0e-0 Ends With $`2esn` Ends With `5esn`,$usn1 =~.9e12 =~`6esn`) =~Reduce(_usn3=5.9e-12 Is Null Is Null,_usn3 In `8esn`[_usn4]|2.9e1[Count ( * )..]) As `8esn` Order By 0.0[$999][`6esn`] Asc Limit 10.12e12 Contains .9e0 Union All Foreach(usn2 In $usn1 Ends With {`2esn`} Ends With $usn1| Match `5esn`=(((`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[?:_usn3]->(`8esn` :usn1)-[?:`1esn`|:`1esn` *999..123456789]-(`8esn` :#usn7:`8esn`))),`5esn`=Shortestpath(((@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))) Using Scan `4esn`:#usn7 Using Scan `7esn`:`` Where .12e-12[@usn6..'s_str'] Start #usn7=Relationship:#usn8(usn2={12}) Where 01234567 Ends With .0e0 Ends With 12e12)"), + octest_legacy:ct_string("Create Constraint On(#usn8:`5esn`)Assert All(usn2 In $`5esn`[{`4esn`}][{0}] Where 7.0e-0 Is Not Null).`2esn` Is Unique"), + octest_legacy:ct_string("Match ``=((:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})-[?:`4esn`|:`2esn`{usn1:{123456789} Starts With `6esn`,@usn5:9e1 Ends With 9e12 Ends With 0x0}]-(`2esn` :usn1)) Using Index `6esn`:`6esn`(`7esn`) Foreach(#usn7 In 0e0 =~{12} =~{1000}| With Distinct *,$`5esn` Is Null As `1esn`,.0e-0[..01234567] Order By 0[10.12e12] Descending,`1esn`({`4esn`} Ends With Count(*),$usn1 Contains 4.9e12 Contains $`2esn`) Is Not Null Is Not Null Asc,{`1esn`} Contains 1.0 Contains 4.9e12 Desc Where $0 Ends With $usn1 Ends With {``}) Optional Match `5esn`=((`3esn` :`1esn`:``{usn1:$usn1[9e1][{999}],#usn8:0e-0[$``..10.12e12]})<-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]->({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(`4esn` :@usn5)) Union Unwind [_usn3 In `8esn`[_usn4] Where `7esn` Ends With 10.12e12] As _usn3 Create Unique `7esn`=Allshortestpaths((`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})<-[_usn3? *..123456789{`6esn`:.0e-0[..``][..$7],usn2:{usn2} Ends With {@usn6} Ends With 1000}]-(`8esn` :`4esn`:usn2{@usn6:$#usn7 Starts With $123456789})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(#usn8 :_usn4:`2esn`{`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})),((:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(`2esn` :_usn3)<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(:#usn7:`8esn`))"), + octest_legacy:ct_string("Merge @usn5=Allshortestpaths(((`8esn` :`8esn`)<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))) On Create Set {@usn5:$@usn5 Is Not Null Is Not Null}._usn3.`7esn` =(:`1esn`:``{`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]})-[:`1esn`|:`1esn` *999..123456789{@usn5:$999 Ends With `2esn` Ends With 12.0}]->(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}) Contains Case {`8esn`} In {_usn3} In 6.0e0 When 9e0[..{#usn7}][..`4esn`] Then .12e12 Is Not Null When #usn8[$`2esn`] Then 3.9e-1 Starts With .9e0 Starts With {#usn7} Else 8.1e1 Contains .9e-1 Contains false End Contains Extract(#usn7 In .0e-0 In 12 Where {0}[.0e-0][$`2esn`]) On Create Set usn2+=[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]][None(#usn7 In .0e-0 In 12 Where $12 In {usn2})..{`1esn`:{0} Is Null Is Null}][Extract(#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12|{`5esn`} Is Not Null Is Not Null)..Reduce(`7esn`=`7esn` Ends With 10.12e12,usn2 In $`5esn`[{`4esn`}][{0}]|@usn5[9e-1..{`1esn`}])] Start `2esn`=Rel( {``}) Where .9e1[$`1esn`..][$``..] Remove count(Distinct $1000 Starts With {@usn6} Starts With $@usn5)._usn3.usn1?,@usn5(Distinct $7[999..10.12e12][$`1esn`..{usn1}],$`5esn` Is Null).usn1.``?.#usn8 Union With {0} Is Not Null As ``,00 Is Not Null Is Not Null Limit Allshortestpaths((((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})-[?:usn2{_usn4:$_usn4[..$999],#usn8:Null[#usn7..][9.1e-1..]}]->(`2esn` {usn1:true In 0.0,@usn5:{`1esn`} Is Null})))) In Extract(#usn7 In .0e-0 In 12 Where {#usn8}[..@usn5]) In [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 10.12e12[usn2]|{1000} Starts With 10.12e12 Starts With .0e-0] Create Unique ``=Shortestpath((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})),`2esn`=Shortestpath((`1esn` {@usn5:$12 Is Null,@usn6:.1e1 Ends With #usn7 Ends With {#usn7}})<-[?{@usn5:@usn6[999][1000]}]-(:usn1{#usn8:2.9e1[{`2esn`}]})) Foreach(`2esn` In 010[.0e-0..\"d_str\"][.9e0..123.654]| Create Unique `6esn`=(@usn6 :`5esn`:`7esn`) Remove (:`1esn`:``{`8esn`:0X0123456789ABCDEF Ends With {1000}})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`6esn` :`4esn`:usn2).`2esn`!._usn4?.`4esn`!,Case `1esn` =~{12} =~{999} When .9e1[$`1esn`..][$``..] Then $12 Is Null Is Null When $#usn7[01..2.12][2.12..3.9e-1] Then $999 Ends With `2esn` Ends With 12.0 End.usn1!.`6esn`!.#usn7!) Union All Remove Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .12e12 Starts With 5.9e-12 Starts With `4esn`).`3esn`? Delete {`6esn`}[@usn5..{@usn6}],00[$_usn4][$`1esn`] Create @usn5=Allshortestpaths(({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})<-[#usn7?]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})),#usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))))"), + octest_legacy:ct_string("Unwind [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..] As `2esn` Union All Merge Shortestpath((#usn8 {usn2:$0 Ends With 9e-12 Ends With $_usn4,`5esn`:0e-0[{@usn6}]})-[`8esn`?:_usn3]->(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})) On Create Set count(01234567 =~12e12 =~.0e-0,$999 Is Not Null).@usn6?.`1esn`.`8esn`? =All(usn1 In \"d_str\" Contains {@usn6} Where 10.12e12 Contains .9e0) Ends With Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789 Is Not Null Is Not Null|{`8esn`}[@usn5][$`2esn`]) Ends With (#usn8 :`5esn`:`7esn`{usn2})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )-[_usn4? *..0x0{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null}),.12e12._usn3? =01[`4esn`..] Merge `4esn`=(`7esn` :``{usn2:$7})-[:#usn8|:`` *..07{@usn5:01234567[\"d_str\"..][$`4esn`..],`6esn`:$usn1 Ends With {`2esn`} Ends With $usn1}]->(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1}) On Create Set (`3esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[?:`4esn`|:`2esn` *01]-(`` :``).`1esn`.@usn5! =None(`` In `7esn` =~#usn8 =~\"d_str\" Where $`4esn` In {999}) Starts With ({usn1:12[..$`5esn`]})-[:`1esn`|:`1esn` *999..123456789{@usn5:$999 Ends With `2esn` Ends With 12.0}]->(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}) Starts With Case When $#usn8 Is Not Null Is Not Null Then $#usn8[$0..`3esn`][1e-1..$7] When $`` Starts With $`4esn` Starts With `3esn` Then .12e12[$usn1..][{@usn6}..] End,#usn7+=.9e-1 Is Null Is Null Unwind `1esn` In 010 In 1e-1 As `8esn` Union All Load Csv From {_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}[Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)][[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1]] As `5esn` Fieldterminator 's_str' Return Distinct *,$`8esn` Contains _usn4 As `8esn`,Count(*)[@usn5..] As #usn8 Limit 2.12[`4esn`][.9e-1]"), + octest_legacy:ct_string("Drop Constraint On(@usn5:_usn3)Assert Exists({}._usn3!.usn2)"), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:@usn6]-()Assert Exists(Filter(#usn7 In .0e-0 In 12 Where 123.654 Ends With {1000} Ends With 9e12).#usn8!.`6esn`)"), + octest_legacy:ct_string("Using Periodic Commit 12 Load Csv From `1esn`[{@usn5}..][{_usn4}..] As `6esn` "), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:`2esn`]->()Assert Exists(Filter(usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF).`7esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[@usn5:`8esn`]->()Assert Exists({`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}.`5esn`)"), + octest_legacy:ct_string("Merge (#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]}) On Create Set {_usn3:$999 Is Not Null}.@usn6! =_usn4 On Create Set @usn5 ={``}[$usn2..00][{_usn3}..123.654],_usn4 =Reduce(`3esn`=`7esn`[1.9e0..5.9e-12][9e0..@usn5],`` In `7esn` =~#usn8 =~\"d_str\"|{_usn3}[{0}...9e-1][9e-1...0e0])[Case false Contains {`7esn`} When `3esn` Is Null Then `1esn` Is Not Null Is Not Null Else .9e-1 Is Null Is Null End..][Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999})..],{@usn5:`2esn`}.``! =\"d_str\" Starts With `` Foreach(usn2 In {123456789} In \"d_str\"| Unwind \"d_str\" In usn2 In $`7esn` As @usn6 Optional Match @usn5=Shortestpath((`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})<-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-(@usn5 :@usn6:_usn3{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`2esn` *1000..{`2esn`:{@usn6} In 9e12}]->(:usn1{usn1:true In 0.0,@usn5:{`1esn`} Is Null})) Where `6esn`[$@usn5][01]) Union All With $12 Ends With 7.0e-0 Ends With 9e-12 As usn1,{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] As ``,9e-1 Contains .12e-12 Contains $0 Order By `6esn`[$@usn5][01] Descending,{`5esn`} Desc Skip 123.654 Is Not Null Is Not Null Limit Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null"), + octest_legacy:ct_string("Detach Delete All(#usn8 In 07[..$`5esn`] Where $@usn6 Starts With 0xabc Starts With {`7esn`})[Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null|.0e0[usn1..7.0e-0][$`5esn`...9e-12])..],$`3esn` =~#usn8 =~0x0 Start usn2=Relationship:#usn8(usn2={@usn5}) Where `2esn`[`7esn`][1000] Match #usn8=Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789})),`4esn`=Allshortestpaths(((:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null}))) Where .9e12 Contains 0 Contains $0"), + octest_legacy:ct_string("Foreach(usn2 In 0.12 Ends With 7 Ends With 12| Load Csv From $`8esn`[..5.9e-12][..`8esn`] As `` Fieldterminator 's_str') Remove Extract(usn1 In $@usn6 Is Null Is Null|010[...12e-12]).``.usn2?.usn1?,@usn5(`3esn` Contains `2esn` Contains {_usn4},2.9e1 In {``}).#usn8,Shortestpath((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})).`8esn`? Remove [usn1 In $@usn6 Is Null Is Null Where $`1esn`[4.9e12..][_usn3..]|$1000 Is Null].`8esn`?,Reduce(`3esn`=.1e1[{@usn6}][true],_usn3 In `8esn`[_usn4]|.9e-1 Contains .9e0 Contains ``).`5esn`.usn2?.`7esn` Union All Unwind Allshortestpaths((_usn4 {`3esn`:.0e-0 In 12})) Is Null Is Null As `4esn` Remove {#usn7:1e-1[$`4esn`]}.`1esn`!.usn1?.`4esn`!,[`6esn` In 010[{`1esn`}..] Where $usn1[..$999][..0e0]|true[1.9e0..]].@usn6! With Distinct * Where $123456789[{usn1}][.12e-12]"), + octest_legacy:ct_string("With 9e1 =~$`8esn` =~10.12e12 Limit 5.9e-12[\"d_str\"..][{`6esn`}..] Where {`8esn`}[..999][.._usn3] Unwind Filter(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[$usn1..])[..Shortestpath((((`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})-[usn2 *7]-(`8esn` {_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}))))][..{`3esn`:$`6esn` Starts With 0.0,#usn8:$usn1 =~.0e0 =~{`4esn`}}] As @usn6 Create Unique #usn7=Allshortestpaths(((:``{usn1:`4esn` Is Not Null})<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 ))) Union All With Distinct {@usn5} As usn1 Skip Shortestpath(((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(_usn3 :usn1)))[..{_usn4:.9e-1 Ends With .0e-0 Ends With {_usn3},_usn4:9e1 Ends With 9e12 Ends With 0x0}][..Reduce(#usn8=`8esn`[_usn4],`1esn` In $12 In {usn2}|$`4esn` Is Not Null)] Optional Match Shortestpath(((`7esn` {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))) Using Join On `2esn`,`6esn` Using Join On `4esn`,`2esn`,`` Where #usn8 Is Null Is Null Detach Delete {999} =~$`6esn` =~$`6esn`,9e0[`7esn`..][#usn8..],$`4esn` Contains `4esn` Contains .0e-0 Union All Optional Match Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),_usn3=(#usn7 :@usn6:_usn3)-[`6esn`?:@usn5|:#usn7{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}) Foreach(#usn7 In .0e0 Starts With $usn1 Starts With {`6esn`}| Load Csv From $1000[$`2esn`..] As `1esn` Create (:@usn5),_usn3=((`1esn` :`8esn`)<-[:usn1|usn2]-(`` :`4esn`:usn2)<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``)))"), + octest_legacy:ct_string("Create Constraint On(usn2:`6esn`)Assert (@usn6 {usn1:0Xa In 1.0 In $@usn5})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]}).#usn7.`8esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:#usn8)Assert Exists(None(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 0xabc[..{usn1}][..\"d_str\"]).``?.`2esn`!.`1esn`!)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`2esn`)Assert Exists(Case When $`6esn`[..01][..{_usn3}] Then .9e-1 Ends With .0e-0 Ends With {_usn3} When usn2 Contains `2esn` Contains {1000} Then $`4esn`[$@usn6...12e12] End.`7esn`?)"), + octest_legacy:ct_string("Unwind $`6esn`[..01][..{_usn3}] As #usn7 Optional Match Shortestpath(((`` :`7esn`))),Allshortestpaths((:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[*{usn1:{`6esn`} In .0e0 In $0,usn1:07[..$`5esn`]}]-(:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})) Using Index @usn5:`5esn`(usn2) Using Index @usn5:usn1(`4esn`) Create Unique ((#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[@usn6?{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}))"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:usn2)Assert Case When {usn2} Is Not Null Is Not Null Then false Contains {`7esn`} When $12[$`6esn`..][01..] Then .0e-0[..``][..$7] End.#usn8.@usn6? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`7esn`)Assert `3esn`({`3esn`}[...1e1][..0]).`7esn`?.usn1! Is Unique"), + octest_legacy:ct_string("Delete {12} Ends With 1e1,(`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Is Not Null Is Not Null,[`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where .0e-0[..``][..$7]|0[..12][..{`8esn`}]] Ends With Single(`2esn` In $@usn5 Is Not Null Is Not Null Where .9e1[$`1esn`..][$``..]) Ends With All(@usn6 In 9e12[..usn2][.._usn3] Where `8esn`[_usn4]) Remove Reduce(usn1=Null In {7},`3esn` In 8.1e1 Contains .9e-1 Contains false|00[$_usn4][$`1esn`]).usn1?,Reduce(@usn6=$`8esn` =~{`6esn`} =~12,#usn7 In .0e-0 In 12|123456789[_usn4..`1esn`][$`6esn`..{@usn6}]).`3esn`!,Case 7 Starts With 9e-12 When .9e12 Is Not Null Is Not Null Then 1000[{`1esn`}..][$`3esn`..] Else {`6esn`}[6.0e0..9e0][.9e1..12e12] End.`1esn`"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:#usn7]->()Assert Exists([`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$usn2 Starts With $999 Starts With .0e0].usn1)"), + octest_legacy:ct_string("Create Shortestpath(((`7esn` {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))),`5esn`=Shortestpath((((#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})<-[? *1000..]->({usn1:true In 0.0,@usn5:{`1esn`} Is Null})<-[`4esn`?:`4esn`|:`2esn`]->(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})))) Create Unique `4esn`=((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})<-[ *01234567..{usn1:{12} Contains `8esn` Contains @usn5}]->(usn1 :@usn6:_usn3)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})),(:`3esn`{@usn5:9e12[..usn2][.._usn3]})<-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]->(:`5esn`:`7esn`{`1esn`:{1000}[..`5esn`][..9e12]})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(@usn5 :`3esn`{`8esn`:0x0 Ends With #usn8 Ends With .9e-1}) Union Create (#usn8 :_usn4:`2esn`) Delete Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {12} Ends With $`3esn` Ends With 0xabc)[Case When {0} Is Null Is Null Then $``[1.0..][_usn3..] Else 999[..$@usn5][..``] End..],Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null,$0 =~{@usn5} =~1e1 Start _usn4=Node:@usn6(#usn8='s_str') Union Start `4esn`=Node:usn2(usn1={_usn3}) ,`4esn`=Node:@usn6(\"d_str\")"), + octest_legacy:ct_string("Drop Constraint On()-[`5esn`:#usn7]->()Assert Exists((:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[#usn8?:_usn3 *..123456789]->(usn1 :_usn4:`2esn`).`2esn`.``)"), + octest_legacy:ct_string("Drop Constraint On(#usn7:`7esn`)Assert Exists(@usn5(Count(*)[Count ( * )][{0}],`4esn` =~010).`7esn`._usn4?.@usn5?)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:#usn8)Assert Exists(Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where 0[10.12e12]|$usn2[..$999][..#usn8]).`6esn`!.#usn7!)"), + octest_legacy:ct_string("Create Unique `5esn`=Allshortestpaths((({`6esn`:8.1e1 Contains .9e-1 Contains false}))) Return {1000} Is Null As `2esn`,(`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` Ends With 10.12e12) As `8esn`,$`` =~$_usn3 Order By {`5esn`} Desc,@usn5 =~$#usn7 =~{usn1} Ascending Skip .12e-12[9e1] Limit (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])] Match _usn4=Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]}))),`3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})) Using Join On `6esn`,_usn3 Using Index @usn5:@usn6(`5esn`) Union All Optional Match `4esn`=(#usn7 :@usn5)-[:`8esn`|:#usn8 *0X7..0Xa]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(_usn4 :`5esn`:`7esn`{_usn4:$_usn3[.0e-0..999]}),({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`}) With @usn5[9e-1..{`1esn`}] As ``,`1esn` Is Not Null As `6esn`,Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) Ends With `2esn` As @usn5 Limit [`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]][None(#usn7 In .0e-0 In 12 Where $12 In {usn2})..{`1esn`:{0} Is Null Is Null}][Extract(#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12|{`5esn`} Is Not Null Is Not Null)..Reduce(`7esn`=`7esn` Ends With 10.12e12,usn2 In $`5esn`[{`4esn`}][{0}]|@usn5[9e-1..{`1esn`}])] Where {`1esn`} Contains 1.0 Contains 4.9e12 Union All Foreach(@usn6 In $0 Ends With $usn1 Ends With {``}| Remove Shortestpath((({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))).@usn5.`1esn`?,{@usn5:{0} In {`1esn`}}.#usn7?.`4esn`! Load Csv From 0.12 In $`` As usn2 )"), + octest_legacy:ct_string("Match _usn4=((_usn3 :`6esn`)<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})),Allshortestpaths(((`1esn` :usn2{`8esn`:12.0[...0e0]}))) Where $`5esn`[$_usn3][$12] Return Distinct {@usn6:$12 Is Null} In (`4esn` {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}) As usn2,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null Limit 01 =~07 Remove {`7esn`:`3esn` Starts With 9.1e-1 Starts With .9e-1}.@usn6?,All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 0 In 2.9e1 In 7).#usn7!,#usn8(Distinct _usn4 Ends With {`8esn`} Ends With usn2).`6esn`?"), + octest_legacy:ct_string("With Distinct *,None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0) Optional Match (:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})<-[usn2?:`2esn`|`5esn`{``:{#usn7} =~$@usn6 =~$7}]->(usn2 :`2esn`:`4esn`{`6esn`:Count(*)[$7]}),Shortestpath((#usn8 :`5esn`:`7esn`{usn2})) Unwind `4esn` =~_usn4 =~0e-0 As `7esn` Union All Unwind $usn1[0e0...9e-12] As usn1 Match (`6esn` :_usn4:`2esn`) Using Index _usn3:usn2(`4esn`) Using Scan #usn8:`1esn` Where $`5esn` =~Count(*) =~1.9e0 Load Csv With Headers From 9e-1[{7}..1e-1][0.12..{12}] As @usn6 Union All Return *,0.12 In $`4esn` In $`3esn` As usn1 Skip #usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) Limit Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] With Distinct *,0.12 In $`4esn` In $`3esn`,{`8esn`} In {_usn3} In 6.0e0 As `5esn` Order By {`3esn`} Is Not Null Is Not Null Ascending,01234567 Ends With .0e0 Ends With 12e12 Descending,Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})) Asc Skip .9e1 In {#usn7} In .9e-12"), + octest_legacy:ct_string("Unwind {@usn6} In 9e12 As usn2 Unwind Case 9e-12[$7..] When {``} Is Null Is Null Then .9e12 Contains 0 Contains $0 When Null Then $@usn6[.1e-1][9e12] End[..Extract(usn1 In $@usn6 Is Null Is Null Where 0Xa In 1.0 In $@usn5|Null[#usn7..][9.1e-1..])][..(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`3esn`?:`1esn`|:`1esn`]-(#usn8 {``:@usn6 Starts With #usn7,@usn6:7[..123456789][..true]})] As `2esn` Remove Any(#usn7 In .0e-0 In 12 Where 123.654 Ends With {1000} Ends With 9e12).usn2.`6esn`.#usn7?,_usn3({`5esn`} Is Not Null Is Not Null,$usn1 Contains 4.9e12 Contains $`2esn`).usn2?,Any(`7esn` In 0.12 Is Not Null Where 01234567[1000..][$`8esn`..]).`1esn`.usn2?.usn1!"), + octest_legacy:ct_string("Drop Constraint On()<-[``:`7esn`]-()Assert Exists(Extract(usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|{`3esn`}[..0xabc][..{`6esn`}]).`8esn`?)"), + octest_legacy:ct_string("Using Periodic Commit 0X0123456789ABCDEF Load Csv From #usn7 Is Null Is Null As `2esn` Fieldterminator 's_str' Merge Shortestpath((((:`3esn`{usn2:01234567[10.12e12][0Xa]})-[_usn3?{`8esn`:{usn2} Is Not Null Is Not Null}]->({`7esn`:.9e12 Is Not Null Is Not Null})-[#usn8?:`4esn`|:`2esn` *7{`6esn`:{0} Ends With 0Xa,usn1:.9e1 Is Null Is Null}]->({`1esn`:01 =~{_usn3} =~01,`8esn`:{#usn7} Ends With 999 Ends With 12})))) On Create Set `4esn` =Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null,{``:`6esn` =~999 =~$999}.`3esn`! =.1e1 In $999 In {#usn8},@usn5 =9e1 In $1000"), + octest_legacy:ct_string("Merge (:`4esn`:usn2{usn2:0.0[00..][0xabc..],usn2:$`7esn` Starts With 's_str'})-[`3esn`?:`1esn`|:`1esn`]-(`7esn` :usn1)<-[:`4esn`|:`2esn`{usn1:3.9e-1 Contains $@usn5}]->(@usn6 {``:$`6esn` Starts With 0.0}) On Match Set @usn6+=00 =~`4esn` =~.9e-12,`3esn` =$123456789,[usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF].`5esn`! =.0e-0 Ends With $`2esn` Ends With `5esn` With Distinct $`8esn`[{`2esn`}..11.12e-12][{`7esn`}..@usn5],{999} Contains $12 Contains 00 As usn2 Order By {`8esn`}[..`5esn`][..01] Asc,[@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1][(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)..] Asc Where {#usn7} Is Not Null Unwind 00[{1000}] As usn1 Union All Unwind 0.0[$`4esn`] As `2esn` Create Allshortestpaths(((:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))),((usn2 :`2esn`:`4esn`)<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]->(_usn4 :`6esn`$_usn3)-[usn2?*]->(@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})) Remove (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)}).``"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv From [@usn6 In 9e12[..usn2][.._usn3] Where 9e-1 Is Not Null] Starts With Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789) Starts With All(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0) As _usn4 Fieldterminator 's_str'"), + octest_legacy:ct_string("With Distinct Allshortestpaths((({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)))[Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0])..][Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End..] As #usn8,{12} Ends With 1e1 As `8esn` Skip {@usn6:$12 Is Null} In (`4esn` {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}) Where @usn6 Ends With $`2esn` Ends With 1.0 With {usn2} In false,{_usn4} In 0X7 In 0e0 As `2esn` Order By {#usn8} In {12} In .9e12 Asc,9e0[`1esn`..0e-0][00..`1esn`] Ascending With $12 As _usn4 Order By 123.654 Is Not Null Is Not Null Descending,(`6esn` $_usn3)<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})-[?{#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}]->(_usn3 :#usn7:`8esn`)[Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End] Asc,Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1) Starts With Case 7.0e-0[$`6esn`..] When \"d_str\"[0x0..{@usn6}][$@usn5..0] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else $`5esn`[{`4esn`}][{0}] End Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`) Asc Skip true In 0.0 Where `3esn` =~$#usn7 Union All Remove Reduce(`3esn`={usn2} Is Not Null Is Not Null,`7esn` In 0.12 Is Not Null|$@usn5 =~{`3esn`})._usn4! Union Merge Shortestpath((`4esn` :`8esn`{`6esn`:9e-1[0.0..],`8esn`:0X0123456789ABCDEF In false})-[:`1esn`|:`1esn` *0{`8esn`:2.12[{12}],`7esn`:$@usn6[``..][3.9e-1..]}]->(:`2esn`:`4esn`{usn2:$@usn6[.1e-1][9e12],`5esn`:12e12 Is Not Null Is Not Null})-[`5esn`?:#usn7|:@usn5{usn2:#usn7[123.654][{12}]}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})) On Create Set _usn3+=Case {`4esn`} Ends With Count(*) When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] When $#usn7 Contains 3.9e-1 Then 123.654[10.12e12..$12][6.0e0..{#usn8}] Else $usn1[0e0...9e-12] End[Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))..][Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})..],#usn7+=[`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|01[$`1esn`..$`7esn`][{usn2}..12.0]][(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[`3esn`?:@usn5|:#usn7*{`3esn`:12.0[..Count ( * )][..@usn6],`2esn`:8.1e1 Contains $@usn6}]-(#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]-(:_usn3{_usn3:010[..9e-1][..0X7]})..][[`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 0X0123456789ABCDEF Is Not Null Is Not Null]..],Case When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else `6esn`[3.9e-1..`8esn`][12.0..0.0] End.`7esn`?.`5esn`?.#usn8! =7.0e-0 Is Not Null Create `1esn`=Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]}))),usn2=((:`7esn`{`4esn`:@usn5 =~$#usn7 =~{usn1}})-[`8esn`{#usn8:.12e12[..7]}]-({`6esn`:1000[{`1esn`}..][$`3esn`..]})<-[`1esn`? *0{@usn6:true Is Null}]-(_usn4 ))"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`8esn`)Assert Exists([@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`]].`2esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[_usn3:`3esn`]-()Assert Exists(All(`2esn` In $@usn5 Is Not Null Is Not Null Where `6esn`[3.9e-1..`8esn`][12.0..0.0]).`5esn`)"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`2esn`)Assert count(Distinct $`8esn` =~{`6esn`} =~12,0[..{#usn7}][..$_usn3]).#usn8 Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[``:@usn5]->()Assert Exists(Filter(`7esn` In 0.12 Is Not Null Where .1e-1 Contains .12e-12)._usn3.`5esn`!)"), + octest_legacy:ct_string("Load Csv With Headers From Filter(#usn7 In .0e-0 In 12 Where 00[$``])[[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $`4esn`[usn2..]|3.9e-1 Contains $@usn5]] As usn1 Fieldterminator \"d_str\" Merge (({`3esn`:`5esn` Ends With Count(*)})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2)-[?:@usn5|:#usn7 *0]->({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})) On Create Set usn2+=Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null),#usn8 =None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) Merge `1esn`=Allshortestpaths((_usn3 {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})) On Match Set @usn6 =$@usn6[.1e-1][9e12] Union Delete $`1esn`[$`3esn`..`8esn`],Reduce(`6esn`=`2esn`[`7esn`][1000],usn2 In .12e-12 Ends With `2esn`|010[..9e-1][..0X7]) Contains `7esn` Contains Case When 9e1 Ends With 9e12 Ends With 0x0 Then {12} Ends With 1e1 Else `4esn` Contains 0X0123456789ABCDEF Contains $usn2 End Optional Match #usn7=Shortestpath((((`5esn` :_usn3)<-[?:`2esn`|`5esn`]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2)))),(((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))) Using Scan `1esn`:`` Using Index _usn3:`3esn`(`4esn`) Return Distinct *,3.9e-1[{@usn6}..][01234567..] Skip 9e0[{7}...0e-0][Null..@usn5] Limit 0X0123456789ABCDEF[1e1..] Union All Match #usn8=Shortestpath(((#usn8 {@usn5:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})<-[`7esn`:`4esn`|:`2esn`*{``:true Is Null,_usn3:$12 Ends With 7.0e-0 Ends With 9e-12}]->({`6esn`:3.9e-1[..$1000][..0.12]}))) Using Join On `4esn`,`2esn`,`` Remove {`8esn`:false Starts With 0 Starts With 2.9e1,@usn6:010 Starts With 9e12 Starts With 1000}.`3esn` Load Csv From (`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Is Not Null Is Not Null As `1esn` "), + octest_legacy:ct_string("Return Distinct {@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Contains Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..]|$12 In {usn2}) Contains [@usn6 In 9e12[..usn2][.._usn3] Where $`3esn` =~#usn8 =~0x0] As `` Order By $`1esn`[..12e-12][...9e12] Asc,`4esn` =~_usn4 =~0e-0 Descending,{12} Is Null Is Null Descending Skip Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]) Is Not Null Is Not Null Limit {7}[#usn7..0xabc] Create Unique `6esn`=((:#usn7:`8esn`{usn2:`1esn` =~{12} =~{999}})),(({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})<-[_usn4 *010..0{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]}]-($123456789))"), + octest_legacy:ct_string("Merge @usn6=Allshortestpaths((((@usn6 :`5esn`:`7esn`)-[`8esn`{#usn8:.12e12[..7]}]-({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})))) On Create Set {#usn7:12e12,`7esn`:$#usn8[$0..`3esn`][1e-1..$7]}._usn3!.`6esn`!.`5esn` =`3esn`[{`4esn`}] On Create Set (@usn6 :@usn5)-[`3esn`? *..07]-(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]}).usn1!.`3esn`.`2esn`! ={`4esn`}[..{`2esn`}],@usn6 =$usn1[..$999][..0e0] Return .1e-1 Starts With @usn6 Starts With _usn3,Shortestpath((:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})) Starts With {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF} Starts With Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})),(usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..])"), + octest_legacy:ct_string("Return Distinct {0}[.1e-1..][_usn4..],`3esn` Contains 1000 Contains 7.0e-0 Order By $@usn6[...9e-1] Descending,$#usn7 Starts With $123456789 Descending,Case {1000}[..{usn1}][..1e-1] When {@usn5}[10.12e12..] Then 1.0 Is Null Is Null When {`3esn`} Is Not Null Is Not Null Then .1e1 Contains 1e-1 Contains #usn8 Else $`5esn`[{`4esn`}][{0}] End[..{usn1:1.9e0[..0][.._usn3],`7esn`:1.9e0[.12e-12][9e-12]}][..{`1esn`:{0} Is Null Is Null}] Asc Union All Create Allshortestpaths((((:`7esn`{usn2:00 Is Not Null Is Not Null})<-[`8esn`? *..123456789{@usn6:5.9e-12[\"d_str\"..][{`6esn`}..],`7esn`:{@usn5}[10.12e12..]}]->(:`3esn`{usn2:01234567[10.12e12][0Xa]})<-[ *1000..{`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]->(`` )))),usn1=((`4esn` :_usn4:`2esn`{#usn8:\"d_str\" Contains {@usn6}})<-[?{@usn5:@usn6[999][1000]}]->(`1esn` ))"), + octest_legacy:ct_string("With Distinct *,$`4esn`[#usn7][8.1e1] As `2esn` Skip .1e1 Contains 1e-1 Contains #usn8 Limit 9e1 Ends With `7esn` Ends With 2.12 Where .1e1 Is Not Null Is Not Null Detach Delete Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000),{`4esn`}[..{`2esn`}] Create Allshortestpaths(({`6esn`:8.1e1 Contains .9e-1 Contains false})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})),@usn6=Allshortestpaths(({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})<-[usn2:usn1|usn2]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null})) Union Start `6esn`=Rel:@usn6(`8esn`='s_str') Load Csv With Headers From {123456789} =~@usn5 As _usn4 Union All Unwind 4.9e12 In 9e12 In .9e-12 As `8esn` Optional Match usn1=((`4esn` :_usn4:`2esn`{#usn8:\"d_str\" Contains {@usn6}})<-[?{@usn5:@usn6[999][1000]}]->(`1esn` )) Detach Delete {`6esn`} In {_usn4} In $12,{``} Contains 0.0 Contains `4esn`,[`` In `7esn` =~#usn8 =~\"d_str\" Where $`6esn` Starts With 0.0|$usn1[9e1][{999}]] In @usn5() In Case When $#usn7 Contains 3.9e-1 Then .12e12 Starts With 5.9e-12 Starts With `4esn` When {1000}[`2esn`...0e-0][9e-1..0X7] Then 010[...12e-12] End"), + octest_legacy:ct_string("Create _usn4=({`5esn`:`1esn` In 010 In 1e-1})<-[?:@usn6|:`4esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]-(`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]})"), + octest_legacy:ct_string("Create Constraint On(``:`6esn`)Assert Exists(Shortestpath((`4esn` :_usn3)<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]})).``!)"), + octest_legacy:ct_string("Delete $@usn5 Starts With #usn7,999 Starts With 7.0e-0 Starts With true,{`8esn`}[..999][.._usn3] Union All Detach Delete `7esn`[1.9e0..5.9e-12][9e0..@usn5],[usn2 In $`5esn`[{`4esn`}][{0}] Where $usn2[..$999][..#usn8]][2.9e1..][None(usn2 In .12e-12 Ends With `2esn` Where `7esn`[1.9e0..5.9e-12][9e0..@usn5])..],8.1e1 Contains $@usn6 Create Unique Shortestpath((:`3esn`)),`3esn`=(usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})"), + octest_legacy:ct_string("Drop Constraint On(usn2:`8esn`)Assert (`4esn` :@usn5)-[usn1?:`3esn`|`3esn`*..]-(`1esn` ).#usn8?._usn4.`7esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`6esn`:@usn5]->()Assert Exists([`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {`7esn`} Is Not Null Is Not Null].`8esn`)"), + octest_legacy:ct_string("Create Constraint On()<-[`7esn`:#usn8]-()Assert Exists(Any(usn1 In $@usn6 Is Null Is Null Where `3esn` Is Null).`6esn`?)"), + octest_legacy:ct_string("Remove All(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where {1000}[0..]).usn2,Extract(#usn7 In .0e-0 In 12 Where {0}[.0e-0][$`2esn`]).`8esn`!"), + octest_legacy:ct_string("Unwind exists(`7esn` In _usn4 In $`7esn`,9e1 Ends With `7esn` Ends With 2.12)[..Reduce(#usn8=5.9e-12 Contains {12} Contains {#usn8},usn1 In \"d_str\" Contains {@usn6}|{`6esn`}[@usn5..{@usn6}])][..Extract(usn1 In \"d_str\" Contains {@usn6} Where {`1esn`} Is Null|`` Contains {`6esn`} Contains 123456789)] As _usn4"), + octest_legacy:ct_string("Delete $`8esn` Contains _usn4,{usn2} Contains {0} Unwind {@usn6} =~Count ( * ) =~1.0 As `4esn` Create Allshortestpaths((_usn3 {#usn7:$999 =~false =~{`8esn`}})<-[usn2?:`2esn`|`5esn`{_usn4:{`5esn`}[.1e-1..1e-1][999..{_usn3}],`2esn`:{`1esn`}[..$_usn4]}]-(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})),Shortestpath(((`1esn` :`5esn`:`7esn`))) Union With Distinct 0[..12][..{`8esn`}] As _usn3,{`2esn`} Contains 0xabc Order By ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[_usn3?:@usn5|:#usn7]->(`` :``)-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Starts With Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`) Ascending,`3esn` =~$#usn7 Desc Limit Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where $usn2[..$999][..#usn8])[Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`)..] Union With {`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]} In Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}))) In Extract(_usn3 In `8esn`[_usn4] Where 0[..{#usn7}][..$_usn3]|0x0 Ends With #usn8 Ends With .9e-1) As `` Order By `4esn` =~_usn4 =~0e-0 Ascending Limit None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\") Starts With {@usn5:999 Ends With {#usn8},_usn4:Null In {7}} Where 0e0 =~{12} =~{1000} Remove None(#usn8 In 07[..$`5esn`] Where 0.0[$`4esn`])._usn3?.``._usn3! Remove {usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]}.#usn7?,All(`` In `7esn` =~#usn8 =~\"d_str\" Where {12} Starts With $`` Starts With 0X0123456789ABCDEF)._usn4?.`6esn`"), + octest_legacy:ct_string("Using Periodic Commit 07 Load Csv With Headers From `2esn`[`7esn`][1000] As `2esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:@usn5]->()Assert Exists(Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where 9e-1 Is Not Null).`3esn`?)"), + octest_legacy:ct_string("Using Periodic Commit 07 Load Csv With Headers From _usn4[{`3esn`}][00] As `6esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Return Distinct (:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 ) Ends With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) As `4esn`,#usn7 Contains .0e0 Contains $@usn6 As @usn6,999 Ends With {#usn8} As `7esn` Order By .9e12 Is Not Null Is Not Null Descending Skip .9e-1 Contains {#usn7} Limit `7esn` Ends With $123456789 Ends With 1e-1 With Distinct 0xabc[9.1e-1..] As usn2 Order By 0xabc Starts With 12 Starts With 0e-0 Descending,{`7esn`}[0.12] Ascending"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:`7esn`)Assert Exists(Reduce(#usn7=9e1[0.0],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|0.0[$`4esn`]).#usn8!.`1esn`!.`1esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:usn2)Assert {`3esn`:`5esn` Ends With Count(*)}.@usn6! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:_usn4)Assert Any(`2esn` In $@usn5 Is Not Null Is Not Null Where `1esn` Is Not Null Is Not Null).@usn5!._usn4.@usn5! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn2:`8esn`)Assert Exists(`8esn`(Distinct 8.1e1 Contains $@usn6,999 Contains {999} Contains 12).usn2?)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`1esn`)Assert Allshortestpaths(((`2esn` :`2esn`:`4esn`{#usn7:0 Starts With `7esn` Starts With 9e0})-[?:`4esn`|:`2esn` *01]->(`2esn` :_usn3{`6esn`:_usn4[{``}..{`6esn`}][$7..$_usn3],`6esn`:$`4esn` Ends With {999}})))._usn4? Is Unique"), + octest_legacy:ct_string("Unwind ``[$#usn7] As `3esn` Detach Delete 010[.0e-0..\"d_str\"][.9e0..123.654],1.9e0 In $@usn6 In $_usn3,Reduce(@usn6=0X0123456789ABCDEF Ends With {1000},usn1 In $@usn6 Is Null Is Null|.0e0 =~0 =~.0e0) Starts With None(`6esn` In 010[{`1esn`}..] Where _usn4 Ends With {`8esn`} Ends With usn2) Starts With Case When 01234567 Ends With .0e0 Ends With 12e12 Then @usn6 Starts With #usn7 Else .12e12 Ends With 07 Ends With 3.9e-1 End Union All Load Csv With Headers From {`8esn`}[9e-12..0] As `` With Distinct *,Any(usn2 In $`5esn`[{`4esn`}][{0}] Where .1e-1[2.9e1..][$`7esn`..]) Contains Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Contains Allshortestpaths((_usn3 :`4esn`:usn2)),9e1[...9e1][..$`6esn`] As `4esn` Create Unique `1esn`=((`4esn` :`8esn`{12}))"), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:``]-()Assert Exists(Case When 0e-0[$``..10.12e12] Then 3.9e-1[{@usn6}..][01234567..] End.`4esn`!)"), + octest_legacy:ct_string("Create Constraint On(@usn5:_usn4)Assert Exists((@usn6 )-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[`3esn`?:usn2]-(`8esn` {`6esn`:12[@usn6][{`2esn`}]}).usn2.`7esn`.#usn7)"), + octest_legacy:ct_string("Drop Constraint On()-[`8esn`:`3esn`]-()Assert Exists([`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]|7 Starts With 9e-12].usn2?.`6esn`)"), + octest_legacy:ct_string("Match `2esn`=Allshortestpaths(((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]}))),#usn8=((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})-[?:#usn7|:@usn5 *..00]-(:@usn5{`7esn`:01234567[\"d_str\"..][$`4esn`..]}))"), + octest_legacy:ct_string("Create Constraint On(#usn8:usn2)Assert Reduce(usn2={1000}[`2esn`...0e-0][9e-1..0X7],#usn8 In 07[..$`5esn`]|{`3esn`}[..{`4esn`}][..usn2]).`4esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:`4esn`)Assert Reduce(#usn7=$`8esn`[..5.9e-12][..`8esn`],#usn8 In 07[..$`5esn`]|$@usn5[``..]).`2esn`.usn2?.usn2! Is Unique"), + octest_legacy:ct_string("Drop Index On:#usn8(`6esn`)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:`5esn`)Assert None(usn1 In $@usn6 Is Null Is Null Where {12} Starts With $`` Starts With 0X0123456789ABCDEF)._usn3! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[_usn3:`2esn`]-()Assert Exists(Any(`7esn` In 0.12 Is Not Null Where 0.0[00..][0xabc..]).`5esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`7esn`)Assert (`8esn` :@usn6:_usn3)<-[$#usn8]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]}).usn2._usn4? Is Unique"), + octest_legacy:ct_string("Create Constraint On(usn1:@usn6)Assert (usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12})-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(`7esn` {@usn5:Count ( * )[_usn4..]}).`8esn`.``!.usn1? Is Unique"), + octest_legacy:ct_string("Unwind 0X0123456789ABCDEF[1e1..] As @usn5 Merge `2esn`=Shortestpath(((`4esn` :`3esn`))) Union Match _usn4=Shortestpath((_usn4 {`3esn`:.0e-0 In 12})),((`` :`4esn`:usn2)<-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]-(#usn7 {usn1:2.12[{12}]})) Start usn2=Node:_usn3(`7esn`='s_str') ,`8esn`=Rel:#usn7(\"d_str\")Where {`6esn`} Starts With @usn6"), + octest_legacy:ct_string("Create Constraint On(`2esn`:_usn3)Assert Exists([#usn7 In .0e-0 In 12 Where Count ( * ) Is Not Null Is Not Null|5.9e-12[\"d_str\"..][{`6esn`}..]].usn2)"), + octest_legacy:ct_string("With Distinct Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End In (:usn1)<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}) In [_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|usn2 Ends With $123456789 Ends With {999}] As _usn4 Skip $_usn3 Contains 1.0 Contains 0.12 Remove (_usn3 :`1esn`:``{`8esn`:{#usn8} In {12} In .9e12})<-[ *1000..{`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]->(`` ).#usn8?"), + octest_legacy:ct_string("Foreach(#usn8 In 9e12 Is Null| Unwind Allshortestpaths(((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}))) Is Null Is Null As usn2 Remove Filter(@usn6 In 9e12[..usn2][.._usn3] Where 123.654 Ends With {1000} Ends With 9e12).`3esn`?.`7esn`?,Allshortestpaths((((`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})-[`8esn`:`4esn`|:`2esn`]->(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1})))).`3esn`) Detach Delete [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End,8.1e1[$``] Remove (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)}).`8esn`.`3esn`?,@usn6:usn2"), + octest_legacy:ct_string("Using Periodic Commit 0X7 Load Csv With Headers From $`1esn`[9e0..$12] As _usn3 Unwind .12e12[..7] As #usn8 Delete 1e1 Ends With 12 Ends With 999"), + octest_legacy:ct_string("Unwind [`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] As `8esn` Merge `8esn`=(@usn6 :`5esn`:`7esn`) On Match Set (`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[? *..123456789{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:`7esn`{`5esn`:{`8esn`} Starts With .9e-1 Starts With 1000})._usn3._usn3?.`6esn`! =(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}) Is Not Null,#usn8 =0[4.9e12] Remove Extract(`7esn` In 0.12 Is Not Null Where {`1esn`}[{usn2}]|9e1 Ends With `7esn` Ends With 2.12).`2esn`?.`1esn`.usn2!,Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where {`3esn`} =~$@usn5 =~`2esn`|$1000 Starts With {@usn6} Starts With $@usn5).`3esn`?.`3esn`?.`4esn`? Union All Foreach(@usn5 In $`` Ends With 1e-1 Ends With $@usn6| Return *,_usn4[{``}..{`6esn`}][$7..$_usn3] Order By 9e0 Ends With {7} Desc,`4esn` =~_usn4 =~0e-0 Descending) Union All Return Distinct $`` Ends With #usn7 Ends With _usn3 As _usn3,{@usn6:2.9e1[{`2esn`}],usn1:01 Contains 9e-12 Contains $7} Is Null Is Null As @usn6 Order By `6esn`[..$0][..{7}] Asc,Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null) In `4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`) Ascending,{123456789} =~@usn5 Asc Limit Single(_usn3 In `8esn`[_usn4] Where `3esn` Contains `2esn` Contains {_usn4}) In Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`) In {7} With *,$999 Ends With `2esn` Ends With 12.0 As #usn8,All(usn1 In $@usn6 Is Null Is Null Where $`1esn`[4.9e12..][_usn3..])[..@usn5(Count(*)[Count ( * )][{0}],`4esn` =~010)] As `3esn`"), + octest_legacy:ct_string("Create Constraint On()-[usn1:`3esn`]->()Assert Exists(Single(usn1 In \"d_str\" Contains {@usn6} Where false Contains {`7esn`}).`6esn`)"), + octest_legacy:ct_string("Drop Constraint On(`2esn`:usn2)Assert Case 9e-12[$7..] When .1e-1 Contains .12e-12 Then true Is Null Else 0[..{#usn7}][..$_usn3] End.`` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn6:_usn3]-()Assert Exists(exists(_usn3 =~{7} =~123.654,12e12 Contains {0}).`6esn`?)"), + octest_legacy:ct_string("Load Csv With Headers From 0e0 Contains {`2esn`} As `2esn` Fieldterminator \"d_str\" Create ((`1esn` :`7esn`{usn1:3.9e-1 Starts With .9e0 Starts With {#usn7}})-[usn2? *01234567..]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})) Unwind None(#usn8 In 07[..$`5esn`]) Starts With (:#usn7:`8esn`{`5esn`:false[..usn2][..999]})<-[`7esn`:`4esn`|:`2esn`*{``:true Is Null,_usn3:$12 Ends With 7.0e-0 Ends With 9e-12}]->(`` :`7esn`) Starts With All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 123.654 Ends With {1000} Ends With 9e12) As `3esn`"), + octest_legacy:ct_string("Using Periodic Commit 0xabc Load Csv From $12 Contains false Contains {`1esn`} As usn1 Fieldterminator \"d_str\" Delete None(@usn6 In 9e12[..usn2][.._usn3] Where Count ( * )[_usn4..]) Is Null Is Null,{`5esn`}[.1e-1..1e-1][999..{_usn3}],$_usn3 Is Null Start `7esn`=Node:``(_usn3='s_str') Where 3.9e-1 Ends With {usn1} Ends With {`5esn`}"), + octest_legacy:ct_string("Create #usn7=(((:`3esn`)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1})))"), + octest_legacy:ct_string("Create Constraint On(usn1:`6esn`)Assert Case #usn8 Is Null Is Null When $1000[..0e-0][..010] Then 010 Starts With 9e12 Starts With 1000 End.`8esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(usn1:``)Assert None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $123456789)._usn4!.@usn6 Is Unique"), + octest_legacy:ct_string("Return Distinct Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null As #usn8,.9e1 Is Null Is Null As #usn8,00[..@usn6] Order By 12 Ends With 12e12 Asc,.9e12 Starts With 0X7 Starts With .9e-1 Asc Skip 00[Null..usn2] Limit 01[{usn2}..][1.9e0..] Return Distinct None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0) As usn2 Skip $#usn7[01..2.12][2.12..3.9e-1] Limit `5esn` Ends With Count(*) Union All With Distinct *,1.9e0[$`4esn`],All(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`]) Ends With Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e-12[9e1]) Merge ((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})<-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(`4esn` {`6esn`:Count ( * ) Contains 9.1e-1 Contains {`2esn`},`6esn`:$#usn8 Is Not Null Is Not Null})) On Create Set (`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[? *..123456789{@usn5:{usn2} Ends With {@usn6} Ends With 1000}]->(:`7esn`{`5esn`:{`8esn`} Starts With .9e-1 Starts With 1000})._usn3._usn3?.`6esn`! =(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}) Is Not Null,#usn8 =0[4.9e12] Optional Match `7esn`=Shortestpath(((usn1 :_usn4:`2esn`)<-[`3esn`?:@usn5|:#usn7]->({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[?{#usn7:`2esn`,`7esn`:$@usn5 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))),Allshortestpaths((:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})<-[_usn3?:`5esn`*..]-(:_usn4:`2esn`{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]})) Using Join On `5esn`,usn1,`7esn` Using Scan #usn8:`1esn` Where 8.1e1[..9.1e-1][...9e1] Union All Remove Reduce(`6esn`=.9e-12[.12e12..][0Xa..],#usn8 In 07[..$`5esn`]|.9e-12[.12e12..][0Xa..]).`5esn`?,Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 7 In 1e1 In {``}).`6esn`,All(usn2 In $`5esn`[{`4esn`}][{0}] Where Null[$`3esn`..][`1esn`..]).#usn8!.#usn8.`7esn` Optional Match ((usn1 :@usn6:_usn3)-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1})) Where $usn2 In #usn7 In #usn7 Load Csv With Headers From 11.12e-12 Starts With 1.0 Starts With 12.0 As #usn8 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Drop Constraint On()-[_usn4:`3esn`]->()Assert Exists(Single(usn1 In $@usn6 Is Null Is Null Where .9e1[$`1esn`..][$``..]).`8esn`?)"), + octest_legacy:ct_string("Create Constraint On()<-[@usn6:`5esn`]-()Assert Exists(Single(usn1 In \"d_str\" Contains {@usn6} Where {`1esn`} Is Null).`2esn`)"), + octest_legacy:ct_string("Drop Constraint On(usn2:usn1)Assert Single(usn2 In $`5esn`[{`4esn`}][{0}] Where $`4esn` In {999}).#usn8? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[@usn6:`3esn`]-()Assert Exists(Reduce(#usn7=0Xa[999],usn1 In {#usn7} =~.12e12 =~9e0|$@usn5[.9e-1]).#usn7)"), + octest_legacy:ct_string("Unwind 1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As `1esn` Return Distinct {@usn6:$12 Is Null} In (`4esn` {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}) As usn2,Case When .9e-1 Is Not Null Is Not Null Then $12[$`6esn`..][01..] When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] Else {`8esn`}[9e12..][{_usn4}..] End Is Null Is Null Limit 01 =~07 Remove Single(#usn8 In 07[..$`5esn`] Where 123.654 Ends With {1000} Ends With 9e12).``!"), + octest_legacy:ct_string("With Distinct usn2[12e-12..{`8esn`}][.12e12..{123456789}] As #usn8,$`1esn`[9e0..3.9e-1][`7esn`..`6esn`] As @usn6,Case 12.0[...0e0] When {#usn8}[..@usn5] Then `3esn` Is Null End Is Null Is Null Order By $`5esn` Is Not Null Is Not Null Ascending,Count ( * ) Contains 9.1e-1 Contains {`2esn`} Descending Skip $@usn5 Contains _usn3 Limit Extract(#usn8 In 07[..$`5esn`] Where .1e1 Ends With #usn7 Ends With {#usn7}|Null) Contains Allshortestpaths((`3esn` :`6esn`{_usn3:.12e-12 Ends With `2esn`,usn1:Null[#usn7..][9.1e-1..]})-[_usn3?:@usn5|:#usn7]->(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})) Where 12.0[...0e0] Create `2esn`=Shortestpath(((`7esn` {#usn8:2.9e1[{`2esn`}]})-[?:`1esn`|:`1esn` *..0x0{@usn6:.0e-0 In 12}]-(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0})-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]-(`1esn` :_usn4:`2esn`))),``=Shortestpath(({@usn5:$_usn4[..$999],#usn8:$`4esn` Ends With .12e12 Ends With 123.654})) Union All Foreach(`` In Shortestpath(((`2esn` :@usn5{_usn3:0[..12][..{`8esn`}]})<-[`2esn`? *7{`5esn`:false[..usn2][..999]}]->(_usn3 :usn1)))[..{_usn4:.9e-1 Ends With .0e-0 Ends With {_usn3},_usn4:9e1 Ends With 9e12 Ends With 0x0}][..Reduce(#usn8=`8esn`[_usn4],`1esn` In $12 In {usn2}|$`4esn` Is Not Null)]| Start #usn7=Relationship:#usn8(usn2={12}) Where 01234567 Ends With .0e0 Ends With 12e12 Unwind `6esn`[0X0123456789ABCDEF..][`8esn`..] As _usn4) Merge ((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})) On Create Set Case When 01234567 Ends With .0e0 Ends With 12e12 Then 00[$``] End.`1esn` ={1000} Ends With .12e12 Ends With 010 Optional Match `6esn`=((`3esn` :#usn8:@usn6)) Using Join On `6esn`,`1esn` Union Remove `2esn`(Distinct \"d_str\" Starts With $`7esn` Starts With 999).#usn8.`5esn`?.`4esn`?,(:usn1{`6esn`:$_usn3[usn2..][usn1..],#usn7:$_usn4 =~$#usn8 =~{`4esn`}})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7}).`5esn`,Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..]|{_usn3} In $#usn8 In $12)._usn3!.#usn8?.`5esn`! Unwind 11.12e-12 Starts With 1.0 Starts With 12.0 As @usn6 Merge _usn4=((usn1 {@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]})-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})<-[_usn3?:`5esn`*..]-({`1esn`:01 =~{_usn3} =~01,`8esn`:{#usn7} Ends With 999 Ends With 12}))"), + octest_legacy:ct_string("Merge usn2=Shortestpath((((`3esn` $0)-[`4esn`? *01{#usn8:12.0[..Count ( * )][..@usn6]}]-(usn1 :#usn8:@usn6)-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2)))) Union All Load Csv With Headers From {@usn6} =~Count ( * ) =~1.0 As `6esn` Union Create Unique _usn4=((_usn3 :`6esn`)<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})) Return [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] =~Single(usn1 In $@usn6 Is Null Is Null Where $7[.1e-1..{@usn6}][$7..{`1esn`}]) =~Case @usn5 In Null When {usn1} Is Not Null Then $`5esn` Is Null When $`8esn`[..5.9e-12][..`8esn`] Then 7.0e-0[$`6esn`..] Else $0 Contains $123456789 Contains {`3esn`} End,_usn3 =~{`4esn`},{usn1} Contains `4esn` As `6esn` Order By 12[@usn6][{`2esn`}] Ascending,Single(`` In `7esn` =~#usn8 =~\"d_str\")[Reduce(`3esn`=1e1[$_usn3],`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1[..9.1e-1][...9e1])][[#usn7 In .0e-0 In 12 Where \"d_str\"[0x0..{@usn6}][$@usn5..0]|{7}[$@usn5..123456789][1e1..1.9e0]]] Ascending,None(`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]) Starts With Reduce(`3esn`=.1e1 Ends With #usn7 Ends With {#usn7},usn2 In $`5esn`[{`4esn`}][{0}]|\"d_str\" In usn2 In $`7esn`) Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`1esn`}[{usn2}]) Asc Remove Allshortestpaths((((@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})-[:`3esn`|`3esn`]-(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(:`4esn`:usn2)))).`6esn`?"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`7esn`)Assert Extract(`6esn` In 010[{`1esn`}..] Where {`4esn`}[00..]|`6esn` =~999 =~$999).`1esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`4esn`:``)Assert None(`3esn` In 8.1e1 Contains .9e-1 Contains false).``.`7esn` Is Unique"), + octest_legacy:ct_string("Create Unique #usn8=({`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}) With *,$999 =~0e0 =~0X7 As `1esn` Skip {7} Is Not Null Optional Match (usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[``:`1esn`|:`1esn`{@usn5:999[..$@usn5][..``],@usn5:0xabc[..Count(*)][..$`5esn`]}]-(`1esn` :``{_usn4:$@usn5 =~{`3esn`}}) Using Index #usn7:`4esn`(@usn5) Where {`6esn`} =~2.12 =~123.654"), + octest_legacy:ct_string("Detach Delete $usn1 Contains 4.9e12 Contains $`2esn`,Filter(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}]) Starts With Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3)) Starts With {@usn5:$123456789 Is Not Null Is Not Null},{#usn7} Is Not Null"), + octest_legacy:ct_string("Drop Constraint On(_usn3:_usn3)Assert [`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` =~#usn8 =~\"d_str\"].#usn7! Is Unique"), + octest_legacy:ct_string("Remove (`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[usn1?:`3esn`|`3esn`*..]->(:usn1{#usn8:$`8esn` Is Not Null Is Not Null,`5esn`:3.9e-1 Starts With .9e0 Starts With {#usn7}})-[:usn1|usn2 *7{`8esn`:{usn2}[{999}..][9e12..]}]->(`` {`7esn`:`4esn` =~010}).usn2!,Case When `2esn` Starts With 010 Starts With `` Then {`7esn`} Is Not Null Is Not Null When $@usn6 Is Null Then {usn2} Is Not Null Is Not Null End.`8esn`.`3esn`?.usn2 With Distinct 1e-1[$`4esn`] Order By Count(*)[Null..][01234567..] Ascending,Count ( * ) =~.9e1 =~$#usn8 Ascending Skip Count ( * ) Contains 9.1e-1 Contains {`2esn`} Where .9e1 Is Null Is Null Optional Match `1esn`=((usn2 :`2esn`:`4esn`{`7esn`:@usn5 =~$#usn7 =~{usn1}})<-[`1esn`:`4esn`|:`2esn`{`5esn`:$_usn3[usn2..][usn1..]}]->(:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})) Where 3.9e-1[{@usn6}..][01234567..] Union Optional Match @usn6=Allshortestpaths(((#usn7 {`2esn`:`8esn`[.12e12..],_usn3:usn1 =~0Xa =~0}))),_usn4=((#usn7 :@usn6:_usn3{``:9e1[0.0]}))"), + octest_legacy:ct_string("Unwind Any(`7esn` In 0.12 Is Not Null Where $0 Contains $7) Is Not Null Is Not Null As `2esn` Start `3esn`=Node:`6esn`(#usn7={_usn4}) Match (({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})<-[usn2:`4esn`|:`2esn` *0X7..0Xa]-(#usn7 :#usn7:`8esn`)) Union All Unwind .0e-0 Contains $1000 As `` Start @usn5=Rel:`8esn`(usn1=\"d_str\") ,_usn3=Relationship(0x0)Where $@usn5 Is Null Is Null Union All Remove Filter(_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null).`6esn`,count(Distinct).`4esn`?.`2esn`,(@usn6 {usn1:0Xa In 1.0 In $@usn5})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]}).`8esn`! Return usn2[12e-12..{`8esn`}][.12e12..{123456789}] As #usn8,Case When $`6esn`[0..{@usn6}][@usn5..1000] Then .0e-0[..01234567] When {123456789} Starts With $_usn4 Starts With 0x0 Then 9e0[`3esn`][0] End[{`3esn`:false Starts With 0 Starts With 2.9e1,@usn6:9e-12 Ends With {1000}}..{`8esn`:_usn3[{#usn7}]}] As usn1 Skip Allshortestpaths((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))[usn1..] Limit usn2 Ends With $123456789 Ends With {999} Create Shortestpath(((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})))"), + octest_legacy:ct_string("Start #usn7=Rel:@usn5('s_str') Where false Contains {`7esn`} Union Delete Reduce(`1esn`={`5esn`}[01234567..][5.9e-12..],usn1 In {#usn7} =~.12e12 =~9e0|$`6esn`[..01][..{_usn3}]) Ends With (`2esn` :usn1)<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-(_usn3 :`1esn`:``) Ends With {usn1:{12}[6.0e0..{usn2}][{_usn3}..{#usn7}]},6.0e0[$12..0.12],$`3esn` In 01 In Count ( * ) Merge Shortestpath(((:@usn5{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null})))"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`5esn`)Assert Exists({#usn8:$`8esn` =~{`6esn`} =~12,_usn3:11.12e-12 Contains usn1}.#usn8?)"), + octest_legacy:ct_string("Load Csv From `1esn`[..$1000] As #usn8 Foreach(@usn6 In 9e1 =~$`8esn` =~10.12e12| Load Csv From Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]) Is Not Null Is Not Null As #usn8 ) Remove `5esn`:`6esn`,[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01|_usn4 Ends With {`8esn`} Ends With usn2].usn1.`7esn`.@usn6 Union All With Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,999 Starts With 7.0e-0 Starts With true As _usn3 Order By 2.12[010..][{999}..] Descending Limit Shortestpath((:#usn8:@usn6{`2esn`:07 Ends With $_usn3 Ends With $#usn8})-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})) Starts With {``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF} Starts With Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})) Start `2esn`=Node:`8esn`('s_str') ,`1esn`=Rel:``({`4esn`}) With Distinct *,Any(usn2 In $`5esn`[{`4esn`}][{0}] Where .1e-1[2.9e1..][$`7esn`..]) Contains Allshortestpaths(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) Contains Allshortestpaths((_usn3 :`4esn`:usn2)),9e1[...9e1][..$`6esn`] As `4esn`"), + octest_legacy:ct_string("Create Constraint On()-[`6esn`:`7esn`]->()Assert Exists(0Xa.@usn6._usn4!)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:@usn5)Assert ({`1esn`:10.12e12 In Null In .12e12})<-[`6esn`?:@usn6|:`4esn` *12{`6esn`:{12} Starts With $`` Starts With 0X0123456789ABCDEF,@usn6:0 Starts With `7esn` Starts With 9e0}]->(`2esn` :`4esn`:usn2{`8esn`:.9e-1 Contains .9e0 Contains ``,_usn4:8.1e1 Contains .9e-1 Contains false}).``! Is Unique"), + octest_legacy:ct_string("Using Periodic Commit 7 Load Csv With Headers From {@usn5} Ends With 0Xa Ends With .12e-12 As `5esn` Fieldterminator 's_str' Load Csv With Headers From 0Xa Contains 12e-12 As #usn7 Fieldterminator 's_str'"), + octest_legacy:ct_string("Drop Constraint On(`3esn`:_usn4)Assert Allshortestpaths(((usn1 :@usn6:_usn3)-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1}))).`1esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`8esn`:`7esn`]-()Assert Exists(Extract(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12|01[`4esn`..]).`7esn`._usn3?.``)"), + octest_legacy:ct_string("Create Constraint On()-[usn1:`5esn`]-()Assert Exists(Single(#usn7 In .0e-0 In 12 Where 9e1[$``.._usn4][999..`3esn`]).@usn6?)"), + octest_legacy:ct_string("Remove 0e0.`4esn`!,usn1(Distinct #usn7 Contains .0e0 Contains $@usn6,.9e0 =~#usn7).`5esn`?,Single(usn2 In .12e-12 Ends With `2esn` Where $999 Ends With `2esn` Ends With 12.0).`8esn` Create ((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})),`1esn`=Allshortestpaths(((#usn8 {@usn5:{7}[$@usn5..123456789][1e1..1.9e0],@usn6:usn2 Starts With $usn1 Starts With 10.12e12})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc}))) Load Csv With Headers From Extract(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null)[{`1esn`:.9e-12[usn2]}][Filter(`7esn` In 0.12 Is Not Null Where 9e1 Ends With `7esn` Ends With 2.12)] As `7esn` "), + octest_legacy:ct_string("Create Constraint On(usn2:#usn8)Assert {_usn4:3.9e-1[{@usn6}..][01234567..],`2esn`:.12e-12[9e1]}.usn2! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`3esn`)Assert Exists(Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where 1e-1 =~$`7esn` =~1e1|{`6esn`}[@usn5..{@usn6}]).usn1!)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:@usn6)Assert Exists(Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {123456789}[...9e-1][..1.0]|010[{`1esn`}..]).`8esn`)"), + octest_legacy:ct_string("Drop Constraint On()-[``:@usn6]->()Assert Exists(Extract(usn2 In .12e-12 Ends With `2esn` Where 1e-1 Contains 0.0).@usn6.`2esn`?)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`5esn`)Assert Allshortestpaths((:usn1$1000)).`8esn`! Is Unique"), + octest_legacy:ct_string("Create Constraint On(#usn8:#usn8)Assert Exists(Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {0}[.1e-1..][_usn4..]|0e-0[..$usn2])._usn4!)"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:_usn3)Assert {@usn6:12e12[{`4esn`}..`4esn`][999..{@usn6}]}.usn1?.`8esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:#usn8)Assert Case When `1esn`[{@usn5}..][{_usn4}..] Then {`3esn`}[..{`4esn`}][..usn2] Else `4esn` Contains 0X0123456789ABCDEF Contains $usn2 End.`8esn`.`4esn`?.@usn5? Is Unique"), + octest_legacy:ct_string("Start usn1=Relationship:@usn6({999}) "), + octest_legacy:ct_string("Create Constraint On()<-[`6esn`:``]-()Assert Exists(Reduce(`3esn`=.0e0 =~0 =~.0e0,usn1 In \"d_str\" Contains {@usn6}|01234567[\"d_str\"..][$`4esn`..]).@usn5?)"), + octest_legacy:ct_string("Detach Delete $usn2 In #usn7 In #usn7 Union All Create Unique `2esn`=Allshortestpaths(((:#usn7:`8esn`{`8esn`:_usn4['s_str'][8.1e1]}))),#usn8=((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})-[?:#usn7|:@usn5 *..00]-(:@usn5{`7esn`:01234567[\"d_str\"..][$`4esn`..]})) Return Distinct 9e-1 Is Not Null,{`6esn`} In 11.12e-12 In 2.9e1 Order By `3esn` Is Null Is Null Asc,8.1e1[.1e1..][`4esn`..] Asc Skip @usn5[@usn6] Union All With Distinct *,$usn1[..$999][..0e0] As #usn7,.9e-12[{@usn5}] As `7esn` Order By 01 Ends With .0e0 Ends With 7.0e-0 Asc,Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]) Desc,.0e0[$usn1][0] Desc Skip 12e12[.9e12..07] Limit {`2esn`} Contains 0xabc Where 0X7[#usn7..][$@usn5..]"), + octest_legacy:ct_string("Using Periodic Commit 0 Load Csv From .1e1 Ends With #usn7 Ends With {#usn7} As `4esn` "), + octest_legacy:ct_string("Create Unique `7esn`=Shortestpath((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})-[:#usn7|:@usn5]-(:`1esn`:``{`8esn`:5.9e-12[0x0..]})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)),Allshortestpaths(((`` :`7esn`))) Union All Foreach(_usn4 In {12} Ends With $`3esn` Ends With 0xabc| Optional Match #usn7=(((:`3esn`)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))),`7esn`=Allshortestpaths(((:`7esn`)<-[#usn7?:_usn3 *999..123456789{@usn5:$12 In {usn2},usn1:5.9e-12 Is Null Is Null}]->(`` {`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654})-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:`8esn`{#usn8:2.9e1[2.12..1.9e0],#usn8:@usn6[true..]}))) Using Index `6esn`:usn1(`3esn`) Using Index usn2:``(`3esn`) Remove All(usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-1[1.9e0]).usn1) Create Unique (`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}),#usn7=Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))) Create Unique `7esn`=(:`8esn`$@usn5),`7esn`=Shortestpath(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) Union All Create Unique ((`5esn` {``:$_usn3 Starts With 010,`1esn`:$`8esn` =~{`6esn`} =~12})-[`3esn`?:`1esn`|:`1esn`]-({_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]})) Detach Delete 9e12 Is Null,12 Ends With {#usn8} Ends With $_usn4,#usn7 =~$@usn5 =~{7} Load Csv With Headers From {0}[`4esn`..{`8esn`}] As `5esn` "), + octest_legacy:ct_string("Create Unique ``=Allshortestpaths(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))) Detach Delete 2.12[010..][{999}..],Reduce(usn2=`4esn` Ends With 9e12 Ends With {`5esn`},`6esn` In 010[{`1esn`}..]|$@usn5[.9e-1]) Starts With Reduce(`4esn`=.0e-0 In 12,`7esn` In 0.12 Is Not Null|1.0 Is Null Is Null),Filter(#usn7 In .0e-0 In 12 Where #usn7[123.654][{12}])[[`` In `7esn` =~#usn8 =~\"d_str\" Where 1.9e0[.12e-12][9e-12]|1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )]]..Reduce(`1esn`=`2esn`,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|.9e0 =~#usn7)] Union Foreach(#usn8 In Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000)| Match Shortestpath(((usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})-[{#usn7:1e-1[$`4esn`]}]->(_usn4 :`1esn`:``{`3esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}))),(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})<-[`5esn`:@usn6|:`4esn` *010..0{`8esn`:0xabc Starts With 12 Starts With 0e-0}]-(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})<-[?:@usn6|:`4esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]-(`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]}) Using Index `1esn`:`1esn`(`4esn`) Using Join On _usn4,usn2,``) Optional Match `1esn`=((usn2 :`2esn`:`4esn`{`7esn`:@usn5 =~$#usn7 =~{usn1}})<-[`1esn`:`4esn`|:`2esn`{`5esn`:$_usn3[usn2..][usn1..]}]->(:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})) Where 3.9e-1[{@usn6}..][01234567..] Start `7esn`=Node( {999}) Where #usn7[$`8esn`][{`3esn`}] Union All Optional Match usn1=Allshortestpaths(({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})<-[usn2:usn1|usn2]-(`6esn` {_usn4:`1esn` Is Not Null Is Not Null})) Using Index @usn5:usn1(`4esn`) Return *,07[9e-1..][1e1..] As @usn5 Order By 6.0e0 Is Null Desc,Any(`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]) In Reduce(usn1=0e-0[$``..10.12e12],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|`3esn` Contains `2esn` Contains {_usn4}) Asc,$12 Ends With 12.0 Ends With $`4esn` Asc Foreach(_usn4 In {#usn7}[..\"d_str\"][..#usn8]| Unwind .12e12[$usn1..][{@usn6}..] As `6esn` Remove Reduce(usn2=12.0[..Count ( * )][..@usn6],#usn8 In 07[..$`5esn`]|#usn8[\"d_str\"..usn2])._usn4?._usn4)"), + octest_legacy:ct_string("Create ((`5esn` :_usn3)),Shortestpath(((:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})-[?:`4esn`|:`2esn`{usn1:{123456789} Starts With `6esn`,@usn5:9e1 Ends With 9e12 Ends With 0x0}]-(`2esn` :usn1))) Remove `3esn`:usn2,(:#usn7:`8esn`{`5esn`:false[..usn2][..999]})<-[`7esn`:`4esn`|:`2esn`*{``:true Is Null,_usn3:$12 Ends With 7.0e-0 Ends With 9e-12}]->(`` :`7esn`).`1esn` Remove Allshortestpaths(((:_usn3{`1esn`:$`4esn` Ends With .12e12 Ends With 123.654,#usn7:9e1 =~$`8esn` =~10.12e12})-[_usn3:#usn8|:``{#usn8:{_usn4} In 0X7 In 0e0,`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]-(@usn5 )<-[?:#usn7|:@usn5 *12]-(_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null}))).``?.usn1.@usn6?,{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:{12}}.#usn7.``!,Case When $usn1 Contains 4.9e12 Contains $`2esn` Then {usn1} Contains `4esn` Else {0} Ends With 0Xa End.@usn5"), + octest_legacy:ct_string("Create Constraint On()-[``:usn1]->()Assert Exists({`5esn`:{`4esn`}[00..]}.#usn8)"), + octest_legacy:ct_string("Detach Delete [_usn3 In `8esn`[_usn4] Where {#usn7} Starts With .1e-1|`3esn` Is Null] Contains `5esn`({#usn8} Ends With _usn3 Ends With `2esn`,.9e0 =~#usn7),01234567 Ends With .0e0 Ends With 12e12,0.12[8.1e1..0Xa][Count ( * )..{_usn3}] Remove {`5esn`:$`4esn` Ends With .12e12 Ends With 123.654,@usn6:{123456789} Contains $0}.`8esn`,({#usn7:12e12[.9e12..07]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})-[@usn5:`2esn`|`5esn` *7]->(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}).#usn8!,(`3esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[?:`4esn`|:`2esn` *01]-(`` :``).`4esn`.#usn7 Union With Distinct *,Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null Skip 0xabc Contains 12 Contains Null Limit $123456789 Contains 07 Contains 0.0 Load Csv From {_usn3:$`6esn`[0..{@usn6}][@usn5..1000]}[Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)][[usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1]] As `5esn` Fieldterminator 's_str' Union All Foreach(usn1 In 4.9e12 Is Not Null Is Not Null| Unwind Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[..None(#usn7 In .0e-0 In 12 Where 0xabc =~123456789)][..11.12e-12] As @usn5) Start usn2=Node:`2esn`(_usn4={#usn7}) ,`5esn`=Rel:`6esn`(`4esn`='s_str')Where 12[..$`5esn`] Remove Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`3esn`}[01234567][{#usn7}]|00 =~`4esn` =~.9e-12).`5esn`.`3esn`!"), + octest_legacy:ct_string("Drop Constraint On()-[@usn5:usn2]-()Assert Exists({_usn4:{7} Starts With 0x0 Starts With 9e1,#usn8:{@usn6} In 9e12}.`1esn`!)"), + octest_legacy:ct_string("Create Constraint On(_usn3:#usn7)Assert (`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(`1esn` :#usn7:`8esn`).@usn5.`5esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[usn2:@usn6]-()Assert Exists({`1esn`:$999 Is Not Null}.`6esn`?)"), + octest_legacy:ct_string("Drop Constraint On(`5esn`:@usn6)Assert Exists(Case {`7esn`} Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] End.usn1.usn2!)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:@usn5)Assert Reduce(usn1=$123456789 Is Not Null Is Not Null,`7esn` In 0.12 Is Not Null|.12e12 Ends With 07 Ends With 3.9e-1).`1esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:`2esn`)Assert Exists(usn1(Distinct 1.9e0[..0][.._usn3],$@usn5 Is Null Is Null).``)"), + octest_legacy:ct_string("Foreach(#usn8 In .12e12 Is Not Null| Remove Reduce(`8esn`=1e1[$_usn3],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e-0[..``][..$7]).`6esn`.`8esn`?,[`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1].`2esn`! Return {#usn7}[.12e-12] As `1esn`,5.9e-12[\"d_str\"..][{`6esn`}..] As #usn7 Limit Case When #usn7 Contains .0e0 Contains $@usn6 Then .12e-12[@usn6..'s_str'] Else {0}[`4esn`..{`8esn`}] End Is Not Null Is Not Null)"), + octest_legacy:ct_string("Remove Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]).`4esn`,Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 9e12 Is Null Is Null).`3esn`,(@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})<-[`6esn`?{`5esn`:.9e-1 Contains .9e0 Contains ``}]->(`7esn` :`7esn`).#usn7.`8esn` Create Unique _usn4=((_usn3 :`6esn`)<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})),usn2=(`2esn` {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(#usn8 {``:9e1[0.0]})-[:#usn8|:`` *..07{@usn5:01234567[\"d_str\"..][$`4esn`..],`6esn`:$usn1 Ends With {`2esn`} Ends With $usn1}]->(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1}) Union All Start usn2=Relationship:#usn8(usn2={@usn5}) ,`2esn`=Relationship:``(`1esn`=\"d_str\") Return *,3.9e-1 Ends With {usn1} Ends With {`5esn`} As `3esn`,Reduce(@usn5=`1esn` In 010 In 1e-1,`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1 Contains $@usn6)[All(usn1 In {#usn7} =~.12e12 =~9e0 Where $7)][`8esn`(.1e-1[2.9e1..][$`7esn`..])] Skip Shortestpath((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}))[[`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`}[@usn5..{@usn6}]|{1000}[..`5esn`][..9e12]]..][{_usn4:`8esn`[.12e12..]}..] Limit Count ( * ) Contains 9.1e-1 Contains {`2esn`} Return Distinct *,$_usn4[..01234567][..$`6esn`],{`1esn`} Is Null Order By None(`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]) Starts With Reduce(`3esn`=.1e1 Ends With #usn7 Ends With {#usn7},usn2 In $`5esn`[{`4esn`}][{0}]|\"d_str\" In usn2 In $`7esn`) Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`1esn`}[{usn2}]) Asc,Extract(usn2 In .12e-12 Ends With `2esn` Where `3esn` Contains 01 Contains 01) Is Not Null Descending,$`` =~$_usn3 Descending Limit {`4esn`}[00..] Union Foreach(_usn3 In 9e1[$``.._usn4][999..`3esn`]| Unwind {`8esn`}[.0e0..][999..] As `` Unwind .9e-1[`1esn`][7] As usn2)"), + octest_legacy:ct_string("Foreach(_usn4 In $_usn3 Contains 1.0 Contains 0.12| Create Unique #usn7=((:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}})<-[usn2? *0X0123456789ABCDEF]-($12)) Create Unique `7esn`=Shortestpath(((_usn3 {#usn7:$999 =~false =~{`8esn`}}))),#usn8=((#usn8 :@usn5)-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Foreach(#usn7 In $999[9e0]| Start #usn8=Node:_usn4({_usn3}) ,`1esn`=Rel:@usn6(`2esn`='s_str')Where 0[..{0}][..true] Load Csv From Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where .9e1[$`1esn`..][$``..]) As `4esn` ) Create ((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})),((`5esn` :_usn3)) Union All Merge usn1=({#usn8:_usn4[$_usn4]})-[:@usn6|:`4esn` *010..0{`7esn`:{12} Contains `8esn` Contains @usn5,_usn3:0.0[$`4esn`]}]->(#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7}) Optional Match (({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`2esn` *7]->(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})),Allshortestpaths((:#usn7:`8esn`{`3esn`:0.12 In $``})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}})<-[:#usn8|:`` *0]->({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})) With Distinct 0xabc[..Count(*)][..$`5esn`],{12} Ends With 1e1 As `8esn`,{`4esn`} In 1000 In {@usn5} Order By {7} Ends With 999 Asc,_usn3 =~{`4esn`} Desc Skip [`1esn` In $12 In {usn2} Where 12e-12 Starts With $`7esn`][{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}..] Where Null In {7}"), + octest_legacy:ct_string("Load Csv With Headers From 7 Starts With 9e-12 As @usn6 Fieldterminator 's_str' Union All Remove Allshortestpaths((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}})).``! Union Remove All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where {`8esn`} Starts With .9e-1 Starts With 1000).usn2?,Extract(#usn8 In 07[..$`5esn`] Where 0 In 2.9e1 In 7).`5esn`!.`3esn`,Case {`5esn`}[.1e-1..1e-1][999..{_usn3}] When 7.0e-0 Is Not Null Then {`8esn`}[@usn5][$`2esn`] End.usn1 Create Unique Allshortestpaths(((#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7})<-[`6esn`?:@usn5|:#usn7{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)}))),@usn6=((:`4esn`:usn2{usn2:$usn2 Ends With 00 Ends With 9e12,_usn4:{`5esn`}})-[?:``|:`7esn` *12{#usn8:10.12e12 Contains .9e0,usn1:0xabc Contains {12} Contains {`6esn`}}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))"), + octest_legacy:ct_string("Foreach(_usn4 In {12} Ends With $`3esn` Ends With 0xabc| Optional Match #usn7=(((:`3esn`)<-[`7esn`?]-(:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[_usn4 *..0x0{usn2:{_usn3} In $#usn8 In $12}]->(:_usn4:`2esn`{`5esn`:`1esn` In 010 In 1e-1}))),`7esn`=Allshortestpaths(((:`7esn`)<-[#usn7?:_usn3 *999..123456789{@usn5:$12 In {usn2},usn1:5.9e-12 Is Null Is Null}]->(`` {`1esn`:$`5esn` Is Null,_usn4:_usn3 =~{7} =~123.654})-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:`8esn`{#usn8:2.9e1[2.12..1.9e0],#usn8:@usn6[true..]}))) Using Index `6esn`:usn1(`3esn`) Using Index usn2:``(`3esn`) Remove All(usn2 In $`5esn`[{`4esn`}][{0}] Where 9e-1[1.9e0]).usn1) Create Unique (`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]}),#usn7=Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))) Create Unique `7esn`=(:`8esn`$@usn5),`7esn`=Shortestpath(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) Union Remove Reduce(`6esn`=5.9e-12 Contains {12} Contains {#usn8},usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{123456789} Ends With 11.12e-12 Ends With 00).`2esn` Load Csv With Headers From 9.1e-1 Contains {`3esn`} Contains $12 As @usn6 Fieldterminator 's_str' Union All Start `2esn`=Rel:`6esn`(`4esn`=\"d_str\") Load Csv With Headers From $12 Is Null As `3esn` Optional Match `6esn`=(:`1esn`:``{`1esn`:$`` Starts With $`4esn` Starts With `3esn`,`6esn`:usn1 =~false =~{999}})<-[:`2esn`|`5esn`{`8esn`:$`4esn`[$@usn6...12e12]}]-(usn1 {@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]})<-[?:usn1|usn2{#usn8:'s_str'[`2esn`][12.0]}]->(:`1esn`:``),(({`6esn`:3.9e-1[..$1000][..0.12]})-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-(:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00})) Using Join On @usn5,_usn4 Using Index `6esn`:`8esn`(`2esn`)"), + octest_legacy:ct_string("Foreach(_usn3 In Null| Optional Match ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),_usn3=Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``)))) Return *,$12 Is Null As #usn8 Order By ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[_usn3?:@usn5|:#usn7]->(`` :``)-[`2esn`? *0X0123456789ABCDEF{usn1:{123456789} =~.9e1 =~$_usn3,`7esn`:$`1esn`[9e0..$12]}]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`}) Starts With Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn`) Ascending,{`8esn`} =~$#usn7 =~2.12 Desc,Count(*) Starts With 07 Starts With $#usn7 Desc Skip @usn6[true..] Create ({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12}),#usn8=Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]})))"), + octest_legacy:ct_string("Remove `8esn`(#usn7[$`8esn`][{`3esn`}],`6esn`[$@usn5][01]).usn1.@usn5.`4esn`?,({``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]}).`1esn`?,None(usn1 In \"d_str\" Contains {@usn6} Where false =~{`8esn`} =~00).`5esn`!.#usn8! Create Unique ((`4esn` :#usn7:`8esn`)<-[:`8esn`|:#usn8{_usn4:$#usn7 Ends With {`5esn`} Ends With 01}]-({usn1:1000[{`1esn`}..][$`3esn`..],`3esn`:.1e1 Is Not Null Is Not Null})<-[usn1:#usn7|:@usn5 *999..123456789]->(`5esn` :``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})),(`1esn` {@usn6:6.0e0[$#usn7..$1000]})-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})<-[:`7esn`|usn1 *..0x0{`1esn`:Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}) Foreach(`1esn` In None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..])| Create Unique (((@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?*..]-(`` {`6esn`:1000[{`1esn`}..][$`3esn`..]})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))),Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)))"), + octest_legacy:ct_string("Optional Match #usn7=Shortestpath((`5esn` :``{_usn3:$_usn4[..$999],`7esn`:0X0123456789ABCDEF Ends With {1000}})-[*{@usn5:`6esn` =~999 =~$999}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})),#usn8=(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})<-[`1esn`:`4esn`|:`2esn`{`5esn`:$_usn3[usn2..][usn1..]}]->(:`6esn`{#usn8:$usn1 Contains 4.9e12 Contains $`2esn`,`7esn`:0[10.12e12]})-[`1esn`?:`3esn`|`3esn` *..00]-(`5esn` {@usn5:`2esn`}) Using Join On `1esn`,@usn6,usn1 Where 9e-12 Is Not Null Is Not Null Start _usn4=Node:@usn6(#usn8='s_str') ,`7esn`=Relationship:usn2(`8esn`=\"d_str\")Where 8.1e1[.1e1..][`4esn`..] Merge Allshortestpaths((:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})-[?:@usn5|:#usn7 *0]->(`4esn` :`8esn`{`4esn`:4.9e12 Starts With {``},`8esn`:$12 Ends With {_usn4} Ends With $`8esn`})-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12})) On Match Set `1esn` ={`2esn`}[0x0..9e0],Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null|Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]).`8esn`? ={123456789} Contains $#usn7 Contains {#usn8},`5esn` =Case .9e-1 Is Not Null Is Not Null When {@usn6} In 9e12 Then {7}[0x0][1e1] Else .1e1 Is Not Null Is Not Null End Ends With Reduce(``={`3esn`}[$#usn8..],usn1 In {#usn7} =~.12e12 =~9e0|2.9e1[{`2esn`}]) Ends With [`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}|$`` =~$_usn3] Union All Merge Allshortestpaths((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})) Merge `7esn`=Shortestpath(((`6esn` :``)<-[`8esn`*]-(#usn8 )-[`3esn`?:`1esn`|:`1esn`]-(@usn6 :`4esn`:usn2))) On Match Set Single(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where .0e-0[..``][..$7]).``!.`8esn`? ={1000} Starts With {`1esn`},``:`1esn`:``,(#usn7 {usn1:2.12[{12}]})-[:usn1|usn2]->(`8esn` :`5esn`:`7esn`).@usn6! =false =~{`8esn`} =~00 On Match Set `7esn`+=Reduce(_usn3=5.9e-12 Is Null Is Null,_usn3 In `8esn`[_usn4]|2.9e1[Count ( * )..]) Is Null,#usn8 =0e0 Ends With .9e0 Ends With 01234567 Unwind `6esn`[0X0123456789ABCDEF..][`8esn`..] As _usn4"), + octest_legacy:ct_string("Optional Match (`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}}) Using Scan ``:#usn8 Using Join On usn1,usn2 Match `5esn`=((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})) Using Index usn2:``(`3esn`) Where 0e-0[..7.0e-0][..{`8esn`}] Foreach(usn2 In 1e-1[$#usn8]| Create Shortestpath(((usn2 :`4esn`:usn2)-[?:#usn7|:@usn5 *..00]-(:@usn5{`7esn`:01234567[\"d_str\"..][$`4esn`..]})<-[?:_usn4|:`1esn` *..07{`5esn`:01234567 =~12e12 =~.0e-0,@usn5:.9e12 Contains 0 Contains $0}]-(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false}))),`2esn`=Shortestpath((@usn6 :@usn5)) Create `2esn`=Allshortestpaths((:`3esn`{@usn5:9e12[..usn2][.._usn3]})),``=Shortestpath((`1esn` :`1esn`:``{`2esn`:_usn4 Ends With {`8esn`} Ends With usn2,`4esn`:0e-0[$``..10.12e12]})<-[ *0X0123456789ABCDEF]->(usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))) Union All Return _usn3($0 Ends With 9e-12 Ends With $_usn4) Is Null Is Null As `4esn`,1.9e0 In 2.12 As usn2,$#usn7[$``..999][$usn2..$usn2] Order By `4esn` =~usn1 =~Count(*) Descending,Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}]) Desc Skip 2.12 Is Not Null Is Not Null Limit {`5esn`}[01234567..][5.9e-12..] Union Create ((#usn7 :usn2{_usn4:{#usn7} =~$@usn6 =~$7})<-[`5esn`?:`7esn`|usn1{@usn5:9e0[`3esn`][0]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})<-[_usn4?:_usn4|:`1esn` *..0x0{`6esn`:{`5esn`} Is Not Null Is Not Null,`3esn`:0xabc[..{usn1}][..\"d_str\"]}]-({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})),#usn8=({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)})"), + octest_legacy:ct_string("With \"d_str\" Starts With $`7esn` Starts With 999,[`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] Skip Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {0}[.1e-1..][_usn4..])[[`6esn` In 010[{`1esn`}..] Where Count ( * ) Starts With 0.12|.12e12 Ends With 07 Ends With 3.9e-1]..] With $_usn3 Contains 1.0 Contains 0.12 As ``,0x0 Ends With #usn8 Ends With .9e-1 As _usn4 Order By 01234567 Ends With .0e0 Ends With 12e12 Ascending,usn1(Distinct {usn1}[7.0e-0..][3.9e-1..]) Asc,.0e-0[..01234567] Descending Union Detach Delete $`5esn` Is Null,{1000} Starts With {`1esn`} Start _usn3=Rel:usn2(#usn7='s_str') Create Shortestpath(((@usn6 :usn2{@usn5:$`5esn`[{`4esn`}][{0}],usn2:9e12 Is Null Is Null})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})-[usn1?:@usn6|:`4esn` *..123456789]->({#usn8:_usn4[$_usn4]}))),`2esn`=(:_usn3{usn2:6.0e0[$12..0.12],#usn7:`2esn`})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]})"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`6esn`)Assert Exists([`` In `7esn` =~#usn8 =~\"d_str\" Where 3.9e-1 Starts With .9e0 Starts With {#usn7}|$usn1 =~.9e12 =~`6esn`].`3esn`!)"), + octest_legacy:ct_string("Delete None(`2esn` In $@usn5 Is Not Null Is Not Null Where {7}[$@usn5..123456789][1e1..1.9e0]) Ends With Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End Ends With {_usn3:$1000 Starts With {@usn6} Starts With $@usn5},Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End[(`4esn` :#usn7:`8esn`)-[_usn3?:@usn6|:`4esn`{_usn4:$12 Ends With 12.0 Ends With $`4esn`}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2)..][Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1)..] Union Create `4esn`=Shortestpath((:`6esn`{`3esn`:9e12[..usn2][.._usn3]})<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})<-[`2esn`?:`8esn`|:#usn8]->(:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})),#usn7=((`1esn` :usn2{`8esn`:12.0[...0e0]})) Optional Match Shortestpath(((({usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]})-[_usn4? *7]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})))),_usn3=Allshortestpaths((((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999})<-[``?:@usn5|:#usn7 *..00{#usn8:$`8esn`[...1e-1]}]->(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[? *12{@usn6:$`` =~.1e-1}]->(`1esn` {usn2:.9e-12[.12e12..][0Xa..]})))) Using Index `3esn`:`8esn`(`5esn`) Where .12e12 Ends With 07 Ends With 3.9e-1 Unwind 01234567 Ends With .0e0 Ends With 12e12 As `3esn` Union All Load Csv From $@usn5 Is Not Null Is Not Null As `7esn` Load Csv With Headers From {123456789} In \"d_str\" As `2esn` Remove ({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000})<-[`5esn` *01]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}).#usn7!,All(usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]).`8esn`!,`7esn`:usn2"), + octest_legacy:ct_string("Remove (`` :`8esn`)-[#usn7? *..00{_usn3:.0e-0[..``][..$7],_usn4:{#usn8} Ends With _usn3 Ends With `2esn`}]->(:`3esn`)-[usn1?:usn1|usn2]->(#usn7 :@usn5).usn1,{12}.`6esn`? Create Unique #usn8=((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) Merge (((`1esn` :#usn8:@usn6{`7esn`:.1e-1 Contains .12e-12,`2esn`:.1e1 Ends With #usn7 Ends With {#usn7}})-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5)-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5))) On Match Set Allshortestpaths((:``{usn2:$_usn3[0X0123456789ABCDEF..][0x0..],`8esn`:0Xa In 1.0 In $@usn5})).@usn6! =12 Is Not Null Is Not Null On Create Set Shortestpath((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})-[usn1?:`8esn`|:#usn8{``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}]-(`2esn` {`8esn`:_usn4['s_str'][8.1e1]})-[usn1?:@usn5|:#usn7{``:{@usn5}[10.12e12..]}]-(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})).`5esn`!._usn3!._usn3? =$`1esn` Ends With 1000,(`8esn` :usn1)<-[usn2 *7]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})-[ *01{usn1:false[..usn2][..999]}]-(_usn3 ).#usn7!.`` =4.9e12 Ends With $@usn6,usn2 =10.12e12[.0e0] Union All Start _usn3=Rel:`8esn`(usn1={#usn7}) ,@usn6=Rel:usn1({usn2}) Create `5esn`=Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))),((_usn3 {@usn6:{0} In {`1esn`}})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->(`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999})) Create `7esn`=(((:`1esn`:``{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[`8esn`? *1000..{usn2:0X7[#usn7..][$@usn5..]}]->(`2esn` {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})<-[?:usn1|usn2{#usn8:2.9e1[2.12..1.9e0],#usn8:@usn6[true..]}]-(:@usn6:_usn3{``:{@usn5}[10.12e12..]}))),((#usn8 :usn2)-[``? *0Xa..12{@usn5:01 Ends With .0e0 Ends With 7.0e-0,_usn3:0.0[00..][0xabc..]}]-(usn2 :`2esn`:`4esn`{`7esn`:@usn5 =~$#usn7 =~{usn1}})) Union All Merge _usn3=Shortestpath(((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))) On Create Set @usn5 ={``}[$usn2..00][{_usn3}..123.654],_usn4 =Reduce(`3esn`=`7esn`[1.9e0..5.9e-12][9e0..@usn5],`` In `7esn` =~#usn8 =~\"d_str\"|{_usn3}[{0}...9e-1][9e-1...0e0])[Case false Contains {`7esn`} When `3esn` Is Null Then `1esn` Is Not Null Is Not Null Else .9e-1 Is Null Is Null End..][Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999})..],{@usn5:`2esn`}.``! =\"d_str\" Starts With `` Load Csv From 1e-1[$`5esn`][9e12] As `2esn` Create Unique `3esn`=(_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null})"), + octest_legacy:ct_string("Remove Shortestpath(({`6esn`:{123456789} Contains $0,`8esn`:2.9e1[2.9e1..][`4esn`..]})<-[`8esn`*]-(@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}}))._usn3?.`3esn`? Optional Match `4esn`=Shortestpath(((usn1 :#usn7:`8esn`{`6esn`:`5esn` Ends With Count(*),usn1:1e-1 Contains 0.0}))),((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})) Unwind 12.0 In `7esn` As _usn4 Union Delete {_usn4} In 0X7 In 0e0,.9e12 Starts With 0X7 Starts With .9e-1 Create Allshortestpaths((`5esn` {`3esn`:$@usn5 Is Null Is Null})-[`8esn`? *1000..{usn2:0X7[#usn7..][$@usn5..]}]->(`2esn` {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})),``=({`4esn`:{7}[0x0][1e1]})-[:`8esn`|:#usn8 *01]-(usn2 :`2esn`:`4esn`)-[$#usn8]->({usn2:01[`4esn`..]}) With Extract(#usn7 In .0e-0 In 12 Where {`6esn`}[6.0e0..9e0][.9e1..12e12]|Count(*)[$7]) Is Null Is Null As `1esn` Order By {_usn3:.0e-0[..``][..$7]}[..(`6esn` :`4esn`:usn2)-[$#usn8]->(`3esn` :`5esn`:`7esn`)][..@usn5] Descending,Any(@usn6 In 9e12[..usn2][.._usn3] Where 12e12[.9e12..07]) Ends With Shortestpath(((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}))) Asc,$`1esn` In 0Xa Desc Skip 1e1 Ends With $_usn3 Ends With .1e1 Where {#usn8} Starts With {`2esn`} Union All Detach Delete {1000} =~4.9e12 =~9e1,Null,10.12e12[010..1e1][.1e-1..{1000}] Return *,2.12[{12}] As #usn7,.0e-0 =~usn2 As `1esn` Order By $`8esn` =~{`6esn`} =~12 Ascending,Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End In (:usn1)<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}) In [_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|usn2 Ends With $123456789 Ends With {999}] Ascending,Any(_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0) Ends With Reduce(`6esn`=1e1 Ends With 12 Ends With 999,`` In `7esn` =~#usn8 =~\"d_str\"|$usn2 Contains $`3esn` Contains 6.0e0) Ends With `1esn`(Distinct {0} Is Not Null Is Not Null) Descending Skip {`6esn`} In {_usn4} In $12 Foreach(usn2 In {_usn4} In 0X7 In 0e0| Detach Delete $@usn5 Is Not Null Is Not Null,_usn3 =~{7} =~123.654,@usn5[@usn6] Start _usn4=Rel:_usn4({`1esn`}) )"), + octest_legacy:ct_string("Using Periodic Commit 999 Load Csv From (usn1 :usn1{#usn7:.0e-0[..01234567],#usn7:{1000}[0..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[`3esn`?:_usn4|:`1esn`]->(`6esn` :`4esn`:usn2)[Filter(`2esn` In $@usn5 Is Not Null Is Not Null Where {@usn6} In 9e12)][(`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})] As `` Fieldterminator \"d_str\" Merge `5esn`=(:`3esn`{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}) On Create Set Allshortestpaths(((:usn1{#usn8:$`8esn` Is Not Null Is Not Null,`5esn`:3.9e-1 Starts With .9e0 Starts With {#usn7}})-[usn2 *7]-(`` )<-[``:usn1|usn2{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]}]->(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1}))).`4esn`!.`4esn`? =01[{usn2}..][1.9e0..],@usn5+=_usn3($`5esn`[$_usn3][$12])[None(#usn8 In 07[..$`5esn`])..][All(`` In `7esn` =~#usn8 =~\"d_str\" Where 12e12 Is Not Null Is Not Null)..],Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`|\"d_str\" In usn2 In $`7esn`).`1esn`! =(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])] On Match Set `6esn` =$`5esn`[$0],@usn5 =None(`` In `7esn` =~#usn8 =~\"d_str\" Where 1e-1 =~$`7esn` =~1e1) Is Not Null Is Not Null,`2esn` ={`8esn`} Starts With .9e-1 Starts With 1000 Return 00[..@usn6] As `6esn`,{`3esn`}[...1e1][..0],Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null As `2esn` Skip $usn2 Ends With 9e12 Ends With Count ( * ) Limit 0xabc Starts With {`3esn`} Starts With {``}"), + octest_legacy:ct_string("Create Constraint On(`1esn`:`5esn`)Assert usn2(Distinct 1.0 In {usn1},10.12e12[usn2]).`1esn`?.`3esn`!.`7esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[``:_usn4]-()Assert Exists(Case When 6.0e0 =~12.0 =~9e1 Then $12 Ends With 7.0e-0 Ends With 9e-12 When $usn2[..$999][..#usn8] Then $1000[_usn4][{@usn5}] End.`8esn`!._usn3)"), + octest_legacy:ct_string("Drop Constraint On()<-[usn2:#usn8]-()Assert Exists(Single(usn1 In \"d_str\" Contains {@usn6} Where {`1esn`} Is Null).@usn6!)"), + octest_legacy:ct_string("With 0Xa Starts With 9e0 Starts With Count(*) Skip $``[1.0..][_usn3..] Foreach(`5esn` In Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}]| Load Csv From 7 In 1e1 In {``} As `2esn` Fieldterminator \"d_str\") Union All Start `1esn`=Rel:_usn3(@usn5='s_str') Where 12[4.9e12..]"), + octest_legacy:ct_string("Create Constraint On(_usn3:usn1)Assert Exists(Single(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`).``!)"), + octest_legacy:ct_string("Create `7esn`=((`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[_usn3?:`7esn`|usn1]-(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[usn2 *7]-(`8esn` :#usn7:`8esn`)) Create Unique (`1esn` {usn2:.9e-12[.12e12..][0Xa..]}),Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})))"), + octest_legacy:ct_string("Create Constraint On(#usn7:usn1)Assert None(usn2 In $`5esn`[{`4esn`}][{0}]).`5esn` Is Unique"), + octest_legacy:ct_string("Drop Constraint On()<-[`7esn`:``]-()Assert Exists(Single(`2esn` In $@usn5 Is Not Null Is Not Null Where {`3esn`} =~$@usn5 =~`2esn`).@usn5?.@usn6!)"), + octest_legacy:ct_string("Create Constraint On(usn2:#usn7)Assert Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .12e12 Starts With 5.9e-12 Starts With `4esn`).`3esn`? Is Unique"), + octest_legacy:ct_string("Unwind Case When $123456789 Is Not Null Is Not Null Then $`5esn` Is Not Null End Ends With {_usn3:$12 Is Not Null Is Not Null} Ends With [`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 6.0e0 =~12.0 =~9e1|@usn6 Ends With $`2esn` Ends With 1.0] As `3esn` Remove `8esn`:usn2 Load Csv With Headers From Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) As usn2 Union All Merge ((`8esn` :`8esn`)-[#usn7:@usn6|:`4esn`]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[`8esn`*]-(`7esn` :``{usn2:$7})) With 9e-1 Is Not Null As _usn3,{12} Ends With 1e1 Skip Reduce(`8esn`=1e1[$_usn3],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e-0[..``][..$7]) Ends With Reduce(`3esn`=2.12[`4esn`][.9e-1],usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{`8esn`} In {_usn3} In 6.0e0) Ends With `1esn`(@usn5[9e-1..{`1esn`}],$`4esn`[$@usn6...12e12]) Limit (`1esn` :@usn6:_usn3{#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12})<-[@usn5?:`5esn` *01{#usn8:00[Null..usn2],@usn6:0.12 =~2.9e1 =~9e1}]-({@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})[Filter(_usn3 In `8esn`[_usn4] Where 01234567 =~12e12 =~.0e-0)..][{`7esn`:.9e1[$`1esn`..][$``..]}..] Where false[9e12] Create #usn7=Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),Shortestpath((_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[?{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})) Union All Return Distinct {1000} Is Null As `2esn`,(`` {`7esn`:`4esn` =~010})<-[:`5esn`{_usn4:0e-0[..$usn2],usn2:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]-(`6esn` :_usn4:`2esn`)-[?:_usn3]->({`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}}) Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where `7esn` Ends With 10.12e12) As `8esn`,$`` =~$_usn3 Order By usn1 Ends With 11.12e-12 Ends With 5.9e-12 Descending,.1e-1 Is Not Null Ascending,Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}] Descending Skip Any(usn1 In $@usn6 Is Null Is Null Where 0e-0[{@usn6}]) =~[`6esn` In 010[{`1esn`}..] Where 7 Starts With 9e-12|Null[#usn7..][9.1e-1..]] =~Reduce(#usn7={12} Ends With $`3esn` Ends With 0xabc,usn1 In $@usn6 Is Null Is Null|`1esn`[Null][{@usn6}]) Create Allshortestpaths((({usn1:#usn7[.9e0..`3esn`][{`6esn`}..1000],_usn4:$usn2 In #usn7 In #usn7})-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[``? *0Xa..12{@usn5:01 Ends With .0e0 Ends With 7.0e-0,_usn3:0.0[00..][0xabc..]}]-(`7esn` :`7esn`))),(((:`1esn`:``{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]})<-[:#usn8|:``{#usn7:$#usn7}]-(#usn7 $12)-[`7esn`?:`2esn`|`5esn` *0]->(`4esn` :@usn5))) Unwind Allshortestpaths((`` $999)<-[? *0X0123456789ABCDEF]->(`1esn` :_usn3)<-[#usn8?:#usn7|:@usn5]-(@usn5 :#usn7:`8esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true}))[All(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Is Null Is Null)..][Allshortestpaths((({@usn6:01 Contains 9e-12 Contains $7})))..] As @usn5"), + octest_legacy:ct_string("Drop Constraint On(``:`2esn`)Assert Exists(Allshortestpaths((`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})).``?)"), + octest_legacy:ct_string("Foreach(usn1 In \"d_str\" Is Not Null Is Not Null| Create #usn7=(((#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})-[?:@usn5|:#usn7 *0]->({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})-[:usn2{``:07 Ends With {1000} Ends With 01234567,`5esn`:999 Ends With {#usn8}}]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]}))) Unwind (@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[`8esn`?:_usn3 *12{usn1:#usn7[.9e0..`3esn`][{`6esn`}..1000],_usn4:$usn2 In #usn7 In #usn7}]-(_usn4 :_usn4:`2esn`{usn1:$`6esn` In 999 In {_usn3},usn1:1.0 Is Null Is Null})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(usn2 :`2esn`:`4esn`)[..Reduce(`2esn`={1000}[..{usn1}][..1e-1],_usn3 In `8esn`[_usn4]|Count(*)[$7])][..{_usn3}] As `6esn`) Create usn1=(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0}),(`` :`8esn`)"), + octest_legacy:ct_string("With Distinct Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .12e12 Ends With 07 Ends With 3.9e-1) Is Null Is Null As #usn8,.9e1 Is Null Is Null As #usn8,00[..@usn6] Order By 12 Ends With 12e12 Asc,.9e12 Starts With 0X7 Starts With .9e-1 Asc Skip 00[Null..usn2] Limit 01[{usn2}..][1.9e0..] Where $usn1 =~.0e0 =~{`4esn`} Remove Allshortestpaths((`2esn` :_usn3)).@usn6!,Extract(usn1 In $@usn6 Is Null Is Null Where _usn4[{``}..{`6esn`}][$7..$_usn3])._usn4!.@usn5? Start `2esn`=Node:@usn5(#usn7=\"d_str\") ,@usn6=Relationship:#usn8(usn2={12})Where \"d_str\" Is Not Null Is Not Null"), + octest_legacy:ct_string("Create Constraint On(``:`7esn`)Assert All(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1]).``! Is Unique"), + octest_legacy:ct_string("Unwind (`4esn` {`6esn`})<-[?{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[?:`5esn`]-(`4esn` {`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}) Is Not Null Is Not Null As `2esn` Unwind Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]) Is Not Null Is Not Null As #usn8 Foreach(@usn5 In {`6esn`} Starts With 12e12 Starts With {`2esn`}| Load Csv With Headers From $`3esn` =~0x0 As usn1 Remove #usn7:`1esn`:``)"), + octest_legacy:ct_string("Drop Constraint On(#usn8:``)Assert Exists(Reduce(_usn3=0e-0[..$usn2],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|01234567[10.12e12][0Xa])._usn3!._usn3?.@usn5?)"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:`8esn`]->()Assert Exists(Filter(`6esn` In 010[{`1esn`}..] Where `6esn` Ends With 1e1 Ends With $#usn7).`4esn`)"), + octest_legacy:ct_string("Create Constraint On(@usn5:#usn7)Assert Any(_usn3 In `8esn`[_usn4] Where $_usn3[usn2..][usn1..]).`8esn`.`2esn`.#usn8! Is Unique"), + octest_legacy:ct_string("Start `1esn`=Rel:`2esn`(#usn8=\"d_str\") ,#usn8=Node( {123456789})Where .12e-12[@usn6..'s_str'] With Distinct .12e-12[@usn6..'s_str'],Allshortestpaths((((@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})-[``? *..00{@usn5:$`8esn` =~{`1esn`} =~$7,#usn7:.12e-12 Starts With .12e-12}]->({_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]})-[:`8esn`|:#usn8 *01]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}}))))[..Case When {#usn7} Ends With 999 Ends With 12 Then {`3esn`}[999..$`4esn`] End],5.9e-12[01][`4esn`] As _usn4 Skip Single(`` In `7esn` =~#usn8 =~\"d_str\")[Reduce(`3esn`=1e1[$_usn3],`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1[..9.1e-1][...9e1])][[#usn7 In .0e-0 In 12 Where \"d_str\"[0x0..{@usn6}][$@usn5..0]|{7}[$@usn5..123456789][1e1..1.9e0]]] Union All Merge `5esn`=Shortestpath(((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`}))) On Create Set `4esn` =Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 7 In 1e1 In {``})[Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..])..@usn6(0xabc[..Count(*)][..$`5esn`])][$`6esn`..{#usn7:00 =~`4esn` =~.9e-12}] Return Distinct Allshortestpaths((({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)))[Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0])..][Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End..] As #usn8,{12} Ends With 1e1 As `8esn` Order By ``[$7..$_usn4] Asc Delete {@usn5:usn1 =~0Xa =~0,`3esn`:{`8esn`} Contains $@usn5} Starts With [#usn8 In 07[..$`5esn`] Where {`8esn`} In {_usn3} In 6.0e0] Starts With Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null),0.0[$`4esn`] Union All Merge `5esn`=Shortestpath(((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`}))) Return Null[{999}..$usn2] As `7esn`,{@usn6:$12 Is Null} In (`4esn` {`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}) As usn2 Skip .12e-12[{`1esn`}][`1esn`] Remove (:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(`2esn` :@usn5)-[`8esn`:_usn4|:`1esn`]->({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`}).#usn7,Filter(#usn7 In .0e-0 In 12 Where _usn4 Is Not Null Is Not Null).#usn7!"), + octest_legacy:ct_string("Detach Delete \"d_str\" Starts With ``,{12}[true..][7..] Start _usn3=Rel:`8esn`(usn1={#usn7}) ,`4esn`=Rel:_usn4(@usn5={#usn7})Where 6.0e0 =~12.0 =~9e1 Union Foreach(`1esn` In `5esn` Contains 0 Contains $12| Load Csv From $12 Contains false Contains {`1esn`} As _usn4 ) Unwind 9e-1[0.0..] As `7esn` Unwind Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`|.9e-12[.12e12..][0Xa..])[{#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}..] As `1esn` Union All Create Unique @usn6=(({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)) Start @usn6=Node:`2esn`(#usn7={`4esn`}) Unwind [`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] As @usn5"), + octest_legacy:ct_string("Load Csv With Headers From 2.12[010..][{999}..] As `5esn` Fieldterminator \"d_str\" Remove All(usn1 In {#usn7} =~.12e12 =~9e0 Where {7}[$@usn5..123456789][1e1..1.9e0]).`6esn`!,{`8esn`:2.9e1[Count ( * )..]}.@usn6.usn2!,Any(_usn3 In `8esn`[_usn4] Where 010[..9e-1][..0X7]).`1esn`? Union Foreach(usn2 In Single(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Is Not Null| Unwind 5.9e-12 =~@usn6 =~.12e-12 As _usn4 Remove _usn4:`4esn`:usn2,`1esn`(Distinct 0e-0[{12}],Count(*)[$7]).`4esn`._usn4,[#usn7 In .0e-0 In 12 Where {#usn8} In {12} In .9e12].`4esn`!.#usn7) Optional Match #usn7=((`` {`7esn`:`4esn` =~010})<-[`3esn`?:_usn4|:`1esn`]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})) Using Join On #usn8 Using Join On _usn4 Start _usn3=Relationship(0x0) ,``=Relationship( {@usn5})Where 0Xa In 1.0 In $@usn5 Union All Load Csv From $12 Is Null As `7esn` Fieldterminator 's_str' Merge `5esn`=((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)) On Match Set usn2+={7} Starts With 0x0 Starts With 9e1,`3esn`:`8esn`,{_usn4:07 Ends With {1000} Ends With 01234567}._usn4?.`1esn`? =$`7esn` Is Null On Create Set `5esn` =({`4esn`:#usn8[\"d_str\"..usn2],`1esn`:12.0[..Count ( * )][..@usn6]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ) =~Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End =~{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Foreach(`8esn` In 2.9e1 In {``}| Create Shortestpath(((`7esn` {@usn5:Count ( * )[_usn4..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null}))) Unwind Allshortestpaths(({`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})-[_usn3? *999..123456789{_usn3:`2esn` Starts With 010 Starts With ``}]-({`7esn`:.9e12 Is Not Null Is Not Null})<-[?:@usn5|:#usn7 *0]-(`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0}))[Reduce(@usn6=10.12e12 Starts With $`4esn` Starts With 0e0,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|$1000 Contains $123456789 Contains #usn8)..Case 7[..123456789][..true] When $1000[..0e-0][..010] Then 999 Starts With 7.0e-0 Starts With true End][[`2esn` In $@usn5 Is Not Null Is Not Null Where {`8esn`}[@usn5][$`2esn`]]..Case When 8.1e1 Contains .9e-1 Contains false Then 12e12 Ends With `5esn` Ends With .0e0 When 0.12[Count ( * )..Count ( * )][$999..`5esn`] Then $123456789[..$999][..`6esn`] Else 7[{`4esn`}..] End] As @usn6)"), + octest_legacy:ct_string("Create Constraint On()<-[`6esn`:``]-()Assert Exists((`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[?:@usn5|:#usn7 *0]->(_usn3 {`2esn`:5.9e-12[0x0..]}).@usn6!.`6esn`!)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`7esn`)Assert None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where usn1 =~false =~{999}).#usn8! Is Unique"), + octest_legacy:ct_string("With $12 Contains false Contains {`1esn`},None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null),[`6esn` In 010[{`1esn`}..] Where 7 Starts With 9e-12|Null[#usn7..][9.1e-1..]][None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`})..][`1esn`(@usn5[9e-1..{`1esn`}],$`4esn`[$@usn6...12e12])..] As `4esn` Limit {usn1}[`7esn`..Count(*)] Where $@usn6 Starts With 0xabc Starts With {`7esn`} Detach Delete $`3esn`[..{`5esn`}] Merge `4esn`=((`7esn` {@usn5:Count ( * )[_usn4..]})-[?:#usn8|:``{``:usn1 Ends With 11.12e-12 Ends With 5.9e-12,`2esn`:{12} Contains `8esn` Contains @usn5}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})) On Match Set #usn7 =``[$7..$_usn4] Union Merge usn1=Allshortestpaths(((`1esn` {usn2:.9e-12[.12e12..][0Xa..]})-[``? *0X0123456789ABCDEF{`3esn`:#usn8 =~{@usn5}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]}))) On Create Set `5esn`+=Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] Detach Delete Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})[Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})<-[`5esn`?:`7esn`|usn1{@usn5:9e0[`3esn`][0]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(`5esn` )))..][Case When $#usn7 Contains 3.9e-1 Then .12e12 Starts With 5.9e-12 Starts With `4esn` When {1000}[`2esn`...0e-0][9e-1..0X7] Then 010[...12e-12] End..]"), + octest_legacy:ct_string("Drop Constraint On()<-[usn2:_usn4]-()Assert Exists({`6esn`:{usn1}[7.0e-0..][3.9e-1..]}._usn4?)"), + octest_legacy:ct_string("With (usn1 {@usn6:3.9e-1[..$1000][..0.12]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` )<-[_usn4?:``|:`7esn` *0X0123456789ABCDEF]-({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5}) Contains ({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})-[:_usn3]->(`1esn` :`2esn`:`4esn`)-[usn1?:`3esn`|`3esn`{usn2:01[`4esn`..]}]->({`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Contains ``(Distinct 9e12[..usn2][.._usn3],Count ( * )[_usn4..]) As `2esn` Order By 6.0e0 In 9e-1 In 123456789 Ascending,Shortestpath(((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)))[..Any(#usn7 In .0e-0 In 12)] Asc,(`2esn` :_usn4:`2esn`{usn1:12.0 Starts With 00,`6esn`:0.12 =~2.9e1 =~9e1})-[`3esn` *..0x0]-(`` {#usn7:{_usn3}[{0}...9e-1][9e-1...0e0]})<-[?:_usn4|:`1esn` *01]-(`4esn` {`3esn`:{`7esn`} =~\"d_str\" =~{``},`3esn`:{`1esn`} Contains 1.0 Contains 4.9e12}) =~Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 9e12 Is Null Is Null) =~(:@usn5{#usn7:Null,`5esn`:{@usn5} Ends With 0Xa Ends With .12e-12})-[:`3esn`|`3esn` *1000..]-(@usn6 ) Ascending Merge (:`3esn`{@usn5:9e12[..usn2][.._usn3]}) On Create Set #usn8:`8esn` On Match Set `4esn`+=Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000),{`8esn`:`` Ends With 1.0 Ends With usn1,@usn5:$usn1 =~.0e0 =~{`4esn`}}.#usn7 ={usn1} Contains {`2esn`},Case {`8esn`} Is Not Null Is Not Null When 999 Starts With 7.0e-0 Starts With true Then .12e12[$usn1..][{@usn6}..] End.#usn8?.`2esn`?.`7esn`? =#usn7[$`8esn`][{`3esn`}] Union Merge Shortestpath(((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]}))) On Match Set #usn7 =All(#usn8 In 07[..$`5esn`] Where $@usn6 Starts With 0xabc Starts With {`7esn`}) On Match Set @usn6 =$@usn6[.1e-1][9e12] Merge `6esn`=Shortestpath((`1esn` :`2esn`:`4esn`)<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[?:_usn3]->(#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})) Start _usn4=Node:`4esn`({12}) ,``=Node:_usn3({0})"), + octest_legacy:ct_string("Load Csv From 0[10.12e12] As `6esn` "), + octest_legacy:ct_string("Create Constraint On()-[`8esn`:_usn4]-()Assert Exists(Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `2esn`|01 =~07).`2esn`!)"), + octest_legacy:ct_string("Drop Constraint On(_usn4:`6esn`)Assert Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {#usn8}[..@usn5]).`7esn`.@usn6 Is Unique"), + octest_legacy:ct_string("Create Constraint On(`5esn`:`4esn`)Assert Reduce(_usn4=1e-1 =~$`7esn` =~1e1,usn2 In .12e-12 Ends With `2esn`|0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}]).usn2! Is Unique"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:@usn6]->()Assert Exists(Allshortestpaths(((usn1 :@usn6:_usn3)-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1}))).`1esn`!)"), + octest_legacy:ct_string("Using Periodic Commit 00 Load Csv With Headers From .9e12 Starts With 0X7 Starts With .9e-1 As `1esn` Merge Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))) On Match Set $`4esn`.@usn6? =0e-0[#usn7..999],`6esn` =.1e-1[$@usn6],_usn4+=All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] On Match Set `7esn` =0.0[..9e1][..2.12],#usn8+=1.0[$`4esn`..$@usn5]"), + octest_legacy:ct_string("With Distinct [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,$`7esn` In $`4esn` As `8esn`,Extract(`1esn` In $12 In {usn2} Where 2.9e1 =~Count(*) =~{123456789})[{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}..][123.654..] Order By 0x0[{`6esn`}..] Descending Limit usn1 =~false =~{999}"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`3esn`)Assert Reduce(#usn8=$_usn3 In `2esn` In `3esn`,`2esn` In $@usn5 Is Not Null Is Not Null|5.9e-12[12e-12][$`8esn`])._usn4! Is Unique"), + octest_legacy:ct_string("Remove Reduce(usn1=false[..usn2][..999],`2esn` In $@usn5 Is Not Null Is Not Null|7.0e-0 Is Not Null).@usn6?"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`2esn`)Assert Case When {usn2} Is Not Null Is Not Null Then false Contains {`7esn`} When {_usn3} Is Null Is Null Then .12e12 Ends With 07 Ends With 3.9e-1 End.#usn7! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`8esn`:@usn5)Assert Exists(#usn7(.12e12 Is Not Null).@usn5?)"), + octest_legacy:ct_string("Using Periodic Commit 07 Load Csv With Headers From 12 Ends With 12e12 As usn1 Fieldterminator \"d_str\" Foreach(#usn7 In Reduce(#usn8={12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],`8esn` In {_usn4} Ends With {0} Ends With `1esn`|$@usn5 Is Not Null Is Not Null) =~count(Distinct $`8esn` =~{`1esn`} =~$7,@usn6 Starts With #usn7) =~None(usn2 In .12e-12 Ends With `2esn` Where 12[@usn6][{`2esn`}])| Unwind 1e1 =~{@usn5} =~`7esn` As #usn8) Return Distinct [@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {`6esn`} =~2.12 =~123.654|.0e0[usn1..7.0e-0][$`5esn`...9e-12]] Starts With Case $_usn4 =~$#usn8 =~{`4esn`} When 9e12[..usn2][.._usn3] Then 0 Starts With `7esn` Starts With 9e0 When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End Starts With Case When @usn5 Ends With $`8esn` Ends With $1000 Then 1000[{`1esn`}..][$`3esn`..] When usn2 Ends With $123456789 Ends With {999} Then 12.0[...0e0] End,$`7esn` In $`4esn` As `8esn`,Extract(`1esn` In $12 In {usn2} Where 2.9e1 =~Count(*) =~{123456789})[{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]}..][123.654..] Order By $`6esn`[@usn6...9e-12] Asc,9e-12 Starts With {1000} Desc Skip 9e0 Ends With {7}"), + octest_legacy:ct_string("Optional Match (_usn4 :`6esn`)<-[:#usn8|:``{#usn7:$#usn7}]-(#usn7 $12),(((:_usn3{`5esn`:.9e-1 Contains .9e0 Contains ``})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]}))) Using Index `3esn`:`8esn`(`5esn`) Using Index `6esn`:usn1(`3esn`) With Distinct 1.9e0[..1.0][..`6esn`] As `1esn` Order By $999 Ends With `2esn` Ends With 12.0 Ascending Limit Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] Load Csv From `1esn`[{@usn5}..][{_usn4}..] As `6esn` Union All With Distinct usn1 Ends With 11.12e-12 Ends With 5.9e-12 Limit Any(`1esn` In $12 In {usn2} Where @usn6[true..]) Contains Any(usn2 In .12e-12 Ends With `2esn` Where 9e12 Ends With 9e-1 Ends With 9e1) Contains (`2esn` :usn1)<-[:`1esn`|:`1esn`]-(:`1esn`:``{_usn3:9e-1 Contains 3.9e-1,@usn6:$`8esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(_usn4 :_usn3) Start `5esn`=Relationship:_usn4({_usn3}) Where `` Ends With 1.0 Ends With usn1 Start `2esn`=Relationship:``(`1esn`=\"d_str\") ,`2esn`=Node( {`6esn`})"), + octest_legacy:ct_string("Drop Constraint On(_usn3:#usn8)Assert Reduce(`2esn`=$1000 Contains $123456789 Contains #usn8,`` In `7esn` =~#usn8 =~\"d_str\"|_usn4 Is Not Null Is Not Null).`4esn` Is Unique"), + octest_legacy:ct_string("Create ({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})<-[_usn3? *0xabc..12]->(_usn3 {#usn7:$999 =~false =~{`8esn`}}) Start _usn3=Node( {123456789}) Where {`3esn`}[$#usn8..] With Filter(usn1 In \"d_str\" Contains {@usn6} Where $`8esn`) Contains (`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) Contains Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}),1.9e0[Shortestpath((`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})-[`3esn`?:_usn3 *..123456789]-(:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]}))] As _usn4 Skip (`1esn` :`8esn`{`6esn`:9e-1 Contains 3.9e-1,_usn4:{`3esn`}[...1e1][..0]})<-[`7esn`?:@usn5|:#usn7]->(`8esn` :@usn6:_usn3)<-[`1esn`:#usn7|:@usn5 *..123456789]-({#usn7:{7}[0x0][1e1]})[{`3esn`:0.12 In $``}] Limit 11.12e-12 =~Count ( * ) Union All Start `3esn`=Node( {1000}) ,`1esn`=Rel:@usn6(`2esn`='s_str')Where $123456789[..$999][..`6esn`] With Distinct .1e-1[2.9e1..][$`7esn`..] As #usn8,Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Not Null Is Not Null As #usn8,07[9e-1..][1e1..] As `4esn` Skip {`4esn`} Contains 4.9e12"), + octest_legacy:ct_string("Create Constraint On()-[`5esn`:`1esn`]-()Assert Exists(Reduce(`2esn`=$usn2 Starts With $999 Starts With .0e0,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|0xabc[0Xa..]).@usn5)"), + octest_legacy:ct_string("Foreach(usn2 In usn2[12e-12..{`8esn`}][.12e12..{123456789}]| Unwind {`7esn`}[0.12] As `6esn` Match `2esn`=Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}}))) Where $123456789[..$999][..`6esn`]) Load Csv From None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) As `6esn` Fieldterminator \"d_str\" Union Optional Match (((`` :`1esn`:``)<-[usn2:`3esn`|`3esn` *0Xa..12]->(`4esn` )-[usn1?:`3esn`|`3esn`*..]-(@usn5 :`3esn`{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))),#usn7=Allshortestpaths(((`2esn` :`4esn`:usn2{`7esn`:$_usn4 =~$#usn8 =~{`4esn`}})-[`3esn`?:usn2]-(:`1esn`:``{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})<-[``?{``:{#usn7} =~$@usn6 =~$7}]-(:@usn6:_usn3))) Using Join On usn1,`1esn`,_usn4 Where {0}[.1e-1..][_usn4..] With .1e1 Contains 1e-1 Contains #usn8,.9e-12[usn2] As usn1,.1e1 Contains 1e-1 Contains #usn8 As `` Skip Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Limit 010 =~9.1e-1 =~{`8esn`}"), + octest_legacy:ct_string("Optional Match _usn4=Allshortestpaths(((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))),Shortestpath((((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[`8esn`*]-(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)))) With Distinct 12.0 =~{@usn6} As _usn3,.1e-1[$@usn6] As `3esn` Skip {`4esn`}[{`3esn`}][$`2esn`] Where .0e-0[..01234567]"), + octest_legacy:ct_string("Create Constraint On()<-[`6esn`:_usn4]-()Assert Exists(Case 0e-0 In 0X0123456789ABCDEF In `3esn` When $12[10.12e12][.1e1] Then usn1 Ends With 11.12e-12 Ends With 5.9e-12 Else {123456789} Starts With $_usn4 Starts With 0x0 End.`8esn`?.`7esn`?)"), + octest_legacy:ct_string("Detach Delete Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])[..(#usn7 {`5esn`:.12e12 Is Not Null,@usn5:.12e12 Is Not Null})-[#usn8:`7esn`|usn1 *0X7..0Xa{usn1:_usn4 Is Not Null Is Not Null}]->(@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})][..Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`)] Start `5esn`=Node:`8esn`('s_str') Union Start `7esn`=Rel( {_usn3}) With Distinct *,0 Contains {`2esn`} Union All Load Csv From Single(`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0) Is Not Null As `3esn` Merge `6esn`=(usn1 :#usn8:@usn6) On Create Set `6esn`+=$#usn7 On Create Set `8esn` ={#usn8} Is Not Null Is Not Null,@usn5+={`3esn`} Is Not Null Is Not Null,#usn8:`` Detach Delete Single(_usn3 In `8esn`[_usn4] Where `3esn` Contains `2esn` Contains {_usn4}) In Any(_usn3 In `8esn`[_usn4] Where 1e1 =~{@usn5} =~`7esn`) In {7},$usn2 Ends With 9e12 Ends With Count ( * ),$`5esn` =~Count(*) =~1.9e0"), + octest_legacy:ct_string("Unwind 8.1e1[..9.1e-1][...9e1] As @usn5 With 9e1 =~$`8esn` =~10.12e12 Limit 5.9e-12[\"d_str\"..][{`6esn`}..] Where {`8esn`}[..999][.._usn3]"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:usn2)Assert Exists({usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]}._usn4)"), + octest_legacy:ct_string("Create Constraint On(``:`5esn`)Assert Shortestpath((`8esn` :#usn8:@usn6{#usn7:`6esn`[0X0123456789ABCDEF..][`8esn`..],#usn8:Count(*)[..{#usn7}]})<-[usn1:`2esn`|`5esn`{`2esn`:$`7esn` Starts With 's_str',``:2.12[{12}]}]-({`5esn`:.0e-0 In 12,_usn4:{_usn3}[{0}...9e-1][9e-1...0e0]})).@usn6? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(`8esn`:`2esn`)Assert #usn7($12[10.12e12][.1e1]).`6esn`!.usn2?.usn2! Is Unique"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`8esn`)Assert Reduce(`2esn`=.1e-1[..$_usn3][..0],@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|5.9e-12[12e-12][$`8esn`])._usn3.`6esn`?.`3esn`! Is Unique"), + octest_legacy:ct_string("Start `5esn`=Node:usn2(_usn4='s_str') Where 0e-0[..7.0e-0][..{`8esn`}] Unwind 0[.9e-1..0e0][.1e1.._usn4] As #usn8 Union Create #usn8=Allshortestpaths((usn1 {`2esn`:{`6esn`} In {_usn4} In $12,@usn6:00[Null..usn2]})-[`3esn`:#usn8|:``{``:$``[9e0..][5.9e-12..],``:$#usn7 Contains 3.9e-1}]->(:_usn4:`2esn`{``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})),Shortestpath(((@usn6 :usn2{@usn5:$`5esn`[{`4esn`}][{0}],usn2:9e12 Is Null Is Null})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})-[usn1?:@usn6|:`4esn` *..123456789]->({#usn8:_usn4[$_usn4]}))) Match `3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})-[?]->(`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?]-(@usn5 :`2esn`:`4esn`{`1esn`:0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}],@usn6:999 Starts With 7.0e-0 Starts With true})),usn1=((`` :`7esn`)) Using Index @usn5:_usn4(usn2) Using Join On `1esn`,`3esn`,`5esn` Union All Start `5esn`=Relationship:#usn8(@usn5={@usn6}) ,@usn6=Node:@usn5({`4esn`}) Unwind 5.9e-12 =~{12} =~{`2esn`} As usn1 Create Unique ``=Allshortestpaths(((`8esn` :#usn7:`8esn`)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(`8esn` :`4esn`:usn2))),`7esn`=(@usn5 :@usn5{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6})-[usn2?:`1esn`|:`1esn` *..123456789]-(:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[:_usn3]-(`3esn` )"), + octest_legacy:ct_string("Return 5.9e-12 =~{12} =~{`2esn`} Limit Count ( * ) Starts With 0.12 Union All With *,12.0[..Count ( * )][..@usn6] Where $`1esn`[..12e-12][...9e12] Optional Match _usn4=(((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 )<-[`3esn`?:`6esn`{@usn6:{`5esn`} Is Not Null Is Not Null,@usn6:$usn1 Contains 4.9e12 Contains $`2esn`}]->(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}))) Using Scan `3esn`:`` Where $`5esn` =~Count(*) =~1.9e0"), + octest_legacy:ct_string("Drop Constraint On(usn2:`6esn`)Assert All(`7esn` In 0.12 Is Not Null Where 01234567[1000..][$`8esn`..]).`1esn`!.usn1? Is Unique"), + octest_legacy:ct_string("Return Distinct {123456789} =~.9e1 =~$_usn3,12.0[..Count ( * )][..@usn6] Order By Any(`7esn` In 0.12 Is Not Null Where $0 Contains $7) Is Not Null Is Not Null Asc Limit Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Null Is Null Merge `6esn`=Shortestpath(((#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn4]-(`2esn` :`1esn`:``))) Return Distinct *,$`4esn`[#usn7][8.1e1] As `2esn` Skip [usn1 In \"d_str\" Contains {@usn6} Where 5.9e-12[0x0..]|4.9e12 Ends With $@usn6] =~(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})<-[`1esn`{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]-(`1esn` :usn2) =~(`3esn` :#usn8:@usn6)-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-({usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[:`2esn`|`5esn` *01]-({@usn6:{_usn4} In 0X7 In 0e0}) Union Merge _usn4=((_usn3 :`6esn`)<-[?{`1esn`:{123456789}[...9e-1][..1.0],#usn8:$`4esn` Ends With {999}}]->({`2esn`:$`6esn` Starts With 0.0})) On Create Set `7esn`+=$``[Count(*)..{12}],@usn5 =All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))]"), + octest_legacy:ct_string("Return $12 Contains false Contains {`1esn`},None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null),[`6esn` In 010[{`1esn`}..] Where 7 Starts With 9e-12|Null[#usn7..][9.1e-1..]][None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`})..][`1esn`(@usn5[9e-1..{`1esn`}],$`4esn`[$@usn6...12e12])..] As `4esn` Limit {usn1}[`7esn`..Count(*)] Union Create `6esn`=(({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[_usn4? *999..123456789{@usn6:$`4esn` Ends With .12e12 Ends With 123.654}]->(#usn8 {usn2:$0 Ends With 9e-12 Ends With $_usn4,`5esn`:0e-0[{@usn6}]})-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]-(`1esn` :_usn4:`2esn`))"), + octest_legacy:ct_string("Merge Allshortestpaths(((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))) With Distinct $usn2 Starts With $999 Starts With .0e0,Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where $`` =~$_usn3) In .0e0 In Shortestpath((:`7esn`{usn2:00 Is Not Null Is Not Null})) Skip 0xabc Contains 12 Contains Null Limit None(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where {0}[.1e-1..][_usn4..])[Case {_usn3} In $#usn8 In $12 When $`5esn` =~Count(*) =~1.9e0 Then {123456789} Ends With 11.12e-12 Ends With 00 Else 01 =~{_usn3} =~01 End..][Case When .1e1 Is Not Null Is Not Null Then @usn6 Starts With #usn7 When {1000}[`2esn`...0e-0][9e-1..0X7] Then $`8esn`[..12][..9e12] End..] Where `5esn` Contains 0 Contains $12"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`6esn`)Assert Exists(Any(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).`3esn`!)"), + octest_legacy:ct_string("Load Csv From $#usn8 Is Not Null Is Not Null As usn2 Fieldterminator 's_str'"), + octest_legacy:ct_string("Create Constraint On(`7esn`:`6esn`)Assert [usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null].`1esn`! Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`3esn`:_usn4]->()Assert Exists((#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[`7esn`?]-(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}).`6esn`.#usn7._usn3!)"), + octest_legacy:ct_string("Create Constraint On()<-[#usn8:@usn6]-()Assert Exists(None(usn2 In .12e-12 Ends With `2esn` Where {``} Is Null Is Null).@usn6?.`4esn`?._usn4)"), + octest_legacy:ct_string("Start @usn5=Relationship:_usn3({`7esn`}) Merge ((#usn8 :`4esn`:usn2{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})) On Create Set `5esn` =0xabc[9.1e-1..],Case When $12[$`6esn`..][01..] Then $`4esn`[$@usn6...12e12] When .9e-12[.12e12..][0Xa..] Then {`7esn`} Is Not Null Is Not Null Else {`6esn`}[6.0e0..9e0][.9e1..12e12] End.#usn8! =(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[?{@usn6:{_usn4} In 0X7 In 0e0}]-(:`6esn`{`2esn`:`5esn` Ends With Count(*)})<-[usn2?:usn2]-({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12}) In Any(`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}) In Single(`7esn` In 0.12 Is Not Null Where $`7esn` Starts With 's_str'),Allshortestpaths((`8esn` :@usn6:_usn3)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :``{`7esn`:.9e1[$`1esn`..][$``..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}})).`3esn` ={123456789} Starts With $_usn4 Starts With 0x0 On Create Set `5esn`+=7.0e-0 Is Not Null,Any(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).`3esn`! =_usn4 Is Not Null,`` =9e1 Is Null Is Null Union Start @usn5=Rel:#usn7(usn1={`6esn`}) Union Foreach(`3esn` In [usn1 In $@usn6 Is Null Is Null Where {_usn4} Ends With {0} Ends With `1esn`|0.12 =~2.9e1 =~9e1][Shortestpath((({@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})))..Shortestpath(((:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12})-[``?:#usn7|:@usn5{``:$usn1 Ends With {`2esn`} Ends With $usn1}]->(:`5esn`:`7esn`$usn2)-[{#usn8:\"d_str\" Contains {@usn6}}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12})))]| Match ((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)),_usn4=(`8esn` :`4esn`:usn2)-[#usn8?:`8esn`|:#usn8 *999..123456789]->(#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]-(#usn7 :``{`2esn`:{0}[`4esn`..{`8esn`}],`8esn`:usn2 Ends With $123456789 Ends With {999}}) Using Scan `8esn`:`2esn`) With Distinct *,(:`6esn`)<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 )<-[:`4esn`|:`2esn`{usn1:3.9e-1 Contains $@usn5}]->(`7esn` ) In Case 9e1[0.0] When 999 Starts With 7.0e-0 Starts With true Then {usn2}[{999}..][9e12..] End In [`2esn` In $@usn5 Is Not Null Is Not Null Where {`3esn`} =~$@usn5 =~`2esn`|\"d_str\" Is Not Null Is Not Null] As _usn4 Order By Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] Asc,9e-12 Contains .12e12 Ascending,4.9e12[{_usn4}..] Descending Skip 010[...12e-12] Limit _usn4[{``}..{`6esn`}][$7..$_usn3] Where 11.12e-12 Ends With 's_str'"), + octest_legacy:ct_string("Create Constraint On(_usn4:`6esn`)Assert Reduce(``=01234567[1000..][$`8esn`..],usn1 In $@usn6 Is Null Is Null|6.0e0[$12..0.12]).``.`5esn` Is Unique"), + octest_legacy:ct_string("Start _usn3=Node( {123456789}) ,_usn3=Relationship(0x0)Where {0}[.0e-0][$`2esn`] Load Csv With Headers From {_usn3}[@usn6..] As `3esn` Fieldterminator \"d_str\" Return Distinct $7 In 1.0 In 01234567,2.9e1 =~{123456789} =~01 As usn1,Reduce(#usn7=#usn8[\"d_str\"..usn2],#usn7 In .0e-0 In 12|`` Ends With 1.0 Ends With usn1) Ends With [_usn3 In `8esn`[_usn4] Where _usn4[{``}..{`6esn`}][$7..$_usn3]] Ends With Shortestpath((((:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[`2esn`?:`8esn`|:#usn8]->(`` )<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->(`` :`1esn`:``)))) Order By 5.9e-12 =~01234567 =~$`3esn` Ascending,[`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] Descending Skip `3esn`[{`4esn`}] Union All Create Unique `2esn`=((_usn3 :`6esn`{usn2:.9e1 In .1e-1,usn2:1e-1 Contains 0.0}))"), + octest_legacy:ct_string("Using Periodic Commit 01234567 Load Csv With Headers From Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[`8esn`(0X0123456789ABCDEF Is Not Null Is Not Null,{usn1} Is Not Null Is Not Null)..][{usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}..] As usn2 Fieldterminator \"d_str\" Foreach(#usn8 In $usn2 Starts With $999 Starts With .0e0| Match ((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0})) Using Join On `4esn`,`5esn`,@usn6) Create Unique ((`4esn` {@usn5:$999 Ends With `2esn` Ends With 12.0})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]}))"), + octest_legacy:ct_string("Merge `3esn`=Allshortestpaths(((`4esn` :`8esn`{`4esn`:4.9e12 Starts With {``},`8esn`:$12 Ends With {_usn4} Ends With $`8esn`})-[_usn3:`4esn`|:`2esn` *01234567..]->(`8esn` :`2esn`:`4esn`)<-[`2esn`?:_usn4|:`1esn`]->(_usn4 :usn2))) On Create Set usn1+=$`` Ends With 1e-1 Ends With $@usn6 Union Delete 0X0123456789ABCDEF,$usn1 =~9e1 =~$1000,{``} Contains $1000 Remove [`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 01234567[1000..][$`8esn`..]|.9e-1 Is Not Null Is Not Null].@usn5!.``?.usn2!,Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))).`5esn`?.`8esn`?.@usn5?,Extract(`7esn` In 0.12 Is Not Null Where 4.9e12 Is Not Null Is Not Null).@usn6! Detach Delete Reduce(`6esn`=`2esn`[`7esn`][1000],usn2 In .12e-12 Ends With `2esn`|010[..9e-1][..0X7]) Contains `7esn` Contains Case When 9e1 Ends With 9e12 Ends With 0x0 Then {12} Ends With 1e1 Else `4esn` Contains 0X0123456789ABCDEF Contains $usn2 End"), + octest_legacy:ct_string("Foreach(_usn3 In $0 =~{@usn5} =~1e1| Start @usn5=Relationship( {#usn8}) ,_usn3=Rel:`1esn`({0}) Unwind 01234567[10.12e12][0Xa] As `1esn`) Union All Optional Match (({_usn3:00 =~`4esn` =~.9e-12,`1esn`:{@usn5} Contains .1e1 Contains {`5esn`}})<-[usn2:`4esn`|:`2esn` *0X7..0Xa]-(#usn7 :#usn7:`8esn`)) Using Join On ``,`4esn`,`7esn` Using Index `8esn`:#usn8(#usn8) Where 0xabc Starts With {`3esn`} Starts With {``} Unwind $`7esn` Ends With 7.0e-0 Ends With $usn2 As `5esn`"), + octest_legacy:ct_string("Start ``=Rel:`5esn`({`2esn`}) Remove Shortestpath((_usn4 {`3esn`:.0e-0 In 12})).`2esn`._usn4!,`4esn`:@usn5 Union Delete Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``}) In (_usn4 :_usn3)<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-({#usn7:12e12[.9e12..07]}) In @usn5({1000}[0..]),`8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End Union Create Unique Allshortestpaths(((({#usn7:{7}[0x0][1e1]})<-[{@usn5:0.12 =~`6esn` =~.9e-1}]->({_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[usn2?:`2esn`|`5esn`{``:{#usn7} =~$@usn6 =~$7}]->(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]}))))"), + octest_legacy:ct_string("Drop Constraint On(usn2:`6esn`)Assert Exists([`1esn` In $12 In {usn2} Where 0 Starts With `7esn` Starts With 9e0|$12 Is Null Is Null].`3esn`?)"), + octest_legacy:ct_string("Create Constraint On(usn2:`6esn`)Assert Reduce(_usn3=@usn5[9e-1..{`1esn`}],`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|{123456789} Starts With `6esn`).`4esn`.`6esn`? Is Unique"), + octest_legacy:ct_string("Foreach(@usn5 In Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where $@usn6[``..][3.9e-1..]|@usn5 =~$#usn7 =~{usn1}) In Case 9.1e-1 Contains {`3esn`} Contains $12 When {@usn6} In 9e12 Then 01[$`1esn`..$`7esn`][{usn2}..12.0] When {#usn8} In {12} In .9e12 Then @usn6 Starts With #usn7 End In All(usn1 In $@usn6 Is Null Is Null Where {7} Starts With 0x0 Starts With 9e1)| Remove [`2esn` In $@usn5 Is Not Null Is Not Null Where {`6esn`} In .0e0 In $0].`4esn`?)"), + octest_legacy:ct_string("Drop Constraint On(``:_usn4)Assert Exists(Case .9e-1 Ends With .0e-0 Ends With {_usn3} When $12 Is Not Null Is Not Null Then {``}[$usn2..00][{_usn3}..123.654] When .1e-1 Starts With @usn6 Starts With _usn3 Then 9e0[{7}...0e-0][Null..@usn5] Else $12 =~4.9e12 End._usn4!)"), + octest_legacy:ct_string("Create Constraint On(#usn8:`1esn`)Assert Extract(#usn8 In 07[..$`5esn`] Where 00 Is Not Null Is Not Null|`5esn` Is Not Null Is Not Null).`3esn`? Is Unique"), + octest_legacy:ct_string("Create Constraint On(`2esn`:#usn8)Assert Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 9e1[$``.._usn4][999..`3esn`])._usn3!.#usn7! Is Unique"), + octest_legacy:ct_string("Remove Extract(`7esn` In 0.12 Is Not Null Where #usn7 In 07|2.9e1[Count ( * )..])._usn4!,Reduce(`8esn`=.9e0 =~#usn7,@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|#usn8 Is Null Is Null).`5esn`,(`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->($999)<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->(:``{`2esn`:{`8esn`} In {_usn3} In 6.0e0,usn1:{`1esn`} Is Null})._usn4? Merge (_usn4 {#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12}) Create Unique Shortestpath((:_usn3{`6esn`:{`3esn`}[..{`4esn`}][..usn2]})<-[?:`8esn`|:#usn8{`5esn`:$1000 Starts With {@usn6} Starts With $@usn5}]->(@usn6 :usn1{`2esn`:$`6esn` Starts With 0.0})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(usn2 {`7esn`:.9e12 Contains 0 Contains $0})) Union Foreach(#usn7 In Extract(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1) Starts With Case 7.0e-0[$`6esn`..] When \"d_str\"[0x0..{@usn6}][$@usn5..0] Then {1000}[`2esn`...0e-0][9e-1..0X7] Else $`5esn`[{`4esn`}][{0}] End Starts With Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $`` Starts With $`4esn` Starts With `3esn`)| Start @usn5=Relationship:_usn3({`7esn`}) Detach Delete 1.9e0 In $@usn6 In $_usn3) Remove usn1:#usn7:`8esn`,0Xa.@usn6._usn4!,[`6esn` In 010[{`1esn`}..] Where `3esn` Starts With 9.1e-1 Starts With .9e-1].`5esn`!"), + octest_legacy:ct_string("Drop Constraint On(@usn5:usn1)Assert Exists(Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where {@usn5} Ends With 0Xa Ends With .12e-12|{`8esn`} In {_usn3} In 6.0e0)._usn4?)"), + octest_legacy:ct_string("Start `2esn`=Node:`8esn`('s_str') Where {`8esn`}[9e12..][{_usn4}..]"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`2esn`)Assert Exists(Reduce(`2esn`={12} Ends With $`3esn` Ends With 0xabc,#usn7 In .0e-0 In 12|.9e-12[usn2]).`3esn`)"), + octest_legacy:ct_string("Create Constraint On(usn2:_usn3)Assert Exists(All(usn1 In $@usn6 Is Null Is Null Where 9e0[`4esn`..$_usn4][9.1e-1..0e0])._usn4!.`1esn`.`4esn`!)"), + octest_legacy:ct_string("Create Unique @usn6=((`1esn` :`8esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))"), + octest_legacy:ct_string("Using Periodic Commit 010 Load Csv From \"d_str\" Starts With `` As `4esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Drop Constraint On()-[`1esn`:#usn8]->()Assert Exists(Allshortestpaths(((#usn8 :usn2)<-[? *1000..{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]}]->(usn2 :`5esn`:`7esn`)<-[@usn5:usn1|usn2{`8esn`:{usn2} Is Not Null Is Not Null}]->(usn2 :`2esn`:`4esn`{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))).@usn5?)"), + octest_legacy:ct_string("Create Constraint On(``:`8esn`)Assert @usn5(Distinct 0.0[00..][0xabc..]).#usn8! Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`1esn`)Assert Exists(All(`6esn` In 010[{`1esn`}..] Where usn2[12e-12..{`8esn`}][.12e12..{123456789}]).`5esn`.@usn6!.`5esn`!)"), + octest_legacy:ct_string("Merge ({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}) On Match Set @usn5+={#usn8} Starts With {`2esn`},#usn8 =01234567[01234567..],@usn6 =6.0e0[None(`2esn` In $@usn5 Is Not Null Is Not Null Where $`5esn` =~Count(*) =~1.9e0)..][[_usn3 In `8esn`[_usn4] Where $@usn5 Is Null Is Null|.12e-12[9e1]]..] On Match Set `7esn` =1e1 Ends With $_usn3 Ends With .1e1 Merge (:usn2)<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)-[_usn3:#usn8|:``{#usn8:{_usn4} In 0X7 In 0e0,`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]-(@usn5 ) Union Merge Allshortestpaths((`2esn` :_usn3{usn1:5.9e-12 Is Null Is Null})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(:`5esn`:`7esn`{`4esn`:2.9e1[{`2esn`}]})-[ *..123456789{@usn5:$`8esn`}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})) Unwind 01[`4esn`..] As `6esn`"), + octest_legacy:ct_string("Load Csv With Headers From 9.1e-1 In 9e1 As `5esn` Match _usn4=Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]}))),`3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})) Where 9e12[..usn2][.._usn3] Union Load Csv With Headers From #usn7({12} Starts With $`` Starts With 0X0123456789ABCDEF)[Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where .12e-12[9e1])..] As @usn5 Fieldterminator \"d_str\" Foreach(`2esn` In {#usn8} Starts With {`2esn`}| Load Csv From Filter(_usn3 In `8esn`[_usn4] Where 123456789[#usn7..9e-1][10.12e12..{0}]) Starts With Allshortestpaths((`5esn` :_usn4:`2esn`{``:11.12e-12 In {usn1},usn2:`3esn` Is Null})-[ *01]->(`3esn` :#usn8:@usn6{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]})<-[?:_usn3{`4esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}]->(#usn7 :@usn6:_usn3)) Starts With {@usn5:$123456789 Is Not Null Is Not Null} As usn2 Load Csv With Headers From 9e-1[{7}..1e-1][0.12..{12}] As @usn6 ) Union All Create #usn7=(((#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})-[?:@usn5|:#usn7 *0]->({@usn6:{`5esn`} Is Not Null Is Not Null,`6esn`:`4esn`[9e-12..true]})-[:usn2{``:07 Ends With {1000} Ends With 01234567,`5esn`:999 Ends With {#usn8}}]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]})))"), + octest_legacy:ct_string("Create Constraint On()-[`8esn`:usn1]-()Assert Exists([`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where 2.12[{12}]|123.654[10.12e12..$12][6.0e0..{#usn8}]].usn2?.#usn7)"), + octest_legacy:ct_string("Create Constraint On(usn1:`6esn`)Assert Exists([`7esn` In 0.12 Is Not Null Where 0X0123456789ABCDEF In false].`7esn`)"), + octest_legacy:ct_string("Match `7esn`=Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)),`8esn`=Allshortestpaths((((@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]->(#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[`6esn`? *0X0123456789ABCDEF{@usn6:.1e-1 Contains .12e-12}]-(#usn7 :`8esn`)))) Remove (@usn5 :@usn6:_usn3{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`3esn`:`6esn` *..0x0]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}).`3esn` Delete $123456789[..$999][..`6esn`],$`4esn`[#usn7][8.1e1],10.12e12 Contains .9e0 Union All Create Shortestpath(((:`2esn`:`4esn`{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})))"), + octest_legacy:ct_string("Remove [`3esn` In 8.1e1 Contains .9e-1 Contains false Where 07 Ends With {1000} Ends With 01234567|$`5esn` Ends With 's_str' Ends With $`6esn`].`2esn`,{`2esn`:0xabc[01234567][.12e-12],`1esn`:{`3esn`}[#usn7]}._usn4?,(_usn3 )<-[:`8esn`|:#usn8 *0X7..0Xa]->(`4esn` :`8esn`{12}).`8esn`!._usn3? Unwind $`6esn` In 999 In {_usn3} As usn2 Optional Match ({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})<-[_usn3? *0xabc..12]->(_usn3 {#usn7:$999 =~false =~{`8esn`}}) Union All Start `2esn`=Relationship:``(`1esn`=\"d_str\") ,`3esn`=Node(0xabc,7,0Xa,01234567)Where 2.12[`4esn`][.9e-1] Merge @usn6=(({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)) Union All Unwind $`3esn`[0X7..$`8esn`] As @usn5"), + octest_legacy:ct_string("Drop Constraint On(#usn7:usn2)Assert (`2esn` :`4esn`:usn2{`8esn`:.9e-1 Contains .9e0 Contains ``,_usn4:8.1e1 Contains .9e-1 Contains false})<-[`4esn`? *..123456789{#usn7:$`6esn`[@usn6...9e-12]}]-(:`1esn`:``{_usn3:\"d_str\" Starts With ``,`4esn`:{`3esn`}[..0xabc][..{`6esn`}]})-[:#usn7|:@usn5]-(_usn3 :_usn3{@usn6:$999 Ends With `2esn` Ends With 12.0}).``.@usn5._usn3 Is Unique"), + octest_legacy:ct_string("Drop Constraint On(@usn6:#usn7)Assert [`6esn` In 010[{`1esn`}..]|.1e-1[2.9e1..][$`7esn`..]].usn2 Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[`3esn`:#usn8]-()Assert Exists([`6esn` In 010[{`1esn`}..] Where 9e-12[$7..]].`6esn`?)"), + octest_legacy:ct_string("Remove `2esn`:`3esn`,(`8esn` {`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->(:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[ *1000..{`2esn`:0.12[Count ( * )..Count ( * )][$999..`5esn`]}]->(`` ).#usn8! Return Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] As #usn8,[`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..]),{`7esn`} Is Not Null Is Not Null As `1esn` Order By 00[{1000}] Descending,'s_str'[$_usn3..][9.1e-1..] Desc,$_usn4 =~$#usn8 =~{`4esn`} Desc Skip $``[9e12..] Limit Reduce(`3esn`=0.12 =~2.9e1 =~9e1,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|{0} Is Not Null Is Not Null)[`8esn`(0X0123456789ABCDEF Is Not Null Is Not Null,{usn1} Is Not Null Is Not Null)..][{usn1:.9e0[07..][4.9e12..],_usn3:{1000}[`2esn`...0e-0][9e-1..0X7]}..] Union Unwind {`8esn`}[.0e0..][999..] As `1esn`"), + octest_legacy:ct_string("Foreach(`7esn` In 01234567[1000..][$`8esn`..]| With Distinct 5.9e-12[01][`4esn`],$#usn8 Starts With 9.1e-1 Starts With {#usn7} As `8esn`,`5esn` Ends With 's_str' Ends With @usn5 As `1esn` Order By 's_str'[$_usn3..][9.1e-1..] Desc Where 1.0 Is Null Is Null Optional Match #usn7=(`8esn` :`7esn`)-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``),`4esn`=Shortestpath((_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn2 *7]-(`` ))) With Distinct $`5esn` =~Count(*) =~1.9e0 As @usn6,.9e12[6.0e0..][@usn5..],07[9e-1..][1e1..] As `4esn` Order By Reduce(_usn3={usn1} Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|01234567[1000..][$`8esn`..]) Is Null Is Null Desc,$`8esn`[...1e-1] Desc,$12 Is Not Null Descending Limit `4esn`[12.0..][9.1e-1..] Union All Start usn1=Rel:`8esn`({`3esn`}) ,#usn7=Node:#usn8(usn2='s_str') Return *,9e1[12] As usn1,Reduce(`2esn`={0} Ends With 0Xa,usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]|$#usn8 =~9e1 =~{``})[`3esn`(Distinct 0 Starts With `7esn` Starts With 9e0,$`4esn` Is Null Is Null)][`7esn`(Distinct $`4esn` Ends With .12e12 Ends With 123.654)] Limit true In 0.0 Create (((`3esn` $0)-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(:#usn8:@usn6{usn1:12e12 Ends With `5esn` Ends With .0e0})<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]-(_usn3 :_usn4:`2esn`{usn1:`3esn` Contains `2esn` Contains {_usn4},#usn8:010[{`1esn`}..]}))),(({`6esn`:8.1e1 Contains .9e-1 Contains false})<-[`8esn`*]-(@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})-[`6esn`?:@usn5|:#usn7{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-(:`5esn`:`7esn`{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}))"), + octest_legacy:ct_string("Detach Delete 1.9e0 In $@usn6 In $_usn3,$@usn5 =~{`3esn`} Load Csv With Headers From .0e0 =~Case $`6esn` Starts With 0.0 When {`3esn`}[01234567][{#usn7}] Then 12[4.9e12..] End =~All(`` In `7esn` =~#usn8 =~\"d_str\" Where #usn7[$`8esn`][{`3esn`}]) As `1esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Return Distinct *,$999 =~0e0 =~0X7 As `1esn` Order By $`6esn`[@usn6...9e-12] Asc,9e-12 Starts With {1000} Desc Limit Reduce(`4esn`=.0e-0[..01234567],`7esn` In 0.12 Is Not Null|$123456789)[..All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 1e1 =~{@usn5} =~`7esn`)][..Case 07[..$`5esn`] When 00[$_usn4][$`1esn`] Then {#usn7}[.12e-12] Else `5esn` Contains 0 Contains $12 End] Delete {`8esn`}[9e-12..0],usn1 =~false =~{999},.12e-12 Ends With `2esn` With 8.1e1[$``],.9e12 Contains 0 Contains $0 As _usn4 Skip [usn2 In .12e-12 Ends With `2esn` Where @usn5 In Null|false =~{`8esn`} =~00][Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where Count ( * ) =~123456789 =~{@usn5})..Reduce(usn2={`4esn`} In 1000 In {@usn5},@usn6 In $usn2 Contains $`3esn` Contains 6.0e0|.0e0 =~0 =~.0e0)] Limit Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null Where $_usn4 Ends With {#usn8} Union All Create Shortestpath((`` :`3esn`)-[:#usn8|:``*{#usn8:.1e-1[2.9e1..][$`7esn`..],#usn8:0e0[12.0][{#usn7}]}]->(:``{`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]}))"), + octest_legacy:ct_string("Drop Constraint On()-[`2esn`:usn1]-()Assert Exists(Filter(#usn7 In .0e-0 In 12 Where 00[$``])._usn3!)"), + octest_legacy:ct_string("Start `6esn`=Rel(7,0X7,0,01) ,@usn5=Rel:usn1({usn2})Where 11.12e-12 Ends With 's_str' Union All Create Unique (((@usn5 {@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]})<-[:_usn3 *7]->(_usn4 {_usn4:12e12 Ends With `5esn` Ends With .0e0})-[?:`1esn`|:`1esn` *0X7..0Xa{``:01234567[10.12e12][0Xa]}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))) Foreach(_usn4 In {_usn3}[{0}...9e-1][9e-1...0e0]| Match _usn4=(({`2esn`:00[Null..usn2],`2esn`:3.9e-1[..$1000][..0.12]})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})),_usn4=Allshortestpaths(((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}))) Using Scan #usn7:`3esn` Using Index @usn5:`4esn`(usn1) Optional Match `1esn`=Allshortestpaths((_usn3 {#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]})),(`6esn` {`3esn`:Count ( * )[_usn4..]})) Union All Merge `4esn`=Shortestpath((#usn8 :`8esn`{usn1:{1000} Starts With 10.12e12 Starts With .0e-0,`7esn`:11.12e-12 Ends With 's_str'})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})) On Create Set `4esn` =Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 7 In 1e1 In {``})[Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..])..@usn6(0xabc[..Count(*)][..$`5esn`])][$`6esn`..{#usn7:00 =~`4esn` =~.9e-12}]"), + octest_legacy:ct_string("Create usn2=Shortestpath(((@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))) Optional Match `4esn`=(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})<-[?:_usn4|:`1esn` *..07{``:12.0[..Count ( * )][..@usn6],`6esn`:.9e-12[usn2]}]-(_usn4 :#usn8:@usn6),Shortestpath((((_usn3 {_usn3:.12e-12 Ends With `2esn`,usn1:Null[#usn7..][9.1e-1..]})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[ *..123456789{@usn5:$`8esn`}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]})))) Where .9e12[6.0e0..][@usn5..] Union Merge #usn7=Allshortestpaths(((`2esn` :usn1{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))) On Match Set (:@usn6:_usn3{`5esn`:0X0123456789ABCDEF Is Not Null Is Not Null,`8esn`:\"d_str\" Is Not Null Is Not Null})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn4 :`1esn`:``{`3esn`})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(usn1 :`8esn`{`3esn`:$#usn8 Is Not Null Is Not Null,_usn4:$usn2 Ends With 00 Ends With 9e12}).`3esn`! =0x0[{`6esn`}..],_usn3+=Extract(@usn6 In 9e12[..usn2][.._usn3] Where $12 Ends With {_usn4} Ends With $`8esn`|.9e-12[.12e12..][0Xa..])[{#usn8:@usn6 Ends With $`2esn` Ends With 1.0,`3esn`:$1000[_usn4][{@usn5}]}..],`4esn` ={`8esn`}[.0e0..][999..]"), + octest_legacy:ct_string("Drop Constraint On()-[`6esn`:usn2]-()Assert Exists(All(`` In `7esn` =~#usn8 =~\"d_str\").`3esn`!)"), + octest_legacy:ct_string("Create Constraint On(`3esn`:usn1)Assert Single(`7esn` In 0.12 Is Not Null Where 010[{`1esn`}..]).`3esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[`7esn`:usn2]-()Assert Exists(Any(usn1 In \"d_str\" Contains {@usn6} Where $`8esn` Is Null Is Null).usn1)"), + octest_legacy:ct_string("Return Distinct *,{#usn7} =~.12e12 =~9e0,Shortestpath((((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})))) Ends With Reduce(`5esn`=0 In 2.9e1 In 7,usn1 In \"d_str\" Contains {@usn6}|01[$`1esn`..$`7esn`][{usn2}..12.0]) Ends With [#usn7 In .0e-0 In 12 Where {#usn7} Is Not Null] Order By $123456789[{usn1}][.12e-12] Asc,0X0123456789ABCDEF Desc Skip 11.12e-12 =~Count ( * ) Limit (`4esn` {``:$@usn6[.1e-1][9e12],#usn8:0xabc[..{usn1}][..\"d_str\"]})-[?:#usn7|:@usn5 *12]->(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1}) Contains Case 1.0 Is Null Is Null When .12e12[..7] Then $_usn4[..$999] When .0e-0[..01234567] Then $#usn7 Starts With $123456789 End Contains Shortestpath((usn1 :#usn8:@usn6)) Create `5esn`=(:`3esn`{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]})<-[`1esn`:#usn7|:@usn5 *..123456789]-(usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789}),(usn1 :`3esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 )<-[_usn4{`5esn`:9e0[..{#usn7}][..`4esn`]}]-({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}) Union All With Distinct *,Single(`2esn` In $@usn5 Is Not Null Is Not Null) =~$1000,Case \"d_str\"[0x0..{@usn6}][$@usn5..0] When 0e0 Contains {`2esn`} Then 0X0123456789ABCDEF[1e1..] Else .12e12 Starts With 5.9e-12 Starts With `4esn` End In {usn1:$#usn7[01..2.12][2.12..3.9e-1],`6esn`:.0e-0 Ends With $`2esn` Ends With `5esn`} Order By .9e12 Contains 5.9e-12 Contains 9e-1 Descending Skip $123456789[..$999][..`6esn`] Unwind #usn7[{_usn3}] As @usn5 Union All Match _usn3=Shortestpath(((usn1 :#usn8:@usn6))),((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`})) Where .0e-0 Ends With $`2esn` Ends With `5esn` Merge Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))) On Match Set $`4esn`.@usn6? =0e-0[#usn7..999],`6esn` =.1e-1[$@usn6],_usn4+=All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] On Match Set `7esn` =0.0[..9e1][..2.12],#usn8+=1.0[$`4esn`..$@usn5] Foreach(_usn3 In Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $`5esn` Is Not Null) In `4esn`(Distinct 7 In 1e1 In {``},$`` Starts With $`4esn` Starts With `3esn`)| Detach Delete $`4esn`[usn2..],Single(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`}) In Allshortestpaths(((_usn3 {#usn7:$999 =~false =~{`8esn`}})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) In Extract(usn1 In $@usn6 Is Null Is Null Where 0Xa In 1.0 In $@usn5|Null[#usn7..][9.1e-1..]),Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null)"), + octest_legacy:ct_string("Return * Foreach(usn2 In 9e12 =~12e-12| Remove Case When $usn2 Ends With 00 Ends With 9e12 Then $#usn7 Ends With 999 Ends With {12} Else 0e0 =~{12} =~{1000} End.@usn6.usn1?,None(@usn6 In 9e12[..usn2][.._usn3] Where {`8esn`}[@usn5][$`2esn`])._usn3!) Unwind Case false =~{`8esn`} =~00 When usn2 Starts With $usn1 Starts With 10.12e12 Then usn2 Starts With $usn1 Starts With 10.12e12 When {1000} =~4.9e12 =~9e1 Then `3esn` =~$#usn7 End Ends With All(usn2 In $`5esn`[{`4esn`}][{0}] Where 0e0 Contains {`2esn`}) Ends With [#usn7 In .0e-0 In 12 Where Count ( * ) Is Not Null Is Not Null|$`7esn` Starts With 's_str'] As `1esn` Union All Create Unique (`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]}),@usn6=Shortestpath((@usn6 :`5esn`:`7esn`)) Foreach(`2esn` In 010[.0e-0..\"d_str\"][.9e0..123.654]| Create Unique `6esn`=(@usn6 :`5esn`:`7esn`) Remove (:`1esn`:``{`8esn`:0X0123456789ABCDEF Ends With {1000}})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2)<-[? *01{_usn4:07 Ends With {1000} Ends With 01234567}]-(`6esn` :`4esn`:usn2).`2esn`!._usn4?.`4esn`!,Case `1esn` =~{12} =~{999} When .9e1[$`1esn`..][$``..] Then $12 Is Null Is Null When $#usn7[01..2.12][2.12..3.9e-1] Then $999 Ends With `2esn` Ends With 12.0 End.usn1!.`6esn`!.#usn7!) Union All With *,{`3esn`}[...1e1][..0],$12 Ends With 7.0e-0 Ends With 9e-12 As usn1 Order By (:`1esn`:``{`4esn`:Count(*) Starts With 07 Starts With $#usn7,_usn3:Count ( * ) =~123456789 =~{@usn5}})-[`8esn`?:`2esn`|`5esn` *..123456789{usn2:12.0[..Count ( * )][..@usn6]}]-(`7esn` {`2esn`:2.9e1 =~Count(*) =~{123456789},`1esn`:.1e-1[..$_usn3][..0]})-[:`1esn`|:`1esn` *999..123456789{@usn5:$999 Ends With `2esn` Ends With 12.0}]->(:`8esn`{usn2:01[$`1esn`..$`7esn`][{usn2}..12.0],@usn5:{#usn7} Starts With .1e-1}) Contains Case {`8esn`} In {_usn3} In 6.0e0 When 9e0[..{#usn7}][..`4esn`] Then .12e12 Is Not Null When #usn8[$`2esn`] Then 3.9e-1 Starts With .9e0 Starts With {#usn7} Else 8.1e1 Contains .9e-1 Contains false End Contains Extract(#usn7 In .0e-0 In 12 Where {0}[.0e-0][$`2esn`]) Descending,[`3esn` In 8.1e1 Contains .9e-1 Contains false Where .12e-12 Is Null] =~`6esn`(Distinct 2.9e1[Count ( * )..]) Ascending,01234567[10.12e12][0Xa] Desc Skip {7} Is Not Null Where .1e-1[2.9e1..][$`7esn`..] Load Csv From {`7esn`}[$12..123456789] As _usn4 Fieldterminator \"d_str\""), + octest_legacy:ct_string("Drop Constraint On()<-[`1esn`:@usn6]-()Assert Exists(Filter(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where $12 Is Null Is Null).`4esn`)"), + octest_legacy:ct_string("Create Constraint On(`6esn`:`7esn`)Assert All(`6esn` In 010[{`1esn`}..] Where {`4esn`}[00..]).`8esn`.`4esn`.`5esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On(_usn3:@usn5)Assert Shortestpath(((:_usn3{@usn5:`2esn`[`7esn`][1000]})<-[`2esn` *7]->(:`8esn`{@usn6:$`6esn`[$_usn3..{1000}],_usn3:0xabc[..{usn1}][..\"d_str\"]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ))).`4esn`? Is Unique"), + octest_legacy:ct_string("Merge `7esn`=Shortestpath((_usn4 {`3esn`:.0e-0 In 12})) Detach Delete $12 Ends With {_usn4} Ends With $`8esn`,.1e1 Is Null Is Null Union All Unwind {@usn5} As _usn4 Load Csv From 's_str'[`2esn`][12.0] As @usn6 Union Unwind {`8esn`}[.0e0..][999..] As `1esn`"), + octest_legacy:ct_string("Foreach(#usn8 In `5esn`[9e-1][7.0e-0]| Load Csv From {usn1:$usn1[9e1][{999}],#usn8:0e-0[$``..10.12e12]}[Case $7[.1e-1..{@usn6}][$7..{`1esn`}] When .0e-0 Ends With $`2esn` Ends With `5esn` Then 7[{`4esn`}..] End] As `8esn` ) Union All Match Shortestpath(((usn1 :@usn6:_usn3{_usn3:{`3esn`} =~$@usn5 =~`2esn`,`5esn`:$#usn7 Starts With $123456789})-[{#usn7:1e-1[$`4esn`]}]->(_usn4 :`1esn`:``{`3esn`})<-[ *0X7..0Xa{``:{`2esn`} Contains 0xabc,#usn7:{12} Starts With $`` Starts With 0X0123456789ABCDEF}]->(`8esn` :`5esn`:`7esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}))),(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})<-[`5esn`:@usn6|:`4esn` *010..0{`8esn`:0xabc Starts With 12 Starts With 0e-0}]-(:`4esn`:usn2{``:$usn1 Ends With {`2esn`} Ends With $usn1})<-[?:@usn6|:`4esn`{`2esn`:$12[10.12e12][.1e1],#usn7:9e0[..{#usn7}][..`4esn`]}]-(`7esn` :usn2{`2esn`:9e1 Starts With $@usn6 Starts With 0e-0,`2esn`:0xabc[0Xa..]}) Using Index `1esn`:`1esn`(`4esn`) Using Join On _usn4,usn2,`` Create `3esn`=(((`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}})<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`5esn`:`7esn`{`3esn`:Count ( * )[_usn4..],`8esn`:false[..usn2][..999]})-[?:`6esn` *0]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}))),`6esn`=Shortestpath((`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})<-[`7esn`:`4esn`|:`2esn` *0X7..0Xa{_usn3:@usn6[0x0..][$_usn4..],`6esn`:9e-1[1.9e0]}]->(_usn3 :``)) With *,0e-0[_usn4..{`7esn`}][\"d_str\"..{`2esn`}] As `4esn`,$_usn4[..01234567][..$`6esn`]"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:@usn6)Assert (`` $999)<-[? *010..0]-(#usn7 :``)-[:`4esn`|:`2esn`{usn1:3.9e-1 Contains $@usn5}]->(:`5esn`:`7esn`{`8esn`:{12} Ends With $`3esn` Ends With 0xabc}).`3esn`?.`6esn`? Is Unique"), + octest_legacy:ct_string("Drop Constraint On()-[`6esn`:`5esn`]-()Assert Exists(Extract(usn2 In .12e-12 Ends With `2esn` Where `7esn`[1.9e0..5.9e-12][9e0..@usn5]).#usn7!.`3esn`?.`3esn`!)"), + octest_legacy:ct_string("Foreach(_usn4 In Reduce(@usn5={`8esn`} Is Not Null Is Not Null,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|07 Ends With $_usn3 Ends With $#usn8) Is Null| Optional Match `2esn`=Allshortestpaths((({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[?{`6esn`:{123456789} Starts With `6esn`,usn1:$`8esn` =~{`6esn`} =~12}]->(_usn3 :`7esn`{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}))) Using Join On _usn3,usn2 Using Index _usn4:`1esn`(@usn5) Where 0e0 Contains {`2esn`})"), + octest_legacy:ct_string("Merge `2esn`=Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) On Create Set Case 0xabc[..Count(*)][..$`5esn`] When `6esn`[0X0123456789ABCDEF..][`8esn`..] Then `2esn`[`7esn`][1000] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} Else 12e12[{`4esn`}..`4esn`][999..{@usn6}] End.``!.#usn8! =Allshortestpaths((`` :#usn8:@usn6{@usn5:$999 Ends With `2esn` Ends With 12.0})),(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})-[_usn4:_usn3{`1esn`:2.12 Is Not Null Is Not Null,`6esn`:07[{@usn5}..]}]-(`4esn` :`7esn`{@usn5:`2esn`[`7esn`][1000]}).#usn7! =8.1e1 Contains .9e-1 Contains false,`5esn` =false Is Not Null Is Not Null Union All Load Csv From 6.0e0 In 9e-1 In 123456789 As `4esn` Foreach(@usn6 In {`6esn`} Starts With 12e12 Starts With {`2esn`}| Delete {123456789} Contains $#usn7 Contains {#usn8} Load Csv From None(`1esn` In $12 In {usn2})[..Reduce(usn2=.9e0 In 8.1e1,`3esn` In 8.1e1 Contains .9e-1 Contains false|$_usn3 Is Not Null)] As #usn7 Fieldterminator 's_str') Union All Create Unique Allshortestpaths(({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)})),((:`1esn`:``{`7esn`:`5esn` Contains 0 Contains $12,`2esn`:.9e12[6.0e0..][@usn5..]}))"), + octest_legacy:ct_string("Create Constraint On(usn2:@usn6)Assert ``(Distinct {_usn3}[{0}...9e-1][9e-1...0e0],$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]).`3esn`? Is Unique"), + octest_legacy:ct_string("Using Periodic Commit 0Xa Load Csv With Headers From 2.12[10.12e12][_usn4] As `1esn` Start `2esn`=Node:_usn4(#usn8=\"d_str\") ,`7esn`=Relationship:usn1(usn2='s_str')"), + octest_legacy:ct_string("Return $`5esn` Is Not Null Is Not Null,Allshortestpaths(({usn1:12[..$`5esn`]})<-[:`4esn`|:`2esn`{`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]}]-(#usn8 :usn2))[..`1esn`][..Case .12e-12 Starts With .12e-12 When 0xabc Starts With {`3esn`} Starts With {``} Then {usn2} Is Not Null Is Not Null Else {`4esn`} Ends With Count(*) End] As @usn6 Skip 0e-0[4.9e12..00][0X0123456789ABCDEF..{_usn4}] Limit 's_str'[$_usn3..][9.1e-1..] Load Csv With Headers From Allshortestpaths((((@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?*..]-(`` {`6esn`:1000[{`1esn`}..][$`3esn`..]})-[?:@usn6|:`4esn` *..123456789]-(:``{``:`6esn`[0X0123456789ABCDEF..][`8esn`..],`8esn`:$7[.1e-1..{@usn6}][$7..{`1esn`}]}))))[Allshortestpaths((`1esn` :usn2{`8esn`:12.0[...0e0]})-[?:`1esn`|:`1esn` *..0x0{@usn6:.0e-0 In 12}]-(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]}))][Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 01234567[1000..][$`8esn`..])] As `3esn` Fieldterminator 's_str'"), + octest_legacy:ct_string("Match #usn7=(`8esn` :`7esn`)-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``),((:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1})<-[usn2 *999..123456789{usn1:12e12 Ends With `5esn` Ends With .0e0}]-(`3esn` :#usn8:@usn6)-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})) Using Join On `3esn`,`` Using Index `1esn`:_usn4(`5esn`) Create ``=Shortestpath(((_usn3 :@usn6:_usn3{`7esn`:{`8esn`}[..999][.._usn3],usn2:Count ( * )[_usn4..]})<-[`4esn`? *01234567..{usn1:1.9e0[.12e-12][9e-12],`3esn`:01234567 Ends With .0e0 Ends With 12e12}]-({@usn6:01 Contains 9e-12 Contains $7})<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}))) Union Create Unique ((`1esn` :`8esn`)<-[:usn1|usn2]-(`` :`4esn`:usn2)<-[`2esn`{@usn5:$`6esn`[@usn6...9e-12],_usn3:Null}]->(_usn4 :`1esn`:``)),Allshortestpaths(({`5esn`:`1esn` In 010 In 1e-1})<-[?:#usn7|:@usn5 *999..123456789{`4esn`:$0 Contains $7}]->(:`6esn`{`2esn`:`5esn` Ends With Count(*)})) Remove (:usn2{`7esn`:`2esn` Starts With 010 Starts With ``,``:010 Starts With 9e12 Starts With 1000})-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]->(`2esn` :@usn5)-[`8esn`:_usn4|:`1esn`]->({@usn6:.12e12 Starts With 5.9e-12 Starts With `4esn`}).#usn7,Filter(#usn7 In .0e-0 In 12 Where _usn4 Is Not Null Is Not Null).#usn7! Unwind Single(`6esn` In 010[{`1esn`}..]) As `8esn` Union Unwind .9e12 Is Not Null Is Not Null As #usn7 Load Csv From 9e-1[1.9e0] As #usn8 "), + octest_legacy:ct_string("Start _usn3=Rel:`8esn`(usn1={#usn7}) Where $usn1 Contains 4.9e12 Contains $`2esn`"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`1esn`)Assert Case {`6esn`}[6.0e0..9e0][.9e1..12e12] When 3.9e-1 Ends With {usn1} Ends With {`5esn`} Then 5.9e-12 Is Null Is Null When 7 Is Null Is Null Then 2.12[`4esn`][.9e-1] End.``?.#usn8?.`3esn`? Is Unique"), + octest_legacy:ct_string("Merge `5esn`=((#usn8 :`4esn`:usn2{usn2:$0 Contains $7,``:false Contains {`7esn`}})-[`3esn`:@usn6|:`4esn`]-(#usn8 :`7esn`{_usn4:07 Ends With {1000} Ends With 01234567})<-[$#usn8]->(:`7esn`{`7esn`:{`3esn`} =~$@usn5 =~`2esn`,#usn7:.9e0[$#usn8][Count ( * )]})) On Create Set (:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[_usn3:`5esn` *7{#usn8:12e12 Is Not Null Is Not Null,`8esn`:9e-1[0.0..]}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]}).usn2 =Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where {0} Is Not Null)[..All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..])][..[usn1 In \"d_str\" Contains {@usn6} Where 7.0e-0 Is Not Null]] On Match Set $`4esn`.@usn6? =0e-0[#usn7..999],`6esn` =.1e-1[$@usn6],_usn4+=All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Delete 5.9e-12[01][`4esn`],00[Null..usn2] Union All Foreach(#usn8 In $_usn4 =~$#usn8 =~{`4esn`}| Start _usn3=Relationship:usn2(`8esn`=\"d_str\") Where $1000[..0e-0][..010] With Distinct *,$`1esn`[4.9e12..][_usn3..],Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End =~{usn1:`6esn`[0X0123456789ABCDEF..][`8esn`..],@usn5:{`8esn`}[9e12..][{_usn4}..]} Order By Case $12 Is Not Null Is Not Null When 0.12 =~2.9e1 =~9e1 Then #usn7[.9e0..`3esn`][{`6esn`}..1000] When $`8esn` Then 9e1 Starts With $@usn6 Starts With 0e-0 End Contains `7esn` Contains `4esn`(Distinct 0[..12][..{`8esn`}]) Descending,5.9e-12[01][`4esn`] Descending,[`6esn` In 010[{`1esn`}..] Where {1000}[0..]|Count ( * )[9e0..$``]][{_usn4:07 Ends With {1000} Ends With 01234567}..Reduce(`4esn`=usn1 =~false =~{999},`6esn` In 010[{`1esn`}..]|$@usn5 =~{`3esn`})] Descending Skip Count(*) Is Not Null Is Not Null Limit 12e-12 =~$_usn3 Where false Contains {`7esn`}) Union All Optional Match ((_usn3 :`7esn`{@usn6:$`4esn` Ends With .12e12 Ends With 123.654})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)<-[#usn7? *0xabc..12]-(:`3esn`)) Using Scan `4esn`:#usn7 Using Join On usn1 Where 0.12 In $`` Create Unique `1esn`=Allshortestpaths(((:usn1{`6esn`:$_usn3[usn2..][usn1..],#usn7:$_usn4 =~$#usn8 =~{`4esn`}})-[:#usn7|:@usn5]->(`` :usn1{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null}))),#usn8=Shortestpath((:``{usn2:00 Is Not Null Is Not Null})<-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]-(#usn7 {`4esn`:0X0123456789ABCDEF In false,`2esn`:0X7[#usn7..][$@usn5..]})-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(:`7esn`{_usn4:.0e-0[..01234567],`5esn`:`` Contains {`6esn`} Contains 123456789})) Merge `5esn`=Shortestpath(((`8esn` )-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`}))) On Create Set `4esn` =Filter(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 7 In 1e1 In {``})[Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..])..@usn6(0xabc[..Count(*)][..$`5esn`])][$`6esn`..{#usn7:00 =~`4esn` =~.9e-12}]"), + octest_legacy:ct_string("Create Constraint On(`6esn`:usn1)Assert Exists(Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..]|1e-1 Contains 0.0)._usn4?)"), + octest_legacy:ct_string("Merge #usn7=Shortestpath(((`8esn` :@usn6:_usn3{`2esn`:#usn7 =~$@usn5 =~{7},`2esn`:{`3esn`}[..{`4esn`}][..usn2]})-[`8esn`:`4esn`|:`2esn`]->(`7esn` {`8esn`:0x0 Ends With #usn8 Ends With .9e-1}))) On Match Set {#usn8:$#usn7[01..2.12][2.12..3.9e-1],``:.9e0[$#usn8][Count ( * )]}.usn2! =Extract(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 01[`6esn`..][0e0..]) Is Not Null Is Not Null Merge Shortestpath(((`6esn` :``)<-[:`2esn`|`5esn`{_usn4:{@usn5}[10.12e12..]}]->(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null}))) On Match Set Case .12e12 Ends With 07 Ends With 3.9e-1 When 0.12 In $`` Then 0e-0 In 0X0123456789ABCDEF In `3esn` When 01 Ends With .0e0 Ends With 7.0e-0 Then $`6esn`[@usn6...9e-12] End.`1esn`.`1esn` =1e-1 Starts With .1e1 Starts With 12.0"), + octest_legacy:ct_string("Create Constraint On(usn1:`5esn`)Assert Filter(#usn7 In .0e-0 In 12 Where 123.654 Ends With {1000} Ends With 9e12).#usn8!.`6esn` Is Unique"), + octest_legacy:ct_string("Create Constraint On()<-[#usn7:`1esn`]-()Assert Exists([@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {1000}[..`5esn`][..9e12]].#usn7!.`5esn`!._usn3)"), + octest_legacy:ct_string("Create Unique Allshortestpaths(((#usn8 :`4esn`:usn2)<-[#usn8:`1esn`|:`1esn` *12{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-({`6esn`:0xabc[..{usn1}][..\"d_str\"],_usn3:$_usn3[.0e-0..999]}))) Load Csv From 4.9e12[{_usn4}..] As _usn4 Fieldterminator 's_str' Load Csv From `8esn`(Distinct 12[..$`5esn`]) In Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End As `` Union All With Distinct *,{``:$`8esn`[..5.9e-12][..`8esn`]}[[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .9e12[6.0e0..][@usn5..]|2.9e1[2.9e1..][`4esn`..]]..][Case {`7esn`} =~\"d_str\" =~{``} When Null In {7} Then @usn5[{`1esn`}..][Count ( * )..] End..],01234567[1000..][$`8esn`..] Limit 07 Ends With {1000} Ends With 01234567 Where `4esn` Contains 0X0123456789ABCDEF Contains $usn2 Foreach(usn2 In 9e0[..{#usn7}][..`4esn`]| Start _usn4=Relationship:usn2({usn1}) ,_usn4=Relationship:`4esn`(\"d_str\")) Union Load Csv With Headers From Any(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`3esn`}[_usn4][2.9e1]) In None(`1esn` In $12 In {usn2} Where $12 =~4.9e12) As `` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`3esn`)Assert Exists((`8esn` :`8esn`)-[`2esn` *1000..{`2esn`:{@usn6} In 9e12}]->(:usn1{usn1:true In 0.0,@usn5:{`1esn`} Is Null}).`7esn`.#usn7!)"), + octest_legacy:ct_string("Create Constraint On(@usn6:`8esn`)Assert Exists((@usn5 )<-[`5esn`?{usn1:2.9e1[2.12..1.9e0]}]-(`5esn` :``{usn2:{_usn3} In $#usn8 In $12}).@usn6?)"), + octest_legacy:ct_string("Drop Constraint On()<-[`6esn`:`2esn`]-()Assert Exists({`4esn`:`3esn` Starts With 9.1e-1 Starts With .9e-1,#usn8:1e-1[$`4esn`]}._usn4)"), + octest_legacy:ct_string("Remove Allshortestpaths((({`6esn`:3.9e-1[..$1000][..0.12]})-[_usn4? *0Xa..12{`4esn`:{`3esn`} =~$`` =~$`8esn`,@usn6:Null[$`3esn`..][`1esn`..]}]-(:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[``?:`4esn`|:`2esn` *0X0123456789ABCDEF{`5esn`:$`8esn` Is Not Null Is Not Null,`1esn`:8.1e1 Contains $@usn6}]-(:usn2{``:$0 Ends With 9e-12 Ends With $_usn4,`4esn`:false =~{`8esn`} =~00}))).`2esn`.#usn8 Unwind Case When `1esn`[{usn1}..] Then $`6esn`[@usn6...9e-12] When $usn2 Starts With $999 Starts With .0e0 Then {`6esn`} =~2.12 =~123.654 End[(`4esn` :#usn7:`8esn`)-[_usn3?:@usn6|:`4esn`{_usn4:$12 Ends With 12.0 Ends With $`4esn`}]->(:`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[{_usn3:$@usn6 Starts With 0xabc Starts With {`7esn`},`1esn`:_usn4['s_str'][8.1e1]}]->(#usn7 :usn2)..][Filter(`` In `7esn` =~#usn8 =~\"d_str\" Where {`6esn`} Starts With {`5esn`} Starts With 2.9e1)..] As _usn4 With Distinct *,{7} Ends With 999 As @usn5 Order By 7.0e-0 Ends With 0e0 Ends With 3.9e-1 Asc Skip {`5esn`}[{1000}..] Union Merge `5esn`=((`5esn` :_usn3)<-[`7esn`?:#usn7|:@usn5 *1000..]-(`7esn` :usn1)) On Match Set usn2+={7} Starts With 0x0 Starts With 9e1,`3esn`:`8esn`,{_usn4:07 Ends With {1000} Ends With 01234567}._usn4?.`1esn`? =$`7esn` Is Null On Create Set `5esn` =({`4esn`:#usn8[\"d_str\"..usn2],`1esn`:12.0[..Count ( * )][..@usn6]})<-[:_usn4|:`1esn`{`7esn`:{1000}[`2esn`...0e-0][9e-1..0X7],`5esn`:$`5esn` =~Count(*) =~1.9e0}]-(_usn3 ) =~Case When 10.12e12[usn2] Then $12 =~4.9e12 Else 9e12[..usn2][.._usn3] End =~{@usn5:7[{`4esn`}..],_usn4:999 Is Null Is Null} Load Csv From $@usn6 Starts With 0xabc Starts With {`7esn`} As usn1 Union All Foreach(`7esn` In .1e-1[$@usn6]| Delete $`8esn` Contains _usn4,{usn2} Contains {0} Start `1esn`=Relationship:_usn4(`5esn`={usn1}) ) Foreach(`` In Any(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..] Where 0xabc[..{usn1}][..\"d_str\"])[Extract(usn1 In {#usn7} =~.12e12 =~9e0 Where 0X0123456789ABCDEF Is Not Null Is Not Null)..None(#usn8 In 07[..$`5esn`] Where 8.1e1 Contains .9e-1 Contains false)][Case {0} Is Not Null Is Not Null When {`1esn`}[{usn2}] Then {`7esn`} Is Not Null Is Not Null End..[`` In `7esn` =~#usn8 =~\"d_str\"|$_usn4 Ends With {#usn8}]]| Load Csv From {@usn6:3.9e-1[..$1000][..0.12]}[All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000)] As `3esn` )"), + octest_legacy:ct_string("Start #usn7=Node( {``}) ,`6esn`=Node:@usn6(#usn8='s_str')Where {_usn3} In $#usn8 In $12 Unwind .12e-12 Ends With `2esn` As `` Start `4esn`=Node(0x0) Union With Distinct *,@usn6[Reduce(`5esn`=_usn4['s_str'][8.1e1],_usn3 In `8esn`[_usn4]|$_usn3 =~'s_str' =~12)..][(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[`7esn`?]-(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})..] As usn1 Skip {`6esn`} In .0e0 In $0 Limit (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])] Where 1.0 In {usn1} Union Match Shortestpath((`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})<-[:`7esn`|usn1 *7]-(`8esn` :`5esn`:`7esn`{usn1:{``} Contains 0.0 Contains `4esn`})-[? *1000..{`1esn`:{`1esn`} Is Null}]->(`6esn` :`2esn`:`4esn`{@usn6:0e-0[$``..10.12e12]})),(`` :``{usn1:010[...12e-12],#usn7:1e1[$_usn3]})<-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({``:{#usn8} Ends With _usn3 Ends With `2esn`,usn1:5.9e-12[\"d_str\"..][{`6esn`}..]})<-[`5esn`? *0X0123456789ABCDEF{_usn4:{#usn7} Is Not Null}]-(`8esn` {`8esn`:{`6esn`}[@usn5..{@usn6}],`1esn`:0xabc Starts With {`3esn`} Starts With {``}}) Using Index `7esn`:``(`8esn`) Where .9e12[6.0e0..][@usn5..] Delete $usn1[7.0e-0..][{123456789}..],{usn1}[`7esn`..Count(*)] Foreach(`8esn` In (`1esn` :@usn6:_usn3{#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12})<-[@usn5?:`5esn` *01{#usn8:00[Null..usn2],@usn6:0.12 =~2.9e1 =~9e1}]-({@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})[Filter(_usn3 In `8esn`[_usn4] Where 01234567 =~12e12 =~.0e-0)..][{`7esn`:.9e1[$`1esn`..][$``..]}..]| Remove (#usn8 :`8esn`{``:`7esn`[1.9e0..5.9e-12][9e0..@usn5]})-[#usn7?:`1esn`|:`1esn`{`5esn`:`2esn`[`7esn`][1000],``:010[...12e-12]}]-(`7esn` {@usn5:Count ( * )[_usn4..]}).usn2?)"), + octest_legacy:ct_string("Drop Constraint On(_usn3:_usn3)Assert Exists(_usn3($`5esn`[$_usn3][$12]).`7esn`)"), + octest_legacy:ct_string("Create Unique (((`1esn` :`3esn`{@usn6:$12 Is Null})<-[:`3esn`|`3esn`{usn2:12e12 Ends With `5esn` Ends With .0e0,usn2:0[$usn1..]}]->(`` {``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),`3esn`=(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0})-[?:_usn3]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[usn1?:`3esn`|`3esn`*..]-(`1esn` ) Union All Unwind usn2($12 =~4.9e12) Ends With Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Ends With Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End As #usn8 With *,@usn6 Ends With $`2esn` Ends With 1.0,.1e-1[$@usn6] Skip usn2($12 =~4.9e12) Ends With Any(@usn6 In 9e12[..usn2][.._usn3] Where 7[{`4esn`}..]) Ends With Case When `6esn`[$@usn5][01] Then 7[{`4esn`}..] When {1000} =~4.9e12 =~9e1 Then 9e1 In $1000 End Limit false =~$7 Where {``} Contains 0.0 Contains `4esn` Union Unwind $123456789 As #usn7 Start `2esn`=Node:`5esn`({`2esn`}) ,@usn6=Node( {``})Where .0e-0 Ends With $`2esn` Ends With `5esn`"), + octest_legacy:ct_string("Create Constraint On()-[`1esn`:`8esn`]-()Assert Exists(All(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where .9e12 Is Not Null Is Not Null).`1esn`!)"), + octest_legacy:ct_string("Unwind 00[$_usn4][$`1esn`] As _usn4 Remove `4esn`().`6esn`!.#usn7!.`2esn` Remove Case $`8esn` Is Not Null Is Not Null When #usn8[\"d_str\"..usn2] Then .12e-12 Is Null End.@usn6?,Filter(`6esn` In 010[{`1esn`}..] Where {`8esn`}[9e12..][{_usn4}..]).`3esn`!,Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $``[1.0..][_usn3..]|$1000 Starts With {@usn6} Starts With $@usn5).usn1 Union Merge ((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[ *..123456789{@usn5:1e-1[$`4esn`]}]->(:usn2{`8esn`:0xabc Starts With 12 Starts With 0e-0})) Start @usn5=Rel:`8esn`(usn1={#usn7}) ,``=Relationship:@usn6(#usn8='s_str')Where 12e-12 In .9e0"), + octest_legacy:ct_string("Remove usn2(Distinct .9e0 In 8.1e1).usn2?,({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})-[`2esn`{usn1:$@usn5 Is Null Is Null,`3esn`:999[..$@usn5][..``]}]-(:_usn3{@usn6:$1000 Starts With {@usn6} Starts With $@usn5})-[?:`2esn`|`5esn` *..123456789$1000]-(:`8esn`{#usn7:$`1esn`[..12e-12][...9e12],usn1:{7} Starts With 0x0 Starts With 9e1}).usn1?.@usn5.`2esn`!,Reduce(`5esn`=.9e1 Ends With 0x0,`8esn` In {usn1}[7.0e-0..][3.9e-1..]|Count ( * ) Contains 9.1e-1 Contains {`2esn`}).`6esn` Union Create `4esn`=((`3esn` :#usn8:@usn6)-[`4esn`? *01{#usn8:12.0[..Count ( * )][..@usn6]}]-(usn1 :#usn8:@usn6)) Remove Filter(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1]).`5esn`!._usn3!,Any(usn2 In .12e-12 Ends With `2esn` Where .12e-12 Starts With .12e-12).#usn7.`7esn`,`7esn`(Distinct `` Ends With 1.0 Ends With usn1).`3esn`? Union All Unwind {0}[.0e-0][$`2esn`] As _usn3 Foreach(#usn8 In Any(`3esn` In 8.1e1 Contains .9e-1 Contains false Where Null In {7}) Ends With ({`4esn`:0.12 In $``,usn2:.1e-1 Contains .12e-12})-[ *12{#usn8:0e0 =~{12} =~{1000}}]->(:@usn6:_usn3{@usn6:`6esn`[3.9e-1..`8esn`][12.0..0.0]}) Ends With Case When $@usn5[``..] Then `3esn` Is Null When $7[.1e-1..{@usn6}][$7..{`1esn`}] Then 0xabc[0Xa..] Else 1e-1[$`6esn`..{#usn8}][4.9e12..Count ( * )] End| With Distinct 12e12[usn2..$`6esn`] As usn1,0Xa Contains 12e-12,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As #usn7 Order By 9e12 Ends With \"d_str\" Ends With 0X7 Desc Skip {12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1])"), + octest_legacy:ct_string("Foreach(`3esn` In \"d_str\" Starts With $`7esn` Starts With 999| Unwind Extract(usn1 In $@usn6 Is Null Is Null Where 1e1 =~{@usn5} =~`7esn`) Ends With [`2esn` In $@usn5 Is Not Null Is Not Null Where 010[..9e-1][..0X7]|.1e1[{@usn6}][true]] Ends With All(usn1 In $@usn6 Is Null Is Null Where {`8esn`} Starts With .9e-1 Starts With 1000) As @usn6) With {@usn5:5.9e-12 Is Null Is Null} Ends With Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where _usn4['s_str'][8.1e1]|0.12 =~2.9e1 =~9e1) Ends With All(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12) As `7esn` Order By _usn4['s_str'][8.1e1] Asc,Filter(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {#usn8}[..@usn5])[(:#usn8:@usn6{`3esn`:$#usn7})-[ *12{#usn8:0e0 =~{12} =~{1000}}]-(:usn1{`5esn`:{`6esn`} =~2.12 =~123.654})-[usn2:`5esn`]-(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})][[`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where 01 =~{_usn3} =~01|_usn4 Ends With {`8esn`} Ends With usn2]] Ascending Skip {`1esn`}[..$_usn4] Where $@usn5[.9e-1] Match _usn4=Shortestpath(((`7esn` :usn1{`7esn`:_usn3 =~{7} =~123.654})-[`7esn`:`2esn`|`5esn` *01234567..]->(:`6esn`{@usn5:{#usn8}[..@usn5],`6esn`:0.0[$`4esn`]})<-[#usn8?:_usn4|:`1esn`{usn1:$`4esn` Is Null Is Null}]->({`6esn`:3.9e-1[..$1000][..0.12]}))),`3esn`=Shortestpath(({`6esn`:$#usn7 Ends With 999 Ends With {12},usn1:6.0e0[$#usn7..$1000]})) Using Join On `6esn`,_usn3 Using Index @usn5:@usn6(`5esn`) Union All Optional Match _usn4=((:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:_usn4|:`1esn`]->(`2esn` :@usn6:_usn3)) Where .0e0['s_str'..][0Xa..] Union All Merge Shortestpath((@usn5 {`2esn`:#usn7[.9e0..`3esn`][{`6esn`}..1000],`6esn`:$7})-[#usn8?:`8esn`|:#usn8 *999..123456789]->(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))"), + octest_legacy:ct_string("Create Constraint On(#usn8:#usn7)Assert Exists((usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[_usn3?:@usn5|:#usn7]->(`2esn` :usn1)<-[?:usn1|usn2{#usn8:'s_str'[`2esn`][12.0]}]->(_usn3 :``).`5esn`)"), + octest_legacy:ct_string("Create ``=Shortestpath(((`1esn` :`8esn`)-[`7esn`?:`2esn`|`5esn` *0]->(@usn5 {`5esn`:4.9e12[{_usn4}..],`2esn`:{1000} Starts With 10.12e12 Starts With .0e-0}))),@usn6=((#usn8 :@usn5{`8esn`:0x0 Ends With #usn8 Ends With .9e-1})) Create `7esn`=((`2esn` {``:{#usn7} =~$@usn6 =~$7})<-[@usn6 *0X7..0Xa{`7esn`:{#usn7}[.12e-12]}]->(:`2esn`:`4esn`{@usn5:Count(*) Starts With 07 Starts With $#usn7,usn2:`6esn` Ends With 1e1 Ends With $#usn7})<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->({`4esn`:{7}[0x0][1e1]})),_usn3=(#usn7 :@usn6:_usn3)-[`6esn`?:@usn5|:#usn7{@usn6:0xabc Starts With {`3esn`} Starts With {``}}]-({`7esn`:{`8esn`} In {_usn3} In 6.0e0,``:{`5esn`}[01234567..][5.9e-12..]})"), + octest_legacy:ct_string("Create Constraint On(`8esn`:usn1)Assert Exists(Extract(#usn7 In .0e-0 In 12 Where 0xabc =~123456789|Null[$`3esn`..][`1esn`..]).usn2!)"), + octest_legacy:ct_string("Drop Constraint On(@usn6:`7esn`)Assert Exists(Extract(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..]|11.12e-12 Contains usn1)._usn4?)"), + octest_legacy:ct_string("With *,4.9e12[{_usn4}..],Reduce(`6esn`=$`5esn`[$_usn3][$12],`2esn` In $@usn5 Is Not Null Is Not Null|1.9e0 In $@usn6 In $_usn3)[{``:.12e-12 Is Null}..][Case When $1000 Starts With {@usn6} Starts With $@usn5 Then `2esn` When $`8esn` =~{`6esn`} =~12 Then 1.0 In {usn1} Else 12[4.9e12..] End..] Order By 0xabc[01234567][.12e-12] Ascending,Extract(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`8esn`}[..999][.._usn3]) Starts With Reduce(``=$#usn7 Ends With 999 Ends With {12},`2esn` In $@usn5 Is Not Null Is Not Null|{`6esn`} Starts With .12e-12) Descending Limit None(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999)[Shortestpath((((:#usn8:@usn6{`3esn`:$#usn7})<-[?:`5esn`{_usn4:$12[$`6esn`..][01..]}]->(`4esn` :`8esn`{12})-[`6esn`?{`6esn`:1000[{`1esn`}..][$`3esn`..]}]->({`8esn`:8.1e1[.1e1..][`4esn`..],`2esn`:{@usn6} In 9e12}))))..] Where 00[{1000}] Create `2esn`=Allshortestpaths((((@usn6 :`5esn`:`7esn`)-[`8esn`{#usn8:.12e12[..7]}]-({_usn4:9e-12[010..{#usn7}][{123456789}..7],`5esn`:$_usn4 Ends With {#usn8}})<-[ *999..123456789{`2esn`:_usn3 =~{7} =~123.654}]->({_usn4:.1e1 Is Null Is Null,`5esn`:{1000}[`2esn`...0e-0][9e-1..0X7]})))),`2esn`=Shortestpath((`` :`3esn`)-[?:@usn5|:#usn7 *0X0123456789ABCDEF{``:$12[$`6esn`..][01..],`8esn`:{12} Ends With 1e1}]-(`5esn` :`1esn`:``{usn2:`7esn` =~#usn8 =~\"d_str\",`4esn`:$usn1 Contains 4.9e12 Contains $`2esn`})) Create Unique @usn6=((({@usn5:$`6esn`[@usn6...9e-12],_usn3:Null})<-[:@usn5|:#usn7 *0X0123456789ABCDEF{`5esn`:9e-1 Contains 3.9e-1}]->(`6esn` $_usn3)<-[? *01234567..{_usn3:12.0[..Count ( * )][..@usn6]}]-(:`8esn`{`1esn`:{usn1} Contains {`2esn`},`8esn`:{12} Ends With 1e1}))),(((`4esn` :``{``:$`6esn` =~$#usn7 =~$`4esn`,_usn3:{usn2} In false})-[`8esn`:`4esn`|:`2esn`]->(`6esn` {`4esn`:$#usn7[01..2.12][2.12..3.9e-1]})<-[`3esn`?{`2esn`:.9e-1 Contains .9e0 Contains ``,@usn6:4.9e12 Is Not Null Is Not Null}]-(:usn1{#usn8:`1esn` =~{12} =~{999},`8esn`:$12 Ends With 12.0 Ends With $`4esn`}))) Union All With $123456789[{usn1}][.12e-12] As `3esn`,1.9e0 =~.0e0 =~0X7 As #usn7,9e1 Ends With 9e12 Ends With 0x0 As #usn8 Order By $@usn5 Is Null Is Null Ascending,`1esn` Is Not Null Is Not Null Desc Limit {`8esn`} Ends With true Ends With {`3esn`} Where $12 Is Not Null Is Not Null Remove (`3esn` :`2esn`:`4esn`{`2esn`:{usn1} Is Not Null,`8esn`:999[..$@usn5][..``]})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(`1esn` :#usn7:`8esn`).@usn5.`5esn`?,[usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null|2.12[`4esn`][.9e-1]].`1esn`!,{`3esn`:00 =~`4esn` =~.9e-12}.`3esn`? Load Csv From $@usn6 Is Null As `1esn` "), + octest_legacy:ct_string("Drop Constraint On(`3esn`:`3esn`)Assert Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})))).`5esn` Is Unique"), + octest_legacy:ct_string("Remove None(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $usn2 Ends With 00 Ends With 9e12).`3esn`,Reduce(`3esn`=1e1[$_usn3],`2esn` In $@usn5 Is Not Null Is Not Null|8.1e1[..9.1e-1][...9e1]).`2esn`!.`1esn`?.`3esn`? Start `3esn`=Node(0xabc,7,0Xa,01234567) Where $`8esn` Is Not Null Is Not Null Union Create Unique (`1esn` :`7esn`) With Distinct *,(:`6esn`)<-[:usn1|usn2{`6esn`:usn2 Contains `2esn` Contains {1000}}]->(@usn5 )<-[:`4esn`|:`2esn`{usn1:3.9e-1 Contains $@usn5}]->(`7esn` ) In Case 9e1[0.0] When 999 Starts With 7.0e-0 Starts With true Then {usn2}[{999}..][9e12..] End In [`2esn` In $@usn5 Is Not Null Is Not Null Where {`3esn`} =~$@usn5 =~`2esn`|\"d_str\" Is Not Null Is Not Null] As _usn4 Order By Reduce(#usn8={`6esn`}[6.0e0..9e0][.9e1..12e12],_usn3 In `8esn`[_usn4]|01 Ends With .0e0 Ends With 7.0e-0) =~[`` In `7esn` =~#usn8 =~\"d_str\" Where `3esn` Contains `2esn` Contains {_usn4}] Asc,9e-12 Contains .12e12 Ascending,4.9e12[{_usn4}..] Descending Skip 010[...12e-12] Limit _usn4[{``}..{`6esn`}][$7..$_usn3] Where `8esn`[_usn4] Delete 9e0 Is Null,1e-1 Ends With {@usn5} Ends With {usn2}"), + octest_legacy:ct_string("Remove Case #usn8[\"d_str\"..usn2] When $12[$`6esn`..][01..] Then $`4esn`[$@usn6...12e12] End.`6esn`._usn3,Reduce(usn2=$@usn6 Is Null Is Null,`5esn` In {123456789} Starts With $_usn4 Starts With 0x0|$`4esn` Contains `4esn` Contains .0e-0).usn2 Unwind $usn2[$999][1e1] As `4esn`"), + octest_legacy:ct_string("With *,Case .12e-12 Is Null When Count ( * )[_usn4..] Then 7.0e-0 Is Not Null When 2.12[{12}] Then {usn2} Ends With {@usn6} Ends With 1000 End[Extract(`6esn` In 010[{`1esn`}..] Where {1000}[0..])][({`3esn`:{`6esn`}[@usn5..{@usn6}],_usn3:@usn6 Starts With #usn7})<-[?{#usn8:9e1 Starts With $@usn6 Starts With 0e-0,usn2:.9e1 In .1e-1}]-(:`3esn`{#usn7:{`7esn`} Is Not Null Is Not Null})-[usn2? *01234567..]->(:`5esn`:`7esn`{``:{@usn5}[10.12e12..]})] Order By .0e0 Starts With 1.0 Starts With $12 Ascending Limit 0e0[2.9e1..][.12e-12..]"), + octest_legacy:ct_string("Start _usn4=Rel:`4esn`({7}) ,`6esn`=Rel:@usn6(`8esn`='s_str')Where {0} Ends With 0Xa Start _usn4=Rel:`5esn`(@usn5=\"d_str\") With .0e-0 Ends With $`2esn` Ends With `5esn`,Case {`4esn`} Ends With Count(*) When `7esn` =~#usn8 =~\"d_str\" Then 010[..9e-1][..0X7] When $#usn7 Contains 3.9e-1 Then 123.654[10.12e12..$12][6.0e0..{#usn8}] Else $usn1[0e0...9e-12] End[Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7}))..][Any(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 0e0 Contains {`2esn`})..] As `2esn`,true In 0.0 As @usn5 Order By 0 Ends With .0e-0 Ends With false Descending,Extract(`2esn` In $@usn5 Is Not Null Is Not Null Where .9e1[$`1esn`..][$``..]) Ascending,Allshortestpaths((((#usn8 :`5esn`:`7esn`{`5esn`:$usn1[9e1][{999}]})<-[_usn4 *..07{``:{#usn8} In {12} In .9e12,`7esn`:.0e0 =~0 =~.0e0}]->(:``{usn1:.12e-12 Starts With .12e-12,`3esn`:\"d_str\"[0x0..{@usn6}][$@usn5..0]})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1}))))[`7esn`(Distinct `` Ends With 1.0 Ends With usn1)][None(#usn7 In .0e-0 In 12 Where 1e1[$_usn3])] Asc Limit [`` In `7esn` =~#usn8 =~\"d_str\" Where $_usn4[..$999]] Contains Reduce(@usn6='s_str' =~$usn2 =~{7},usn2 In .12e-12 Ends With `2esn`|$`5esn`[$_usn3][$12]) Contains Single(usn2 In .12e-12 Ends With `2esn` Where 5.9e-12[0x0..])"), + octest_legacy:ct_string("Optional Match `7esn`=Allshortestpaths(((`4esn` :`8esn`{@usn5:01234567 =~12e12 =~.0e-0})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->({usn1:12[..$`5esn`]})-[`8esn`?:`3esn`|`3esn`]->(#usn8 :`5esn`:`7esn`{`5esn`:false[..usn2][..999]}))) Using Index #usn8:`3esn`(@usn6) Create `8esn`=(({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})),Allshortestpaths((:`3esn`)) Union Return Distinct *,@usn6[Reduce(`5esn`=_usn4['s_str'][8.1e1],_usn3 In `8esn`[_usn4]|$_usn3 =~'s_str' =~12)..][(#usn7 {@usn6:9e12 Ends With 9e-1 Ends With 9e1})<-[ *7{usn2:.9e1 Ends With 0x0,``:.1e1 Contains 1e-1 Contains #usn8}]->(_usn3 {`1esn`:`3esn` =~$#usn7,_usn3:@usn6[999][1000]})<-[`7esn`?]-(@usn6 {usn2:1e1 Ends With $_usn3 Ends With .1e1})..] As usn1 Skip {`6esn`} In .0e0 In $0 Limit (:`1esn`:``{`8esn`:{12} Ends With $`3esn` Ends With 0xabc})-[`5esn`:usn1|usn2 *7{#usn7:7[{`4esn`}..],@usn5:$@usn6 Is Null Is Null}]-(@usn5 :`3esn`{`1esn`:`5esn` Ends With Count(*)})[Extract(#usn8 In 07[..$`5esn`] Where $_usn3[0X0123456789ABCDEF..][0x0..])][Any(@usn6 In 9e12[..usn2][.._usn3] Where 0xabc[..Count(*)][..$`5esn`])]"), + octest_legacy:ct_string("Create Constraint On(usn1:`1esn`)Assert Exists(Filter(usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]).#usn8.`5esn`!)"), + octest_legacy:ct_string("Create Constraint On()-[`2esn`:`1esn`]-()Assert Exists(Reduce(`7esn`=$usn2 Starts With $999 Starts With .0e0,@usn6 In 9e12[..usn2][.._usn3]|$@usn6 Is Null Is Null)._usn4?.usn1?)"), + octest_legacy:ct_string("Create (`6esn` :`2esn`:`4esn`{`4esn`:9e-1 Is Not Null,`8esn`:9e0[`7esn`..][#usn8..]})-[``?:#usn8|:``*{`2esn`:`4esn` =~010}]-(:_usn4:`2esn`) Foreach(`1esn` In [`1esn` In $12 In {usn2} Where $`8esn` Is Not Null Is Not Null|8.1e1 Contains $@usn6] In All(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where `6esn`[0X0123456789ABCDEF..][`8esn`..]) In Extract(`7esn` In 0.12 Is Not Null Where .12e-12[@usn6..'s_str'])| Create Unique Allshortestpaths(((({#usn7:{7}[0x0][1e1]})<-[{@usn5:0.12 =~`6esn` =~.9e-1}]->({_usn4:12e12 Ends With `5esn` Ends With .0e0})<-[usn2?:`2esn`|`5esn`{``:{#usn7} =~$@usn6 =~$7}]->(`5esn` {`4esn`:{`3esn`}[_usn4][2.9e1]})))) Load Csv From _usn4['s_str'][8.1e1] As `` ) Union Delete 9e0 Is Null,1e-1 Ends With {@usn5} Ends With {usn2} Start `1esn`=Rel:`5esn`(@usn5=\"d_str\") ,usn1=Rel:`7esn`(`8esn`={`3esn`})Where {usn1} In Count ( * ) In 12e12 Start #usn8=Relationship:usn2(usn1={_usn3}) "), + octest_legacy:ct_string("Drop Constraint On(`6esn`:@usn5)Assert Exists(All(usn1 In \"d_str\" Contains {@usn6} Where .12e-12[9e1]).``!)"), + octest_legacy:ct_string("Load Csv With Headers From {0}[..`3esn`][..8.1e1] As `2esn` Fieldterminator \"d_str\" Load Csv From Single(`6esn` In 010[{`1esn`}..] Where _usn4 Ends With {`8esn`} Ends With usn2) =~`1esn`(123.654[01..][Count(*)..],{_usn4} Ends With {0} Ends With `1esn`) =~(`7esn` {`7esn`:9e-1 Contains 3.9e-1,@usn6:{`6esn`} =~2.12 =~123.654})-[`1esn`?:``|:`7esn`{#usn7:01[`4esn`..]}]->(`` :`5esn`:`7esn`{`8esn`:2.9e1[Count ( * )..]}) As `8esn` Unwind $`6esn` =~$#usn7 =~$`4esn` As usn1 Union All Foreach(usn2 In {usn1:12[..$`5esn`]}[None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where .9e1[$`1esn`..][$``..])]| Optional Match Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))),(((usn1 :@usn6:_usn3)<-[_usn4?{_usn3:999[..$@usn5][..``],`8esn`:.0e0[usn1..7.0e-0][$`5esn`...9e-12]}]->(:usn1)<-[:``|:`7esn`{@usn6:{#usn8}[..@usn5],@usn6:$1000 Contains $123456789 Contains #usn8}]->(`1esn` :@usn6:_usn3{#usn8:2.9e1[2.12..1.9e0],`6esn`:Count ( * ) Starts With 0.12}))) Create Allshortestpaths((((_usn3 :`8esn`)<-[`8esn`?]->(`1esn` {usn1:2.9e1 =~Count(*) =~{123456789}})-[? *1000..]-(`` :#usn8:@usn6{``:.0e-0[..01234567],`1esn`:$#usn8[$0..`3esn`][1e-1..$7]})))),@usn6=((#usn8 :`5esn`:`7esn`{usn2})<-[?:`6esn`{`1esn`:$`5esn` Is Not Null,`2esn`:.1e-1[2.9e1..][$`7esn`..]}]->(:@usn6:_usn3{#usn7:0Xa In 1.0 In $@usn5})<-[#usn8?:`7esn`|usn1*..$`1esn`]->(:#usn7:`8esn`{``:_usn4 Ends With {`8esn`} Ends With usn2,_usn3:$@usn6 Is Null Is Null}))) Create Unique (@usn5 :`3esn`{`4esn`:12e12[.9e12..07]})-[#usn8?*..]-(`` {`6esn`:1000[{`1esn`}..][$`3esn`..]})"), + octest_legacy:ct_string("Create Constraint On()-[usn2:@usn6]->()Assert Exists(Shortestpath((:`3esn`)-[#usn8*..]-(`5esn` :#usn8:@usn6)<-[`4esn`?]-(:@usn5{#usn7:Null,`5esn`:{@usn5} Ends With 0Xa Ends With .12e-12})).`8esn`)"), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`1esn`)Assert Exists(Filter(#usn8 In 07[..$`5esn`] Where $`5esn` Is Not Null).@usn6!)"), + octest_legacy:ct_string("Create Unique (@usn5 ) Delete $7 =~01234567 =~12.0,9e1 Starts With $@usn6 Starts With 0e-0 Union With Distinct *,9e1[12] As usn1 Limit 9.1e-1[..Null][..#usn8] Where $#usn8 Is Not Null Is Not Null Detach Delete 8.1e1[usn2..{1000}][0X7..9e12],$1000[_usn4][{@usn5}]"), + octest_legacy:ct_string("Drop Constraint On(@usn5:`1esn`)Assert Exists(Single(_usn3 In `8esn`[_usn4] Where 01234567 Ends With .0e0 Ends With 12e12).#usn8!)"), + octest_legacy:ct_string("Unwind $`8esn`[0x0][.9e0] As `5esn`"), + octest_legacy:ct_string("Drop Constraint On()-[`8esn`:`4esn`]->()Assert Exists((_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]})-[_usn3?:`7esn`|usn1]-(`6esn` :`7esn`{@usn5:999 Is Null Is Null,`4esn`:Count(*)[Null..][01234567..]})-[:`4esn`|:`2esn` *0X0123456789ABCDEF{_usn4:$`1esn`[4.9e12..][_usn3..],@usn6:`3esn` =~$#usn7}]-(`2esn` ).`4esn`.`8esn`)"), + octest_legacy:ct_string("Foreach(@usn6 In 7.0e-0 Ends With 0e0 Ends With 3.9e-1| With Distinct 5.9e-12[01][`4esn`],$#usn8 Starts With 9.1e-1 Starts With {#usn7} As `8esn`,`5esn` Ends With 's_str' Ends With @usn5 As `1esn` Order By 's_str'[$_usn3..][9.1e-1..] Desc Where 1.0 Is Null Is Null Create Shortestpath((`1esn` :`5esn`:`7esn`)-[`6esn`?*]->(:`8esn`{@usn6:Null,_usn4:0e-0[{12}]})),((_usn3 :`7esn`{@usn6:$`4esn` Ends With .12e12 Ends With 123.654})-[usn1? *..123456789{`8esn`:00[$``],``:$`4esn`[12e-12..$`1esn`][$`2esn`...9e12]}]->(:`6esn`)<-[#usn7? *0xabc..12]-(:`3esn`))) Optional Match @usn5=Allshortestpaths(((:`6esn`{usn1:{_usn4}[{`6esn`}],`8esn`:1e1 Ends With $_usn3 Ends With .1e1})-[@usn5{`1esn`:0e-0[..7.0e-0][..{`8esn`}],`8esn`:\"d_str\" Starts With $`7esn` Starts With 999}]->(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[usn1?{usn1:#usn7 In 07,usn1:0[..{0}][..true]}]->(`7esn` :`8esn`{@usn5:$usn1 =~.0e0 =~{`4esn`},`5esn`:$`4esn` Ends With {999}}))),(@usn6 :_usn4:`2esn`) Using Join On `2esn`,`6esn` Using Scan #usn8:`1esn` Where 5.9e-12[12e-12][$`8esn`]"), + octest_legacy:ct_string("Remove [_usn3 In `8esn`[_usn4] Where 12.0[..Count ( * )][..@usn6]|$#usn7].``.usn1!.#usn8!,Allshortestpaths((`7esn` {@usn5:07[{@usn5}..],`3esn`:$1000 Starts With {@usn6} Starts With $@usn5})-[`7esn`:`2esn`|`5esn`{_usn4:\"d_str\"[0x0..{@usn6}][$@usn5..0],`1esn`:`8esn`[.12e12..]}]->(_usn4 :`2esn`:`4esn`{#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[#usn7? *0xabc..12]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})).usn2!.`5esn`?,{usn2:.9e1 In .1e-1,usn2:1e-1 Contains 0.0}.`5esn`?.``"), + octest_legacy:ct_string("Return Distinct {`5esn`} Ends With $`7esn` Ends With {@usn5} As `4esn`,{#usn8} Is Not Null As `6esn`,{`3esn`}[...1e1][..0] Order By usn1 Ends With 11.12e-12 Ends With 5.9e-12 Descending,.1e-1 Is Not Null Ascending,Allshortestpaths((({usn1:{0}[.0e-0][$`2esn`],@usn5:7 Starts With 9e-12})<-[_usn3?:`8esn`|:#usn8{`5esn`:9e1[0.0]}]->({usn1:2.9e1 =~Count(*) =~{123456789}})))[..$`4esn`][..{#usn7:usn2 Ends With $123456789 Ends With {999},`1esn`:$12[10.12e12][.1e1]}] Descending Skip 9e0[{7}...0e-0][Null..@usn5] Limit $`5esn` =~Count(*) =~1.9e0 Create Unique _usn4=((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})) Merge Allshortestpaths(((`8esn` :`7esn`)<-[`2esn`?:`4esn`|:`2esn`]-(@usn5 )))"), + octest_legacy:ct_string("Unwind {`3esn`}[..0xabc][..{`6esn`}] As `7esn` With *,Reduce(`4esn`={0} Is Not Null,#usn7 In .0e-0 In 12|12e12[{`4esn`}..`4esn`][999..{@usn6}]) Contains Single(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where 0xabc[..{usn1}][..\"d_str\"]) Contains `3esn` As `5esn`,None(usn2 In .12e-12 Ends With `2esn` Where 7.0e-0 Is Not Null) Starts With usn1({`7esn`} Is Not Null Is Not Null,$`8esn` =~{`6esn`} =~12) Starts With None(usn1 In \"d_str\" Contains {@usn6} Where `1esn` Is Not Null Is Not Null) As _usn3 Order By {12}[true..][7..] Ascending,All(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where _usn4 Is Not Null Is Not Null)[..Allshortestpaths(((@usn5 {`8esn`:.1e1 Ends With #usn7 Ends With {#usn7}})<-[usn1? *12{@usn6:{_usn4}[{`6esn`}],#usn7:.1e1[{@usn6}][true]}]->({usn1:$999 Ends With `2esn` Ends With 12.0,_usn3:`1esn`[{usn1}..]})))] Asc,({#usn8:3.9e-1 Ends With {usn1} Ends With {`5esn`},`7esn`:8.1e1[..9.1e-1][...9e1]})<-[`8esn`*]-(#usn8 )[..Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn`[0X0123456789ABCDEF..][`8esn`..]|$_usn3 =~'s_str' =~12)][..`1esn`(Distinct .9e1[$`1esn`..][$``..])] Ascending Skip 7[..123456789][..true] Where {#usn7}[.12e-12] Union Create `7esn`=(`3esn` :usn2) Union Load Csv With Headers From All(usn1 In {#usn7} =~.12e12 =~9e0 Where \"d_str\" Starts With $`7esn` Starts With 999)[..Case $12[10.12e12][.1e1] When {999} Starts With $`4esn` Starts With $`1esn` Then $_usn3 In `2esn` In `3esn` End] As `` Fieldterminator \"d_str\" Create @usn5=(((`1esn` :usn2{`8esn`:12.0[...0e0]})-[`5esn`?:@usn5|:#usn7{`4esn`:9e-12[$7..]}]->(`5esn` :``{usn2:{_usn3} In $#usn8 In $12})-[?:`1esn`|:`1esn` *999..123456789]-(usn1 {@usn6:3.9e-1[..$1000][..0.12]}))),Shortestpath((`6esn` :``)<-[`5esn`?:`1esn`|:`1esn` *12]->(`6esn` {`3esn`:Count ( * )[_usn4..]})) With Allshortestpaths((({#usn7:12e12[.9e12..07]})-[{`6esn`:\"d_str\" Contains {@usn6},`4esn`:12e12 Contains {0}}]-(`7esn` :@usn6:_usn3)-[`7esn`:`2esn`|`5esn` *01234567..]->(`1esn` :`2esn`:`4esn`)))[Extract(`1esn` In $12 In {usn2} Where 9e-1[1.9e0])..][Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End..] As #usn8,{12} Ends With 1e1 As `8esn` Order By ``[$7..$_usn4] Asc Where 0.0[`7esn`]"), + octest_legacy:ct_string("Create Constraint On()<-[_usn3:@usn5]-()Assert Exists(Case When $12[$`6esn`..][01..] Then $`4esn`[$@usn6...12e12] When .9e-12[.12e12..][0Xa..] Then {`7esn`} Is Not Null Is Not Null Else {`6esn`}[6.0e0..9e0][.9e1..12e12] End.#usn8!)"), + octest_legacy:ct_string("Load Csv From 0.12[Count ( * )..Count ( * )][$999..`5esn`] As `7esn` Unwind 0.0[00..][0xabc..] As #usn7 Start #usn7=Node:``('s_str') Union Foreach(`1esn` In Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null)| Delete 2.9e1 Ends With `5esn` Ends With 1000 With Distinct *,false[..usn2][..999] Order By .0e-0[010..] Asc,6.0e0 In 9e-1 In 123456789 Ascending,Reduce(@usn5=7 In 1e1 In {``},usn1 In \"d_str\" Contains {@usn6}|.9e12[6.0e0..][@usn5..]) Contains (:usn1{`2esn`:$`7esn` In $`4esn`,_usn4:12e12 Ends With `5esn` Ends With .0e0})-[`6esn`?{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc}]->(#usn8 :#usn7:`8esn`{`4esn`:9e1[$``.._usn4][999..`3esn`]}) Desc Skip $`3esn` =~$123456789 =~`3esn`) Return Distinct 9.1e-1[..Null][..#usn8] As @usn6 Order By {999} Starts With $`4esn` Starts With $`1esn` Ascending,$`8esn`[...1e-1] Desc Limit Extract(#usn8 In 07[..$`5esn`] Where 0e-0 In 0X0123456789ABCDEF In `3esn`|{`2esn`} Contains 0xabc) Is Null Is Null"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`5esn`)Assert Exists(Extract(`8esn` In {usn1}[7.0e-0..][3.9e-1..] Where `6esn` =~999 =~$999|`1esn` In 6.0e0 In 12).usn1?.``)"), + octest_legacy:ct_string("Create Constraint On(`8esn`:`6esn`)Assert Exists((@usn5 :#usn8:@usn6{`3esn`:$@usn6[.1e-1][9e12],_usn3:$12 Is Null Is Null})<-[#usn7? *0xabc..12]-(_usn3 :`6esn`).#usn7?)"), + octest_legacy:ct_string("Merge `8esn`=Allshortestpaths(({`8esn`:{usn1}[`7esn`..Count(*)],#usn7:$usn1 =~.0e0 =~{`4esn`}})<-[?:usn2 *010..0{`4esn`:9e-12[$7..]}]-(@usn6 :`3esn`{usn2:0xabc Starts With {`3esn`} Starts With {``},#usn7:Count(*) Starts With 07 Starts With $#usn7})) On Match Set Filter(usn2 In $`5esn`[{`4esn`}][{0}] Where {0}[.1e-1..][_usn4..]).`6esn`.usn1.`7esn`? =0xabc Starts With `2esn` Starts With 10.12e12,`8esn` =[usn2 In $`5esn`[{`4esn`}][{0}] Where $@usn5 Contains _usn3][[_usn3 In `8esn`[_usn4] Where usn2[..$0][..`3esn`]]] Merge (#usn7 :@usn5)-[:`8esn`|:#usn8 *0X7..0Xa]->(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})<-[usn2?:@usn5|:#usn7 *7{``:{``} Is Null Is Null,_usn4:{`6esn`} =~2.12 =~123.654}]->(_usn4 :`5esn`:`7esn`{_usn4:$_usn3[.0e-0..999]}) On Create Set usn2+=Case 1.9e0 In $@usn6 In $_usn3 When .1e1 Contains 1e-1 Contains #usn8 Then #usn7 Is Null Is Null When $`8esn` Then 0[..{0}][..true] End Starts With _usn4(Distinct 0X0123456789ABCDEF Ends With {1000},0X0123456789ABCDEF Is Not Null Is Not Null),#usn8 =None(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where {`6esn`} In {_usn4} In $12) =~None(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where {_usn3} In $#usn8 In $12) =~All(usn2 In $_usn3[0X0123456789ABCDEF..][0x0..]) Create (#usn7 :`6esn`{usn1:`4esn` Ends With 9e12 Ends With {`5esn`},_usn4:$`5esn` Is Not Null})-[`2esn`?:``|:`7esn` *1000..]-(:_usn3{@usn5:`2esn`[`7esn`][1000]}) Union All Unwind `4esn` =~010 As `` Remove ({`5esn`:{123456789} Contains $0,_usn4:2.9e1 Ends With `5esn` Ends With 1000})<-[`5esn` *01]-(`1esn` {`6esn`:#usn8[\"d_str\"..usn2],`3esn`:{`3esn`}[01234567][{#usn7}]}).#usn7!,All(usn1 In {#usn7} =~.12e12 =~9e0 Where 4.9e12[{_usn4}..]).`8esn`!,`7esn`:usn2"), + octest_legacy:ct_string("Load Csv With Headers From #usn8(Distinct {#usn7}[.12e-12],Count ( * )[`5esn`..\"d_str\"][01234567..{1000}]) As `1esn` Fieldterminator \"d_str\" Match Shortestpath(((`` :`7esn`))),Allshortestpaths((:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010})-[*{usn1:{`6esn`} In .0e0 In $0,usn1:07[..$`5esn`]}]-(:`8esn`{``:1e1 =~{@usn5} =~`7esn`,usn2:{`2esn`} Contains 0xabc})<-[`3esn`?:usn2]-(`7esn` {@usn5:0.12 =~`6esn` =~.9e-1})) Using Index @usn5:usn1(`4esn`) Where {0}[.1e-1..][_usn4..]"), + octest_legacy:ct_string("Using Periodic Commit 1000 Load Csv From {0}[.1e-1..][_usn4..] As `6esn` Fieldterminator \"d_str\""), + octest_legacy:ct_string("Drop Constraint On(`1esn`:`2esn`)Assert Exists((#usn7 :_usn3{`4esn`:$@usn6[.1e-1][9e12],`6esn`:Null[#usn7..][9.1e-1..]})-[`3esn`?:`3esn`|`3esn`*..]-({`6esn`:1000[{`1esn`}..][$`3esn`..]})-[@usn6:`1esn`|:`1esn`{#usn8:12.0[..Count ( * )][..@usn6]}]-(@usn6 :`3esn`{`4esn`:$`5esn`[$_usn3][$12],#usn8:`8esn`[.12e12..]}).#usn7!)"), + octest_legacy:ct_string("Drop Constraint On(`4esn`:`6esn`)Assert Exists(Single(`3esn` In 8.1e1 Contains .9e-1 Contains false Where $0 Contains $123456789 Contains {`3esn`}).@usn6!)"), + octest_legacy:ct_string("Start `1esn`=Rel:`5esn`(@usn5=\"d_str\") ,`5esn`=Node:@usn6(#usn8='s_str') With Distinct 00[..@usn6] As `6esn`,.0e0[$usn1][0] As ``,$`8esn` Contains {@usn6} Contains `7esn` Skip {usn1:$1000 Is Null}[Shortestpath((:usn1$1000))..][Reduce(``={`4esn`}[00..],usn1 In {#usn7} =~.12e12 =~9e0|999 Starts With 7.0e-0 Starts With true)..] Where `3esn` Starts With 9.1e-1 Starts With .9e-1 Match ((`4esn` :`6esn`)<-[{``:7.0e-0 Is Not Null}]->(:#usn7:`8esn`{@usn5:{0} In {`1esn`}})-[``?{``:{#usn7} =~$@usn6 =~$7}]-(`3esn` :@usn5)) Using Join On #usn8 Union Foreach(`1esn` In $@usn6 Starts With 0xabc Starts With {`7esn`}| With Distinct *,7 Starts With 9e-12 As #usn7,$_usn3 In `2esn` In `3esn` Order By Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null Desc,0X7 Contains $12 Contains 0e0 Descending,{@usn5:5.9e-12 Is Null Is Null} Ends With Extract(`8esn` In {_usn4} Ends With {0} Ends With `1esn` Where _usn4['s_str'][8.1e1]|0.12 =~2.9e1 =~9e1) Ends With All(`1esn` In $12 In {usn2} Where `5esn` Contains 0 Contains $12) Descending Where {`1esn`} Contains 1.0 Contains 4.9e12) Union Match Shortestpath(((`1esn` {_usn4:999[..$@usn5][..``],usn2:\"d_str\" Starts With $`7esn` Starts With 999}))),_usn3=(`3esn` {_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null}) Using Join On `4esn`,`5esn`,@usn6 Where #usn8 =~{@usn5} Unwind {7} Is Not Null As _usn3"), + octest_legacy:ct_string("Optional Match _usn3=(((`4esn` )-[{#usn7:1e-1[$`4esn`]}]->(`1esn` :`2esn`:`4esn`)-[?:#usn8|:``{usn2:{12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1],usn1:\"d_str\"[0x0..{@usn6}][$@usn5..0]}]-(:`6esn`{usn2:0Xa In 1.0 In $@usn5,#usn7:999 Contains {999} Contains 12}))),`1esn`=Allshortestpaths((usn2 {#usn8:$12 Ends With 12.0 Ends With $`4esn`,`5esn`:9e12 Ends With \"d_str\" Ends With 0X7})<-[?$999]-(`4esn` {#usn7:$usn1[0e0...9e-12]})-[:`5esn` *01234567..{`2esn`:{usn1} Contains {`2esn`},#usn7:`4esn`[9e-12..true]}]-(#usn7 {`6esn`:_usn3[{#usn7}],#usn8:.9e-1 Is Null Is Null})) Foreach(@usn5 In Case Count(*) =~01234567 =~.1e-1 When {123456789} Starts With $_usn4 Starts With 0x0 Then .9e-12[usn2] When {`8esn`}[@usn5][$`2esn`] Then 00[$``] End[..Filter(@usn6 In $usn2 Contains $`3esn` Contains 6.0e0 Where 999[..$@usn5][..``])][..Case When `3esn` =~$#usn7 Then $usn2 In #usn7 In #usn7 When $`5esn`[{`4esn`}][{0}] Then 2.9e1[2.12..1.9e0] Else #usn7 =~$@usn5 =~{7} End]| Create Unique `2esn`=(((@usn6 :`2esn`:`4esn`{@usn6:$12[10.12e12][.1e1],`8esn`:@usn5 In Null})-[`1esn`{@usn5:9e-1 Contains 3.9e-1,usn2:9e12[..usn2][.._usn3]}]-(#usn7 )-[`3esn`?:usn2]-(:`1esn`:``{_usn4:123.654[01..][Count(*)..],`8esn`:12e12}))))"), + octest_legacy:ct_string("With Distinct 0xabc[..Count(*)][..$`5esn`],{12} Ends With 1e1 As `8esn`,{`4esn`} In 1000 In {@usn5} Order By {7} Ends With 999 Asc,_usn3 =~{`4esn`} Desc Skip [`1esn` In $12 In {usn2} Where 12e-12 Starts With $`7esn`][{`3esn`:$`6esn`[@usn6...9e-12],`7esn`:4.9e12 Ends With $@usn6}..] Where Null In {7} Match Shortestpath((((`1esn` :#usn8:@usn6{usn1:#usn8 Is Null Is Null,_usn3:{`4esn`} In 1000 In {@usn5}})<-[`6esn`?:@usn5|:#usn7{`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`}]->(`7esn` {_usn4:$7[.1e-1..{@usn6}][$7..{`1esn`}]})-[?*{@usn6:$999 Ends With `2esn` Ends With 12.0}]-(#usn8 :`8esn`)))),Allshortestpaths(((_usn3 :`1esn`:``)<-[@usn5?:`6esn` *..00{`3esn`:Count(*)[$7],_usn3:$#usn7[01..2.12][2.12..3.9e-1]}]->($12)-[_usn3?:@usn5|:#usn7]->(`7esn` {``:Null,_usn4:10.12e12 Starts With $`4esn` Starts With 0e0}))) Using Join On `6esn`,``,usn2 Where .12e-12 Is Null Merge (((`7esn` :usn1)<-[:`7esn`|usn1{usn1:$usn2 Starts With $999 Starts With .0e0,#usn7:$`5esn`[$_usn3][$12]}]-(usn2 :``{_usn3:$12 In {usn2},``:.9e-1 Is Null Is Null})<-[`3esn`?:@usn6|:`4esn`]-(:`1esn`:``{`6esn`:$#usn7[01..2.12][2.12..3.9e-1],usn1:$_usn3 Starts With 010}))) On Create Set `4esn` =Any(_usn3 In `8esn`[_usn4] Where {@usn6} In 1.0) Is Not Null,{``:`6esn` =~999 =~$999}.`3esn`! =.1e1 In $999 In {#usn8},@usn5 =9e1 In $1000 On Match Set Shortestpath(((:#usn8:@usn6{@usn6:{`4esn`}[{`3esn`}][$`2esn`]})-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->(`` :`4esn`:usn2)-[ *999..123456789{`8esn`:{``}[usn1..][{`8esn`}..]}]->(`` :`4esn`:usn2))).usn1? =9e0[`1esn`..0e-0][00..`1esn`],`7esn`+=00[(`3esn` :_usn3{@usn6:0.12 Is Not Null})-[#usn8:`5esn`]-({`6esn`:12[@usn6][{`2esn`}]})..],Shortestpath(((usn1 {`6esn`:9e-1 Is Not Null,#usn7:`1esn`[{@usn5}..][{_usn4}..]})-[`8esn`{#usn8:.12e12[..7]}]-({`6esn`:1000[{`1esn`}..][$`3esn`..]}))).`7esn`? =$12 Contains false Contains {`1esn`} Union All Detach Delete {1000} =~4.9e12 =~9e1,Null,10.12e12[010..1e1][.1e-1..{1000}] Return *,2.12[{12}] As #usn7,.0e-0 =~usn2 As `1esn` Order By $`8esn` =~{`6esn`} =~12 Ascending,Case When .1e1 Ends With #usn7 Ends With {#usn7} Then .9e0[$#usn8][Count ( * )] When 0X0123456789ABCDEF[1e1..] Then 0X0123456789ABCDEF Ends With {1000} End In (:usn1)<-[_usn4? *7{`1esn`:.0e0['s_str'..][0Xa..]}]->(_usn3 :`6esn`{#usn7:{`6esn`} Starts With @usn6,`7esn`:{7}[0x0][1e1]}) In [_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0|usn2 Ends With $123456789 Ends With {999}] Ascending,Any(_usn3 In `8esn`[_usn4] Where @usn6 Ends With $`2esn` Ends With 1.0) Ends With Reduce(`6esn`=1e1 Ends With 12 Ends With 999,`` In `7esn` =~#usn8 =~\"d_str\"|$usn2 Contains $`3esn` Contains 6.0e0) Ends With `1esn`(Distinct {0} Is Not Null Is Not Null) Descending Skip {`6esn`} In {_usn4} In $12 Foreach(usn2 In {_usn4} In 0X7 In 0e0| Detach Delete $@usn5 Is Not Null Is Not Null,_usn3 =~{7} =~123.654,@usn5[@usn6] Start _usn4=Rel:_usn4({`1esn`}) )"), + octest_legacy:ct_string("Drop Constraint On(`7esn`:`3esn`)Assert Exists(Shortestpath(((({@usn5:`2esn`})<-[`8esn`? *0X7..0Xa{_usn3:$`4esn`[$@usn6...12e12]}]-(`4esn` :usn2{_usn4:123.654[01..][Count(*)..],`8esn`:12e12})-[{#usn8:\"d_str\" Contains {@usn6}}]->(@usn6 {#usn8:$`6esn` Starts With 0.0,usn1:$`8esn`[0x0][.9e0]})))).`4esn`?.``?._usn4!)"), + octest_legacy:ct_string("Create Constraint On(#usn7:`4esn`)Assert Exists(Single(usn2 In .12e-12 Ends With `2esn` Where 1e-1 Contains 0.0).`2esn`?)"), + octest_legacy:ct_string("Optional Match ((usn1 :_usn3{`2esn`:{usn2}[9e-1],#usn8:_usn4 Is Not Null Is Not Null})),_usn3=Shortestpath((({`7esn`:00 Is Not Null Is Not Null,_usn4:.12e12 Starts With 5.9e-12 Starts With `4esn`})-[`5esn`? *999..123456789{_usn4:$123456789[{usn1}][.12e-12],#usn8:$999 =~false =~{`8esn`}}]-(_usn3 :`1esn`:``))) Unwind $`6esn` In 999 In {_usn3} As `5esn` Unwind Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As #usn8 Union All With Distinct 12e12[usn2..$`6esn`] As usn1,0Xa Contains 12e-12,Single(`5esn` In {123456789} Starts With $_usn4 Starts With 0x0 Where $@usn6 Starts With 0xabc Starts With {`7esn`}) Is Not Null Is Not Null As #usn7 Order By 9e12 Ends With \"d_str\" Ends With 0X7 Desc Skip {12}[$`7esn`..usn2][0X0123456789ABCDEF..1e1] Where $@usn6 Is Null Load Csv From 1e-1[..$`2esn`][..01] As #usn7 "), + octest_legacy:ct_string("Start `7esn`=Rel( {_usn3}) With Distinct *,0 Contains {`2esn`} Union Detach Delete $@usn5 Is Not Null Is Not Null,_usn3 =~{7} =~123.654,@usn5[@usn6] Merge Allshortestpaths((((#usn7 {`4esn`:0e-0 In 0X0123456789ABCDEF In `3esn`,`4esn`:`6esn` Ends With 1e1 Ends With $#usn7})-[`8esn`*]-(_usn4 {#usn8:{`3esn`} =~$`` =~$`8esn`})-[`4esn`?:`4esn`|:`2esn` *0Xa..12{``:$`` Starts With $`4esn` Starts With `3esn`,``:7 In 1e1 In {``}}]-(:`5esn`:`7esn`$usn2))))"). From abb2e0348fdb65173d684ffd641c268729bba4d4 Mon Sep 17 00:00:00 2001 From: Walter Weinmann Date: Fri, 30 Dec 2016 10:58:17 +0100 Subject: [PATCH 2/2] Version 1.2.4. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 11f63f9..23d9766 100644 --- a/README.md +++ b/README.md @@ -173,7 +173,8 @@ The output of the parse tree in the Erlang shell is shortened (cause not known). {expression4, {expression3, {expression2, - {atom,{stringLiteral,"'The Matrix'"}}, + {atom, + {literal,{stringLiteral,"'The Matrix'"}}}, []}, []}, []},